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

Contents of /qsampler/trunk/src/qsamplerChannelForm.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1510 - (show annotations) (download) (as text)
Thu Nov 22 14:17:24 2007 UTC (16 years, 5 months ago) by capela
File MIME type: text/x-c++hdr
File size: 2659 byte(s)
- Qt4 migration: code cleanup, personal standards beautification :)

1 // qsamplerChannelForm.h
2 //
3 /****************************************************************************
4 Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
5 Copyright (C) 2007, Christian Schoenebeck
6
7 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 __qsamplerChannelForm_h
24 #define __qsamplerChannelForm_h
25
26 #include "ui_qsamplerChannelForm.h"
27
28 #include "qsamplerDevice.h"
29 #include "qsamplerChannel.h"
30 #include "qsamplerDeviceForm.h"
31
32
33 namespace QSampler {
34
35 class ChannelForm : public QDialog
36 {
37 Q_OBJECT
38
39 public:
40
41 ChannelForm(QWidget* pParent = NULL);
42 ~ChannelForm();
43
44 void setup(qsamplerChannel* pChannel);
45
46 void setupDevice(qsamplerDevice* pDevice,
47 qsamplerDevice::DeviceType deviceTypeMode,
48 const QString& sDriverName);
49
50 void selectMidiDriverItem(const QString& sMidiDriver);
51 void selectMidiDeviceItem(int iMidiItem);
52 void selectAudioDriverItem(const QString& sAudioDriver);
53 void selectAudioDeviceItem(int iAudioItem);
54
55 protected slots:
56
57 void accept();
58 void reject();
59 void openInstrumentFile();
60 void updateInstrumentName();
61 void selectMidiDriver(const QString& sMidiDriver);
62 void selectMidiDevice(int iMidiItem);
63 void setupMidiDevice();
64 void selectAudioDriver(const QString& sAudioDriver);
65 void selectAudioDevice(int iAudioItem);
66 void setupAudioDevice();
67 void updateDevices();
68 void optionsChanged();
69 void stabilizeForm();
70
71 void updateTableCellRenderers();
72 void updateTableCellRenderers(
73 const QModelIndex& topLeft, const QModelIndex& bottomRight);
74
75 private:
76
77 Ui::qsamplerChannelForm m_ui;
78
79 qsamplerChannel* m_pChannel;
80 int m_iDirtySetup;
81 int m_iDirtyCount;
82 QList<qsamplerDevice *> m_audioDevices;
83 QList<qsamplerDevice *> m_midiDevices;
84 DeviceForm* m_pDeviceForm;
85 ChannelRoutingModel m_routingModel;
86 ChannelRoutingDelegate m_routingDelegate;
87 };
88
89 } // namespace QSampler
90
91 #endif // __qsamplerChannelForm_h
92
93
94 // end of qsamplerChannelForm.h

  ViewVC Help
Powered by ViewVC