/[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 404 by capela, Wed Feb 23 13:47:47 2005 UTC revision 1890 by capela, Tue Apr 28 09:06:43 2009 UTC
# Line 1  Line 1 
1  // qsamplerOptions.cpp  // qsamplerOptions.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2003-2005, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2009, rncbc aka Rui Nuno Capela. All rights reserved.
5       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
8     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 13  Line 14 
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.     GNU General Public License for more details.
16    
17     You should have received a copy of the GNU General Public License     You should have received a copy of the GNU General Public License along
18     along with this program; if not, write to the Free Software     with this program; if not, write to the Free Software Foundation, Inc.,
19     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20    
21  *****************************************************************************/  *****************************************************************************/
22    
 #include "qsamplerOptions.h"  
23  #include "qsamplerAbout.h"  #include "qsamplerAbout.h"
24    #include "qsamplerOptions.h"
25    #include "qsamplerMainForm.h"
26    
27  #include <qcombobox.h>  #include <QTextStream>
28    #include <QComboBox>
29    
30  #include <lscp/client.h>  #include <lscp/client.h>
31    
32  #include "config.h"  #ifdef CONFIG_LIBGIG
33    #include <gig.h>
34    #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)
46  {  {
47      // Begin master key group.          // Begin into general options group.
48      m_settings.beginGroup("/qsampler");          m_settings.beginGroup("/Options");
   
     // And go into general options group.  
     m_settings.beginGroup("/Options");  
49    
50      // Load server options...          // Load server options...
51      m_settings.beginGroup("/Server");          m_settings.beginGroup("/Server");
52      sServerHost    = m_settings.readEntry("/ServerHost", "localhost");          sServerHost    = m_settings.value("/ServerHost", "localhost").toString();
53      iServerPort    = m_settings.readNumEntry("/ServerPort", 8888);          iServerPort    = m_settings.value("/ServerPort", 8888).toInt();
54      iServerTimeout = m_settings.readNumEntry("/ServerTimeout", 1000);          #if defined(__APPLE__)  //  Toshi Nagata 20080105
55      bServerStart   = m_settings.readBoolEntry("/ServerStart", true);          //  TODO: Should this be a configure option?
56      sServerCmdLine = m_settings.readEntry("/ServerCmdLine", "linuxsampler");          iServerTimeout = m_settings.value("/ServerTimeout", 10000).toInt();
57      iStartDelay    = m_settings.readNumEntry("/StartDelay", 3);          #else
58      m_settings.endGroup();          iServerTimeout = m_settings.value("/ServerTimeout", 1000).toInt();
59            #endif
60      // Load display options...          bServerStart   = m_settings.value("/ServerStart", true).toBool();
61      m_settings.beginGroup("/Display");          #if defined(__APPLE__)  //  Toshi Nagata 20080113
62      sDisplayFont     = m_settings.readEntry("/DisplayFont", QString::null);          sServerCmdLine = m_settings.value("/ServerCmdLine", "linuxsampler.starter").toString();
63      bDisplayEffect   = m_settings.readBoolEntry("/DisplayEffect", true);          #else
64      bAutoRefresh     = m_settings.readBoolEntry("/AutoRefresh", true);          sServerCmdLine = m_settings.value("/ServerCmdLine", "linuxsampler").toString();
65      iAutoRefreshTime = m_settings.readNumEntry("/AutoRefreshTime", 1000);          #endif
66      iMaxVolume       = m_settings.readNumEntry("/MaxVolume", 100);          iStartDelay    = m_settings.value("/StartDelay", 3).toInt();
67      sMessagesFont    = m_settings.readEntry("/MessagesFont", QString::null);          m_settings.endGroup();
68      bMessagesLimit   = m_settings.readBoolEntry("/MessagesLimit", true);  
69      iMessagesLimitLines = m_settings.readNumEntry("/MessagesLimitLines", 1000);          // Load logging options...
70      bConfirmRemove   = m_settings.readBoolEntry("/ConfirmRemove", true);          m_settings.beginGroup("/Logging");
71      bStdoutCapture   = m_settings.readBoolEntry("/StdoutCapture", true);          bMessagesLog     = m_settings.value("/MessagesLog", false).toBool();
72      bCompletePath    = m_settings.readBoolEntry("/CompletePath", true);          sMessagesLogPath = m_settings.value("/MessagesLogPath", "qsampler.log").toString();
73      iMaxRecentFiles  = m_settings.readNumEntry("/MaxRecentFiles", 5);          m_settings.endGroup();
74      bInstrumentNames = m_settings.readBoolEntry("/InstrumentNames", false);  
75      m_settings.endGroup();          // Load display options...
76            m_settings.beginGroup("/Display");
77      // And go into view options group.          sDisplayFont     = m_settings.value("/DisplayFont").toString();
78      m_settings.beginGroup("/View");          bDisplayEffect   = m_settings.value("/DisplayEffect", true).toBool();
79      bMenubar     = m_settings.readBoolEntry("/Menubar", true);          bAutoRefresh     = m_settings.value("/AutoRefresh", true).toBool();
80      bToolbar     = m_settings.readBoolEntry("/Toolbar", true);          iAutoRefreshTime = m_settings.value("/AutoRefreshTime", 1000).toInt();
81      bStatusbar   = m_settings.readBoolEntry("/Statusbar", true);          iMaxVolume       = m_settings.value("/MaxVolume", 100).toInt();
82      bAutoArrange = m_settings.readBoolEntry("/AutoArrange", true);          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      m_settings.endGroup(); // Options group.          bConfirmRemove   = m_settings.value("/ConfirmRemove", true).toBool();
86            bKeepOnTop       = m_settings.value("/KeepOnTop", true).toBool();
87      // Recent file list.          bStdoutCapture   = m_settings.value("/StdoutCapture", true).toBool();
88      m_settings.beginGroup("/RecentFiles");          bCompletePath    = m_settings.value("/CompletePath", true).toBool();
89      recentFiles.clear();          iMaxRecentFiles  = m_settings.value("/MaxRecentFiles", 5).toInt();
90      for (int i = 0; i < iMaxRecentFiles; i++) {          iBaseFontSize    = m_settings.value("/BaseFontSize", 0).toInt();
91          QString sFilename = m_settings.readEntry("/File" + QString::number(i + 1), QString::null);  // if libgig provides a fast way to retrieve instrument names even for large
92          if (!sFilename.isEmpty())  // .gig files, then we enable this feature by default
93              recentFiles.append(sFilename);  #if HAVE_LIBGIG_SETAUTOLOAD
94      }          bInstrumentNames = m_settings.value("/InstrumentNames", true).toBool();
95      m_settings.endGroup();  #else
96            bInstrumentNames = m_settings.value("/InstrumentNames", false).toBool();
97      // Last but not least, get the default directories.  #endif
98      m_settings.beginGroup("/Default");          m_settings.endGroup();
99      sSessionDir    = m_settings.readEntry("/SessionDir", QString::null);  
100      sInstrumentDir = m_settings.readEntry("/InstrumentDir", QString::null);          // And go into view options group.
101      sEngineName    = m_settings.readEntry("/EngineName", QString::null);          m_settings.beginGroup("/View");
102      sAudioDriver   = m_settings.readEntry("/AudioDriver", QString::null);          bMenubar     = m_settings.value("/Menubar", true).toBool();
103      sMidiDriver    = m_settings.readEntry("/MidiDriver", QString::null);          bToolbar     = m_settings.value("/Toolbar", true).toBool();
104      m_settings.endGroup();          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.
111            recentFiles.clear();
112            m_settings.beginGroup("/RecentFiles");
113            for (int iFile = 0; iFile < iMaxRecentFiles; iFile++) {
114                    QString sFilename = m_settings.value(
115                            "/File" + QString::number(iFile + 1)).toString();
116                    if (!sFilename.isEmpty())
117                            recentFiles.append(sFilename);
118            }
119            m_settings.endGroup();
120    
121            // Sampler fine tuning settings.
122            m_settings.beginGroup("/Tuning");
123            iMaxVoices  = m_settings.value("/MaxVoices",  -1).toInt();
124            iMaxStreams = m_settings.value("/MaxStreams",  -1).toInt();
125            m_settings.endGroup();
126    
127            // Last but not least, get the default directories.
128            m_settings.beginGroup("/Default");
129            sSessionDir    = m_settings.value("/SessionDir").toString();
130            sInstrumentDir = m_settings.value("/InstrumentDir").toString();
131            sEngineName    = m_settings.value("/EngineName").toString();
132            sAudioDriver   = m_settings.value("/AudioDriver").toString();
133            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.writeEntry("/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.writeEntry("/ServerHost", sServerHost);          m_settings.setValue("/ServerHost", sServerHost);
157      m_settings.writeEntry("/ServerPort", iServerPort);          m_settings.setValue("/ServerPort", iServerPort);
158      m_settings.writeEntry("/ServerTimeout", iServerTimeout);          m_settings.setValue("/ServerTimeout", iServerTimeout);
159      m_settings.writeEntry("/ServerStart", bServerStart);          m_settings.setValue("/ServerStart", bServerStart);
160      m_settings.writeEntry("/ServerCmdLine", sServerCmdLine);          m_settings.setValue("/ServerCmdLine", sServerCmdLine);
161      m_settings.writeEntry("/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.writeEntry("/DisplayFont", sDisplayFont);          m_settings.setValue("/MessagesLog", bMessagesLog);
167      m_settings.writeEntry("/DisplayEffect", bDisplayEffect);          m_settings.setValue("/MessagesLogPath", sMessagesLogPath);
168      m_settings.writeEntry("/AutoRefresh", bAutoRefresh);          m_settings.endGroup();
169      m_settings.writeEntry("/AutoRefreshTime", iAutoRefreshTime);  
170      m_settings.writeEntry("/MaxVolume", iMaxVolume);          // Save display options.
171      m_settings.writeEntry("/MessagesFont", sMessagesFont);          m_settings.beginGroup("/Display");
172      m_settings.writeEntry("/MessagesLimit", bMessagesLimit);          m_settings.setValue("/DisplayFont", sDisplayFont);
173      m_settings.writeEntry("/MessagesLimitLines", iMessagesLimitLines);          m_settings.setValue("/DisplayEffect", bDisplayEffect);
174      m_settings.writeEntry("/ConfirmRemove", bConfirmRemove);          m_settings.setValue("/AutoRefresh", bAutoRefresh);
175      m_settings.writeEntry("/StdoutCapture", bStdoutCapture);          m_settings.setValue("/AutoRefreshTime", iAutoRefreshTime);
176      m_settings.writeEntry("/CompletePath", bCompletePath);          m_settings.setValue("/MaxVolume", iMaxVolume);
177      m_settings.writeEntry("/MaxRecentFiles", iMaxRecentFiles);          m_settings.setValue("/MessagesFont", sMessagesFont);
178      m_settings.writeEntry("/InstrumentNames", bInstrumentNames);          m_settings.setValue("/MessagesLimit", bMessagesLimit);
179      m_settings.endGroup();          m_settings.setValue("/MessagesLimitLines", iMessagesLimitLines);
180            m_settings.setValue("/ConfirmRemove", bConfirmRemove);
181      // View options group.          m_settings.setValue("/KeepOnTop", bKeepOnTop);
182      m_settings.beginGroup("/View");          m_settings.setValue("/StdoutCapture", bStdoutCapture);
183      m_settings.writeEntry("/Menubar", bMenubar);          m_settings.setValue("/CompletePath", bCompletePath);
184      m_settings.writeEntry("/Toolbar", bToolbar);          m_settings.setValue("/MaxRecentFiles", iMaxRecentFiles);
185      m_settings.writeEntry("/Statusbar", bStatusbar);          m_settings.setValue("/BaseFontSize", iBaseFontSize);
186      m_settings.writeEntry("/AutoArrange", bAutoArrange);          m_settings.setValue("/InstrumentNames", bInstrumentNames);
187      m_settings.endGroup();          m_settings.endGroup();
188    
189      m_settings.endGroup(); // Options group.          // View options group.
190            m_settings.beginGroup("/View");
191      // Recent file list.          m_settings.setValue("/Menubar", bMenubar);
192      m_settings.beginGroup("/RecentFiles");          m_settings.setValue("/Toolbar", bToolbar);
193      for (int i = 0; i < (int) recentFiles.count(); i++)          m_settings.setValue("/Statusbar", bStatusbar);
194          m_settings.writeEntry("/File" + QString::number(i + 1), recentFiles[i]);          m_settings.setValue("/AutoArrange", bAutoArrange);
195      m_settings.endGroup();          m_settings.endGroup();
196    
197      // Default directories.          m_settings.endGroup(); // Options group.
198      m_settings.beginGroup("/Default");  
199      m_settings.writeEntry("/SessionDir", sSessionDir);          // Recent file list.
200      m_settings.writeEntry("/InstrumentDir", sInstrumentDir);          int iFile = 0;
201      m_settings.writeEntry("/EngineName", sEngineName);          m_settings.beginGroup("/RecentFiles");
202      m_settings.writeEntry("/AudioDriver", sAudioDriver);          QStringListIterator iter(recentFiles);
203      m_settings.writeEntry("/MidiDriver", sMidiDriver);          while (iter.hasNext())
204      m_settings.endGroup();                  m_settings.setValue("/File" + QString::number(++iFile), iter.next());
205            m_settings.endGroup();
206      m_settings.endGroup();  
207            // Sampler fine tuning settings.
208            m_settings.beginGroup("/Tuning");
209            if (iMaxVoices > 0)
210                    m_settings.setValue("/MaxVoices", iMaxVoices);
211            if (iMaxStreams >= 0)
212                    m_settings.setValue("/MaxStreams", iMaxStreams);
213            m_settings.endGroup();
214    
215            // Default directories.
216            m_settings.beginGroup("/Default");
217            m_settings.setValue("/SessionDir", sSessionDir);
218            m_settings.setValue("/InstrumentDir", sInstrumentDir);
219            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 181  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 QString& arg0 )
246  {  {
247      const QString sEot = "\n\t";          QTextStream out(stderr);
248      const QString sEol = "\n\n";          out << QObject::tr("Usage: %1 [options] [session-file]\n\n"
249                    QSAMPLER_TITLE " - " QSAMPLER_SUBTITLE "\n\n"
250      fprintf(stderr, QObject::tr("Usage") + ": %s [" + QObject::tr("options") + "] [" +                  "Options:\n\n"
251          QObject::tr("session-file") + "]" + sEol, arg0);                  "  -s, --start\n\tStart linuxsampler server locally\n\n"
252      fprintf(stderr, QSAMPLER_TITLE " - " + QObject::tr(QSAMPLER_SUBTITLE) + sEol);                  "  -h, --hostname\n\tSpecify linuxsampler server hostname\n\n"
253      fprintf(stderr, QObject::tr("Options") + ":" + sEol);                  "  -p, --port\n\tSpecify linuxsampler server port number\n\n"
254      fprintf(stderr, "  -s, --start" + sEot +                  "  -?, --help\n\tShow help about command line options\n\n"
255          QObject::tr("Start linuxsampler server locally") + sEol);                  "  -v, --version\n\tShow version information\n\n")
256      fprintf(stderr, "  -h, --hostname" + sEot +                  .arg(arg0);
         QObject::tr("Specify linuxsampler server hostname") + sEol);  
     fprintf(stderr, "  -p, --port" + sEot +  
         QObject::tr("Specify linuxsampler server port number") + sEol);  
     fprintf(stderr, "  -?, --help" + sEot +  
         QObject::tr("Show help about command line options") + sEol);  
     fprintf(stderr, "  -v, --version" + sEot +  
         QObject::tr("Show version information") + sEol);  
257  }  }
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 ( const QStringList& args )
262  {  {
263      const QString sEol = "\n\n";          QTextStream out(stderr);
264      int iCmdArgs = 0;          const QString sEol = "\n\n";
265            int iCmdArgs = 0;
266      for (int i = 1; i < argc; i++) {          int argc = args.count();
267    
268            for (int i = 1; i < argc; i++) {
269    
270                    if (iCmdArgs > 0) {
271                            sSessionFile += " ";
272                            sSessionFile += args.at(i);
273                            iCmdArgs++;
274                            continue;
275                    }
276    
277                    QString sArg = args.at(i);
278                    QString sVal = QString::null;
279                    int iEqual = sArg.indexOf("=");
280                    if (iEqual >= 0) {
281                            sVal = sArg.right(sArg.length() - iEqual - 1);
282                            sArg = sArg.left(iEqual);
283                    }
284                    else if (i < argc - 1)
285                            sVal = args.at(i + 1);
286    
287                    if (sArg == "-s" || sArg == "--start") {
288                            bServerStart = true;
289                    }
290                    else if (sArg == "-h" || sArg == "--hostname") {
291                            if (sVal.isNull()) {
292                                    out << QObject::tr("Option -h requires an argument (hostname).") + sEol;
293                                    return false;
294                            }
295                            sServerHost = sVal;
296                            if (iEqual < 0)
297                                    i++;
298                    }
299                    else if (sArg == "-p" || sArg == "--port") {
300                            if (sVal.isNull()) {
301                                    out << QObject::tr("Option -p requires an argument (port).") + sEol;
302                                    return false;
303                            }
304                            iServerPort = sVal.toInt();
305                            if (iEqual < 0)
306                                    i++;
307                    }
308                    else if (sArg == "-?" || sArg == "--help") {
309                            print_usage(args.at(0));
310                            return false;
311                    }
312                    else if (sArg == "-v" || sArg == "--version") {
313                            out << QObject::tr("Qt: %1\n").arg(qVersion());
314    #ifdef CONFIG_LIBGIG
315                            out << QString("%1: %2\n")
316                                    .arg(gig::libraryName().c_str())
317                                    .arg(gig::libraryVersion().c_str());
318    #endif
319                            out << QString("%1: %2\n")
320                                    .arg(::lscp_client_package())
321                                    .arg(::lscp_client_version());
322                            out << QObject::tr(QSAMPLER_TITLE ": %1\n").arg(QSAMPLER_VERSION);
323                            return false;
324                    }
325                    else {
326                            // If we don't have one by now,
327                            // this will be the startup sesion file...
328                            sSessionFile += sArg;
329                            iCmdArgs++;
330                    }
331            }
332    
333          if (iCmdArgs > 0) {          // Alright with argument parsing.
334              sSessionFile += " ";          return true;
             sSessionFile += argv[i];  
             iCmdArgs++;  
             continue;  
         }  
   
         QString sArg = argv[i];  
         QString sVal = QString::null;  
         int iEqual = sArg.find("=");  
         if (iEqual >= 0) {  
             sVal = sArg.right(sArg.length() - iEqual - 1);  
             sArg = sArg.left(iEqual);  
         }  
         else if (i < argc)  
             sVal = argv[i + 1];  
   
         if (sArg == "-s" || sArg == "--start") {  
             bServerStart = true;  
         }  
         else if (sArg == "-h" || sArg == "--hostname") {  
             if (sVal.isNull()) {  
                 fprintf(stderr, QObject::tr("Option -h requires an argument (hostname).") + sEol);  
                 return false;  
             }  
             sServerHost = sVal;  
             if (iEqual < 0)  
                 i++;  
         }  
         else if (sArg == "-p" || sArg == "--port") {  
             if (sVal.isNull()) {  
                 fprintf(stderr, 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") {  
             fprintf(stderr, "Qt: %s\n", qVersion());  
             fprintf(stderr, "liblscp: %s\n", ::lscp_client_version());  
             fprintf(stderr, "qsampler: %s\n", QSAMPLER_VERSION);  
             return false;  
         }  
         else {  
             // If we don't have one by now,  
             // this will be the startup sesion file...  
             sSessionFile += sArg;  
             iCmdArgs++;  
         }  
     }  
   
     // Alright with argument parsing.  
     return true;  
335  }  }
336    
337    
338  //---------------------------------------------------------------------------  //---------------------------------------------------------------------------
339  // Widget geometry persistence helper methods.  // Widget geometry persistence helper methods.
340    
341  void qsamplerOptions::loadWidgetGeometry ( QWidget *pWidget )  void Options::loadWidgetGeometry ( QWidget *pWidget )
342  {  {
343      // Try to restore old form window positioning.          // Try to restore old form window positioning.
344      if (pWidget) {          if (pWidget) {
345          QPoint fpos;                  QPoint fpos;
346          QSize  fsize;                  QSize  fsize;
347          bool bVisible;                  bool bVisible;
348          m_settings.beginGroup("/Geometry/" + QString(pWidget->name()));                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());
349          fpos.setX(m_settings.readNumEntry("/x", -1));                  fpos.setX(m_settings.value("/x", -1).toInt());
350          fpos.setY(m_settings.readNumEntry("/y", -1));                  fpos.setY(m_settings.value("/y", -1).toInt());
351          fsize.setWidth(m_settings.readNumEntry("/width", -1));                  fsize.setWidth(m_settings.value("/width", -1).toInt());
352          fsize.setHeight(m_settings.readNumEntry("/height", -1));                  fsize.setHeight(m_settings.value("/height", -1).toInt());
353          bVisible = m_settings.readBoolEntry("/visible", false);                  bVisible = m_settings.value("/visible", false).toBool();
354          m_settings.endGroup();                  m_settings.endGroup();
355          if (fpos.x() > 0 && fpos.y() > 0)                  if (fpos.x() > 0 && fpos.y() > 0)
356              pWidget->move(fpos);                          pWidget->move(fpos);
357          if (fsize.width() > 0 && fsize.height() > 0)                  if (fsize.width() > 0 && fsize.height() > 0)
358              pWidget->resize(fsize);                          pWidget->resize(fsize);
359          else                  else
360              pWidget->adjustSize();                          pWidget->adjustSize();
361          if (bVisible)                  if (bVisible)
362              pWidget->show();                          pWidget->show();
363          else                  else
364              pWidget->hide();                          pWidget->hide();
365      }          }
366  }  }
367    
368    
369  void qsamplerOptions::saveWidgetGeometry ( QWidget *pWidget )  void Options::saveWidgetGeometry ( QWidget *pWidget )
370  {  {
371      // Try to save form window position...          // Try to save form window position...
372      // (due to X11 window managers ideossincrasies, we better          // (due to X11 window managers ideossincrasies, we better
373      // only save the form geometry while its up and visible)          // only save the form geometry while its up and visible)
374      if (pWidget) {          if (pWidget) {
375          m_settings.beginGroup("/Geometry/" + QString(pWidget->name()));                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());
376          bool bVisible = pWidget->isVisible();                  bool bVisible = pWidget->isVisible();
377          if (bVisible) {                  const QPoint& fpos  = pWidget->pos();
378              QPoint fpos  = pWidget->pos();                  const QSize&  fsize = pWidget->size();
379              QSize  fsize = pWidget->size();                  m_settings.setValue("/x", fpos.x());
380              m_settings.writeEntry("/x", fpos.x());                  m_settings.setValue("/y", fpos.y());
381              m_settings.writeEntry("/y", fpos.y());                  m_settings.setValue("/width", fsize.width());
382              m_settings.writeEntry("/width", fsize.width());                  m_settings.setValue("/height", fsize.height());
383              m_settings.writeEntry("/height", fsize.height());                  m_settings.setValue("/visible", bVisible);
384          }                  m_settings.endGroup();
385          m_settings.writeEntry("/visible", bVisible);          }
         m_settings.endGroup();  
     }  
386  }  }
387    
388    
389  //---------------------------------------------------------------------------  //---------------------------------------------------------------------------
390  // Combo box history persistence helper implementation.  // Combo box history persistence helper implementation.
391    
392  void qsamplerOptions::add2ComboBoxHistory ( QComboBox *pComboBox, const QString& sNewText, int iLimit, int iIndex )  void Options::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )
393  {  {
394      int iCount = pComboBox->count();          // Load combobox list from configuration settings file...
395      for (int i = 0; i < iCount; i++) {          m_settings.beginGroup("/History/" + pComboBox->objectName());
396          QString sText = pComboBox->text(i);  
397          if (sText == sNewText) {          if (m_settings.childKeys().count() > 0) {
398              pComboBox->removeItem(i);                  pComboBox->setUpdatesEnabled(false);
399              iCount--;                  pComboBox->setDuplicatesEnabled(false);
400              break;                  pComboBox->clear();
401          }                  for (int i = 0; i < iLimit; i++) {
402      }                          const QString& sText = m_settings.value(
403      while (iCount >= iLimit)                                  "/Item" + QString::number(i + 1)).toString();
404          pComboBox->removeItem(--iCount);                          if (sText.isEmpty())
405      pComboBox->insertItem(sNewText, iIndex);                                  break;
406                            pComboBox->addItem(sText);
407                    }
408                    pComboBox->setUpdatesEnabled(true);
409            }
410    
411            m_settings.endGroup();
412  }  }
413    
414    
415  void qsamplerOptions::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )  void Options::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )
416  {  {
417      pComboBox->setUpdatesEnabled(false);          // Add current text as latest item...
418      pComboBox->setDuplicatesEnabled(false);          const QString& sCurrentText = pComboBox->currentText();
419            int iCount = pComboBox->count();
420            for (int i = 0; i < iCount; i++) {
421                    const QString& sText = pComboBox->itemText(i);
422                    if (sText == sCurrentText) {
423                            pComboBox->removeItem(i);
424                            iCount--;
425                            break;
426                    }
427            }
428            while (iCount >= iLimit)
429                    pComboBox->removeItem(--iCount);
430            pComboBox->insertItem(0, sCurrentText);
431            iCount++;
432    
433            // Save combobox list to configuration settings file...
434            m_settings.beginGroup("/History/" + pComboBox->objectName());
435            for (int i = 0; i < iCount; i++) {
436                    const QString& sText = pComboBox->itemText(i);
437                    if (sText.isEmpty())
438                            break;
439                    m_settings.setValue("/Item" + QString::number(i + 1), sText);
440            }
441            m_settings.endGroup();
442    }
443    
444    int Options::getMaxVoices() {
445    #ifndef CONFIG_MAX_VOICES
446            return -1;
447    #else
448            if (iMaxVoices > 0) return iMaxVoices;
449            return getEffectiveMaxVoices();
450    #endif // CONFIG_MAX_VOICES
451    }
452    
453      m_settings.beginGroup("/History/" + QString(pComboBox->name()));  int Options::getEffectiveMaxVoices() {
454      for (int i = 0; i < iLimit; i++) {  #ifndef CONFIG_MAX_VOICES
455          QString sText = m_settings.readEntry("/Item" + QString::number(i + 1), QString::null);          return -1;
456          if (sText.isEmpty())  #else
457              break;          MainForm *pMainForm = MainForm::getInstance();
458          add2ComboBoxHistory(pComboBox, sText, iLimit);          if (!pMainForm || !pMainForm->client())
459      }                  return -1;
     m_settings.endGroup();  
460    
461      pComboBox->setUpdatesEnabled(true);          return ::lscp_get_voices(pMainForm->client());
462    #endif // CONFIG_MAX_VOICES
463  }  }
464    
465    void Options::setMaxVoices(int iMaxVoices) {
466    #ifdef CONFIG_MAX_VOICES
467            if (iMaxVoices < 1) return;
468    
469            MainForm *pMainForm = MainForm::getInstance();
470            if (!pMainForm || !pMainForm->client())
471                    return;
472    
473            lscp_status_t result =
474                    ::lscp_set_voices(pMainForm->client(), iMaxVoices);
475    
476            if (result != LSCP_OK) {
477                    pMainForm->appendMessagesClient("lscp_set_voices");
478                    return;
479            }
480    
481  void qsamplerOptions::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )          this->iMaxVoices = iMaxVoices;
482  {  #endif // CONFIG_MAX_VOICES
483      add2ComboBoxHistory(pComboBox, pComboBox->currentText(), iLimit, 0);  }
484    
485    int Options::getMaxStreams() {
486    #ifndef CONFIG_MAX_VOICES
487            return -1;
488    #else
489            if (iMaxStreams > 0) return iMaxStreams;
490            return getEffectiveMaxStreams();
491    #endif // CONFIG_MAX_VOICES
492    }
493    
494    int Options::getEffectiveMaxStreams() {
495    #ifndef CONFIG_MAX_VOICES
496            return -1;
497    #else
498            MainForm *pMainForm = MainForm::getInstance();
499            if (!pMainForm || !pMainForm->client())
500                    return -1;
501    
502            return ::lscp_get_streams(pMainForm->client());
503    #endif // CONFIG_MAX_VOICES
504    }
505    
506    void Options::setMaxStreams(int iMaxStreams) {
507    #ifdef CONFIG_MAX_VOICES
508            if (iMaxStreams < 0) return;
509    
510            MainForm *pMainForm = MainForm::getInstance();
511            if (!pMainForm || !pMainForm->client())
512                    return;
513    
514            lscp_status_t result =
515                    ::lscp_set_streams(pMainForm->client(), iMaxStreams);
516    
517            if (result != LSCP_OK) {
518                    pMainForm->appendMessagesClient("lscp_set_streams");
519                    return;
520            }
521    
522            this->iMaxStreams = iMaxStreams;
523    #endif // CONFIG_MAX_VOICES
524    }
525    
526    void Options::sendFineTuningSettings() {
527            setMaxVoices(iMaxVoices);
528            setMaxStreams(iMaxStreams);
529    
530            MainForm *pMainForm = MainForm::getInstance();
531            if (!pMainForm || !pMainForm->client())
532                    return;
533    
534      m_settings.beginGroup("/History/" + QString(pComboBox->name()));          pMainForm->appendMessages(QObject::tr("Sent fine tuning settings."));
     for (int i = 0; i < iLimit && i < pComboBox->count(); i++) {  
         QString sText = pComboBox->text(i);  
         if (sText.isEmpty())  
             break;  
         m_settings.writeEntry("/Item" + QString::number(i + 1), sText);  
     }  
     m_settings.endGroup();  
535  }  }
536    
537    } // namespace QSampler
538    
539    
540  // end of qsamplerOptions.cpp  // end of qsamplerOptions.cpp

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

  ViewVC Help
Powered by ViewVC