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

Legend:
Removed from v.264  
changed lines
  Added in v.2028

  ViewVC Help
Powered by ViewVC