diff options
Diffstat (limited to 'style/config/lipstikconf.h')
-rw-r--r-- | style/config/lipstikconf.h | 113 |
1 files changed, 57 insertions, 56 deletions
diff --git a/style/config/lipstikconf.h b/style/config/lipstikconf.h index 57bb371..8171972 100644 --- a/style/config/lipstikconf.h +++ b/style/config/lipstikconf.h @@ -31,13 +31,14 @@ DEALINGS IN THE SOFTWARE. #ifndef LIPSTIK_CONF_H #define LIPSTIK_CONF_H -class QCheckBox; +class TQCheckBox; -class LipstikStyleConfig: public QWidget +class LipstikStyleConfig: public TQWidget { Q_OBJECT + TQ_OBJECT public: - LipstikStyleConfig(QWidget* parent); + LipstikStyleConfig(TQWidget* tqparent); ~LipstikStyleConfig(); //This signal and the next two slots are the plugin @@ -56,57 +57,57 @@ protected slots: protected: //We store settings directly in widgets to //avoid the hassle of sync'ing things - QCheckBox* animateProgressBar; - QCheckBox* reverseGradients; - - QString scrollBarType( int listnr ); - int scrollBarItem( QString kSBType ); - QComboBox* scrollBarStyle; - - QString scrollBarWidthType( int widthListnr ); - int scrollBarWidthItem( QString kSBWidth ); - QComboBox* scrollBarWidth; - - QString sliderType( int sliderlistnr ); - int sliderItem( QString kSliderType ); - QComboBox* sliderStyle; - - QSpinBox* menuSpacing; - QSpinBox* toolBarSpacing; - - QCheckBox* paintGroove; - QCheckBox* sharperMenuGradient; - QCheckBox* alterMenuGradients; - QCheckBox* menuLeftSideBar; - QCheckBox* drawStatusBarFrame; - QCheckBox* drawToolBarHandle; - QCheckBox* comboboxColored; - QCheckBox* coloredMenuBar; - QCheckBox* kickerHighlight; - QCheckBox* drawTabHighlight; - QCheckBox* flatStripe; - QCheckBox* compressedMenus; - QCheckBox* drawToolBarSeparator; - QCheckBox* drawToolBarGradient; - QCheckBox* invertBarGrad; - QCheckBox* drawToolBarItemSeparator; - QCheckBox* drawFocusRect; - QCheckBox* newKickerButtons; - QCheckBox* flatHeaders; - QCheckBox* tickCheckMark; - QCheckBox* drawTriangularExpander; - QCheckBox* inputFocusHighlight; - QCheckBox* customOverHighlightColor; + TQCheckBox* animateProgressBar; + TQCheckBox* reverseGradients; + + TQString scrollBarType( int listnr ); + int scrollBarItem( TQString kSBType ); + TQComboBox* scrollBarStyle; + + TQString scrollBarWidthType( int widthListnr ); + int scrollBarWidthItem( TQString kSBWidth ); + TQComboBox* scrollBarWidth; + + TQString sliderType( int sliderlistnr ); + int sliderItem( TQString kSliderType ); + TQComboBox* sliderStyle; + + TQSpinBox* menuSpacing; + TQSpinBox* toolBarSpacing; + + TQCheckBox* paintGroove; + TQCheckBox* sharperMenuGradient; + TQCheckBox* alterMenuGradients; + TQCheckBox* menuLeftSideBar; + TQCheckBox* drawStatusBarFrame; + TQCheckBox* drawToolBarHandle; + TQCheckBox* comboboxColored; + TQCheckBox* coloredMenuBar; + TQCheckBox* kickerHighlight; + TQCheckBox* drawTabHighlight; + TQCheckBox* flatStripe; + TQCheckBox* compressedMenus; + TQCheckBox* drawToolBarSeparator; + TQCheckBox* drawToolBarGradient; + TQCheckBox* invertBarGrad; + TQCheckBox* drawToolBarItemSeparator; + TQCheckBox* drawFocusRect; + TQCheckBox* newKickerButtons; + TQCheckBox* flatHeaders; + TQCheckBox* tickCheckMark; + TQCheckBox* drawTriangularExpander; + TQCheckBox* inputFocusHighlight; + TQCheckBox* customOverHighlightColor; KColorButton* overHighlightColor; - QCheckBox* customMenuStripeColor; + TQCheckBox* customMenuStripeColor; KColorButton* menuStripeColor; - QCheckBox* customFocusHighlightColor; + TQCheckBox* customFocusHighlightColor; KColorButton* focusHighlightColor; - QCheckBox* customCheckMarkColor; + TQCheckBox* customCheckMarkColor; KColorButton* checkMarkColor; - QCheckBox* customTabHighlightColor; + TQCheckBox* customTabHighlightColor; KColorButton* tabHighlightColor; //Original settings, for accurate dirtiness tracking @@ -135,20 +136,20 @@ protected: bool origDrawTriangularExpander; bool origInputFocusHighlight; bool origCustomOverHighlightColor; - QColor origOverHighlightColor; + TQColor origOverHighlightColor; bool origCustomMenuStripeColor; - QColor origMenuStripeColor; + TQColor origMenuStripeColor; bool origCustomFocusHighlightColor; - QColor origFocusHighlightColor; + TQColor origFocusHighlightColor; bool origCustomCheckMarkColor; - QColor origCheckMarkColor; + TQColor origCheckMarkColor; bool origCustomTabHighlightColor; - QColor origTabHighlightColor; - QString origScrollBarStyle; - QString origScrollBarWidth; - QString origSliderStyle; + TQColor origTabHighlightColor; + TQString origScrollBarStyle; + TQString origScrollBarWidth; + TQString origSliderStyle; int origMenuSpacing; int origToolBarSpacing; |