/[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 303 by capela, Fri Nov 19 10:18:59 2004 UTC revision 371 by capela, Fri Feb 11 15:36:06 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 67  public: Line 67  public:
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 100  public: Line 101  public:
101      float    volume();      float    volume();
102      bool     setVolume(float fVolume);      bool     setVolume(float fVolume);
103    
104        // Istrument name remapper.
105        void     updateInstrumentName();
106    
107      // Channel info structure map executive.      // Channel info structure map executive.
108      bool     updateChannelInfo();      bool     updateChannelInfo();
109    
# Line 120  public: Line 124  public:
124      void contextMenuEvent(QContextMenuEvent *pEvent);      void contextMenuEvent(QContextMenuEvent *pEvent);
125    
126      // Retrieve the available instrument name(s) of an instrument file (.gig).      // Retrieve the available instrument name(s) of an instrument file (.gig).
127      static QString     getInstrumentName (const QString& sInstrumentFile, int iInstrumentNr);      static QString     getInstrumentName (const QString& sInstrumentFile,
128      static QStringList getInstrumentList (const QString& sInstrumentFile);                                                          int iInstrumentNr, bool bInstrumentNames);
129        static QStringList getInstrumentList (const QString& sInstrumentFile,
130                                                            bool bInstrumentNames);
131    
132  private:  private:
133    
# Line 133  private: Line 139  private:
139    
140      // Sampler channel info map.      // Sampler channel info map.
141      QString m_sEngineName;      QString m_sEngineName;
142        QString m_sInstrumentName;
143      QString m_sInstrumentFile;      QString m_sInstrumentFile;
144      int     m_iInstrumentNr;      int     m_iInstrumentNr;
145      int     m_iInstrumentStatus;      int     m_iInstrumentStatus;

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

  ViewVC Help
Powered by ViewVC