diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
commit | 11f31c37e5fa4889d9989f10272f44845449cb7b (patch) | |
tree | 4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/editors/parameters/RosegardenParameterArea.h | |
parent | 832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff) | |
download | rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.tar.gz rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.zip |
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/editors/parameters/RosegardenParameterArea.h')
-rw-r--r-- | src/gui/editors/parameters/RosegardenParameterArea.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/editors/parameters/RosegardenParameterArea.h b/src/gui/editors/parameters/RosegardenParameterArea.h index 1236a43..7af178a 100644 --- a/src/gui/editors/parameters/RosegardenParameterArea.h +++ b/src/gui/editors/parameters/RosegardenParameterArea.h @@ -28,14 +28,14 @@ #ifndef _RG_ROSEGARDENPARAMETERAREA_H_ #define _RG_ROSEGARDENPARAMETERAREA_H_ -#include <qwidgetstack.h> +#include <tqwidgetstack.h> #include <vector> -class QWidget; -class QVGroupBox; -class QVBox; -class QScrollView; +class TQWidget; +class TQVGroupBox; +class TQVBox; +class TQScrollView; class KTabWidget; @@ -56,7 +56,7 @@ public: // Create the parameter display area. - RosegardenParameterArea(QWidget *parent=0, const char *name=0, WFlags f=0); + RosegardenParameterArea(TQWidget *parent=0, const char *name=0, WFlags f=0); // Add a rosegarden parameter box to the list that are to be displayed. @@ -88,18 +88,18 @@ private: // corresponding parameter box widget needs to be enclosed by a // titled outline. - std::vector<QVGroupBox *> m_groupBoxes; + std::vector<TQVGroupBox *> m_groupBoxes; // Move a RosegardenParameterBox widget from one container to another. - void moveWidget(QWidget *old_container, QWidget *new_container, + void moveWidget(TQWidget *old_container, TQWidget *new_container, RosegardenParameterBox *box); - QScrollView *m_scrollView; // Holds the m_classic container - QVBox *m_classic; // The container widget for m_style==CLASSIC_STYLE. + TQScrollView *m_scrollView; // Holds the m_classic container + TQVBox *m_classic; // The container widget for m_style==CLASSIC_STYLE. KTabWidget *m_tabBox; // The container widget for m_style==TAB_BOX_STYLE. - QWidget *m_active; // The current container widget. - QWidget *m_spacing; + TQWidget *m_active; // The current container widget. + TQWidget *m_spacing; }; |