diff options
author | Timothy Pearson <[email protected]> | 2012-03-18 18:06:17 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-18 18:06:17 -0500 |
commit | 5374f02e9179cb37a6a828aee6aba08373a691af (patch) | |
tree | 9e510746c594e9620dd5cf88515ba27a109cfb3e /plugin/simplestyle.h | |
parent | 6aa698b857c799aa77600b26eeae6bae4e7cb4a3 (diff) | |
download | qt4-tqt-theme-engine-5374f02e9179cb37a6a828aee6aba08373a691af.tar.gz qt4-tqt-theme-engine-5374f02e9179cb37a6a828aee6aba08373a691af.zip |
Fix SpinBox widget drawing
The theme engine is now almost usable under simple Qt4 apps such as vlc
Diffstat (limited to 'plugin/simplestyle.h')
-rw-r--r-- | plugin/simplestyle.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/simplestyle.h b/plugin/simplestyle.h index 87c166c..561b660 100644 --- a/plugin/simplestyle.h +++ b/plugin/simplestyle.h @@ -34,6 +34,7 @@ class TQComboBox; class TQSlider; class TQScrollBar; class TQSpinBox; +class TQSpinWidget; class TQTitleBar; class TQMenuBar; @@ -47,6 +48,7 @@ enum TQt3WidgetType { TQT3WT_TQSlider, TQT3WT_TQScrollBar, TQT3WT_TQSpinBox, + TQT3WT_TQSpinWidget, TQT3WT_TQTitleBar, TQT3WT_TQMenuBar }; @@ -84,6 +86,7 @@ private: TQSlider* m_tqt3slider_widget; TQScrollBar* m_tqt3scrollbar_widget; TQSpinBox* m_tqt3spinbox_widget; + TQSpinWidget* m_tqt3spinwidget_widget; TQWidget* m_tqt3window_widget; TQTitleBar* m_tqt3titlebar_widget; TQMenuBar* m_tqt3menubar_widget; |