diff options
Diffstat (limited to 'style/config/polyesterconf.h')
-rwxr-xr-x | style/config/polyesterconf.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/style/config/polyesterconf.h b/style/config/polyesterconf.h index 589ad88..2bc18f1 100755 --- a/style/config/polyesterconf.h +++ b/style/config/polyesterconf.h @@ -30,15 +30,15 @@ DEALINGS IN THE SOFTWARE. #ifndef POLYMER_CONF_H #define POLYMER_CONF_H -class QCheckBox; -class QComboBox; +class TQCheckBox; +class TQComboBox; class ConfigDialog; -class PolyesterStyleConfig: public QWidget +class PolyesterStyleConfig: public TQWidget { - Q_OBJECT + TQ_OBJECT public: - PolyesterStyleConfig(QWidget* parent); + PolyesterStyleConfig(TQWidget* parent); ~PolyesterStyleConfig(); //This signal and the next two slots are the plugin @@ -55,15 +55,15 @@ protected slots: void updateChanged(); protected: - QString buttonType( int listnr ); - int buttonItem( QString kBType ); - QString scrollBarType( int listnr ); - int scrollBarItem( QString kSType ); + TQString buttonType( int listnr ); + int buttonItem( TQString kBType ); + TQString scrollBarType( int listnr ); + int scrollBarItem( TQString kSType ); //Original settings, for accurate dirtiness tracking bool origUseLowerCaseText; bool origScrollBarLines; - QString origScrollBarStyle; + TQString origScrollBarStyle; int origScrollBarSize; bool origColoredScrollBar; bool origCenteredTabBar; @@ -74,7 +74,7 @@ protected: bool origMenuBarEmphasis; bool origMenuBarEmphasisBorder; bool origCustomMenuBarEmphasisColor; - QColor origMenuBarEmphasisColor; + TQColor origMenuBarEmphasisColor; bool origMenuStripe; bool origColorizeSortedHeader; bool origShadowedButtonsText; @@ -88,13 +88,13 @@ protected: // bool origDrawFocusRect; bool origDrawTriangularExpander; bool origInputFocusHighlight; - QString origButtonStyle; + TQString origButtonStyle; bool origCustomOverHighlightColor; - QColor origOverHighlightColor; + TQColor origOverHighlightColor; bool origCustomFocusHighlightColor; - QColor origFocusHighlightColor; + TQColor origFocusHighlightColor; bool origCustomCheckMarkColor; - QColor origCheckMarkColor; + TQColor origCheckMarkColor; private: ConfigDialog *dialog_; |