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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1489 - (show annotations) (download) (as text)
Mon Nov 19 03:29:57 2007 UTC (16 years, 5 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 2773 byte(s)
* Qt4 migration: finished channel setup dialog
* cosmetical fixes of channel strip

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 #include <Q3PtrList>
33
34 namespace QSampler {
35
36 class ChannelForm : public QDialog {
37 Q_OBJECT
38 public:
39 ChannelForm(QWidget* parent = 0);
40 ~ChannelForm();
41
42 void setup(qsamplerChannel* pChannel);
43 void setupDevice(qsamplerDevice* pDevice, qsamplerDevice::qsamplerDeviceType deviceTypeMode, const QString& sDriverName);
44 void selectMidiDriverItem(const QString& sMidiDriver);
45 void selectMidiDeviceItem(int iMidiItem);
46 void selectAudioDriverItem(const QString& sAudioDriver);
47 void selectAudioDeviceItem(int iAudioItem);
48
49 protected:
50 qsamplerChannel* m_pChannel;
51 int m_iDirtySetup;
52 int m_iDirtyCount;
53 Q3PtrList<qsamplerDevice> m_audioDevices;
54 Q3PtrList<qsamplerDevice> m_midiDevices;
55 DeviceForm* m_pDeviceForm;
56 ChannelRoutingModel routingModel;
57 ChannelRoutingDelegate routingDelegate;
58
59 protected slots:
60 void accept();
61 void reject();
62 void openInstrumentFile();
63 void updateInstrumentName();
64 void selectMidiDriver(const QString& sMidiDriver);
65 void selectMidiDevice(int iMidiItem);
66 void setupMidiDevice();
67 void selectAudioDriver(const QString& sAudioDriver);
68 void selectAudioDevice(int iAudioItem);
69 void setupAudioDevice();
70 void updateDevices();
71 void optionsChanged();
72 void stabilizeForm();
73 void updateTableCellRenderers();
74 void updateTableCellRenderers(const QModelIndex& topLeft, const QModelIndex& bottomRight);
75
76 private:
77 Ui::qsamplerChannelForm ui;
78 };
79
80 } // namespace QSampler
81
82 #endif // __qsamplerChannelForm_h
83
84
85 // end of qsamplerChannelForm.h

  ViewVC Help
Powered by ViewVC