diff --git a/umbrello/dialogs/umlviewdialog.h b/umbrello/dialogs/umlviewdialog.h index 45407d3b5..413848fb7 100644 --- a/umbrello/dialogs/umlviewdialog.h +++ b/umbrello/dialogs/umlviewdialog.h @@ -1,70 +1,69 @@ /*************************************************************************** * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * copyright (C) 2002-2020 * * Umbrello UML Modeller Authors * ***************************************************************************/ #ifndef UMLVIEWDIALOG_H #define UMLVIEWDIALOG_H // qt includes // kde includes // app includes #include "multipagedialogbase.h" #include "optionstate.h" class ClassOptionsPage; class DiagramPropertiesPage; class UMLScene; class UMLView; class UMLWidgetStylePage; #if QT_VERSION >= 0x050000 class QFontDialog; #else class KFontChooser; #endif /** * @author Paul Hensgen * Bugs and comments to umbrello-devel@kde.org or https://bugs.kde.org */ class UMLViewDialog : public MultiPageDialogBase { Q_OBJECT public: UMLViewDialog(QWidget * pParent, UMLScene * pScene); ~UMLViewDialog(); virtual void apply(); protected: void setupPages(); void setupDiagramPropertiesPage(); void setupDisplayPage(); void setupStylePage(); void applyPage(KPageWidgetItem*); void checkName(); UMLScene* m_pScene; ///< the scene to represent - KFontChooser* m_pChooser{nullptr}; DiagramPropertiesPage* m_diagramPropertiesPage; ClassOptionsPage* m_pOptionsPage; KPageWidgetItem* m_pageStyleItem; KPageWidgetItem* m_pageFontItem; KPageWidgetItem* m_pageDisplayItem; KPageWidgetItem* m_pageDiagramItem; public slots: void slotOk(); void slotApply(); }; #endif