/[svn]/qsampler/trunk/src/qsamplerDeviceForm.h
ViewVC logotype

Annotation of /qsampler/trunk/src/qsamplerDeviceForm.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1464 - (hide annotations) (download) (as text)
Thu Nov 1 17:14:21 2007 UTC (16 years, 4 months ago) by capela
File MIME type: text/x-c++hdr
File size: 2657 byte(s)
- Qt4 migration: missing copyright headers update.

1 capela 1464 // qsamplerDeviceForm.h
2     //
3     /****************************************************************************
4     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007, Christian Schoenebeck
6 schoenebeck 1461
7 capela 1464 This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License
9     as published by the Free Software Foundation; either version 2
10     of the License, or (at your option) any later version.
11    
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     GNU General Public License for more details.
16    
17     You should have received a copy of the GNU General Public License along
18     with this program; if not, write to the Free Software Foundation, Inc.,
19     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20    
21     *****************************************************************************/
22    
23     #ifndef __qsamplerDeviceForm_h
24     #define __qsamplerDeviceForm_h
25    
26 schoenebeck 1461 #include "ui_qsamplerDeviceForm.h"
27    
28     #include "qsamplerMainForm.h"
29    
30     namespace QSampler {
31    
32     class MainForm;
33    
34     class DeviceForm : public QDialog {
35     Q_OBJECT
36     public:
37     DeviceForm(QWidget* parent = 0, Qt::WFlags f = 0);
38     ~DeviceForm();
39     void showEvent(QShowEvent* pShowEvent);
40    
41     void setDeviceTypeMode(qsamplerDevice::qsamplerDeviceType deviceType);
42     void setDriverName(const QString& sDriverName);
43     void setDevice(qsamplerDevice* pDevice);
44    
45     signals:
46     void devicesChanged();
47    
48     public slots:
49     void createDevice();
50     void deleteDevice();
51     void refreshDevices();
52     void selectDriver(const QString& sDriverName);
53     void selectDevice();
54     void selectDevicePort(int iPort);
55     void changeDeviceParam(int iRow, int iCol);
56     void changeDevicePortParam(int iRow, int iCol);
57     void contextMenu(QTreeWidgetItem* item, const QPoint&, int);
58     void stabilizeForm();
59    
60     protected:
61     MainForm *m_pMainForm;
62     lscp_client_t *m_pClient;
63     int m_iDirtySetup;
64     int m_iDirtyCount;
65     bool m_bNewDevice;
66     qsamplerDevice::qsamplerDeviceType m_deviceType;
67     qsamplerDevice::qsamplerDeviceType m_deviceTypeMode;
68     qsamplerDeviceItem *m_pAudioItems;
69     qsamplerDeviceItem *m_pMidiItems;
70    
71     void hideEvent(QHideEvent* pHideEvent);
72    
73     private:
74     Ui::qsamplerDeviceForm ui;
75    
76     DeviceParamModel deviceParamModel;
77     DeviceParamDelegate deviceParamDelegate;
78    
79     DeviceParamModel devicePortParamModel;
80     DeviceParamDelegate devicePortParamDelegate;
81     };
82    
83     } // namespace QSampler
84    
85 capela 1464 #endif // __qsamplerDeviceForm_h
86    
87    
88     // end of qsamplerDeviceForm.h

  ViewVC Help
Powered by ViewVC