diff --git a/umbrello/dialogs/pages/generaloptionpage.h b/umbrello/dialogs/pages/generaloptionpage.h index 1935c1466..921e0f36b 100644 --- a/umbrello/dialogs/pages/generaloptionpage.h +++ b/umbrello/dialogs/pages/generaloptionpage.h @@ -1,92 +1,91 @@ /*************************************************************************** * 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 GENERALOPTIONPAGE_H #define GENERALOPTIONPAGE_H #include "dialogpagebase.h" #if QT_VERSION < 0x050000 class KIntSpinBox; #endif class KLineEdit; class KComboBox; class QGroupBox; class QCheckBox; class QLabel; #if QT_VERSION >= 0x050000 class QSpinBox; #endif class SelectLayoutTypeWidget; /** * A dialog page to display auto layouts options * * @author Ralf Habacker * * Bugs and comments to umbrello-devel@kde.org or https://bugs.kde.org */ class GeneralOptionPage : public DialogPageBase { Q_OBJECT public: explicit GeneralOptionPage(QWidget* parent = 0); virtual ~GeneralOptionPage(); void setDefaults(); void apply(); signals: void applyClicked(); protected: struct GeneralWidgets { QGroupBox * miscGB; QGroupBox * autosaveGB; QGroupBox * startupGB; #if QT_VERSION >= 0x050000 QSpinBox * timeISB; #else KIntSpinBox * timeISB; #endif KComboBox * diagramKB; KComboBox * languageKB; QCheckBox * undoCB; QCheckBox * tabdiagramsCB; QCheckBox * newcodegenCB; - SelectLayoutTypeWidget *layoutTypeW; QCheckBox * footerPrintingCB; QCheckBox * uml2CB; QCheckBox * autosaveCB; QCheckBox * loadlastCB; // Allow definition of Suffix for autosave // (Default: ".xmi"), private Ui::GeneralOptionPage KLineEdit * autosaveSuffixT; QLabel * autosaveSuffixL; // End AutoSave Suffix QLabel * startL; QLabel * autosaveL; QLabel * defaultLanguageL; } m_GeneralWidgets; void insertDiagram(const QString& type, int index); void insertLayoutType(const QString& type, int index); protected slots: void slotAutosaveCBClicked(); }; #endif