diff options
Diffstat (limited to 'src/gui/widgets')
24 files changed, 24 insertions, 24 deletions
diff --git a/src/gui/widgets/AudioFaderBox.h b/src/gui/widgets/AudioFaderBox.h index caa88c8..4d38c56 100644 --- a/src/gui/widgets/AudioFaderBox.h +++ b/src/gui/widgets/AudioFaderBox.h @@ -53,7 +53,7 @@ class AudioRouteMenu; class AudioFaderBox : public TQFrame { Q_OBJECT - TQ_OBJECT + public: AudioFaderBox(TQWidget *parent, diff --git a/src/gui/widgets/AudioRouteMenu.h b/src/gui/widgets/AudioRouteMenu.h index ee54862..d1f906d 100644 --- a/src/gui/widgets/AudioRouteMenu.h +++ b/src/gui/widgets/AudioRouteMenu.h @@ -45,7 +45,7 @@ class Instrument; class AudioRouteMenu : public TQObject { Q_OBJECT - TQ_OBJECT + public: enum Direction { In, Out }; diff --git a/src/gui/widgets/CollapsingFrame.h b/src/gui/widgets/CollapsingFrame.h index 8e3bdc0..d743bac 100644 --- a/src/gui/widgets/CollapsingFrame.h +++ b/src/gui/widgets/CollapsingFrame.h @@ -43,7 +43,7 @@ namespace Rosegarden class CollapsingFrame : public TQFrame { Q_OBJECT - TQ_OBJECT + public: CollapsingFrame(TQString label, TQWidget *parent = 0, const char *name = 0); diff --git a/src/gui/widgets/ColourTable.h b/src/gui/widgets/ColourTable.h index e1ddd5f..7cca30a 100644 --- a/src/gui/widgets/ColourTable.h +++ b/src/gui/widgets/ColourTable.h @@ -47,7 +47,7 @@ class ColourMap; class ColourTable : public TQTable { Q_OBJECT - TQ_OBJECT + public: typedef std::map<unsigned int, unsigned int, std::less<unsigned int> > ColourList; diff --git a/src/gui/widgets/CurrentProgressDialog.h b/src/gui/widgets/CurrentProgressDialog.h index 4a1de52..cda304f 100644 --- a/src/gui/widgets/CurrentProgressDialog.h +++ b/src/gui/widgets/CurrentProgressDialog.h @@ -40,7 +40,7 @@ class ProgressDialog; class CurrentProgressDialog : public TQObject { Q_OBJECT - TQ_OBJECT + public: static CurrentProgressDialog* getInstance(); diff --git a/src/gui/widgets/DiatonicPitchChooser.h b/src/gui/widgets/DiatonicPitchChooser.h index 26f983a..760b2a8 100644 --- a/src/gui/widgets/DiatonicPitchChooser.h +++ b/src/gui/widgets/DiatonicPitchChooser.h @@ -45,7 +45,7 @@ class PitchDragLabel; class DiatonicPitchChooser : public TQGroupBox { Q_OBJECT - TQ_OBJECT + public: DiatonicPitchChooser(TQString title, TQWidget *parent, diff --git a/src/gui/widgets/Fader.h b/src/gui/widgets/Fader.h index 7abb3fc..feba8b3 100644 --- a/src/gui/widgets/Fader.h +++ b/src/gui/widgets/Fader.h @@ -49,7 +49,7 @@ class TextFloat; class Fader : public TQWidget { Q_OBJECT - TQ_OBJECT + public: /** diff --git a/src/gui/widgets/Label.h b/src/gui/widgets/Label.h index e50f7f2..ca86e23 100644 --- a/src/gui/widgets/Label.h +++ b/src/gui/widgets/Label.h @@ -40,7 +40,7 @@ namespace Rosegarden class Label : public TQLabel { Q_OBJECT - TQ_OBJECT + public: Label(TQWidget *parent = 0, const char *name=0): TQLabel(parent, name) {;} diff --git a/src/gui/widgets/MidiFaderWidget.h b/src/gui/widgets/MidiFaderWidget.h index 57ec254..99a6b2b 100644 --- a/src/gui/widgets/MidiFaderWidget.h +++ b/src/gui/widgets/MidiFaderWidget.h @@ -46,7 +46,7 @@ class AudioVUMeter; class MidiFaderWidget : public TQFrame { Q_OBJECT - TQ_OBJECT + public: MidiFaderWidget(TQWidget *parent, diff --git a/src/gui/widgets/PitchChooser.h b/src/gui/widgets/PitchChooser.h index bc8e742..74368df 100644 --- a/src/gui/widgets/PitchChooser.h +++ b/src/gui/widgets/PitchChooser.h @@ -44,7 +44,7 @@ class PitchDragLabel; class PitchChooser : public TQGroupBox { Q_OBJECT - TQ_OBJECT + public: PitchChooser(TQString title, TQWidget *parent, diff --git a/src/gui/widgets/PitchDragLabel.h b/src/gui/widgets/PitchDragLabel.h index 3bb0868..95ad747 100644 --- a/src/gui/widgets/PitchDragLabel.h +++ b/src/gui/widgets/PitchDragLabel.h @@ -45,7 +45,7 @@ class NotePixmapFactory; class PitchDragLabel : public TQWidget { Q_OBJECT - TQ_OBJECT + public: PitchDragLabel(TQWidget *parent, int defaultPitch = 60, bool defaultSharps = true); diff --git a/src/gui/widgets/PluginControl.h b/src/gui/widgets/PluginControl.h index 09eb928..1641532 100644 --- a/src/gui/widgets/PluginControl.h +++ b/src/gui/widgets/PluginControl.h @@ -46,7 +46,7 @@ class Studio; class PluginControl : public TQObject { Q_OBJECT - TQ_OBJECT + public: typedef enum diff --git a/src/gui/widgets/ProgressBar.h b/src/gui/widgets/ProgressBar.h index 2a93471..ef17add 100644 --- a/src/gui/widgets/ProgressBar.h +++ b/src/gui/widgets/ProgressBar.h @@ -40,7 +40,7 @@ namespace Rosegarden class ProgressBar : public KProgress { Q_OBJECT - TQ_OBJECT + public: ProgressBar(int totalSteps, diff --git a/src/gui/widgets/ProgressDialog.h b/src/gui/widgets/ProgressDialog.h index 890c8b2..5ab6d2c 100644 --- a/src/gui/widgets/ProgressDialog.h +++ b/src/gui/widgets/ProgressDialog.h @@ -44,7 +44,7 @@ namespace Rosegarden class ProgressDialog : public KProgressDialog { Q_OBJECT - TQ_OBJECT + public: ProgressDialog(TQWidget * creator = 0, const char * name = 0, diff --git a/src/gui/widgets/QDeferScrollView.h b/src/gui/widgets/QDeferScrollView.h index f8504ff..1c36fbf 100644 --- a/src/gui/widgets/QDeferScrollView.h +++ b/src/gui/widgets/QDeferScrollView.h @@ -56,7 +56,7 @@ namespace Rosegarden class QDeferScrollView : public TQScrollView { Q_OBJECT - TQ_OBJECT + public: QDeferScrollView(TQWidget* parent=0, const char *name=0, WFlags f=0); diff --git a/src/gui/widgets/QuantizeParameters.h b/src/gui/widgets/QuantizeParameters.h index c9c45b6..a32c745 100644 --- a/src/gui/widgets/QuantizeParameters.h +++ b/src/gui/widgets/QuantizeParameters.h @@ -50,7 +50,7 @@ class Quantizer; class QuantizeParameters : public TQFrame { Q_OBJECT - TQ_OBJECT + public: enum QuantizerType { Grid, Legato, Notation }; diff --git a/src/gui/widgets/Rotary.h b/src/gui/widgets/Rotary.h index 9cc8901..27170f6 100644 --- a/src/gui/widgets/Rotary.h +++ b/src/gui/widgets/Rotary.h @@ -45,7 +45,7 @@ namespace Rosegarden class Rotary : public TQWidget { Q_OBJECT - TQ_OBJECT + public: enum TickMode { diff --git a/src/gui/widgets/ScrollBox.h b/src/gui/widgets/ScrollBox.h index e9dab4d..3683bdb 100644 --- a/src/gui/widgets/ScrollBox.h +++ b/src/gui/widgets/ScrollBox.h @@ -47,7 +47,7 @@ namespace Rosegarden class ScrollBox: public TQFrame { Q_OBJECT - TQ_OBJECT + public: enum SizeMode { FixWidth, FixHeight }; diff --git a/src/gui/widgets/ScrollBoxDialog.h b/src/gui/widgets/ScrollBoxDialog.h index a3671bb..06f7800 100644 --- a/src/gui/widgets/ScrollBoxDialog.h +++ b/src/gui/widgets/ScrollBoxDialog.h @@ -43,7 +43,7 @@ namespace Rosegarden class ScrollBoxDialog : public KDialog { Q_OBJECT - TQ_OBJECT + public: ScrollBoxDialog(TQWidget *parent = 0, diff --git a/src/gui/widgets/SpinBox.h b/src/gui/widgets/SpinBox.h index 0a9740b..e273b6a 100644 --- a/src/gui/widgets/SpinBox.h +++ b/src/gui/widgets/SpinBox.h @@ -46,7 +46,7 @@ namespace Rosegarden class SpinBox : public TQSpinBox { Q_OBJECT - TQ_OBJECT + public: SpinBox(TQWidget *parent = 0, const char *name=0); diff --git a/src/gui/widgets/TimeWidget.h b/src/gui/widgets/TimeWidget.h index 6daa6a0..91a408b 100644 --- a/src/gui/widgets/TimeWidget.h +++ b/src/gui/widgets/TimeWidget.h @@ -49,7 +49,7 @@ class Composition; class TimeWidget : public TQGroupBox { Q_OBJECT - TQ_OBJECT + public: /** * Constructor for absolute time widget diff --git a/src/gui/widgets/TristateCheckBox.h b/src/gui/widgets/TristateCheckBox.h index ab38db7..4e03142 100644 --- a/src/gui/widgets/TristateCheckBox.h +++ b/src/gui/widgets/TristateCheckBox.h @@ -45,7 +45,7 @@ namespace Rosegarden class TristateCheckBox : public TQCheckBox { Q_OBJECT - TQ_OBJECT + public: TristateCheckBox(TQWidget *parent=0, const char *name=0):TQCheckBox(parent, name) diff --git a/src/gui/widgets/VUMeter.h b/src/gui/widgets/VUMeter.h index c004b7e..20f6d39 100644 --- a/src/gui/widgets/VUMeter.h +++ b/src/gui/widgets/VUMeter.h @@ -45,7 +45,7 @@ class VelocityColour; class VUMeter : public TQLabel { Q_OBJECT - TQ_OBJECT + public: typedef enum diff --git a/src/gui/widgets/WheelyButton.h b/src/gui/widgets/WheelyButton.h index 17dd803..d211564 100644 --- a/src/gui/widgets/WheelyButton.h +++ b/src/gui/widgets/WheelyButton.h @@ -41,7 +41,7 @@ namespace Rosegarden class WheelyButton : public TQPushButton { Q_OBJECT - TQ_OBJECT + public: WheelyButton(TQWidget *w) : TQPushButton(w) { } |