summaryrefslogtreecommitdiffstats
path: root/src/gui/seqmanager/SequenceManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/seqmanager/SequenceManager.h')
-rw-r--r--src/gui/seqmanager/SequenceManager.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/gui/seqmanager/SequenceManager.h b/src/gui/seqmanager/SequenceManager.h
index 792ec01..4713aab 100644
--- a/src/gui/seqmanager/SequenceManager.h
+++ b/src/gui/seqmanager/SequenceManager.h
@@ -34,15 +34,15 @@
#include "gui/application/RosegardenDCOP.h"
#include "sound/MappedComposition.h"
#include "sound/MappedEvent.h"
-#include <qobject.h>
-#include <qstring.h>
+#include <tqobject.h>
+#include <tqstring.h>
#include <vector>
#include <map>
-class QTimer;
-class QTime;
-class QEvent;
+class TQTimer;
+class TQTime;
+class TQEvent;
namespace Rosegarden
@@ -63,7 +63,7 @@ class Composition;
class AudioManagerDialog;
-class SequenceManager : public QObject, public CompositionObserver
+class SequenceManager : public TQObject, public CompositionObserver
{
Q_OBJECT
public:
@@ -190,7 +190,7 @@ public:
void processRemovedSegment(Segment*);
void segmentModified(Segment*);
- virtual bool event(QEvent *e);
+ virtual bool event(TQEvent *e);
/// for the gui to call to indicate that the metronome needs to be remapped
void metronomeChanged(InstrumentId id, bool regenerateTicks);
@@ -232,7 +232,7 @@ protected slots:
//
void slotAllowReport() { m_canReport = true; }
- void slotFoundMountPoint(const QString&,
+ void slotFoundMountPoint(const TQString&,
unsigned long kBSize,
unsigned long kBUsed,
unsigned long kBAvail);
@@ -247,7 +247,7 @@ protected:
void resetTempoSegmentMmapper();
void resetTimeSigSegmentMmapper();
void checkRefreshStatus();
- void sendMIDIRecordingDevice(const QString recordDeviceStr);
+ void sendMIDIRecordingDevice(const TQString recordDeviceStr);
void restoreRecordSubscriptions();
bool shouldWarnForImpreciseTimer();
@@ -275,13 +275,13 @@ protected:
clock_t m_lastRewoundAt;
CountdownDialog *m_countdownDialog;
- QTimer *m_countdownTimer;
+ TQTimer *m_countdownTimer;
bool m_shownOverrunWarning;
// Keep a track of elapsed record time with this object
//
- QTime *m_recordTime;
+ TQTime *m_recordTime;
typedef std::map<Segment *, int> SegmentRefreshMap;
SegmentRefreshMap m_segments; // map to refresh status id
@@ -292,7 +292,7 @@ protected:
// used to schedule a composition mmapper reset when the composition end time marker changes
// this can be caused by a window resize, and since the reset is potentially expensive we want to collapse
// several following requests into one.
- QTimer *m_compositionMmapperResetTimer;
+ TQTimer *m_compositionMmapperResetTimer;
// Information that the sequencer is providing to us - for the moment
// it's only the position pointer.
@@ -301,7 +301,7 @@ protected:
// Just to make sure we don't bother the user too often
//
- QTimer *m_reportTimer;
+ TQTimer *m_reportTimer;
bool m_canReport;
bool m_gotDiskSpaceResult;