summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/parameters/RosegardenParameterBox.h
diff options
context:
space:
mode:
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.
};