diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-22 22:45:11 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-22 22:45:11 -0500 |
commit | c145c60fdb08d2be56da5a8a85e10c7f3d28acfa (patch) | |
tree | 4be5daa5e9864e7c9577bf13fe381585afbb194c /plugin/simplestyle.h | |
parent | 751d247ce2b6140556b2db87dff31303d35ca902 (diff) | |
download | qt4-tqt-theme-engine-c145c60fdb08d2be56da5a8a85e10c7f3d28acfa.tar.gz qt4-tqt-theme-engine-c145c60fdb08d2be56da5a8a85e10c7f3d28acfa.zip |
Add initial support for CE_RadioButton and CE_CheckBox
Fix tab bar drawing glitches
Diffstat (limited to 'plugin/simplestyle.h')
-rw-r--r-- | plugin/simplestyle.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/simplestyle.h b/plugin/simplestyle.h index a40df86..0b302de 100644 --- a/plugin/simplestyle.h +++ b/plugin/simplestyle.h @@ -29,6 +29,7 @@ QT_END_NAMESPACE class TQWidget; class TQTabBar; class TQRadioButton; +class TQCheckBox; class TQProgressBar; class TQPopupMenu; class TQComboBox; @@ -49,6 +50,7 @@ enum TQt3WidgetType { TQT3WT_TQProgressBar, TQT3WT_TQTabBar, TQT3WT_TQRadioButton, + TQT3WT_TQCheckBox, TQT3WT_TQPopupMenu, TQT3WT_TQComboBox, TQT3WT_TQSlider, @@ -83,6 +85,7 @@ public: int styleHint(StyleHint hint, const QStyleOption * option = 0, const QWidget * widget = 0, QStyleHintReturn * returnData = 0) const; QSize sizeFromContents(ContentsType type, const QStyleOption * option, const QSize & contentsSize, const QWidget * widget = 0) const; +public slots: QIcon standardIconImplementation(StandardPixmap standardIcon, const QStyleOption * option = 0, const QWidget * widget = 0) const; private: @@ -92,6 +95,7 @@ private: TQWidget* m_tqt3generic_widget; TQTabBar* m_tqt3tabbar_widget; TQRadioButton* m_tqt3radiobutton_widget; + TQCheckBox* m_tqt3checkbox_widget; TQProgressBar* m_tqt3progressbar_widget; TQPopupMenu* m_tqt3popupmenu_widget; TQComboBox* m_tqt3combobox_widget; |