diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-27 00:40:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-27 00:40:29 +0000 |
commit | 7a741e43ff09e70396a918956219b8316c48e522 (patch) | |
tree | 3d0f60eccd59786cea7236db2d5c4c1f25874515 /src/iconsviewsettingspage.h | |
parent | a48487ef0c329434b58b6f920111bb0999f1109e (diff) | |
download | dolphin-7a741e43ff09e70396a918956219b8316c48e522.tar.gz dolphin-7a741e43ff09e70396a918956219b8316c48e522.zip |
TQt4 port Dolphin
This enables compilation under Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/dolphin@1229359 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/iconsviewsettingspage.h')
-rw-r--r-- | src/iconsviewsettingspage.h | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/src/iconsviewsettingspage.h b/src/iconsviewsettingspage.h index ce7ce55..f883092 100644 --- a/src/iconsviewsettingspage.h +++ b/src/iconsviewsettingspage.h @@ -21,14 +21,14 @@ #ifndef ICONSVIEWSETTINGSPAGE_H #define ICONSVIEWSETTINGSPAGE_H -#include <qvbox.h> +#include <tqvbox.h> #include <dolphiniconsview.h> -class QSlider; -class QComboBox; -class QCheckBox; -class QPushButton; -class QSpinBox; +class TQSlider; +class TQComboBox; +class TQCheckBox; +class TQPushButton; +class TQSpinBox; class KFontCombo; class PixmapViewer; @@ -49,13 +49,14 @@ class PixmapViewer; * @see DolphinIconsViewSettings * @author Peter Penz <[email protected]> */ -class IconsViewSettingsPage : public QVBox +class IconsViewSettingsPage : public TQVBox { Q_OBJECT + TQ_OBJECT public: IconsViewSettingsPage(DolphinIconsView::LayoutMode mode, - QWidget* parent); + TQWidget* tqparent); virtual ~IconsViewSettingsPage(); /** @@ -72,16 +73,16 @@ private slots: private: DolphinIconsView::LayoutMode m_mode; - QSlider* m_iconSizeSlider; + TQSlider* m_iconSizeSlider; PixmapViewer* m_iconSizeViewer; - QSlider* m_previewSizeSlider; + TQSlider* m_previewSizeSlider; PixmapViewer* m_previewSizeViewer; - QComboBox* m_textWidthBox; - QComboBox* m_gridSpacingBox; + TQComboBox* m_textWidthBox; + TQComboBox* m_gridSpacingBox; KFontCombo* m_fontFamilyBox; - QSpinBox* m_fontSizeBox; - QSpinBox* m_textlinesCountBox; - QComboBox* m_arrangementBox; + TQSpinBox* m_fontSizeBox; + TQSpinBox* m_textlinesCountBox; + TQComboBox* m_arrangementBox; /** Returns the icon size for the given slider value. */ int iconSize(int sliderValue) const; |