/*************************************************************************** * Copyright (c) 2007 Jürgen Riegel * * * * 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_DRAWINGVIEW_H #define DRAWINGGUI_DRAWINGVIEW_H #include #include #include #include QT_BEGIN_NAMESPACE class QAction; QT_END_NAMESPACE namespace TechDraw { class DrawTemplate; } namespace TechDrawGui { class ViewProviderPage; class QGVPage; class QGIView; class TechDrawGuiExport MDIViewPage : public Gui::MDIView, public Gui::SelectionObserver { Q_OBJECT public: MDIViewPage(ViewProviderPage *page, Gui::Document* doc, QWidget* parent = 0); virtual ~MDIViewPage(); /// Observer message from the Selection void onSelectionChanged(const Gui::SelectionChanges& msg); void preSelectionChanged(const QPoint &pos); void selectFeature(App::DocumentObject *obj, bool state); void clearSelection(); void blockSelection(bool isBlocked); void attachTemplate(TechDraw::DrawTemplate *obj); void updateTemplate(bool force = false); void updateDrawing(bool force = false); bool onMsg(const char* pMsg,const char** ppReturn); bool onHasMsg(const char* pMsg) const; void onRelabel(Gui::Document *pDoc); void print(); void print(QPrinter* printer); void printPdf(); void printPreview(); void setFrameState(bool state); bool getFrameState(void) {return m_frameState;}; void setDocumentObject(const std::string&); PyObject* getPyObject(); QGVPage* getQGVPage(void) {return m_view;}; QGraphicsScene* m_scene; public Q_SLOTS: void setRenderer(QAction *action); void viewAll(); void saveSVG(void); void selectionChanged(); protected: void findMissingViews( const std::vector &list, std::vector &missing); bool hasQView(App::DocumentObject *obj); bool orphanExists(const char *viewName, const std::vector &list); int attachView(App::DocumentObject *obj); void contextMenuEvent(QContextMenuEvent *event); void closeEvent(QCloseEvent*); QPrinter::PaperSize getPaperSize(int w, int h) const; void setDimensionGroups(void); void showStatusMsg(const char* s1, const char* s2, const char* s3) const; private: QAction *m_nativeAction; QAction *m_glAction; QAction *m_exportSVGAction; QAction *m_imageAction; QAction *m_highQualityAntialiasingAction; std::string m_objectName; bool isSelectionBlocked; QGVPage *m_view; QString m_currentPath; QPrinter::Orientation m_orientation; QPrinter::PaperSize m_paperSize; ViewProviderPage *pageGui; bool m_frameState; QList deleteItems; }; } // namespace MDIViewPageGui #endif // DRAWINGGUI_DRAWINGVIEW_H