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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1366 - (hide annotations) (download) (as text)
Mon Oct 1 18:26:06 2007 UTC (16 years, 6 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 6621 byte(s)
* Added new button "Edit" to the channel strips, which probably
  does exactly what you think it does: it opens an appropriate
  instrument editor application.

1 capela 264 // qsamplerChannel.h
2     //
3     /****************************************************************************
4 capela 1022 Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
5 capela 264
6     This program is free software; you can redistribute it and/or
7     modify it under the terms of the GNU General Public License
8     as published by the Free Software Foundation; either version 2
9     of the License, or (at your option) any later version.
10    
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     GNU General Public License for more details.
15    
16 capela 920 You should have received a copy of the GNU General Public License along
17     with this program; if not, write to the Free Software Foundation, Inc.,
18     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 capela 264
20     *****************************************************************************/
21    
22     #ifndef __qsamplerChannel_h
23     #define __qsamplerChannel_h
24    
25 capela 758 #include <qtable.h>
26 capela 264
27     #include <lscp/client.h>
28     #include <lscp/device.h>
29    
30     #include "qsamplerOptions.h"
31    
32 capela 758 class qsamplerDevice;
33 capela 264
34    
35 capela 758 // Typedef'd QMap.
36     typedef QMap<int, int> qsamplerChannelRoutingMap;
37    
38    
39 capela 264 //-------------------------------------------------------------------------
40     // qsamplerChannel - Sampler channel structure.
41     //
42    
43     class qsamplerChannel
44     {
45     public:
46    
47 capela 467 // Constructor.
48 capela 961 qsamplerChannel(int iChannelID = -1);
49 capela 467 // Default destructor.
50     ~qsamplerChannel();
51 capela 264
52 capela 467 // Add/remove sampler channel methods.
53     bool addChannel();
54     bool removeChannel();
55 capela 295
56 capela 467 // Sampler channel ID accessors.
57 capela 484 int channelID() const;
58 capela 467 void setChannelID(int iChannelID);
59 capela 295
60 capela 467 // Readable channel name.
61 capela 484 QString channelName() const;
62 capela 467
63     // Engine name property.
64 capela 484 const QString& engineName() const;
65 capela 467 bool loadEngine(const QString& sEngineName);
66    
67     // Instrument file and index.
68 capela 484 const QString& instrumentFile() const;
69     int instrumentNr() const;
70     const QString& instrumentName() const;
71     int instrumentStatus() const;
72 capela 490
73 capela 484 // Instrument file loader.
74 capela 467 bool loadInstrument(const QString& sInstrumentFile, int iInstrumentNr);
75 capela 388 // Special instrument file/name/number settler.
76 capela 467 bool setInstrument(const QString& sInstrumentFile, int iInstrumentNr);
77 capela 344
78 capela 467 // MIDI input driver (DEPRECATED).
79 capela 484 const QString& midiDriver() const;
80 capela 467 bool setMidiDriver(const QString& sMidiDriver);
81 capela 264
82 capela 467 // MIDI input device.
83 capela 484 int midiDevice() const;
84 capela 467 bool setMidiDevice(int iMidiDevice);
85 capela 264
86 capela 467 // MIDI input port.
87 capela 484 int midiPort() const;
88 capela 467 bool setMidiPort(int iMidiPort);
89 capela 371
90 capela 467 // MIDI input channel.
91 capela 484 int midiChannel() const;
92 capela 467 bool setMidiChannel(int iMidiChannel);
93 capela 264
94 capela 980 // MIDI instrument map.
95     int midiMap() const;
96     bool setMidiMap(int iMidiMap);
97    
98 capela 467 // Audio output driver (DEPRECATED).
99 capela 484 const QString& audioDriver() const;
100 capela 467 bool setAudioDriver(const QString& sAudioDriver);
101 capela 303
102 capela 467 // Audio output device.
103 capela 484 int audioDevice() const;
104 capela 467 bool setAudioDevice(int iAudioDevice);
105 capela 400
106 capela 467 // Sampler channel volume.
107 capela 484 float volume() const;
108 capela 467 bool setVolume(float fVolume);
109 capela 264
110 capela 751 // Sampler channel mute state.
111     bool channelMute() const;
112     bool setChannelMute(bool bMute);
113    
114     // Sampler channel solo state.
115     bool channelSolo() const;
116     bool setChannelSolo(bool bSolo);
117    
118 capela 758 // Audio routing accessors.
119     int audioChannel(int iAudioOut) const;
120     bool setAudioChannel(int iAudioOut, int iAudioIn);
121     // The audio routing map itself.
122     const qsamplerChannelRoutingMap& audioRouting() const;
123    
124 capela 467 // Istrument name remapper.
125     void updateInstrumentName();
126 capela 303
127 capela 467 // Channel info structure map executive.
128     bool updateChannelInfo();
129    
130     // Channel setup dialog form.
131     bool channelSetup(QWidget *pParent);
132    
133     // Reset channel method.
134     bool channelReset();
135    
136 schoenebeck 1366 // Spawn instrument editor method.
137     bool editChannel();
138    
139 capela 467 // Message logging methods (brainlessly mapped to main form's).
140 capela 484 void appendMessages (const QString & s) const;
141     void appendMessagesColor (const QString & s, const QString & c) const;
142     void appendMessagesText (const QString & s) const;
143     void appendMessagesError (const QString & s) const;
144     void appendMessagesClient (const QString & s) const;
145 capela 467
146     // Context menu event handler.
147     void contextMenuEvent(QContextMenuEvent *pEvent);
148    
149 capela 388 // Common (invalid) name-helpers.
150 capela 467 static QString noEngineName();
151     static QString noInstrumentName();
152 schoenebeck 519 static QString loadingInstrument();
153 capela 388
154     // Check whether a given file is an instrument file.
155     static bool isInstrumentFile (const QString& sInstrumentFile);
156    
157 capela 467 // Retrieve the available instrument name(s) of an instrument file (.gig).
158     static QString getInstrumentName (const QString& sInstrumentFile,
159 capela 344 int iInstrumentNr, bool bInstrumentNames);
160 capela 467 static QStringList getInstrumentList (const QString& sInstrumentFile,
161 capela 344 bool bInstrumentNames);
162 capela 299
163 capela 264 private:
164    
165 capela 467 // Unique channel identifier.
166     int m_iChannelID;
167 capela 264
168 capela 467 // Sampler channel info map.
169     QString m_sEngineName;
170     QString m_sInstrumentName;
171     QString m_sInstrumentFile;
172     int m_iInstrumentNr;
173     int m_iInstrumentStatus;
174 capela 490 QString m_sMidiDriver;
175 capela 467 int m_iMidiDevice;
176     int m_iMidiPort;
177     int m_iMidiChannel;
178 capela 980 int m_iMidiMap;
179 capela 490 QString m_sAudioDriver;
180 capela 467 int m_iAudioDevice;
181     float m_fVolume;
182 capela 751 bool m_bMute;
183     bool m_bSolo;
184 capela 758
185     // The audio routing mapping.
186     qsamplerChannelRoutingMap m_audioRouting;
187 capela 264 };
188    
189 capela 758
190     //-------------------------------------------------------------------------
191     // qsamplerChannelRoutingTable - Channel routing table widget.
192     //
193    
194     class qsamplerChannelRoutingTable : public QTable
195     {
196     Q_OBJECT
197    
198     public:
199    
200     // Constructor.
201     qsamplerChannelRoutingTable(QWidget *pParent = 0, const char *pszName = 0);
202     // Default destructor.
203     ~qsamplerChannelRoutingTable();
204    
205     // Common parameter table renderer.
206     void refresh(qsamplerDevice *pDevice,
207     const qsamplerChannelRoutingMap& routing);
208 capela 767
209     // Commit any pending editing.
210     void flush();
211 capela 758 };
212    
213    
214 capela 759 //-------------------------------------------------------------------------
215     // qsamplerChannelRoutingComboBox - Custom combo box for routing table.
216     //
217    
218     class qsamplerChannelRoutingComboBox : public QTableItem
219     {
220     public:
221    
222     // Constructor.
223     qsamplerChannelRoutingComboBox(QTable *pTable,
224     const QStringList& list, const QPixmap& pixmap);
225    
226     // Public accessors.
227     void setCurrentItem(int iCurrentItem);
228     int currentItem() const;
229    
230     protected:
231    
232     // Virtual implemetations.
233     QWidget *createEditor() const;
234     void setContentFromEditor(QWidget *pWidget);
235    
236     private:
237    
238     // Initial value holders
239     QStringList m_list;
240     int m_iCurrentItem;
241     };
242    
243    
244 capela 264 #endif // __qsamplerChannel_h
245    
246    
247     // end of qsamplerChannel.h

  ViewVC Help
Powered by ViewVC