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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 371 by capela, Fri Feb 11 15:36:06 2005 UTC revision 1464 by capela, Thu Nov 1 17:14:21 2007 UTC
# Line 1  Line 1 
1  // qsamplerChannel.h  // qsamplerChannel.h
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2003-2005, rncbc aka Rui Nuno Capela. All rights reserved.     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     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 13  Line 14 
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.     GNU General Public License for more details.
16    
17     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License along
18     along with this program; if not, write to the Free Software     with this program; if not, write to the Free Software Foundation, Inc.,
19     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20    
21  *****************************************************************************/  *****************************************************************************/
22    
23  #ifndef __qsamplerChannel_h  #ifndef __qsamplerChannel_h
24  #define __qsamplerChannel_h  #define __qsamplerChannel_h
25    
26  #include <qobject.h>  #include <QTableWidgetItem>
27    #include <QAbstractTableModel>
28    #include <QMetaType>
29    #include <QItemDelegate>
30    #include <QFontMetrics>
31    #include <QModelIndex>
32    #include <QSize>
33    
34  #include <lscp/client.h>  #include <lscp/client.h>
35  #include <lscp/device.h>  #include <lscp/device.h>
36    
37  #include "qsamplerOptions.h"  #include "qsamplerOptions.h"
38    
39  class qsamplerMainForm;  class qsamplerDevice;
40    
41    
42    // Typedef'd QMap.
43    typedef QMap<int, int> qsamplerChannelRoutingMap;
44    
45    
46  //-------------------------------------------------------------------------  //-------------------------------------------------------------------------
# Line 40  class qsamplerChannel Line 51  class qsamplerChannel
51  {  {
52  public:  public:
53    
54      // Constructor.          // Constructor.
55      qsamplerChannel(qsamplerMainForm *pMainForm, int iChannelID = -1);          qsamplerChannel(int iChannelID = -1);
56      // Default destructor.          // Default destructor.
57      ~qsamplerChannel();          ~qsamplerChannel();
58    
59      // Main application options accessor.          // Add/remove sampler channel methods.
60      qsamplerOptions *options();          bool     addChannel();
61            bool     removeChannel();
62      // LSCP client descriptor accessor.  
63      lscp_client_t * client();          // Sampler channel ID accessors.
64            int      channelID() const;
65      // Add/remove sampler channel methods.          void     setChannelID(int iChannelID);
66      bool     addChannel();  
67      bool     removeChannel();          // Readable channel name.
68            QString  channelName() const;
69      // Sampler channel ID accessors.  
70      int      channelID();          // Engine name property.
71      void     setChannelID(int iChannelID);          const QString& engineName() const;
72                bool     loadEngine(const QString& sEngineName);
73      // Readable channel name.  
74      QString  channelName();          // Instrument file and index.
75            const QString& instrumentFile() const;
76      // Engine name property.          int      instrumentNr() const;
77      QString& engineName();          const QString& instrumentName() const;
78      bool     loadEngine(const QString& sEngineName);          int      instrumentStatus() const;
79        
80      // Instrument file and index.          // Instrument file loader.
81      QString& instrumentName();          bool     loadInstrument(const QString& sInstrumentFile, int iInstrumentNr);
82      QString& instrumentFile();          // Special instrument file/name/number settler.
83      int      instrumentNr();          bool     setInstrument(const QString& sInstrumentFile, int iInstrumentNr);
84      int      instrumentStatus();  
85      bool     loadInstrument(const QString& sInstrumentFile, int iInstrumentNr);          // MIDI input driver (DEPRECATED).
86            const QString& midiDriver() const;
87      // MIDI input driver (DEPRECATED).          bool     setMidiDriver(const QString& sMidiDriver);
88      QString& midiDriver();  
89      bool     setMidiDriver(const QString& sMidiDriver);          // MIDI input device.
90                int      midiDevice() const;
91      // MIDI input device.          bool     setMidiDevice(int iMidiDevice);
92      int      midiDevice();  
93      bool     setMidiDevice(int iMidiDevice);          // MIDI input port.
94                int      midiPort() const;
95      // MIDI input port.          bool     setMidiPort(int iMidiPort);
96      int      midiPort();  
97      bool     setMidiPort(int iMidiPort);          // MIDI input channel.
98                int      midiChannel() const;
99      // MIDI input channel.          bool     setMidiChannel(int iMidiChannel);
100      int      midiChannel();  
101      bool     setMidiChannel(int iMidiChannel);          // MIDI instrument map.
102                int      midiMap() const;
103      // Audio output driver (DEPRECATED).          bool     setMidiMap(int iMidiMap);
104      QString& audioDriver();  
105      bool     setAudioDriver(const QString& sAudioDriver);          // Audio output driver (DEPRECATED).
106            const QString& audioDriver() const;
107      // Audio output device.          bool     setAudioDriver(const QString& sAudioDriver);
108      int      audioDevice();  
109      bool     setAudioDevice(int iAudioDevice);          // Audio output device.
110                int      audioDevice() const;
111      // Sampler channel volume.          bool     setAudioDevice(int iAudioDevice);
112      float    volume();  
113      bool     setVolume(float fVolume);          // Sampler channel volume.
114            float    volume() const;
115      // Istrument name remapper.          bool     setVolume(float fVolume);
116      void     updateInstrumentName();  
117            // Sampler channel mute state.
118      // Channel info structure map executive.          bool     channelMute() const;
119      bool     updateChannelInfo();          bool     setChannelMute(bool bMute);
120    
121      // Reset channel method.          // Sampler channel solo state.
122      bool     resetChannel();          bool     channelSolo() const;
123            bool     setChannelSolo(bool bSolo);
124      // Channel setup dialog form.  
125      bool     channelSetup(QWidget *pParent);          // Audio routing accessors.
126            int      audioChannel(int iAudioOut) const;
127      // Message logging methods (brainlessly mapped to main form's).          bool     setAudioChannel(int iAudioOut, int iAudioIn);
128      void     appendMessages       (const QString & s);          // The audio routing map itself.
129      void     appendMessagesColor  (const QString & s, const QString & c);          const qsamplerChannelRoutingMap& audioRouting() const;
130      void     appendMessagesText   (const QString & s);  
131      void     appendMessagesError  (const QString & s);          // Istrument name remapper.
132      void     appendMessagesClient (const QString & s);          void     updateInstrumentName();
133    
134            // Channel info structure map executive.
135            bool     updateChannelInfo();
136    
137            // Channel setup dialog form.
138            bool     channelSetup(QWidget *pParent);
139    
140            // Reset channel method.
141            bool     channelReset();
142    
143            // Spawn instrument editor method.
144            bool     editChannel();
145    
146            // Message logging methods (brainlessly mapped to main form's).
147            void     appendMessages       (const QString & s) const;
148            void     appendMessagesColor  (const QString & s, const QString & c) const;
149            void     appendMessagesText   (const QString & s) const;
150            void     appendMessagesError  (const QString & s) const;
151            void     appendMessagesClient (const QString & s) const;
152    
153            // Context menu event handler.
154            void contextMenuEvent(QContextMenuEvent *pEvent);
155    
156            // Common (invalid) name-helpers.
157            static QString noEngineName();
158            static QString noInstrumentName();
159            static QString loadingInstrument();
160    
161      // Context menu event handler.          // Check whether a given file is an instrument file.
162      void contextMenuEvent(QContextMenuEvent *pEvent);          static bool isInstrumentFile (const QString& sInstrumentFile);
163    
164      // Retrieve the available instrument name(s) of an instrument file (.gig).          // Retrieve the available instrument name(s) of an instrument file (.gig).
165      static QString     getInstrumentName (const QString& sInstrumentFile,          static QString getInstrumentName (const QString& sInstrumentFile,
166                                                          int iInstrumentNr, bool bInstrumentNames);                                                          int iInstrumentNr, bool bInstrumentNames);
167      static QStringList getInstrumentList (const QString& sInstrumentFile,          static QStringList getInstrumentList (const QString& sInstrumentFile,
168                                                          bool bInstrumentNames);                                                          bool bInstrumentNames);
169    
170  private:  private:
171    
172      // Main application form reference.          // Unique channel identifier.
173      qsamplerMainForm *m_pMainForm;          int     m_iChannelID;
174    
175            // Sampler channel info map.
176            QString m_sEngineName;
177            QString m_sInstrumentName;
178            QString m_sInstrumentFile;
179            int     m_iInstrumentNr;
180            int     m_iInstrumentStatus;
181            QString m_sMidiDriver;
182            int     m_iMidiDevice;
183            int     m_iMidiPort;
184            int     m_iMidiChannel;
185            int     m_iMidiMap;
186            QString m_sAudioDriver;
187            int     m_iAudioDevice;
188            float   m_fVolume;
189            bool    m_bMute;
190            bool    m_bSolo;
191    
192            // The audio routing mapping.
193            qsamplerChannelRoutingMap m_audioRouting;
194    };
195    
196    
197    //-------------------------------------------------------------------------
198    // qsamplerChannelRoutingTable - Channel routing table widget.
199    //
200    
201      // Unique channel identifier.  #if 0
202      int     m_iChannelID;  class qsamplerChannelRoutingTable : public QTable
203    {
204            Q_OBJECT
205    
206    public:
207    
208            // Constructor.
209            qsamplerChannelRoutingTable(QWidget *pParent = 0, const char *pszName = 0);
210            // Default destructor.
211            ~qsamplerChannelRoutingTable();
212    
213            // Common parameter table renderer.
214            void refresh(qsamplerDevice *pDevice,
215                    const qsamplerChannelRoutingMap& routing);
216    
217            // Commit any pending editing.
218            void flush();
219    };
220    #endif
221    
222    struct ChannelRoutingItem {
223        QStringList options;
224        int         selection;
225    };
226    
227    // so we can use it i.e. through QVariant
228    Q_DECLARE_METATYPE(ChannelRoutingItem)
229    
230    class ChannelRoutingModel : public QAbstractTableModel {
231            Q_OBJECT
232        public:
233            ChannelRoutingModel(QObject* parent = 0);
234    
235            // overridden methods from subclass(es)
236            int rowCount(const QModelIndex &parent) const;
237            int columnCount(const QModelIndex &parent) const;
238            QVariant data(const QModelIndex &index, int role) const;
239            QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
240    
241        public slots:
242            void refresh(qsamplerDevice *pDevice, const qsamplerChannelRoutingMap& routing);
243    
244        private:
245            qsamplerDevice* pDevice;
246            qsamplerChannelRoutingMap routing;
247    };
248    
249    class ChannelRoutingDelegate : public QItemDelegate {
250            Q_OBJECT
251        public:
252            ChannelRoutingDelegate(QObject* parent = 0);
253    
254            QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option,
255                                  const QModelIndex& index) const;
256    
257            void setEditorData(QWidget* editor, const QModelIndex& index) const;
258            void setModelData(QWidget* editor, QAbstractItemModel* model,
259                              const QModelIndex& index) const;
260    
261            void updateEditorGeometry(QWidget* editor,
262                const QStyleOptionViewItem& option, const QModelIndex& index) const;
263    };
264    
265    
266    //-------------------------------------------------------------------------
267    // qsamplerChannelRoutingComboBox - Custom combo box for routing table.
268    //
269    
270    /*
271    class qsamplerChannelRoutingComboBox : public QTableWidgetItem
272    {
273    public:
274    
275            // Constructor.
276            qsamplerChannelRoutingComboBox(QTableWidget *pTable,
277                    const QStringList& list, const QPixmap& pixmap);
278    
279            // Public accessors.
280            void setCurrentItem(int iCurrentItem);
281            int currentItem() const;
282    
283    protected:
284    
285            // Virtual implemetations.
286            QWidget *createEditor() const;
287            void setContentFromEditor(QWidget *pWidget);
288    
289    private:
290    
291      // Sampler channel info map.          // Initial value holders
292      QString m_sEngineName;          QStringList m_list;
293      QString m_sInstrumentName;          int m_iCurrentItem;
     QString m_sInstrumentFile;  
     int     m_iInstrumentNr;  
     int     m_iInstrumentStatus;  
     QString m_sMidiDriver;          // DEPRECATED.  
     int     m_iMidiDevice;  
     int     m_iMidiPort;  
     int     m_iMidiChannel;  
     QString m_sAudioDriver;         // DEPRECATED.  
     int     m_iAudioDevice;  
     float   m_fVolume;  
294  };  };
295    */
296    
297  #endif  // __qsamplerChannel_h  #endif  // __qsamplerChannel_h
298    

Legend:
Removed from v.371  
changed lines
  Added in v.1464

  ViewVC Help
Powered by ViewVC