/*************************************************************************** * Copyright (c) 2004 Jürgen Riegel * * Copyright (c) 2012 Luke Parry * * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * * This library is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public * * License along with this library; see the file COPYING.LIB. If not, * * write to the Free Software Foundation, Inc., 59 Temple Place, * * Suite 330, Boston, MA 02111-1307, USA * * * ***************************************************************************/ #ifndef DRAWINGGUI_VIEWPROVIDERPAGE_H #define DRAWINGGUI_VIEWPROVIDERPAGE_H #include #include #include namespace TechDraw{ class DrawPage; } namespace TechDrawGui { class MDIViewPage; class QGVPage; class TechDrawGuiExport ViewProviderPage : public Gui::ViewProviderDocumentObject { PROPERTY_HEADER_WITH_OVERRIDE(TechDrawGui::ViewProviderPage); public: /// constructor ViewProviderPage(); /// destructor virtual ~ViewProviderPage(); App::PropertyBool ShowFrames; virtual void attach(App::DocumentObject *) override; virtual void setDisplayMode(const char* ModeName) override; virtual bool useNewSelectionModel(void) const override {return false;} /// returns a list of all possible modes virtual std::vector getDisplayModes(void) const override; /// Hides the view provider virtual void hide(void) override; /// Shows the view provider virtual void show(void) override; virtual bool isShow(void) const override; /// Claim all the views for the page std::vector claimChildren(void) const override; /// Is called by the tree if the user double click on the object virtual bool doubleClicked(void) override; void setupContextMenu(QMenu*, QObject*, const char*) override; virtual bool onDelete(const std::vector &) override; virtual void onChanged(const App::Property *prop) override; virtual void updateData(const App::Property* prop) override; virtual void startRestoring() override; virtual void finishRestoring() override; bool isRestoring(void) {return !m_docReady;} TechDraw::DrawPage* getDrawPage() const; void onGuiRepaint(const TechDraw::DrawPage* dp); typedef boost::signals2::scoped_connection Connection; Connection connectGuiRepaint; void unsetEdit(int ModNum) override; MDIViewPage* getMDIViewPage() const; bool showMDIViewPage(); void removeMDIView(void); virtual Gui::MDIView *getMDIView() const override; bool getFrameState(void); void setFrameState(bool state); void toggleFrameState(void); void setTemplateMarkers(bool state); void setGraphicsView(QGVPage* gv); virtual bool canDelete(App::DocumentObject* obj) const override; protected: bool setEdit(int ModNum) override; private: QPointer m_mdiView; bool m_docReady; std::string m_pageName; QGVPage* m_graphicsView; }; } // namespace TechDrawGui #endif // DRAWINGGUI_VIEWPROVIDERPAGE_H