/[svn]/qsampler/trunk/src/qsamplerOptions.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerOptions.cpp

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

revision 1504 by capela, Wed Nov 21 11:46:40 2007 UTC revision 1803 by schoenebeck, Sun Dec 7 13:58:16 2008 UTC
# Line 1  Line 1 
1  // qsamplerOptions.cpp  // qsamplerOptions.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2008, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007, Christian Schoenebeck     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
# Line 22  Line 22 
22    
23  #include "qsamplerAbout.h"  #include "qsamplerAbout.h"
24  #include "qsamplerOptions.h"  #include "qsamplerOptions.h"
25    #include "qsamplerMainForm.h"
26    
27  #include <QTextStream>  #include <QTextStream>
28  #include <QComboBox>  #include <QComboBox>
# Line 33  Line 34 
34  #endif  #endif
35    
36    
37    namespace QSampler {
38    
39  //-------------------------------------------------------------------------  //-------------------------------------------------------------------------
40  // qsamplerOptions - Prototype settings structure.  // QSampler::Options - Prototype settings structure.
41  //  //
42    
43  // Constructor.  // Constructor.
44  qsamplerOptions::qsamplerOptions (void)  Options::Options (void)
45          : m_settings(QSAMPLER_DOMAIN, QSAMPLER_TITLE)          : m_settings(QSAMPLER_DOMAIN, QSAMPLER_TITLE)
46  {  {
47      // Begin into general options group.          // Begin into general options group.
48      m_settings.beginGroup("/Options");          m_settings.beginGroup("/Options");
49    
50            // Load server options...
51            m_settings.beginGroup("/Server");
52            sServerHost    = m_settings.value("/ServerHost", "localhost").toString();
53            iServerPort    = m_settings.value("/ServerPort", 8888).toInt();
54            #if defined(__APPLE__)  //  Toshi Nagata 20080105
55            //  TODO: Should this be a configure option?
56            iServerTimeout = m_settings.value("/ServerTimeout", 10000).toInt();
57            #else
58            iServerTimeout = m_settings.value("/ServerTimeout", 1000).toInt();
59            #endif
60            bServerStart   = m_settings.value("/ServerStart", true).toBool();
61            #if defined(__APPLE__)  //  Toshi Nagata 20080113
62            sServerCmdLine = m_settings.value("/ServerCmdLine", "linuxsampler.starter").toString();
63            #else
64            sServerCmdLine = m_settings.value("/ServerCmdLine", "linuxsampler").toString();
65            #endif
66            iStartDelay    = m_settings.value("/StartDelay", 3).toInt();
67            m_settings.endGroup();
68    
69            // Load logging options...
70            m_settings.beginGroup("/Logging");
71            bMessagesLog     = m_settings.value("/MessagesLog", false).toBool();
72            sMessagesLogPath = m_settings.value("/MessagesLogPath", "qsampler.log").toString();
73            m_settings.endGroup();
74    
75      // Load server options...          // Load display options...
76      m_settings.beginGroup("/Server");          m_settings.beginGroup("/Display");
77      sServerHost    = m_settings.value("/ServerHost", "localhost").toString();          sDisplayFont     = m_settings.value("/DisplayFont").toString();
78      iServerPort    = m_settings.value("/ServerPort", 8888).toInt();          bDisplayEffect   = m_settings.value("/DisplayEffect", true).toBool();
79      iServerTimeout = m_settings.value("/ServerTimeout", 1000).toInt();          bAutoRefresh     = m_settings.value("/AutoRefresh", true).toBool();
80      bServerStart   = m_settings.value("/ServerStart", true).toBool();          iAutoRefreshTime = m_settings.value("/AutoRefreshTime", 1000).toInt();
81      sServerCmdLine = m_settings.value("/ServerCmdLine", "linuxsampler").toString();          iMaxVolume       = m_settings.value("/MaxVolume", 100).toInt();
82      iStartDelay    = m_settings.value("/StartDelay", 3).toInt();          sMessagesFont    = m_settings.value("/MessagesFont").toString();
83      m_settings.endGroup();          bMessagesLimit   = m_settings.value("/MessagesLimit", true).toBool();
84            iMessagesLimitLines = m_settings.value("/MessagesLimitLines", 1000).toInt();
85      // Load display options...          bConfirmRemove   = m_settings.value("/ConfirmRemove", true).toBool();
86      m_settings.beginGroup("/Display");          bKeepOnTop       = m_settings.value("/KeepOnTop", true).toBool();
87      sDisplayFont     = m_settings.value("/DisplayFont").toString();          bStdoutCapture   = m_settings.value("/StdoutCapture", true).toBool();
88      bDisplayEffect   = m_settings.value("/DisplayEffect", true).toBool();          bCompletePath    = m_settings.value("/CompletePath", true).toBool();
89      bAutoRefresh     = m_settings.value("/AutoRefresh", true).toBool();          iMaxRecentFiles  = m_settings.value("/MaxRecentFiles", 5).toInt();
90      iAutoRefreshTime = m_settings.value("/AutoRefreshTime", 1000).toInt();          iBaseFontSize    = m_settings.value("/BaseFontSize", 0).toInt();
91      iMaxVolume       = m_settings.value("/MaxVolume", 100).toInt();  // if libgig provides a fast way to retrieve instrument names even for large
92      sMessagesFont    = m_settings.value("/MessagesFont").toString();  // .gig files, then we enable this feature by default
93      bMessagesLimit   = m_settings.value("/MessagesLimit", true).toBool();  #if HAVE_LIBGIG_SETAUTOLOAD
94      iMessagesLimitLines = m_settings.value("/MessagesLimitLines", 1000).toInt();          bInstrumentNames = m_settings.value("/InstrumentNames", true).toBool();
95      bConfirmRemove   = m_settings.value("/ConfirmRemove", true).toBool();  #else
96      bKeepOnTop       = m_settings.value("/KeepOnTop", true).toBool();          bInstrumentNames = m_settings.value("/InstrumentNames", false).toBool();
97      bStdoutCapture   = m_settings.value("/StdoutCapture", true).toBool();  #endif
98      bCompletePath    = m_settings.value("/CompletePath", true).toBool();          m_settings.endGroup();
     iMaxRecentFiles  = m_settings.value("/MaxRecentFiles", 5).toInt();  
     bInstrumentNames = m_settings.value("/InstrumentNames", false).toBool();  
     m_settings.endGroup();  
   
     // And go into view options group.  
     m_settings.beginGroup("/View");  
     bMenubar     = m_settings.value("/Menubar", true).toBool();  
     bToolbar     = m_settings.value("/Toolbar", true).toBool();  
     bStatusbar   = m_settings.value("/Statusbar", true).toBool();  
     bAutoArrange = m_settings.value("/AutoArrange", true).toBool();  
     m_settings.endGroup();  
99    
100      m_settings.endGroup(); // Options group.          // And go into view options group.
101            m_settings.beginGroup("/View");
102            bMenubar     = m_settings.value("/Menubar", true).toBool();
103            bToolbar     = m_settings.value("/Toolbar", true).toBool();
104            bStatusbar   = m_settings.value("/Statusbar", true).toBool();
105            bAutoArrange = m_settings.value("/AutoArrange", true).toBool();
106            m_settings.endGroup();
107    
108            m_settings.endGroup(); // Options group.
109    
110          // Recent file list.          // Recent file list.
111          recentFiles.clear();          recentFiles.clear();
# Line 93  qsamplerOptions::qsamplerOptions (void) Line 118  qsamplerOptions::qsamplerOptions (void)
118          }          }
119          m_settings.endGroup();          m_settings.endGroup();
120    
121      // Last but not least, get the default directories.          // Sampler fine tuning settings.
122      m_settings.beginGroup("/Default");          m_settings.beginGroup("/Tuning");
123      sSessionDir    = m_settings.value("/SessionDir").toString();          iMaxVoices  = m_settings.value("/MaxVoices",  -1).toInt();
124      sInstrumentDir = m_settings.value("/InstrumentDir").toString();          iMaxStreams = m_settings.value("/MaxStreams",  -1).toInt();
125      sEngineName    = m_settings.value("/EngineName").toString();          m_settings.endGroup();
126      sAudioDriver   = m_settings.value("/AudioDriver").toString();  
127      sMidiDriver    = m_settings.value("/MidiDriver").toString();          // Last but not least, get the default directories.
128      iMidiMap       = m_settings.value("/MidiMap",  0).toInt();          m_settings.beginGroup("/Default");
129      iMidiBank      = m_settings.value("/MidiBank", 0).toInt();          sSessionDir    = m_settings.value("/SessionDir").toString();
130      iMidiProg      = m_settings.value("/MidiProg", 0).toInt();          sInstrumentDir = m_settings.value("/InstrumentDir").toString();
131      iVolume        = m_settings.value("/Volume", 100).toInt();          sEngineName    = m_settings.value("/EngineName").toString();
132      iLoadMode      = m_settings.value("/Loadmode", 0).toInt();          sAudioDriver   = m_settings.value("/AudioDriver").toString();
133      m_settings.endGroup();          sMidiDriver    = m_settings.value("/MidiDriver").toString();
134            iMidiMap       = m_settings.value("/MidiMap",  0).toInt();
135            iMidiBank      = m_settings.value("/MidiBank", 0).toInt();
136            iMidiProg      = m_settings.value("/MidiProg", 0).toInt();
137            iVolume        = m_settings.value("/Volume", 100).toInt();
138            iLoadMode      = m_settings.value("/Loadmode", 0).toInt();
139            m_settings.endGroup();
140  }  }
141    
142    
143  // Default Destructor.  // Default Destructor.
144  qsamplerOptions::~qsamplerOptions (void)  Options::~Options (void)
145  {  {
146      // Make program version available in the future.          // Make program version available in the future.
147      m_settings.beginGroup("/Program");          m_settings.beginGroup("/Program");
148      m_settings.setValue("/Version", QSAMPLER_VERSION);          m_settings.setValue("/Version", QSAMPLER_VERSION);
149      m_settings.endGroup();          m_settings.endGroup();
150    
151      // And go into general options group.          // And go into general options group.
152      m_settings.beginGroup("/Options");          m_settings.beginGroup("/Options");
153    
154      // Save server options.          // Save server options.
155      m_settings.beginGroup("/Server");          m_settings.beginGroup("/Server");
156      m_settings.setValue("/ServerHost", sServerHost);          m_settings.setValue("/ServerHost", sServerHost);
157      m_settings.setValue("/ServerPort", iServerPort);          m_settings.setValue("/ServerPort", iServerPort);
158      m_settings.setValue("/ServerTimeout", iServerTimeout);          m_settings.setValue("/ServerTimeout", iServerTimeout);
159      m_settings.setValue("/ServerStart", bServerStart);          m_settings.setValue("/ServerStart", bServerStart);
160      m_settings.setValue("/ServerCmdLine", sServerCmdLine);          m_settings.setValue("/ServerCmdLine", sServerCmdLine);
161      m_settings.setValue("/StartDelay", iStartDelay);          m_settings.setValue("/StartDelay", iStartDelay);
162      m_settings.endGroup();          m_settings.endGroup();
163    
164      // Save display options.          // Save logging options...
165      m_settings.beginGroup("/Display");          m_settings.beginGroup("/Logging");
166      m_settings.setValue("/DisplayFont", sDisplayFont);          m_settings.setValue("/MessagesLog", bMessagesLog);
167      m_settings.setValue("/DisplayEffect", bDisplayEffect);          m_settings.setValue("/MessagesLogPath", sMessagesLogPath);
168      m_settings.setValue("/AutoRefresh", bAutoRefresh);          m_settings.endGroup();
169      m_settings.setValue("/AutoRefreshTime", iAutoRefreshTime);  
170      m_settings.setValue("/MaxVolume", iMaxVolume);          // Save display options.
171      m_settings.setValue("/MessagesFont", sMessagesFont);          m_settings.beginGroup("/Display");
172      m_settings.setValue("/MessagesLimit", bMessagesLimit);          m_settings.setValue("/DisplayFont", sDisplayFont);
173      m_settings.setValue("/MessagesLimitLines", iMessagesLimitLines);          m_settings.setValue("/DisplayEffect", bDisplayEffect);
174      m_settings.setValue("/ConfirmRemove", bConfirmRemove);          m_settings.setValue("/AutoRefresh", bAutoRefresh);
175      m_settings.setValue("/KeepOnTop", bKeepOnTop);          m_settings.setValue("/AutoRefreshTime", iAutoRefreshTime);
176      m_settings.setValue("/StdoutCapture", bStdoutCapture);          m_settings.setValue("/MaxVolume", iMaxVolume);
177      m_settings.setValue("/CompletePath", bCompletePath);          m_settings.setValue("/MessagesFont", sMessagesFont);
178      m_settings.setValue("/MaxRecentFiles", iMaxRecentFiles);          m_settings.setValue("/MessagesLimit", bMessagesLimit);
179      m_settings.setValue("/InstrumentNames", bInstrumentNames);          m_settings.setValue("/MessagesLimitLines", iMessagesLimitLines);
180      m_settings.endGroup();          m_settings.setValue("/ConfirmRemove", bConfirmRemove);
181            m_settings.setValue("/KeepOnTop", bKeepOnTop);
182      // View options group.          m_settings.setValue("/StdoutCapture", bStdoutCapture);
183      m_settings.beginGroup("/View");          m_settings.setValue("/CompletePath", bCompletePath);
184      m_settings.setValue("/Menubar", bMenubar);          m_settings.setValue("/MaxRecentFiles", iMaxRecentFiles);
185      m_settings.setValue("/Toolbar", bToolbar);          m_settings.setValue("/BaseFontSize", iBaseFontSize);
186      m_settings.setValue("/Statusbar", bStatusbar);          m_settings.setValue("/InstrumentNames", bInstrumentNames);
187      m_settings.setValue("/AutoArrange", bAutoArrange);          m_settings.endGroup();
188      m_settings.endGroup();  
189            // View options group.
190            m_settings.beginGroup("/View");
191            m_settings.setValue("/Menubar", bMenubar);
192            m_settings.setValue("/Toolbar", bToolbar);
193            m_settings.setValue("/Statusbar", bStatusbar);
194            m_settings.setValue("/AutoArrange", bAutoArrange);
195            m_settings.endGroup();
196    
197      m_settings.endGroup(); // Options group.          m_settings.endGroup(); // Options group.
198    
199      // Recent file list.          // Recent file list.
200          int iFile = 0;          int iFile = 0;
201          m_settings.beginGroup("/RecentFiles");          m_settings.beginGroup("/RecentFiles");
202          QStringListIterator iter(recentFiles);          QStringListIterator iter(recentFiles);
# Line 166  qsamplerOptions::~qsamplerOptions (void) Line 204  qsamplerOptions::~qsamplerOptions (void)
204                  m_settings.setValue("/File" + QString::number(++iFile), iter.next());                  m_settings.setValue("/File" + QString::number(++iFile), iter.next());
205          m_settings.endGroup();          m_settings.endGroup();
206    
207      // Default directories.          // Sampler fine tuning settings.
208      m_settings.beginGroup("/Default");          m_settings.beginGroup("/Tuning");
209      m_settings.setValue("/SessionDir", sSessionDir);          if (iMaxVoices > 0)
210      m_settings.setValue("/InstrumentDir", sInstrumentDir);                  m_settings.setValue("/MaxVoices", iMaxVoices);
211      m_settings.setValue("/EngineName", sEngineName);          if (iMaxStreams >= 0)
212      m_settings.setValue("/AudioDriver", sAudioDriver);                  m_settings.setValue("/MaxStreams", iMaxStreams);
213      m_settings.setValue("/MidiDriver", sMidiDriver);          m_settings.endGroup();
214      m_settings.setValue("/MidiMap", iMidiMap);  
215      m_settings.setValue("/MidiBank", iMidiBank);          // Default directories.
216      m_settings.setValue("/MidiProg", iMidiProg);          m_settings.beginGroup("/Default");
217      m_settings.setValue("/Volume", iVolume);          m_settings.setValue("/SessionDir", sSessionDir);
218      m_settings.setValue("/Loadmode", iLoadMode);          m_settings.setValue("/InstrumentDir", sInstrumentDir);
219      m_settings.endGroup();          m_settings.setValue("/EngineName", sEngineName);
220            m_settings.setValue("/AudioDriver", sAudioDriver);
221            m_settings.setValue("/MidiDriver", sMidiDriver);
222            m_settings.setValue("/MidiMap", iMidiMap);
223            m_settings.setValue("/MidiBank", iMidiBank);
224            m_settings.setValue("/MidiProg", iMidiProg);
225            m_settings.setValue("/Volume", iVolume);
226            m_settings.setValue("/Loadmode", iLoadMode);
227            m_settings.endGroup();
228  }  }
229    
230  //-------------------------------------------------------------------------  //-------------------------------------------------------------------------
231  // Settings accessor.  // Settings accessor.
232  //  //
233    
234  QSettings& qsamplerOptions::settings (void)  QSettings& Options::settings (void)
235  {  {
236      return m_settings;          return m_settings;
237  }  }
238    
239    
# Line 196  QSettings& qsamplerOptions::settings (vo Line 242  QSettings& qsamplerOptions::settings (vo
242  //  //
243    
244  // Help about command line options.  // Help about command line options.
245  void qsamplerOptions::print_usage ( const char *arg0 )  void Options::print_usage ( const char *arg0 )
246  {  {
247          QTextStream out(stderr);          QTextStream out(stderr);
248          out << QObject::tr("Usage: %1 [options] [session-file]\n\n"          out << QObject::tr("Usage: %1 [options] [session-file]\n\n"
# Line 212  void qsamplerOptions::print_usage ( cons Line 258  void qsamplerOptions::print_usage ( cons
258    
259    
260  // Parse command line arguments into m_settings.  // Parse command line arguments into m_settings.
261  bool qsamplerOptions::parse_args ( int argc, char **argv )  bool Options::parse_args ( int argc, char **argv )
262  {  {
263          QTextStream out(stderr);          QTextStream out(stderr);
264      const QString sEol = "\n\n";          const QString sEol = "\n\n";
265      int iCmdArgs = 0;          int iCmdArgs = 0;
266    
267            for (int i = 1; i < argc; i++) {
268    
269      for (int i = 1; i < argc; i++) {                  if (iCmdArgs > 0) {
270                            sSessionFile += " ";
271                            sSessionFile += argv[i];
272                            iCmdArgs++;
273                            continue;
274                    }
275    
276                    QString sArg = argv[i];
277                    QString sVal = QString::null;
278                    int iEqual = sArg.indexOf("=");
279                    if (iEqual >= 0) {
280                            sVal = sArg.right(sArg.length() - iEqual - 1);
281                            sArg = sArg.left(iEqual);
282                    }
283                    else if (i < argc)
284                            sVal = argv[i + 1];
285    
286          if (iCmdArgs > 0) {                  if (sArg == "-s" || sArg == "--start") {
287              sSessionFile += " ";                          bServerStart = true;
288              sSessionFile += argv[i];                  }
289              iCmdArgs++;                  else if (sArg == "-h" || sArg == "--hostname") {
290              continue;                          if (sVal.isNull()) {
291          }                                  out << QObject::tr("Option -h requires an argument (hostname).") + sEol;
292                                    return false;
293          QString sArg = argv[i];                          }
294          QString sVal = QString::null;                          sServerHost = sVal;
295          int iEqual = sArg.indexOf("=");                          if (iEqual < 0)
296          if (iEqual >= 0) {                                  i++;
297              sVal = sArg.right(sArg.length() - iEqual - 1);                  }
298              sArg = sArg.left(iEqual);                  else if (sArg == "-p" || sArg == "--port") {
299          }                          if (sVal.isNull()) {
300          else if (i < argc)                                  out << QObject::tr("Option -p requires an argument (port).") + sEol;
301              sVal = argv[i + 1];                                  return false;
302                            }
303          if (sArg == "-s" || sArg == "--start") {                          iServerPort = sVal.toInt();
304              bServerStart = true;                          if (iEqual < 0)
305          }                                  i++;
306          else if (sArg == "-h" || sArg == "--hostname") {                  }
307              if (sVal.isNull()) {                  else if (sArg == "-?" || sArg == "--help") {
308                  out << QObject::tr("Option -h requires an argument (hostname).") + sEol;                          print_usage(argv[0]);
309                  return false;                          return false;
310              }                  }
311              sServerHost = sVal;                  else if (sArg == "-v" || sArg == "--version") {
             if (iEqual < 0)  
                 i++;  
         }  
         else if (sArg == "-p" || sArg == "--port") {  
             if (sVal.isNull()) {  
                 out << QObject::tr("Option -p requires an argument (port).") + sEol;  
                 return false;  
             }  
             iServerPort = sVal.toInt();  
             if (iEqual < 0)  
                 i++;  
         }  
         else if (sArg == "-?" || sArg == "--help") {  
             print_usage(argv[0]);  
             return false;  
         }  
         else if (sArg == "-v" || sArg == "--version") {  
312                          out << QObject::tr("Qt: %1\n").arg(qVersion());                          out << QObject::tr("Qt: %1\n").arg(qVersion());
313  #ifdef CONFIG_LIBGIG  #ifdef CONFIG_LIBGIG
314                          out << QString("%1: %2\n")                          out << QString("%1: %2\n")
# Line 273  bool qsamplerOptions::parse_args ( int a Line 319  bool qsamplerOptions::parse_args ( int a
319                                  .arg(::lscp_client_package())                                  .arg(::lscp_client_package())
320                                  .arg(::lscp_client_version());                                  .arg(::lscp_client_version());
321                          out << QObject::tr(QSAMPLER_TITLE ": %1\n").arg(QSAMPLER_VERSION);                          out << QObject::tr(QSAMPLER_TITLE ": %1\n").arg(QSAMPLER_VERSION);
322              return false;                          return false;
323          }                  }
324          else {                  else {
325              // If we don't have one by now,                          // If we don't have one by now,
326              // this will be the startup sesion file...                          // this will be the startup sesion file...
327              sSessionFile += sArg;                          sSessionFile += sArg;
328              iCmdArgs++;                          iCmdArgs++;
329          }                  }
330      }          }
331    
332      // Alright with argument parsing.          // Alright with argument parsing.
333      return true;          return true;
334  }  }
335    
336    
337  //---------------------------------------------------------------------------  //---------------------------------------------------------------------------
338  // Widget geometry persistence helper methods.  // Widget geometry persistence helper methods.
339    
340  void qsamplerOptions::loadWidgetGeometry ( QWidget *pWidget )  void Options::loadWidgetGeometry ( QWidget *pWidget )
341  {  {
342          // Try to restore old form window positioning.          // Try to restore old form window positioning.
343          if (pWidget) {          if (pWidget) {
# Line 319  void qsamplerOptions::loadWidgetGeometry Line 365  void qsamplerOptions::loadWidgetGeometry
365  }  }
366    
367    
368  void qsamplerOptions::saveWidgetGeometry ( QWidget *pWidget )  void Options::saveWidgetGeometry ( QWidget *pWidget )
369  {  {
370          // Try to save form window position...          // Try to save form window position...
371          // (due to X11 window managers ideossincrasies, we better          // (due to X11 window managers ideossincrasies, we better
# Line 342  void qsamplerOptions::saveWidgetGeometry Line 388  void qsamplerOptions::saveWidgetGeometry
388  //---------------------------------------------------------------------------  //---------------------------------------------------------------------------
389  // Combo box history persistence helper implementation.  // Combo box history persistence helper implementation.
390    
391  void qsamplerOptions::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )  void Options::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )
392  {  {
393          // Load combobox list from configuration settings file...          // Load combobox list from configuration settings file...
394          m_settings.beginGroup("/History/" + pComboBox->objectName());          m_settings.beginGroup("/History/" + pComboBox->objectName());
# Line 365  void qsamplerOptions::loadComboBoxHistor Line 411  void qsamplerOptions::loadComboBoxHistor
411  }  }
412    
413    
414  void qsamplerOptions::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )  void Options::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )
415  {  {
416          // Add current text as latest item...          // Add current text as latest item...
417          const QString& sCurrentText = pComboBox->currentText();          const QString& sCurrentText = pComboBox->currentText();
# Line 394  void qsamplerOptions::saveComboBoxHistor Line 440  void qsamplerOptions::saveComboBoxHistor
440          m_settings.endGroup();          m_settings.endGroup();
441  }  }
442    
443    int Options::getMaxVoices() {
444    #ifndef CONFIG_MAX_VOICES
445            return -1;
446    #else
447            if (iMaxVoices > 0) return iMaxVoices;
448            return getEffectiveMaxVoices();
449    #endif // CONFIG_MAX_VOICES
450    }
451    
452    int Options::getEffectiveMaxVoices() {
453    #ifndef CONFIG_MAX_VOICES
454            return -1;
455    #else
456            MainForm *pMainForm = MainForm::getInstance();
457            if (!pMainForm || !pMainForm->client())
458                    return -1;
459    
460            return ::lscp_get_voices(pMainForm->client());
461    #endif // CONFIG_MAX_VOICES
462    }
463    
464    void Options::setMaxVoices(int iMaxVoices) {
465    #ifdef CONFIG_MAX_VOICES
466            if (iMaxVoices < 1) return;
467    
468            MainForm *pMainForm = MainForm::getInstance();
469            if (!pMainForm || !pMainForm->client())
470                    return;
471    
472            lscp_status_t result =
473                    ::lscp_set_voices(pMainForm->client(), iMaxVoices);
474    
475            if (result != LSCP_OK) {
476                    pMainForm->appendMessagesClient("lscp_set_voices");
477                    return;
478            }
479    
480            this->iMaxVoices = iMaxVoices;
481    #endif // CONFIG_MAX_VOICES
482    }
483    
484    int Options::getMaxStreams() {
485    #ifndef CONFIG_MAX_VOICES
486            return -1;
487    #else
488            if (iMaxStreams > 0) return iMaxStreams;
489            return getEffectiveMaxStreams();
490    #endif // CONFIG_MAX_VOICES
491    }
492    
493    int Options::getEffectiveMaxStreams() {
494    #ifndef CONFIG_MAX_VOICES
495            return -1;
496    #else
497            MainForm *pMainForm = MainForm::getInstance();
498            if (!pMainForm || !pMainForm->client())
499                    return -1;
500    
501            return ::lscp_get_streams(pMainForm->client());
502    #endif // CONFIG_MAX_VOICES
503    }
504    
505    void Options::setMaxStreams(int iMaxStreams) {
506    #ifdef CONFIG_MAX_VOICES
507            if (iMaxStreams < 0) return;
508    
509            MainForm *pMainForm = MainForm::getInstance();
510            if (!pMainForm || !pMainForm->client())
511                    return;
512    
513            lscp_status_t result =
514                    ::lscp_set_streams(pMainForm->client(), iMaxStreams);
515    
516            if (result != LSCP_OK) {
517                    pMainForm->appendMessagesClient("lscp_set_streams");
518                    return;
519            }
520    
521            this->iMaxStreams = iMaxStreams;
522    #endif // CONFIG_MAX_VOICES
523    }
524    
525    void Options::sendFineTuningSettings() {
526            setMaxVoices(iMaxVoices);
527            setMaxStreams(iMaxStreams);
528    
529            MainForm *pMainForm = MainForm::getInstance();
530            if (!pMainForm || !pMainForm->client())
531                    return;
532    
533            pMainForm->appendMessages(QObject::tr("Sent fine tuning settings."));
534    }
535    
536    } // namespace QSampler
537    
538    
539  // end of qsamplerOptions.cpp  // end of qsamplerOptions.cpp

Legend:
Removed from v.1504  
changed lines
  Added in v.1803

  ViewVC Help
Powered by ViewVC