/[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 490 by capela, Fri Apr 1 00:34:58 2005 UTC revision 751 by capela, Fri Aug 19 17:10:16 2005 UTC
# Line 108  public: Line 108  public:
108          float    volume() const;          float    volume() const;
109          bool     setVolume(float fVolume);          bool     setVolume(float fVolume);
110    
111            // Sampler channel mute state.
112            bool     channelMute() const;
113            bool     setChannelMute(bool bMute);
114    
115            // Sampler channel solo state.
116            bool     channelSolo() const;
117            bool     setChannelSolo(bool bSolo);
118    
119          // Istrument name remapper.          // Istrument name remapper.
120          void     updateInstrumentName();          void     updateInstrumentName();
121    
# Line 133  public: Line 141  public:
141          // Common (invalid) name-helpers.          // Common (invalid) name-helpers.
142          static QString noEngineName();          static QString noEngineName();
143          static QString noInstrumentName();          static QString noInstrumentName();
144            static QString loadingInstrument();
145    
146          // Check whether a given file is an instrument file.          // Check whether a given file is an instrument file.
147          static bool isInstrumentFile (const QString& sInstrumentFile);          static bool isInstrumentFile (const QString& sInstrumentFile);
# Line 164  private: Line 173  private:
173          QString m_sAudioDriver;          QString m_sAudioDriver;
174          int     m_iAudioDevice;          int     m_iAudioDevice;
175          float   m_fVolume;          float   m_fVolume;
176            bool    m_bMute;
177            bool    m_bSolo;
178  };  };
179    
180  #endif  // __qsamplerChannel_h  #endif  // __qsamplerChannel_h

Legend:
Removed from v.490  
changed lines
  Added in v.751

  ViewVC Help
Powered by ViewVC