summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/parameters/RosegardenParameterBox.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
commit11f31c37e5fa4889d9989f10272f44845449cb7b (patch)
tree4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/editors/parameters/RosegardenParameterBox.h
parent832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff)
downloadrosegarden-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/RosegardenParameterBox.h')
-rw-r--r--src/gui/editors/parameters/RosegardenParameterBox.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/gui/editors/parameters/RosegardenParameterBox.h b/src/gui/editors/parameters/RosegardenParameterBox.h
index 6f17358..629245f 100644
--- a/src/gui/editors/parameters/RosegardenParameterBox.h
+++ b/src/gui/editors/parameters/RosegardenParameterBox.h
@@ -27,13 +27,13 @@
#define _RG_ROSEGARDENPARAMETERBOX_H_
#include "RosegardenParameterArea.h"
-#include <qfont.h>
-#include <qframe.h>
-#include <qstring.h>
+#include <tqfont.h>
+#include <tqframe.h>
+#include <tqstring.h>
#include <klocale.h>
-class QWidget;
+class TQWidget;
namespace Rosegarden
@@ -42,7 +42,7 @@ namespace Rosegarden
/**
- * A flat QFrame, in which a group of parameters can be laid out.
+ * A flat TQFrame, in which a group of parameters can be laid out.
* Virtual method functions are defined for for requesting a layout
* style, and returning the single-word to use for labelling the
* box.
@@ -52,19 +52,19 @@ class RosegardenParameterBox : public QFrame
{
Q_OBJECT
public:
- RosegardenParameterBox(const QString &shortLabel, // e.g. i18n("Track")
- const QString &longLabel, // e.g. i18n("Track Parameters")
- QWidget *parent = 0,
+ RosegardenParameterBox(const TQString &shortLabel, // e.g. i18n("Track")
+ const TQString &longLabel, // e.g. i18n("Track Parameters")
+ TQWidget *parent = 0,
const char *name = 0);
// Ask for a one-word string that can be used to label the widget.
- QString getShortLabel() const;
+ TQString getShortLabel() const;
// Ask for the full label (e.g. short-label "Parameters")
- QString getLongLabel() const;
+ TQString getLongLabel() const;
// Get the short label of the prior parameter box (to establish an ordering)
- virtual QString getPreviousBox(RosegardenParameterArea::Arrangement) const;
+ virtual TQString getPreviousBox(RosegardenParameterArea::Arrangement) const;
virtual void showAdditionalControls(bool) = 0;
@@ -80,9 +80,9 @@ protected:
void setLayoutMode(LayoutMode mode);
- QFont m_font;
- QString m_shortLabel; // The string that containers can use for labelling and identification
- QString m_longLabel; // The full title
+ TQFont m_font;
+ TQString m_shortLabel; // The string that containers can use for labelling and identification
+ TQString m_longLabel; // The full title
LayoutMode m_mode; // The current layout mode.
};