/[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 980 by capela, Sun Dec 17 22:29:29 2006 UTC revision 3518 by capela, Sun Jun 30 16:58:30 2019 UTC
# Line 1  Line 1 
1  // qsamplerOptions.cpp  // qsamplerOptions.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004-2006, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2019, rncbc aka Rui Nuno Capela. All rights reserved.
5       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 21  Line 22 
22    
23  #include "qsamplerAbout.h"  #include "qsamplerAbout.h"
24  #include "qsamplerOptions.h"  #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    
# Line 31  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)
46  {  {
47      // Begin master key group.          loadOptions();
48      m_settings.beginGroup("/qsampler");  }
49    
     // And go into general options group.  
     m_settings.beginGroup("/Options");  
50    
51      // Load server options...  // Default Destructor.
52      m_settings.beginGroup("/Server");  Options::~Options (void)
53      sServerHost    = m_settings.readEntry("/ServerHost", "localhost");  {
54      iServerPort    = m_settings.readNumEntry("/ServerPort", 8888);          saveOptions();
     iServerTimeout = m_settings.readNumEntry("/ServerTimeout", 1000);  
     bServerStart   = m_settings.readBoolEntry("/ServerStart", true);  
     sServerCmdLine = m_settings.readEntry("/ServerCmdLine", "linuxsampler");  
     iStartDelay    = m_settings.readNumEntry("/StartDelay", 3);  
     m_settings.endGroup();  
   
     // Load display options...  
     m_settings.beginGroup("/Display");  
     sDisplayFont     = m_settings.readEntry("/DisplayFont", QString::null);  
     bDisplayEffect   = m_settings.readBoolEntry("/DisplayEffect", true);  
     bAutoRefresh     = m_settings.readBoolEntry("/AutoRefresh", true);  
     iAutoRefreshTime = m_settings.readNumEntry("/AutoRefreshTime", 1000);  
     iMaxVolume       = m_settings.readNumEntry("/MaxVolume", 100);  
     sMessagesFont    = m_settings.readEntry("/MessagesFont", QString::null);  
     bMessagesLimit   = m_settings.readBoolEntry("/MessagesLimit", true);  
     iMessagesLimitLines = m_settings.readNumEntry("/MessagesLimitLines", 1000);  
     bConfirmRemove   = m_settings.readBoolEntry("/ConfirmRemove", true);  
     bKeepOnTop       = m_settings.readBoolEntry("/KeepOnTop", true);  
     bStdoutCapture   = m_settings.readBoolEntry("/StdoutCapture", true);  
     bCompletePath    = m_settings.readBoolEntry("/CompletePath", true);  
     iMaxRecentFiles  = m_settings.readNumEntry("/MaxRecentFiles", 5);  
     bInstrumentNames = m_settings.readBoolEntry("/InstrumentNames", false);  
     m_settings.endGroup();  
   
     // And go into view options group.  
     m_settings.beginGroup("/View");  
     bMenubar     = m_settings.readBoolEntry("/Menubar", true);  
     bToolbar     = m_settings.readBoolEntry("/Toolbar", true);  
     bStatusbar   = m_settings.readBoolEntry("/Statusbar", true);  
     bAutoArrange = m_settings.readBoolEntry("/AutoArrange", true);  
     m_settings.endGroup();  
   
     m_settings.endGroup(); // Options group.  
   
     // Recent file list.  
     m_settings.beginGroup("/RecentFiles");  
     recentFiles.clear();  
     for (int i = 0; i < iMaxRecentFiles; i++) {  
         QString sFilename = m_settings.readEntry("/File" + QString::number(i + 1), QString::null);  
         if (!sFilename.isEmpty())  
             recentFiles.append(sFilename);  
     }  
     m_settings.endGroup();  
   
     // Last but not least, get the default directories.  
     m_settings.beginGroup("/Default");  
     sSessionDir    = m_settings.readEntry("/SessionDir", QString::null);  
     sInstrumentDir = m_settings.readEntry("/InstrumentDir", QString::null);  
     sEngineName    = m_settings.readEntry("/EngineName", QString::null);  
     sAudioDriver   = m_settings.readEntry("/AudioDriver", QString::null);  
     sMidiDriver    = m_settings.readEntry("/MidiDriver", QString::null);  
     iMidiMap       = m_settings.readNumEntry("/MidiMap", 0);  
     iMidiBank      = m_settings.readNumEntry("/MidiBank", 0);  
     iMidiProg      = m_settings.readNumEntry("/MidiProg", 0);  
     iVolume        = m_settings.readNumEntry("/Volume", 100);  
     iLoadMode      = m_settings.readNumEntry("/Loadmode", 0);  
     m_settings.endGroup();  
55  }  }
56    
57    
58  // Default Destructor.  // Explicit load method.
59  qsamplerOptions::~qsamplerOptions (void)  void Options::loadOptions (void)
60    {
61            // Begin into general options group.
62            m_settings.beginGroup("/Options");
63    
64            // Load server options...
65            m_settings.beginGroup("/Server");
66            sServerHost    = m_settings.value("/ServerHost", "localhost").toString();
67            iServerPort    = m_settings.value("/ServerPort", 8888).toInt();
68    #if defined(__APPLE__)  //  Toshi Nagata 20080105
69            //  TODO: Should this be a configure option?
70            iServerTimeout = m_settings.value("/ServerTimeout", 10000).toInt();
71    #else
72            iServerTimeout = m_settings.value("/ServerTimeout", 1000).toInt();
73    #endif
74            bServerStart   = m_settings.value("/ServerStart", true).toBool();
75    #if defined(__APPLE__)
76            sServerCmdLine = m_settings.value("/ServerCmdLine", "/usr/local/bin/linuxsampler").toString();
77    #else
78            sServerCmdLine = m_settings.value("/ServerCmdLine", "linuxsampler").toString();
79    #endif
80            iStartDelay    = m_settings.value("/StartDelay", 3).toInt();
81            m_settings.endGroup();
82    
83            // Load logging options...
84            m_settings.beginGroup("/Logging");
85            bMessagesLog     = m_settings.value("/MessagesLog", false).toBool();
86            sMessagesLogPath = m_settings.value("/MessagesLogPath", "qsampler.log").toString();
87            m_settings.endGroup();
88    
89            // Load display options...
90            m_settings.beginGroup("/Display");
91            sDisplayFont     = m_settings.value("/DisplayFont").toString();
92            bDisplayEffect   = m_settings.value("/DisplayEffect", true).toBool();
93            bAutoRefresh     = m_settings.value("/AutoRefresh", true).toBool();
94            iAutoRefreshTime = m_settings.value("/AutoRefreshTime", 1000).toInt();
95            iMaxVolume       = m_settings.value("/MaxVolume", 100).toInt();
96            sMessagesFont    = m_settings.value("/MessagesFont").toString();
97            bMessagesLimit   = m_settings.value("/MessagesLimit", true).toBool();
98            iMessagesLimitLines = m_settings.value("/MessagesLimitLines", 1000).toInt();
99            bConfirmRemove   = m_settings.value("/ConfirmRemove", true).toBool();
100            bConfirmReset    = m_settings.value("/ConfirmReset", true).toBool();
101            bConfirmRestart  = m_settings.value("/ConfirmRestart", true).toBool();
102            bConfirmError    = m_settings.value("/ConfirmError", true).toBool();
103            bKeepOnTop       = m_settings.value("/KeepOnTop", true).toBool();
104            bStdoutCapture   = m_settings.value("/StdoutCapture", true).toBool();
105            bCompletePath    = m_settings.value("/CompletePath", true).toBool();
106            iMaxRecentFiles  = m_settings.value("/MaxRecentFiles", 5).toInt();
107            iBaseFontSize    = m_settings.value("/BaseFontSize", 0).toInt();
108    // if libgig provides a fast way to retrieve instrument names even for large
109    // .gig files, then we enable this feature by default
110    #ifdef CONFIG_LIBGIG_SETAUTOLOAD
111            bInstrumentNames = m_settings.value("/InstrumentNames", true).toBool();
112    #else
113            bInstrumentNames = m_settings.value("/InstrumentNames", false).toBool();
114    #endif
115            m_settings.endGroup();
116    
117            // And go into view options group.
118            m_settings.beginGroup("/View");
119            bMenubar     = m_settings.value("/Menubar", true).toBool();
120            bToolbar     = m_settings.value("/Toolbar", true).toBool();
121            bStatusbar   = m_settings.value("/Statusbar", true).toBool();
122            bAutoArrange = m_settings.value("/AutoArrange", true).toBool();
123            m_settings.endGroup();
124    
125            m_settings.endGroup(); // Options group.
126    
127            // Recent file list.
128            recentFiles.clear();
129            m_settings.beginGroup("/RecentFiles");
130            for (int iFile = 0; iFile < iMaxRecentFiles; iFile++) {
131                    QString sFilename = m_settings.value(
132                            "/File" + QString::number(iFile + 1)).toString();
133                    if (!sFilename.isEmpty())
134                            recentFiles.append(sFilename);
135            }
136            m_settings.endGroup();
137    
138            // Sampler fine tuning settings.
139            m_settings.beginGroup("/Tuning");
140            iMaxVoices  = m_settings.value("/MaxVoices",  -1).toInt();
141            iMaxStreams = m_settings.value("/MaxStreams",  -1).toInt();
142            m_settings.endGroup();
143    
144            // Last but not least, get the default directories.
145            m_settings.beginGroup("/Default");
146            sSessionDir    = m_settings.value("/SessionDir").toString();
147            sInstrumentDir = m_settings.value("/InstrumentDir").toString();
148            sEngineName    = m_settings.value("/EngineName").toString();
149            sAudioDriver   = m_settings.value("/AudioDriver").toString();
150            sMidiDriver    = m_settings.value("/MidiDriver").toString();
151            iMidiMap       = m_settings.value("/MidiMap",  0).toInt();
152            iMidiBank      = m_settings.value("/MidiBank", 0).toInt();
153            iMidiProg      = m_settings.value("/MidiProg", 0).toInt();
154            iVolume        = m_settings.value("/Volume", 100).toInt();
155            iLoadMode      = m_settings.value("/Loadmode", 0).toInt();
156            m_settings.endGroup();
157    }
158    
159    
160    // Explicit save method.
161    void Options::saveOptions (void)
162  {  {
163      // Make program version available in the future.          // Make program version available in the future.
164      m_settings.beginGroup("/Program");          m_settings.beginGroup("/Program");
165      m_settings.writeEntry("/Version", QSAMPLER_VERSION);          m_settings.setValue("/Version", CONFIG_BUILD_VERSION);
166      m_settings.endGroup();          m_settings.endGroup();
167    
168      // And go into general options group.          // And go into general options group.
169      m_settings.beginGroup("/Options");          m_settings.beginGroup("/Options");
170    
171      // Save server options.          // Save server options.
172      m_settings.beginGroup("/Server");          m_settings.beginGroup("/Server");
173      m_settings.writeEntry("/ServerHost", sServerHost);          m_settings.setValue("/ServerHost", sServerHost);
174      m_settings.writeEntry("/ServerPort", iServerPort);          m_settings.setValue("/ServerPort", iServerPort);
175      m_settings.writeEntry("/ServerTimeout", iServerTimeout);          m_settings.setValue("/ServerTimeout", iServerTimeout);
176      m_settings.writeEntry("/ServerStart", bServerStart);          m_settings.setValue("/ServerStart", bServerStart);
177      m_settings.writeEntry("/ServerCmdLine", sServerCmdLine);          m_settings.setValue("/ServerCmdLine", sServerCmdLine);
178      m_settings.writeEntry("/StartDelay", iStartDelay);          m_settings.setValue("/StartDelay", iStartDelay);
179      m_settings.endGroup();          m_settings.endGroup();
180    
181      // Save display options.          // Save logging options...
182      m_settings.beginGroup("/Display");          m_settings.beginGroup("/Logging");
183      m_settings.writeEntry("/DisplayFont", sDisplayFont);          m_settings.setValue("/MessagesLog", bMessagesLog);
184      m_settings.writeEntry("/DisplayEffect", bDisplayEffect);          m_settings.setValue("/MessagesLogPath", sMessagesLogPath);
185      m_settings.writeEntry("/AutoRefresh", bAutoRefresh);          m_settings.endGroup();
186      m_settings.writeEntry("/AutoRefreshTime", iAutoRefreshTime);  
187      m_settings.writeEntry("/MaxVolume", iMaxVolume);          // Save display options.
188      m_settings.writeEntry("/MessagesFont", sMessagesFont);          m_settings.beginGroup("/Display");
189      m_settings.writeEntry("/MessagesLimit", bMessagesLimit);          m_settings.setValue("/DisplayFont", sDisplayFont);
190      m_settings.writeEntry("/MessagesLimitLines", iMessagesLimitLines);          m_settings.setValue("/DisplayEffect", bDisplayEffect);
191      m_settings.writeEntry("/ConfirmRemove", bConfirmRemove);          m_settings.setValue("/AutoRefresh", bAutoRefresh);
192      m_settings.writeEntry("/KeepOnTop", bKeepOnTop);          m_settings.setValue("/AutoRefreshTime", iAutoRefreshTime);
193      m_settings.writeEntry("/StdoutCapture", bStdoutCapture);          m_settings.setValue("/MaxVolume", iMaxVolume);
194      m_settings.writeEntry("/CompletePath", bCompletePath);          m_settings.setValue("/MessagesFont", sMessagesFont);
195      m_settings.writeEntry("/MaxRecentFiles", iMaxRecentFiles);          m_settings.setValue("/MessagesLimit", bMessagesLimit);
196      m_settings.writeEntry("/InstrumentNames", bInstrumentNames);          m_settings.setValue("/MessagesLimitLines", iMessagesLimitLines);
197      m_settings.endGroup();          m_settings.setValue("/ConfirmRemove", bConfirmRemove);
198            m_settings.setValue("/ConfirmReset", bConfirmReset);
199      // View options group.          m_settings.setValue("/ConfirmRestart", bConfirmRestart);
200      m_settings.beginGroup("/View");          m_settings.setValue("/ConfirmError", bConfirmError);
201      m_settings.writeEntry("/Menubar", bMenubar);          m_settings.setValue("/KeepOnTop", bKeepOnTop);
202      m_settings.writeEntry("/Toolbar", bToolbar);          m_settings.setValue("/StdoutCapture", bStdoutCapture);
203      m_settings.writeEntry("/Statusbar", bStatusbar);          m_settings.setValue("/CompletePath", bCompletePath);
204      m_settings.writeEntry("/AutoArrange", bAutoArrange);          m_settings.setValue("/MaxRecentFiles", iMaxRecentFiles);
205      m_settings.endGroup();          m_settings.setValue("/BaseFontSize", iBaseFontSize);
206            m_settings.setValue("/InstrumentNames", bInstrumentNames);
207      m_settings.endGroup(); // Options group.          m_settings.endGroup();
208    
209      // Recent file list.          // View options group.
210      m_settings.beginGroup("/RecentFiles");          m_settings.beginGroup("/View");
211      for (int i = 0; i < (int) recentFiles.count(); i++)          m_settings.setValue("/Menubar", bMenubar);
212          m_settings.writeEntry("/File" + QString::number(i + 1), recentFiles[i]);          m_settings.setValue("/Toolbar", bToolbar);
213      m_settings.endGroup();          m_settings.setValue("/Statusbar", bStatusbar);
214            m_settings.setValue("/AutoArrange", bAutoArrange);
215      // Default directories.          m_settings.endGroup();
216      m_settings.beginGroup("/Default");  
217      m_settings.writeEntry("/SessionDir", sSessionDir);          m_settings.endGroup(); // Options group.
218      m_settings.writeEntry("/InstrumentDir", sInstrumentDir);  
219      m_settings.writeEntry("/EngineName", sEngineName);          // Recent file list.
220      m_settings.writeEntry("/AudioDriver", sAudioDriver);          int iFile = 0;
221      m_settings.writeEntry("/MidiDriver", sMidiDriver);          m_settings.beginGroup("/RecentFiles");
222      m_settings.writeEntry("/MidiMap", iMidiMap);          QStringListIterator iter(recentFiles);
223      m_settings.writeEntry("/MidiBank", iMidiBank);          while (iter.hasNext())
224      m_settings.writeEntry("/MidiProg", iMidiProg);                  m_settings.setValue("/File" + QString::number(++iFile), iter.next());
225      m_settings.writeEntry("/Volume", iVolume);          m_settings.endGroup();
226      m_settings.writeEntry("/Loadmode", iLoadMode);  
227      m_settings.endGroup();          // Sampler fine tuning settings.
228            m_settings.beginGroup("/Tuning");
229            if (iMaxVoices > 0)
230                    m_settings.setValue("/MaxVoices", iMaxVoices);
231            if (iMaxStreams >= 0)
232                    m_settings.setValue("/MaxStreams", iMaxStreams);
233            m_settings.endGroup();
234    
235            // Default directories.
236            m_settings.beginGroup("/Default");
237            m_settings.setValue("/SessionDir", sSessionDir);
238            m_settings.setValue("/InstrumentDir", sInstrumentDir);
239            m_settings.setValue("/EngineName", sEngineName);
240            m_settings.setValue("/AudioDriver", sAudioDriver);
241            m_settings.setValue("/MidiDriver", sMidiDriver);
242            m_settings.setValue("/MidiMap", iMidiMap);
243            m_settings.setValue("/MidiBank", iMidiBank);
244            m_settings.setValue("/MidiProg", iMidiProg);
245            m_settings.setValue("/Volume", iVolume);
246            m_settings.setValue("/Loadmode", iLoadMode);
247            m_settings.endGroup();
248    
249      m_settings.endGroup();          // Save/commit to disk.
250            m_settings.sync();
251  }  }
252    
253    
254  //-------------------------------------------------------------------------  //-------------------------------------------------------------------------
255  // Settings accessor.  // Settings accessor.
256  //  //
257    
258  QSettings& qsamplerOptions::settings (void)  QSettings& Options::settings (void)
259  {  {
260      return m_settings;          return m_settings;
261  }  }
262    
263    
# Line 195  QSettings& qsamplerOptions::settings (vo Line 266  QSettings& qsamplerOptions::settings (vo
266  //  //
267    
268  // Help about command line options.  // Help about command line options.
269  void qsamplerOptions::print_usage ( const char *arg0 )  void Options::print_usage ( const QString& arg0 )
270  {  {
271      const QString sEot = "\n\t";          QTextStream out(stderr);
272      const QString sEol = "\n\n";          out << QObject::tr("Usage: %1 [options] [session-file]\n\n"
273                    QSAMPLER_TITLE " - " QSAMPLER_SUBTITLE "\n\n"
274      fprintf(stderr, QObject::tr("Usage") + ": %s [" + QObject::tr("options") + "] [" +                  "Options:\n\n"
275          QObject::tr("session-file") + "]" + sEol, arg0);                  "  -s, --start\n\tStart linuxsampler server locally\n\n"
276      fprintf(stderr, QSAMPLER_TITLE " - " + QObject::tr(QSAMPLER_SUBTITLE) + sEol);                  "  -h, --hostname\n\tSpecify linuxsampler server hostname (default = localhost)\n\n"
277      fprintf(stderr, QObject::tr("Options") + ":" + sEol);                  "  -p, --port\n\tSpecify linuxsampler server port number (default = 8888)\n\n"
278      fprintf(stderr, "  -s, --start" + sEot +                  "  -?, --help\n\tShow help about command line options\n\n"
279          QObject::tr("Start linuxsampler server locally") + sEol);                  "  -v, --version\n\tShow version information\n\n")
280      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);  
281  }  }
282    
283    
284  // Parse command line arguments into m_settings.  // Parse command line arguments into m_settings.
285  bool qsamplerOptions::parse_args ( int argc, char **argv )  bool Options::parse_args ( const QStringList& args )
286  {  {
287      const QString sEol = "\n\n";          QTextStream out(stderr);
288      int iCmdArgs = 0;          const QString sEol = "\n\n";
289            int iCmdArgs = 0;
290            const int argc = args.count();
291    
292            for (int i = 1; i < argc; i++) {
293    
294                    if (iCmdArgs > 0) {
295                            sSessionFile += " ";
296                            sSessionFile += args.at(i);
297                            iCmdArgs++;
298                            continue;
299                    }
300    
301                    QString sArg = args.at(i);
302                    QString sVal;
303                    const int iEqual = sArg.indexOf("=");
304                    if (iEqual >= 0) {
305                            sVal = sArg.right(sArg.length() - iEqual - 1);
306                            sArg = sArg.left(iEqual);
307                    }
308                    else if (i < argc - 1) {
309                            sVal = args.at(i + 1);
310                            if (sVal[0] == '-')
311                                    sVal.clear();
312                    }
313    
314                    if (sArg == "-s" || sArg == "--start") {
315                            bServerStart = true;
316                    }
317                    else if (sArg == "-h" || sArg == "--hostname") {
318                            if (sVal.isNull()) {
319                                    out << QObject::tr("Option -h requires an argument (host).") + sEol;
320                                    return false;
321                            }
322                            sServerHost = sVal;
323                            if (iEqual < 0)
324                                    i++;
325                    }
326                    else if (sArg == "-p" || sArg == "--port") {
327                            if (sVal.isNull()) {
328                                    out << QObject::tr("Option -p requires an argument (port).") + sEol;
329                                    return false;
330                            }
331                            iServerPort = sVal.toInt();
332                            if (iEqual < 0)
333                                    i++;
334                    }
335                    else if (sArg == "-?" || sArg == "--help") {
336                            print_usage(args.at(0));
337                            return false;
338                    }
339                    else if (sArg == "-v" || sArg == "--version") {
340                            out << QString("Qt: %1\n")
341                                    .arg(qVersion());
342                            out << QString("%1: %2\n")
343                                    .arg(QSAMPLER_TITLE)
344                                    .arg(CONFIG_BUILD_VERSION);
345                    #ifdef CONFIG_LIBGIG
346                            out << QString("%1: %2\n")
347                                    .arg(gig::libraryName().c_str())
348                                    .arg(gig::libraryVersion().c_str());
349                    #endif
350                            out << QString("%1: %2\n")
351                                    .arg(::lscp_client_package())
352                                    .arg(::lscp_client_version());
353                            return false;
354                    }
355                    else {
356                            // If we don't have one by now,
357                            // this will be the startup sesion file...
358                            sSessionFile += sArg;
359                            iCmdArgs++;
360                    }
361            }
362    
363      for (int i = 1; i < argc; i++) {          // Alright with argument parsing.
364            return true;
         if (iCmdArgs > 0) {  
             sSessionFile += " ";  
             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());  
 #ifdef CONFIG_LIBGIG  
                         fprintf(stderr, "%s: %s\n", gig::libraryName().c_str(), gig::libraryVersion().c_str());  
 #endif              
             fprintf(stderr, "%s: %s\n", ::lscp_client_package(), ::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;  
365  }  }
366    
367    
368  //---------------------------------------------------------------------------  //---------------------------------------------------------------------------
369  // Widget geometry persistence helper methods.  // Widget geometry persistence helper methods.
370    
371  void qsamplerOptions::loadWidgetGeometry ( QWidget *pWidget )  void Options::loadWidgetGeometry ( QWidget *pWidget, bool bVisible )
372  {  {
373      // Try to restore old form window positioning.          // Try to restore old form window positioning.
374      if (pWidget) {          if (pWidget) {
375          QPoint fpos;          //      if (bVisible) pWidget->show(); -- force initial exposure?
376          QSize  fsize;                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());
377          bool bVisible;          #if QT_VERSION >= 0x050000
378          m_settings.beginGroup("/Geometry/" + QString(pWidget->name()));                  const QByteArray& geometry
379          fpos.setX(m_settings.readNumEntry("/x", -1));                          = m_settings.value("/geometry").toByteArray();
380          fpos.setY(m_settings.readNumEntry("/y", -1));                  if (!geometry.isEmpty())
381          fsize.setWidth(m_settings.readNumEntry("/width", -1));                          pWidget->restoreGeometry(geometry);
382          fsize.setHeight(m_settings.readNumEntry("/height", -1));          #else//--LOAD_OLD_GEOMETRY
383          bVisible = m_settings.readBoolEntry("/visible", false);                  QPoint wpos;
384          m_settings.endGroup();                  QSize  wsize;
385          if (fpos.x() > 0 && fpos.y() > 0)                  wpos.setX(m_settings.value("/x", -1).toInt());
386              pWidget->move(fpos);                  wpos.setY(m_settings.value("/y", -1).toInt());
387          if (fsize.width() > 0 && fsize.height() > 0)                  wsize.setWidth(m_settings.value("/width", -1).toInt());
388              pWidget->resize(fsize);                  wsize.setHeight(m_settings.value("/height", -1).toInt());
389          else                  if (wpos.x() > 0 && wpos.y() > 0)
390              pWidget->adjustSize();                          pWidget->move(wpos);
391          if (bVisible)                  if (wsize.width() > 0 && wsize.height() > 0)
392              pWidget->show();                          pWidget->resize(wsize);
393          else          #endif
394              pWidget->hide();          //      else
395      }          //      pWidget->adjustSize();
396                    if (!bVisible)
397                            bVisible = m_settings.value("/visible", false).toBool();
398                    if (bVisible)
399                            pWidget->show();
400                    else
401                            pWidget->hide();
402                    m_settings.endGroup();
403            }
404  }  }
405    
406    
407  void qsamplerOptions::saveWidgetGeometry ( QWidget *pWidget )  void Options::saveWidgetGeometry ( QWidget *pWidget, bool bVisible )
408  {  {
409      // Try to save form window position...          // Try to save form window position...
410      // (due to X11 window managers ideossincrasies, we better          // (due to X11 window managers ideossincrasies, we better
411      // only save the form geometry while its up and visible)          // only save the form geometry while its up and visible)
412      if (pWidget) {          if (pWidget) {
413          m_settings.beginGroup("/Geometry/" + QString(pWidget->name()));                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());
414          bool bVisible = pWidget->isVisible();          #if QT_VERSION >= 0x050000
415          if (bVisible) {                  m_settings.setValue("/geometry", pWidget->saveGeometry());
416              QPoint fpos  = pWidget->pos();          #else//--SAVE_OLD_GEOMETRY
417              QSize  fsize = pWidget->size();                  const QPoint& wpos  = pWidget->pos();
418              m_settings.writeEntry("/x", fpos.x());                  const QSize&  wsize = pWidget->size();
419              m_settings.writeEntry("/y", fpos.y());                  m_settings.setValue("/x", wpos.x());
420              m_settings.writeEntry("/width", fsize.width());                  m_settings.setValue("/y", wpos.y());
421              m_settings.writeEntry("/height", fsize.height());                  m_settings.setValue("/width", wsize.width());
422          }                  m_settings.setValue("/height", wsize.height());
423          m_settings.writeEntry("/visible", bVisible);          #endif
424          m_settings.endGroup();                  if (!bVisible) bVisible = pWidget->isVisible();
425      }                  m_settings.setValue("/visible", bVisible);
426                    m_settings.endGroup();
427            }
428  }  }
429    
430    
431  //---------------------------------------------------------------------------  //---------------------------------------------------------------------------
432  // Combo box history persistence helper implementation.  // Combo box history persistence helper implementation.
433    
434  void qsamplerOptions::add2ComboBoxHistory ( QComboBox *pComboBox, const QString& sNewText, int iLimit, int iIndex )  void Options::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )
435  {  {
436      int iCount = pComboBox->count();          const bool bBlockSignals = pComboBox->blockSignals(true);
437      for (int i = 0; i < iCount; i++) {  
438          QString sText = pComboBox->text(i);          // Load combobox list from configuration settings file...
439          if (sText == sNewText) {          m_settings.beginGroup("/History/" + pComboBox->objectName());
440              pComboBox->removeItem(i);  
441              iCount--;          if (m_settings.childKeys().count() > 0) {
442              break;                  pComboBox->setUpdatesEnabled(false);
443          }                  pComboBox->setDuplicatesEnabled(false);
444      }                  pComboBox->clear();
445      while (iCount >= iLimit)                  for (int i = 0; i < iLimit; ++i) {
446          pComboBox->removeItem(--iCount);                          const QString& sText = m_settings.value(
447      pComboBox->insertItem(sNewText, iIndex);                                  "/Item" + QString::number(i + 1)).toString();
448                            if (sText.isEmpty())
449                                    break;
450                            pComboBox->addItem(sText);
451                    }
452                    pComboBox->setUpdatesEnabled(true);
453            }
454    
455            m_settings.endGroup();
456    
457            pComboBox->blockSignals(bBlockSignals);
458  }  }
459    
460    
461  void qsamplerOptions::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )  void Options::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )
462  {  {
463      pComboBox->setUpdatesEnabled(false);          const bool bBlockSignals = pComboBox->blockSignals(true);
     pComboBox->setDuplicatesEnabled(false);  
464    
465      m_settings.beginGroup("/History/" + QString(pComboBox->name()));          // Add current text as latest item...
466      for (int i = 0; i < iLimit; i++) {          const QString sCurrentText = pComboBox->currentText();
467          QString sText = m_settings.readEntry("/Item" + QString::number(i + 1), QString::null);          int iCount = pComboBox->count();
468          if (sText.isEmpty())          for (int i = 0; i < iCount; i++) {
469              break;                  const QString& sText = pComboBox->itemText(i);
470          add2ComboBoxHistory(pComboBox, sText, iLimit);                  if (sText == sCurrentText) {
471      }                          pComboBox->removeItem(i);
472      m_settings.endGroup();                          --iCount;
473                            break;
474                    }
475            }
476            while (iCount >= iLimit)
477                    pComboBox->removeItem(--iCount);
478            pComboBox->insertItem(0, sCurrentText);
479            pComboBox->setCurrentIndex(0);
480            ++iCount;
481    
482            // Save combobox list to configuration settings file...
483            m_settings.beginGroup("/History/" + pComboBox->objectName());
484            for (int i = 0; i < iCount; ++i) {
485                    const QString& sText = pComboBox->itemText(i);
486                    if (sText.isEmpty())
487                            break;
488                    m_settings.setValue("/Item" + QString::number(i + 1), sText);
489            }
490            m_settings.endGroup();
491    
492      pComboBox->setUpdatesEnabled(true);          pComboBox->blockSignals(bBlockSignals);
493  }  }
494    
495    
496  void qsamplerOptions::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )  int Options::getMaxVoices() {
497  {  #ifndef CONFIG_MAX_VOICES
498      add2ComboBoxHistory(pComboBox, pComboBox->currentText(), iLimit, 0);          return -1;
499    #else
500            if (iMaxVoices > 0) return iMaxVoices;
501            return getEffectiveMaxVoices();
502    #endif // CONFIG_MAX_VOICES
503    }
504    
505    int Options::getEffectiveMaxVoices() {
506    #ifndef CONFIG_MAX_VOICES
507            return -1;
508    #else
509            MainForm *pMainForm = MainForm::getInstance();
510            if (!pMainForm || !pMainForm->client())
511                    return -1;
512    
513            return ::lscp_get_voices(pMainForm->client());
514    #endif // CONFIG_MAX_VOICES
515    }
516    
517    void Options::setMaxVoices(int iMaxVoices) {
518    #ifdef CONFIG_MAX_VOICES
519            if (iMaxVoices < 1) return;
520    
521            MainForm *pMainForm = MainForm::getInstance();
522            if (!pMainForm || !pMainForm->client())
523                    return;
524    
525            lscp_status_t result =
526                    ::lscp_set_voices(pMainForm->client(), iMaxVoices);
527    
528            if (result != LSCP_OK) {
529                    pMainForm->appendMessagesClient("lscp_set_voices");
530                    return;
531            }
532    
533            this->iMaxVoices = iMaxVoices;
534    #endif // CONFIG_MAX_VOICES
535    }
536    
537      m_settings.beginGroup("/History/" + QString(pComboBox->name()));  int Options::getMaxStreams() {
538      for (int i = 0; i < iLimit && i < pComboBox->count(); i++) {  #ifndef CONFIG_MAX_VOICES
539          QString sText = pComboBox->text(i);          return -1;
540          if (sText.isEmpty())  #else
541              break;          if (iMaxStreams > 0) return iMaxStreams;
542          m_settings.writeEntry("/Item" + QString::number(i + 1), sText);          return getEffectiveMaxStreams();
543      }  #endif // CONFIG_MAX_VOICES
     m_settings.endGroup();  
544  }  }
545    
546    int Options::getEffectiveMaxStreams() {
547    #ifndef CONFIG_MAX_VOICES
548            return -1;
549    #else
550            MainForm *pMainForm = MainForm::getInstance();
551            if (!pMainForm || !pMainForm->client())
552                    return -1;
553    
554            return ::lscp_get_streams(pMainForm->client());
555    #endif // CONFIG_MAX_VOICES
556    }
557    
558    void Options::setMaxStreams(int iMaxStreams) {
559    #ifdef CONFIG_MAX_VOICES
560            if (iMaxStreams < 0) return;
561    
562            MainForm *pMainForm = MainForm::getInstance();
563            if (!pMainForm || !pMainForm->client())
564                    return;
565    
566            lscp_status_t result =
567                    ::lscp_set_streams(pMainForm->client(), iMaxStreams);
568    
569            if (result != LSCP_OK) {
570                    pMainForm->appendMessagesClient("lscp_set_streams");
571                    return;
572            }
573    
574            this->iMaxStreams = iMaxStreams;
575    #endif // CONFIG_MAX_VOICES
576    }
577    
578    void Options::sendFineTuningSettings() {
579            setMaxVoices(iMaxVoices);
580            setMaxStreams(iMaxStreams);
581    
582            MainForm *pMainForm = MainForm::getInstance();
583            if (!pMainForm || !pMainForm->client())
584                    return;
585    
586            pMainForm->appendMessages(QObject::tr("Sent fine tuning settings."));
587    }
588    
589    } // namespace QSampler
590    
591    
592  // end of qsamplerOptions.cpp  // end of qsamplerOptions.cpp
593    

Legend:
Removed from v.980  
changed lines
  Added in v.3518

  ViewVC Help
Powered by ViewVC