/[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 1890 by capela, Tue Apr 28 09:06:43 2009 UTC revision 3796 by capela, Mon Jun 29 08:52:33 2020 UTC
# Line 1  Line 1 
1  // qsamplerOptions.cpp  // qsamplerOptions.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004-2009, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2020, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007, Christian Schoenebeck     Copyright (C) 2007,2008,2015 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 27  Line 27 
27  #include <QTextStream>  #include <QTextStream>
28  #include <QComboBox>  #include <QComboBox>
29    
30    #include <QApplication>
31    
32    #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
33    #include <QDesktopWidget>
34    #endif
35    
36  #include <lscp/client.h>  #include <lscp/client.h>
37    
38  #ifdef CONFIG_LIBGIG  #ifdef CONFIG_LIBGIG
# Line 44  namespace QSampler { Line 50  namespace QSampler {
50  Options::Options (void)  Options::Options (void)
51          : m_settings(QSAMPLER_DOMAIN, QSAMPLER_TITLE)          : m_settings(QSAMPLER_DOMAIN, QSAMPLER_TITLE)
52  {  {
53            loadOptions();
54    }
55    
56    
57    // Default Destructor.
58    Options::~Options (void)
59    {
60            saveOptions();
61    }
62    
63    
64    // Explicit load method.
65    void Options::loadOptions (void)
66    {
67          // Begin into general options group.          // Begin into general options group.
68          m_settings.beginGroup("/Options");          m_settings.beginGroup("/Options");
69    
# Line 51  Options::Options (void) Line 71  Options::Options (void)
71          m_settings.beginGroup("/Server");          m_settings.beginGroup("/Server");
72          sServerHost    = m_settings.value("/ServerHost", "localhost").toString();          sServerHost    = m_settings.value("/ServerHost", "localhost").toString();
73          iServerPort    = m_settings.value("/ServerPort", 8888).toInt();          iServerPort    = m_settings.value("/ServerPort", 8888).toInt();
74          #if defined(__APPLE__)  //  Toshi Nagata 20080105  #if defined(__APPLE__)  //  Toshi Nagata 20080105
75          //  TODO: Should this be a configure option?          //  TODO: Should this be a configure option?
76          iServerTimeout = m_settings.value("/ServerTimeout", 10000).toInt();          iServerTimeout = m_settings.value("/ServerTimeout", 10000).toInt();
77          #else  #else
78          iServerTimeout = m_settings.value("/ServerTimeout", 1000).toInt();          iServerTimeout = m_settings.value("/ServerTimeout", 1000).toInt();
79          #endif  #endif
80          bServerStart   = m_settings.value("/ServerStart", true).toBool();          bServerStart   = m_settings.value("/ServerStart", true).toBool();
81          #if defined(__APPLE__)  //  Toshi Nagata 20080113  #if defined(__APPLE__)
82          sServerCmdLine = m_settings.value("/ServerCmdLine", "linuxsampler.starter").toString();          sServerCmdLine = m_settings.value("/ServerCmdLine", "/usr/local/bin/linuxsampler").toString();
83          #else  #else
84          sServerCmdLine = m_settings.value("/ServerCmdLine", "linuxsampler").toString();          sServerCmdLine = m_settings.value("/ServerCmdLine", "linuxsampler").toString();
85          #endif  #endif
86          iStartDelay    = m_settings.value("/StartDelay", 3).toInt();          iStartDelay    = m_settings.value("/StartDelay", 3).toInt();
87          m_settings.endGroup();          m_settings.endGroup();
88    
# Line 83  Options::Options (void) Line 103  Options::Options (void)
103          bMessagesLimit   = m_settings.value("/MessagesLimit", true).toBool();          bMessagesLimit   = m_settings.value("/MessagesLimit", true).toBool();
104          iMessagesLimitLines = m_settings.value("/MessagesLimitLines", 1000).toInt();          iMessagesLimitLines = m_settings.value("/MessagesLimitLines", 1000).toInt();
105          bConfirmRemove   = m_settings.value("/ConfirmRemove", true).toBool();          bConfirmRemove   = m_settings.value("/ConfirmRemove", true).toBool();
106            bConfirmReset    = m_settings.value("/ConfirmReset", true).toBool();
107            bConfirmRestart  = m_settings.value("/ConfirmRestart", true).toBool();
108            bConfirmError    = m_settings.value("/ConfirmError", true).toBool();
109          bKeepOnTop       = m_settings.value("/KeepOnTop", true).toBool();          bKeepOnTop       = m_settings.value("/KeepOnTop", true).toBool();
110          bStdoutCapture   = m_settings.value("/StdoutCapture", true).toBool();          bStdoutCapture   = m_settings.value("/StdoutCapture", true).toBool();
111          bCompletePath    = m_settings.value("/CompletePath", true).toBool();          bCompletePath    = m_settings.value("/CompletePath", true).toBool();
# Line 90  Options::Options (void) Line 113  Options::Options (void)
113          iBaseFontSize    = m_settings.value("/BaseFontSize", 0).toInt();          iBaseFontSize    = m_settings.value("/BaseFontSize", 0).toInt();
114  // if libgig provides a fast way to retrieve instrument names even for large  // if libgig provides a fast way to retrieve instrument names even for large
115  // .gig files, then we enable this feature by default  // .gig files, then we enable this feature by default
116  #if HAVE_LIBGIG_SETAUTOLOAD  #ifdef CONFIG_LIBGIG_SETAUTOLOAD
117          bInstrumentNames = m_settings.value("/InstrumentNames", true).toBool();          bInstrumentNames = m_settings.value("/InstrumentNames", true).toBool();
118  #else  #else
119          bInstrumentNames = m_settings.value("/InstrumentNames", false).toBool();          bInstrumentNames = m_settings.value("/InstrumentNames", false).toBool();
120  #endif  #endif
121          m_settings.endGroup();          m_settings.endGroup();
122    
123            // Load custom options...
124            m_settings.beginGroup("/Custom");
125            sCustomColorTheme = m_settings.value("/ColorTheme").toString();
126            sCustomStyleTheme = m_settings.value("/StyleTheme").toString();
127            m_settings.endGroup();
128    
129          // And go into view options group.          // And go into view options group.
130          m_settings.beginGroup("/View");          m_settings.beginGroup("/View");
131          bMenubar     = m_settings.value("/Menubar", true).toBool();          bMenubar     = m_settings.value("/Menubar", true).toBool();
# Line 140  Options::Options (void) Line 169  Options::Options (void)
169  }  }
170    
171    
172  // Default Destructor.  // Explicit save method.
173  Options::~Options (void)  void Options::saveOptions (void)
174  {  {
175          // Make program version available in the future.          // Make program version available in the future.
176          m_settings.beginGroup("/Program");          m_settings.beginGroup("/Program");
177          m_settings.setValue("/Version", QSAMPLER_VERSION);          m_settings.setValue("/Version", CONFIG_BUILD_VERSION);
178          m_settings.endGroup();          m_settings.endGroup();
179    
180          // And go into general options group.          // And go into general options group.
# Line 178  Options::~Options (void) Line 207  Options::~Options (void)
207          m_settings.setValue("/MessagesLimit", bMessagesLimit);          m_settings.setValue("/MessagesLimit", bMessagesLimit);
208          m_settings.setValue("/MessagesLimitLines", iMessagesLimitLines);          m_settings.setValue("/MessagesLimitLines", iMessagesLimitLines);
209          m_settings.setValue("/ConfirmRemove", bConfirmRemove);          m_settings.setValue("/ConfirmRemove", bConfirmRemove);
210            m_settings.setValue("/ConfirmReset", bConfirmReset);
211            m_settings.setValue("/ConfirmRestart", bConfirmRestart);
212            m_settings.setValue("/ConfirmError", bConfirmError);
213          m_settings.setValue("/KeepOnTop", bKeepOnTop);          m_settings.setValue("/KeepOnTop", bKeepOnTop);
214          m_settings.setValue("/StdoutCapture", bStdoutCapture);          m_settings.setValue("/StdoutCapture", bStdoutCapture);
215          m_settings.setValue("/CompletePath", bCompletePath);          m_settings.setValue("/CompletePath", bCompletePath);
# Line 186  Options::~Options (void) Line 218  Options::~Options (void)
218          m_settings.setValue("/InstrumentNames", bInstrumentNames);          m_settings.setValue("/InstrumentNames", bInstrumentNames);
219          m_settings.endGroup();          m_settings.endGroup();
220    
221            // Save custom options...
222            m_settings.beginGroup("/Custom");
223            m_settings.setValue("/ColorTheme", sCustomColorTheme);
224            m_settings.setValue("/StyleTheme", sCustomStyleTheme);
225            m_settings.endGroup();
226    
227          // View options group.          // View options group.
228          m_settings.beginGroup("/View");          m_settings.beginGroup("/View");
229          m_settings.setValue("/Menubar", bMenubar);          m_settings.setValue("/Menubar", bMenubar);
# Line 225  Options::~Options (void) Line 263  Options::~Options (void)
263          m_settings.setValue("/Volume", iVolume);          m_settings.setValue("/Volume", iVolume);
264          m_settings.setValue("/Loadmode", iLoadMode);          m_settings.setValue("/Loadmode", iLoadMode);
265          m_settings.endGroup();          m_settings.endGroup();
266    
267            // Save/commit to disk.
268            m_settings.sync();
269  }  }
270    
271    
272  //-------------------------------------------------------------------------  //-------------------------------------------------------------------------
273  // Settings accessor.  // Settings accessor.
274  //  //
# Line 249  void Options::print_usage ( const QStrin Line 291  void Options::print_usage ( const QStrin
291                  QSAMPLER_TITLE " - " QSAMPLER_SUBTITLE "\n\n"                  QSAMPLER_TITLE " - " QSAMPLER_SUBTITLE "\n\n"
292                  "Options:\n\n"                  "Options:\n\n"
293                  "  -s, --start\n\tStart linuxsampler server locally\n\n"                  "  -s, --start\n\tStart linuxsampler server locally\n\n"
294                  "  -h, --hostname\n\tSpecify linuxsampler server hostname\n\n"                  "  -h, --hostname\n\tSpecify linuxsampler server hostname (default = localhost)\n\n"
295                  "  -p, --port\n\tSpecify linuxsampler server port number\n\n"                  "  -p, --port\n\tSpecify linuxsampler server port number (default = 8888)\n\n"
296                  "  -?, --help\n\tShow help about command line options\n\n"                  "  -?, --help\n\tShow help about command line options\n\n"
297                  "  -v, --version\n\tShow version information\n\n")                  "  -v, --version\n\tShow version information\n\n")
298                  .arg(arg0);                  .arg(arg0);
# Line 262  bool Options::parse_args ( const QString Line 304  bool Options::parse_args ( const QString
304  {  {
305          QTextStream out(stderr);          QTextStream out(stderr);
306          const QString sEol = "\n\n";          const QString sEol = "\n\n";
307            const int argc = args.count();
308          int iCmdArgs = 0;          int iCmdArgs = 0;
         int argc = args.count();  
309    
310          for (int i = 1; i < argc; i++) {          for (int i = 1; i < argc; ++i) {
311    
312                  if (iCmdArgs > 0) {                  if (iCmdArgs > 0) {
313                          sSessionFile += " ";                          sSessionFile += " ";
314                          sSessionFile += args.at(i);                          sSessionFile += args.at(i);
315                          iCmdArgs++;                          ++iCmdArgs;
316                          continue;                          continue;
317                  }                  }
318    
319                  QString sArg = args.at(i);                  QString sArg = args.at(i);
320                  QString sVal = QString::null;                  QString sVal;
321                  int iEqual = sArg.indexOf("=");                  const int iEqual = sArg.indexOf("=");
322                  if (iEqual >= 0) {                  if (iEqual >= 0) {
323                          sVal = sArg.right(sArg.length() - iEqual - 1);                          sVal = sArg.right(sArg.length() - iEqual - 1);
324                          sArg = sArg.left(iEqual);                          sArg = sArg.left(iEqual);
325                  }                  }
326                  else if (i < argc - 1)                  else if (i < argc - 1) {
327                          sVal = args.at(i + 1);                          sVal = args.at(i + 1);
328                            if (sVal[0] == '-')
329                                    sVal.clear();
330                    }
331    
332                  if (sArg == "-s" || sArg == "--start") {                  if (sArg == "-s" || sArg == "--start") {
333                          bServerStart = true;                          bServerStart = true;
334                  }                  }
335                  else if (sArg == "-h" || sArg == "--hostname") {                  else if (sArg == "-h" || sArg == "--hostname") {
336                          if (sVal.isNull()) {                          if (sVal.isNull()) {
337                                  out << QObject::tr("Option -h requires an argument (hostname).") + sEol;                                  out << QObject::tr("Option -h requires an argument (host).") + sEol;
338                                  return false;                                  return false;
339                          }                          }
340                          sServerHost = sVal;                          sServerHost = sVal;
341                          if (iEqual < 0)                          if (iEqual < 0)
342                                  i++;                                  ++i;
343                  }                  }
344                  else if (sArg == "-p" || sArg == "--port") {                  else if (sArg == "-p" || sArg == "--port") {
345                          if (sVal.isNull()) {                          if (sVal.isNull()) {
# Line 303  bool Options::parse_args ( const QString Line 348  bool Options::parse_args ( const QString
348                          }                          }
349                          iServerPort = sVal.toInt();                          iServerPort = sVal.toInt();
350                          if (iEqual < 0)                          if (iEqual < 0)
351                                  i++;                                  ++i;
352                  }                  }
353                  else if (sArg == "-?" || sArg == "--help") {                  else if (sArg == "-?" || sArg == "--help") {
354                          print_usage(args.at(0));                          print_usage(args.at(0));
355                          return false;                          return false;
356                  }                  }
357                  else if (sArg == "-v" || sArg == "--version") {                  else if (sArg == "-v" || sArg == "--version") {
358                          out << QObject::tr("Qt: %1\n").arg(qVersion());                          out << QString("Qt: %1\n")
359  #ifdef CONFIG_LIBGIG                                  .arg(qVersion());
360                            out << QString("%1: %2\n")
361                                    .arg(QSAMPLER_TITLE)
362                                    .arg(CONFIG_BUILD_VERSION);
363                    #ifdef CONFIG_LIBGIG
364                          out << QString("%1: %2\n")                          out << QString("%1: %2\n")
365                                  .arg(gig::libraryName().c_str())                                  .arg(gig::libraryName().c_str())
366                                  .arg(gig::libraryVersion().c_str());                                  .arg(gig::libraryVersion().c_str());
367  #endif                  #endif
368                          out << QString("%1: %2\n")                          out << QString("%1: %2\n")
369                                  .arg(::lscp_client_package())                                  .arg(::lscp_client_package())
370                                  .arg(::lscp_client_version());                                  .arg(::lscp_client_version());
                         out << QObject::tr(QSAMPLER_TITLE ": %1\n").arg(QSAMPLER_VERSION);  
371                          return false;                          return false;
372                  }                  }
373                  else {                  else {
374                          // If we don't have one by now,                          // If we don't have one by now,
375                          // this will be the startup sesion file...                          // this will be the startup sesion file...
376                          sSessionFile += sArg;                          sSessionFile += sArg;
377                          iCmdArgs++;                          ++iCmdArgs;
378                  }                  }
379          }          }
380    
# Line 338  bool Options::parse_args ( const QString Line 386  bool Options::parse_args ( const QString
386  //---------------------------------------------------------------------------  //---------------------------------------------------------------------------
387  // Widget geometry persistence helper methods.  // Widget geometry persistence helper methods.
388    
389  void Options::loadWidgetGeometry ( QWidget *pWidget )  void Options::loadWidgetGeometry ( QWidget *pWidget, bool bVisible )
390  {  {
391          // Try to restore old form window positioning.          // Try to restore old form window positioning.
392          if (pWidget) {          if (pWidget) {
393                  QPoint fpos;          //      if (bVisible) pWidget->show(); -- force initial exposure?
                 QSize  fsize;  
                 bool bVisible;  
394                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());
395                  fpos.setX(m_settings.value("/x", -1).toInt());          #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
396                  fpos.setY(m_settings.value("/y", -1).toInt());                  const QByteArray& geometry
397                  fsize.setWidth(m_settings.value("/width", -1).toInt());                          = m_settings.value("/geometry").toByteArray();
398                  fsize.setHeight(m_settings.value("/height", -1).toInt());                  if (geometry.isEmpty()) {
399                  bVisible = m_settings.value("/visible", false).toBool();                          QWidget *pParent = pWidget->parentWidget();
400                  m_settings.endGroup();                          if (pParent)
401                  if (fpos.x() > 0 && fpos.y() > 0)                                  pParent = pParent->window();
402                          pWidget->move(fpos);                  #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
403                  if (fsize.width() > 0 && fsize.height() > 0)                          if (pParent == nullptr)
404                          pWidget->resize(fsize);                                  pParent = QApplication::desktop();
405                  else                  #endif
406                          pWidget->adjustSize();                          if (pParent) {
407                                    QRect wrect(pWidget->geometry());
408                                    wrect.moveCenter(pParent->geometry().center());
409                                    pWidget->move(wrect.topLeft());
410                            }
411                    } else {
412                            pWidget->restoreGeometry(geometry);
413                    }
414            #else//--LOAD_OLD_GEOMETRY
415                    QPoint wpos;
416                    QSize  wsize;
417                    wpos.setX(m_settings.value("/x", -1).toInt());
418                    wpos.setY(m_settings.value("/y", -1).toInt());
419                    wsize.setWidth(m_settings.value("/width", -1).toInt());
420                    wsize.setHeight(m_settings.value("/height", -1).toInt());
421                    if (wpos.x() > 0 && wpos.y() > 0)
422                            pWidget->move(wpos);
423                    if (wsize.width() > 0 && wsize.height() > 0)
424                            pWidget->resize(wsize);
425            #endif
426            //      else
427            //      pWidget->adjustSize();
428                    if (!bVisible)
429                            bVisible = m_settings.value("/visible", false).toBool();
430                  if (bVisible)                  if (bVisible)
431                          pWidget->show();                          pWidget->show();
432                  else                  else
433                          pWidget->hide();                          pWidget->hide();
434                    m_settings.endGroup();
435          }          }
436  }  }
437    
438    
439  void Options::saveWidgetGeometry ( QWidget *pWidget )  void Options::saveWidgetGeometry ( QWidget *pWidget, bool bVisible )
440  {  {
441          // Try to save form window position...          // Try to save form window position...
442          // (due to X11 window managers ideossincrasies, we better          // (due to X11 window managers ideossincrasies, we better
443          // only save the form geometry while its up and visible)          // only save the form geometry while its up and visible)
444          if (pWidget) {          if (pWidget) {
445                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());
446                  bool bVisible = pWidget->isVisible();          #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
447                  const QPoint& fpos  = pWidget->pos();                  m_settings.setValue("/geometry", pWidget->saveGeometry());
448                  const QSize&  fsize = pWidget->size();          #else//--SAVE_OLD_GEOMETRY
449                  m_settings.setValue("/x", fpos.x());                  const QPoint& wpos  = pWidget->pos();
450                  m_settings.setValue("/y", fpos.y());                  const QSize&  wsize = pWidget->size();
451                  m_settings.setValue("/width", fsize.width());                  m_settings.setValue("/x", wpos.x());
452                  m_settings.setValue("/height", fsize.height());                  m_settings.setValue("/y", wpos.y());
453                    m_settings.setValue("/width", wsize.width());
454                    m_settings.setValue("/height", wsize.height());
455            #endif
456                    if (!bVisible) bVisible = pWidget->isVisible();
457                  m_settings.setValue("/visible", bVisible);                  m_settings.setValue("/visible", bVisible);
458                  m_settings.endGroup();                  m_settings.endGroup();
459          }          }
# Line 391  void Options::saveWidgetGeometry ( QWidg Line 465  void Options::saveWidgetGeometry ( QWidg
465    
466  void Options::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )  void Options::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )
467  {  {
468            const bool bBlockSignals = pComboBox->blockSignals(true);
469    
470          // Load combobox list from configuration settings file...          // Load combobox list from configuration settings file...
471          m_settings.beginGroup("/History/" + pComboBox->objectName());          m_settings.beginGroup("/History/" + pComboBox->objectName());
472    
# Line 398  void Options::loadComboBoxHistory ( QCom Line 474  void Options::loadComboBoxHistory ( QCom
474                  pComboBox->setUpdatesEnabled(false);                  pComboBox->setUpdatesEnabled(false);
475                  pComboBox->setDuplicatesEnabled(false);                  pComboBox->setDuplicatesEnabled(false);
476                  pComboBox->clear();                  pComboBox->clear();
477                  for (int i = 0; i < iLimit; i++) {                  for (int i = 0; i < iLimit; ++i) {
478                          const QString& sText = m_settings.value(                          const QString& sText = m_settings.value(
479                                  "/Item" + QString::number(i + 1)).toString();                                  "/Item" + QString::number(i + 1)).toString();
480                          if (sText.isEmpty())                          if (sText.isEmpty())
# Line 409  void Options::loadComboBoxHistory ( QCom Line 485  void Options::loadComboBoxHistory ( QCom
485          }          }
486    
487          m_settings.endGroup();          m_settings.endGroup();
488    
489            pComboBox->blockSignals(bBlockSignals);
490  }  }
491    
492    
493  void Options::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )  void Options::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )
494  {  {
495            const bool bBlockSignals = pComboBox->blockSignals(true);
496    
497          // Add current text as latest item...          // Add current text as latest item...
498          const QString& sCurrentText = pComboBox->currentText();          const QString sCurrentText = pComboBox->currentText();
499          int iCount = pComboBox->count();          int iCount = pComboBox->count();
500          for (int i = 0; i < iCount; i++) {          for (int i = 0; i < iCount; i++) {
501                  const QString& sText = pComboBox->itemText(i);                  const QString& sText = pComboBox->itemText(i);
502                  if (sText == sCurrentText) {                  if (sText == sCurrentText) {
503                          pComboBox->removeItem(i);                          pComboBox->removeItem(i);
504                          iCount--;                          --iCount;
505                          break;                          break;
506                  }                  }
507          }          }
508          while (iCount >= iLimit)          while (iCount >= iLimit)
509                  pComboBox->removeItem(--iCount);                  pComboBox->removeItem(--iCount);
510          pComboBox->insertItem(0, sCurrentText);          pComboBox->insertItem(0, sCurrentText);
511          iCount++;          pComboBox->setCurrentIndex(0);
512            ++iCount;
513    
514          // Save combobox list to configuration settings file...          // Save combobox list to configuration settings file...
515          m_settings.beginGroup("/History/" + pComboBox->objectName());          m_settings.beginGroup("/History/" + pComboBox->objectName());
516          for (int i = 0; i < iCount; i++) {          for (int i = 0; i < iCount; ++i) {
517                  const QString& sText = pComboBox->itemText(i);                  const QString& sText = pComboBox->itemText(i);
518                  if (sText.isEmpty())                  if (sText.isEmpty())
519                          break;                          break;
520                  m_settings.setValue("/Item" + QString::number(i + 1), sText);                  m_settings.setValue("/Item" + QString::number(i + 1), sText);
521          }          }
522          m_settings.endGroup();          m_settings.endGroup();
523    
524            pComboBox->blockSignals(bBlockSignals);
525  }  }
526    
527    
528  int Options::getMaxVoices() {  int Options::getMaxVoices() {
529  #ifndef CONFIG_MAX_VOICES  #ifndef CONFIG_MAX_VOICES
530          return -1;          return -1;
# Line 538  void Options::sendFineTuningSettings() { Line 622  void Options::sendFineTuningSettings() {
622    
623    
624  // end of qsamplerOptions.cpp  // end of qsamplerOptions.cpp
625    

Legend:
Removed from v.1890  
changed lines
  Added in v.3796

  ViewVC Help
Powered by ViewVC