summaryrefslogtreecommitdiffstats
path: root/src/gui/studio/DeviceManagerDialog.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/studio/DeviceManagerDialog.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/studio/DeviceManagerDialog.h')
-rw-r--r--src/gui/studio/DeviceManagerDialog.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/gui/studio/DeviceManagerDialog.h b/src/gui/studio/DeviceManagerDialog.h
index aebc54e..84dceab 100644
--- a/src/gui/studio/DeviceManagerDialog.h
+++ b/src/gui/studio/DeviceManagerDialog.h
@@ -28,15 +28,15 @@
#include "base/Device.h"
#include <kmainwindow.h>
-#include <qstring.h>
-#include <qstringlist.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
#include <vector>
-class QWidget;
-class QTable;
-class QPushButton;
-class QCloseEvent;
+class TQWidget;
+class TQTable;
+class TQPushButton;
+class TQCloseEvent;
namespace Rosegarden
@@ -51,7 +51,7 @@ class DeviceManagerDialog : public KMainWindow
{
Q_OBJECT
public:
- DeviceManagerDialog(QWidget *parent, RosegardenGUIDoc *document);
+ DeviceManagerDialog(TQWidget *parent, RosegardenGUIDoc *document);
~DeviceManagerDialog();
void setModified(bool value);
@@ -85,25 +85,25 @@ protected slots:
void populate();
protected:
- virtual void closeEvent(QCloseEvent *);
+ virtual void closeEvent(TQCloseEvent *);
private:
RosegardenGUIDoc *m_document;
Studio *m_studio;
- QPushButton *m_deletePlayButton;
- QPushButton *m_deleteRecordButton;
- QPushButton *m_importButton;
- QPushButton *m_exportButton;
- QPushButton *m_banksButton;
- QPushButton *m_controllersButton;
+ TQPushButton *m_deletePlayButton;
+ TQPushButton *m_deleteRecordButton;
+ TQPushButton *m_importButton;
+ TQPushButton *m_exportButton;
+ TQPushButton *m_banksButton;
+ TQPushButton *m_controllersButton;
- QStringList m_playConnections;
- QStringList m_recordConnections;
- void makeConnectionList(unsigned int direction, QStringList &list);
+ TQStringList m_playConnections;
+ TQStringList m_recordConnections;
+ void makeConnectionList(unsigned int direction, TQStringList &list);
- QTable *m_playTable;
- QTable *m_recordTable;
+ TQTable *m_playTable;
+ TQTable *m_recordTable;
typedef std::vector<MidiDevice *> MidiDeviceList;
MidiDeviceList m_playDevices;
@@ -112,7 +112,7 @@ private:
DeviceId getPlayDeviceIdAt(int row); // NO_DEVICE = not found
DeviceId getRecordDeviceIdAt(int row); // NO_DEVICE = not found
- QString m_noConnectionString;
+ TQString m_noConnectionString;
};