/[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 264 by capela, Wed Sep 29 13:12:45 2004 UTC revision 344 by capela, Tue Jan 18 13:53:04 2005 UTC
# Line 1  Line 1 
1  // qsamplerChannel.h  // qsamplerChannel.h
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2003-2004, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2003-2005, rncbc aka Rui Nuno Capela. All rights reserved.
5    
6     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
7     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 50  public: Line 50  public:
50    
51      // LSCP client descriptor accessor.      // LSCP client descriptor accessor.
52      lscp_client_t * client();      lscp_client_t * client();
53        
54        // Add/remove sampler channel methods.
55        bool     addChannel();
56        bool     removeChannel();
57    
58      // Sampler channel ID accessors.      // Sampler channel ID accessors.
59      int      channelID();      int      channelID();
60      void     setChannelID(int iChannelID);      void     setChannelID(int iChannelID);
61            
62        // Readable channel name.
63        QString  channelName();
64    
65      // Engine name property.      // Engine name property.
66      QString& engineName();      QString& engineName();
67      bool     loadEngine(const QString& sEngineName);      bool     loadEngine(const QString& sEngineName);
68            
69      // Instrument file and index.      // Instrument file and index.
70        QString& instrumentName();
71      QString& instrumentFile();      QString& instrumentFile();
72      int      instrumentNr();      int      instrumentNr();
73      int      instrumentStatus();      int      instrumentStatus();
74      bool     loadInstrument(const QString& sInstrumentFile, int iInstrumentNr);      bool     loadInstrument(const QString& sInstrumentFile, int iInstrumentNr);
75        
76      // MIDI input driver (DEPRECATED).      // MIDI input driver (DEPRECATED).
77      QString& midiDriver();      QString& midiDriver();
78      bool     setMidiDriver(const QString& sMidiDriver);      bool     setMidiDriver(const QString& sMidiDriver);
# Line 94  public: Line 102  public:
102      bool     setVolume(float fVolume);      bool     setVolume(float fVolume);
103    
104      // Channel info structure map executive.      // Channel info structure map executive.
105      void updateChannelInfo();      bool     updateChannelInfo();
106    
107      // Reset channel method.      // Reset channel method.
108      void resetChannel();      bool     resetChannel();
109    
110        // Channel setup dialog form.
111        bool     channelSetup(QWidget *pParent);
112    
113      // Message logging methods (brainlessly mapped to main form's).      // Message logging methods (brainlessly mapped to main form's).
114      void appendMessages       (const QString & s);      void     appendMessages       (const QString & s);
115      void appendMessagesColor  (const QString & s, const QString & c);      void     appendMessagesColor  (const QString & s, const QString & c);
116      void appendMessagesText   (const QString & s);      void     appendMessagesText   (const QString & s);
117      void appendMessagesError  (const QString & s);      void     appendMessagesError  (const QString & s);
118      void appendMessagesClient (const QString & s);      void     appendMessagesClient (const QString & s);
119    
120        // Context menu event handler.
121        void contextMenuEvent(QContextMenuEvent *pEvent);
122    
123        // Retrieve the available instrument name(s) of an instrument file (.gig).
124        static QString     getInstrumentName (const QString& sInstrumentFile,
125                                                            int iInstrumentNr, bool bInstrumentNames);
126        static QStringList getInstrumentList (const QString& sInstrumentFile,
127                                                            bool bInstrumentNames);
128    
129  private:  private:
130    
# Line 116  private: Line 136  private:
136    
137      // Sampler channel info map.      // Sampler channel info map.
138      QString m_sEngineName;      QString m_sEngineName;
139        QString m_sInstrumentName;
140      QString m_sInstrumentFile;      QString m_sInstrumentFile;
141      int     m_iInstrumentNr;      int     m_iInstrumentNr;
142      int     m_iInstrumentStatus;      int     m_iInstrumentStatus;

Legend:
Removed from v.264  
changed lines
  Added in v.344

  ViewVC Help
Powered by ViewVC