diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-02 22:38:52 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-02 22:38:52 +0000 |
commit | 458efa7b0c935cbaafa2791021a5f8f7241aa876 (patch) | |
tree | 624583f2873febe23770bee3fa94b5c24bd59f4f /src/gui/application/RosegardenGUIApp.h | |
parent | 747037b72944ae2c02962b7c5c96e0a7f8852e38 (diff) | |
download | rosegarden-458efa7b0c935cbaafa2791021a5f8f7241aa876.tar.gz rosegarden-458efa7b0c935cbaafa2791021a5f8f7241aa876.zip |
Initial TQt4 port of Rosegarden
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1230242 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/application/RosegardenGUIApp.h')
-rw-r--r-- | src/gui/application/RosegardenGUIApp.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/gui/application/RosegardenGUIApp.h b/src/gui/application/RosegardenGUIApp.h index 8ae0eaa..3221ded 100644 --- a/src/gui/application/RosegardenGUIApp.h +++ b/src/gui/application/RosegardenGUIApp.h @@ -110,6 +110,7 @@ class AudioManagerDialog; class RosegardenGUIApp : public KDockMainWindow, virtual public RosegardenIface { Q_OBJECT + TQ_OBJECT friend class RosegardenGUIView; @@ -279,7 +280,7 @@ public: /** * Set the sequencer status - pass through DCOP as an int */ - virtual void notifySequencerStatus(int status); + virtual void notifySequencertqStatus(int status); /** * Handle some random incoming MIDI events. @@ -323,7 +324,7 @@ public: void plugAccelerators(TQWidget *widget, TQAccel *accel); /** - * Override from QWidget + * Override from TQWidget * Toolbars and docks need special treatment */ virtual void setCursor(const TQCursor&); @@ -812,7 +813,7 @@ public slots: * Tempo to Segment length */ void slotTempoToSegmentLength(); - void slotTempoToSegmentLength(TQWidget* parent); + void slotTempoToSegmentLength(TQWidget* tqparent); /** * toggle segment labels @@ -855,22 +856,22 @@ public slots: */ void slotEditTempo(); void slotEditTempo(timeT atTime); - void slotEditTempo(TQWidget *parent); - void slotEditTempo(TQWidget *parent, timeT atTime); + void slotEditTempo(TQWidget *tqparent); + void slotEditTempo(TQWidget *tqparent, timeT atTime); /** * Edit the time signature - called from a Transport signal */ void slotEditTimeSignature(); void slotEditTimeSignature(timeT atTime); - void slotEditTimeSignature(TQWidget *parent); - void slotEditTimeSignature(TQWidget *parent, timeT atTime); + void slotEditTimeSignature(TQWidget *tqparent); + void slotEditTimeSignature(TQWidget *tqparent, timeT atTime); /** * Edit the playback pointer position - called from a Transport signal */ void slotEditTransportTime(); - void slotEditTransportTime(TQWidget *parent); + void slotEditTransportTime(TQWidget *tqparent); /** * Change the length of the composition @@ -1239,7 +1240,7 @@ public slots: /** * save general Options like all bar positions and status as well - * as the geometry and the recent file list to the configuration + * as the tqgeometry and the recent file list to the configuration * file */ void slotSaveOptions(); @@ -1464,7 +1465,7 @@ public slots: * Create a plugin dialog for a given instrument and slot, or * raise an exising one. */ - void slotShowPluginDialog(TQWidget *parent, + void slotShowPluginDialog(TQWidget *tqparent, InstrumentId instrument, int index); |