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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2074 - (hide annotations) (download) (as text)
Mon Mar 29 17:00:30 2010 UTC (14 years ago) by capela
File MIME type: text/x-c++hdr
File size: 2743 byte(s)
* General source tree layout and build configuration change.

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

  ViewVC Help
Powered by ViewVC