diff options
Diffstat (limited to 'umbrello/umbrello/dialogs/settingsdlg.h')
-rw-r--r-- | umbrello/umbrello/dialogs/settingsdlg.h | 92 |
1 files changed, 46 insertions, 46 deletions
diff --git a/umbrello/umbrello/dialogs/settingsdlg.h b/umbrello/umbrello/dialogs/settingsdlg.h index 30579990..c00437b2 100644 --- a/umbrello/umbrello/dialogs/settingsdlg.h +++ b/umbrello/umbrello/dialogs/settingsdlg.h @@ -13,13 +13,13 @@ #ifndef SETTINGSDLG_H #define SETTINGSDLG_H //qt includes -#include <qgroupbox.h> -#include <qcheckbox.h> -#include <qpushbutton.h> -#include <qlabel.h> -#include <qradiobutton.h> -#include <qbuttongroup.h> -#include <qdict.h> +#include <tqgroupbox.h> +#include <tqcheckbox.h> +#include <tqpushbutton.h> +#include <tqlabel.h> +#include <tqradiobutton.h> +#include <tqbuttongroup.h> +#include <tqdict.h> //kde includes #include <kcombobox.h> #include <kfontdialog.h> @@ -45,7 +45,7 @@ class SettingsDlg : public KDialogBase { Q_OBJECT public: - SettingsDlg(QWidget * parent, Settings::OptionState *state); + SettingsDlg(TQWidget * parent, Settings::OptionState *state); ~SettingsDlg(); //public methods @@ -53,86 +53,86 @@ public: return m_bChangesApplied; } - QString getCodeGenerationLanguage(); + TQString getCodeGenerationLanguage(); protected: /** * Inserts @p type into the type-combobox as well as its completion object. */ - void insertDiagram( const QString& type, int index = -1 ); + void insertDiagram( const TQString& type, int index = -1 ); /** * Inserts @p type into the type-combobox as well as its completion object. */ - void insertAttribScope( const QString& type, int index = -1 ); + void insertAttribScope( const TQString& type, int index = -1 ); /** * Inserts @p type into the type-combobox as well as its completion object. */ - void insertOperationScope( const QString& type, int index = -1 ); + void insertOperationScope( const TQString& type, int index = -1 ); private: //private structs struct UIWidgets { - QGroupBox * colorGB; + TQGroupBox * colorGB; - QLabel * lineColorL; - QLabel * fillColorL; - QLabel * lineWidthL; + TQLabel * lineColorL; + TQLabel * fillColorL; + TQLabel * lineWidthL; - QPushButton * lineDefaultB; - QPushButton * fillDefaultB; - QPushButton * lineWidthDefaultB; + TQPushButton * lineDefaultB; + TQPushButton * fillDefaultB; + TQPushButton * lineWidthDefaultB; KColorButton * lineColorB; KColorButton * fillColorB; KIntSpinBox * lineWidthB; - QCheckBox * useFillColorCB; + TQCheckBox * useFillColorCB; } ;//end struct UIWidgets struct GeneralWidgets { - QGroupBox * miscGB; - QGroupBox * autosaveGB; - QGroupBox * startupGB; + TQGroupBox * miscGB; + TQGroupBox * autosaveGB; + TQGroupBox * startupGB; KIntSpinBox * timeISB; KComboBox * diagramKB; - QCheckBox * undoCB; - QCheckBox * tabdiagramsCB; - QCheckBox * newcodegenCB; - QCheckBox * angularLinesCB; - QCheckBox * autosaveCB; - QCheckBox * logoCB; - QCheckBox * tipCB; - QCheckBox * loadlastCB; + TQCheckBox * undoCB; + TQCheckBox * tabdiagramsCB; + TQCheckBox * newcodegenCB; + TQCheckBox * angularLinesCB; + TQCheckBox * autosaveCB; + TQCheckBox * logoCB; + TQCheckBox * tipCB; + TQCheckBox * loadlastCB; // 2004-05-17 Achim Spangler: Allow definition of Suffix for autosave // ( Default: ".xmi" ) - QLineEdit * autosaveSuffixT; - QLabel * autosaveSuffixL; + TQLineEdit * autosaveSuffixT; + TQLabel * autosaveSuffixL; // End AutoSave Suffix - QLabel * startL; - QLabel * autosaveL; + TQLabel * startL; + TQLabel * autosaveL; } ;//end struct GeneralWidgets struct ClassWidgets { - QGroupBox * visibilityGB; - QGroupBox * scopeGB; + TQGroupBox * visibilityGB; + TQGroupBox * scopeGB; - QCheckBox * showVisibilityCB; - QCheckBox * showAttsCB; - QCheckBox * showOpsCB; - QCheckBox * showStereotypeCB; - QCheckBox * showAttSigCB; - QCheckBox * showPackageCB; + TQCheckBox * showVisibilityCB; + TQCheckBox * showAttsCB; + TQCheckBox * showOpsCB; + TQCheckBox * showStereotypeCB; + TQCheckBox * showAttSigCB; + TQCheckBox * showPackageCB; - QCheckBox * showOpSigCB; + TQCheckBox * showOpSigCB; - QLabel * attributeLabel; - QLabel * operationLabel; + TQLabel * attributeLabel; + TQLabel * operationLabel; KComboBox* m_pAttribScopeCB; KComboBox* m_pOperationScopeCB; |