/[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 119 by capela, Wed Jun 9 20:24:48 2004 UTC revision 2718 by capela, Thu Jan 22 19:01:32 2015 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-2015, rncbc aka Rui Nuno Capela. All rights reserved.
5       Copyright (C) 2007,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 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 <QTextStream>
28    #include <QComboBox>
29    
30  #include <qcombobox.h>  #include <lscp/client.h>
31    
32  #include "lscp/client.h"  #ifdef CONFIG_LIBGIG
33    #include <gig.h>
34    #endif
35    
 #include "config.h"  
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);  
     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.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__)
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            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    #ifdef CONFIG_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 171  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 (default = localhost)\n\n"
271      fprintf(stderr, QObject::tr("Options") + ":" + sEol);                  "  -p, --port\n\tSpecify linuxsampler server port number (default = 8888)\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++) {          const 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                    const 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                            if (sVal[0] == '-')
305                                    sVal.clear();
306                    }
307    
308                    if (sArg == "-s" || sArg == "--start") {
309                            bServerStart = true;
310                    }
311                    else if (sArg == "-h" || sArg == "--hostname") {
312                            if (sVal.isNull()) {
313                                    out << QObject::tr("Option -h requires an argument (host).") + sEol;
314                                    return false;
315                            }
316                            sServerHost = sVal;
317                            if (iEqual < 0)
318                                    i++;
319                    }
320                    else if (sArg == "-p" || sArg == "--port") {
321                            if (sVal.isNull()) {
322                                    out << QObject::tr("Option -p requires an argument (port).") + sEol;
323                                    return false;
324                            }
325                            iServerPort = sVal.toInt();
326                            if (iEqual < 0)
327                                    i++;
328                    }
329                    else if (sArg == "-?" || sArg == "--help") {
330                            print_usage(args.at(0));
331                            return false;
332                    }
333                    else if (sArg == "-v" || sArg == "--version") {
334                            out << QObject::tr("Qt: %1\n").arg(qVersion());
335                    #ifdef CONFIG_LIBGIG
336                            out << QString("%1: %2\n")
337                                    .arg(gig::libraryName().c_str())
338                                    .arg(gig::libraryVersion().c_str());
339                    #endif
340                            out << QString("%1: %2\n")
341                                    .arg(::lscp_client_package())
342                                    .arg(::lscp_client_version());
343                            out << QObject::tr(QSAMPLER_TITLE ": %1\n").arg(QSAMPLER_VERSION);
344                            return false;
345                    }
346                    else {
347                            // If we don't have one by now,
348                            // this will be the startup sesion file...
349                            sSessionFile += sArg;
350                            iCmdArgs++;
351                    }
352            }
353    
354          if (iCmdArgs > 0) {          // Alright with argument parsing.
355              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;  
356  }  }
357    
358    
359  //---------------------------------------------------------------------------  //---------------------------------------------------------------------------
360  // Widget geometry persistence helper methods.  // Widget geometry persistence helper methods.
361    
362  void qsamplerOptions::loadWidgetGeometry ( QWidget *pWidget )  void Options::loadWidgetGeometry ( QWidget *pWidget, bool bVisible )
363  {  {
364      // Try to restore old form window positioning.          // Try to restore old form window positioning.
365      if (pWidget) {          if (pWidget) {
366          QPoint fpos;                  QPoint wpos;
367          QSize  fsize;                  QSize  wsize;
368          bool bVisible;                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());
369          m_settings.beginGroup("/Geometry/" + QString(pWidget->name()));                  wpos.setX(m_settings.value("/x", -1).toInt());
370          fpos.setX(m_settings.readNumEntry("/x", -1));                  wpos.setY(m_settings.value("/y", -1).toInt());
371          fpos.setY(m_settings.readNumEntry("/y", -1));                  wsize.setWidth(m_settings.value("/width", -1).toInt());
372          fsize.setWidth(m_settings.readNumEntry("/width", -1));                  wsize.setHeight(m_settings.value("/height", -1).toInt());
373          fsize.setHeight(m_settings.readNumEntry("/height", -1));                  if (!bVisible) bVisible = m_settings.value("/visible", false).toBool();
374          bVisible = m_settings.readBoolEntry("/visible", false);                  m_settings.endGroup();
375          m_settings.endGroup();                  if (wpos.x() > 0 && wpos.y() > 0)
376          if (fpos.x() > 0 && fpos.y() > 0)                          pWidget->move(wpos);
377              pWidget->move(fpos);                  if (wsize.width() > 0 && wsize.height() > 0)
378          if (fsize.width() > 0 && fsize.height() > 0)                          pWidget->resize(wsize);
379              pWidget->resize(fsize);          //      else
380          else          //              pWidget->adjustSize();
381              pWidget->adjustSize();                  if (bVisible)
382          if (bVisible)                          pWidget->show();
383              pWidget->show();          //      else
384          else          //              pWidget->hide();
385              pWidget->hide();          }
     }  
386  }  }
387    
388    
389  void qsamplerOptions::saveWidgetGeometry ( QWidget *pWidget )  void Options::saveWidgetGeometry ( QWidget *pWidget, bool bVisible )
390  {  {
391      // Try to save form window position...          // Try to save form window position...
392      // (due to X11 window managers ideossincrasies, we better          // (due to X11 window managers ideossincrasies, we better
393      // only save the form geometry while its up and visible)          // only save the form geometry while its up and visible)
394      if (pWidget) {          if (pWidget) {
395          m_settings.beginGroup("/Geometry/" + QString(pWidget->name()));                  m_settings.beginGroup("/Geometry/" + pWidget->objectName());
396          bool bVisible = pWidget->isVisible();                  const QPoint& wpos  = pWidget->pos();
397          if (bVisible) {                  const QSize&  wsize = pWidget->size();
398              QPoint fpos  = pWidget->pos();                  if (!bVisible) bVisible = pWidget->isVisible();
399              QSize  fsize = pWidget->size();                  m_settings.setValue("/x", wpos.x());
400              m_settings.writeEntry("/x", fpos.x());                  m_settings.setValue("/y", wpos.y());
401              m_settings.writeEntry("/y", fpos.y());                  m_settings.setValue("/width", wsize.width());
402              m_settings.writeEntry("/width", fsize.width());                  m_settings.setValue("/height", wsize.height());
403              m_settings.writeEntry("/height", fsize.height());                  m_settings.setValue("/visible", bVisible);
404          }                  m_settings.endGroup();
405          m_settings.writeEntry("/visible", bVisible);          }
         m_settings.endGroup();  
     }  
406  }  }
407    
408    
409  //---------------------------------------------------------------------------  //---------------------------------------------------------------------------
410  // Combo box history persistence helper implementation.  // Combo box history persistence helper implementation.
411    
412  void qsamplerOptions::add2ComboBoxHistory ( QComboBox *pComboBox, const QString& sNewText, int iLimit, int iIndex )  void Options::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )
413  {  {
414      int iCount = pComboBox->count();          // Load combobox list from configuration settings file...
415      for (int i = 0; i < iCount; i++) {          m_settings.beginGroup("/History/" + pComboBox->objectName());
416          QString sText = pComboBox->text(i);  
417          if (sText == sNewText) {          if (m_settings.childKeys().count() > 0) {
418              pComboBox->removeItem(i);                  pComboBox->setUpdatesEnabled(false);
419              iCount--;                  pComboBox->setDuplicatesEnabled(false);
420              break;                  pComboBox->clear();
421          }                  for (int i = 0; i < iLimit; i++) {
422      }                          const QString& sText = m_settings.value(
423      while (iCount >= iLimit)                                  "/Item" + QString::number(i + 1)).toString();
424          pComboBox->removeItem(--iCount);                          if (sText.isEmpty())
425      pComboBox->insertItem(sNewText, iIndex);                                  break;
426                            pComboBox->addItem(sText);
427                    }
428                    pComboBox->setUpdatesEnabled(true);
429            }
430    
431            m_settings.endGroup();
432  }  }
433    
434    
435  void qsamplerOptions::loadComboBoxHistory ( QComboBox *pComboBox, int iLimit )  void Options::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )
436  {  {
437      pComboBox->setUpdatesEnabled(false);          // Add current text as latest item...
438      pComboBox->setDuplicatesEnabled(false);          const QString& sCurrentText = pComboBox->currentText();
439            int iCount = pComboBox->count();
440            for (int i = 0; i < iCount; i++) {
441                    const QString& sText = pComboBox->itemText(i);
442                    if (sText == sCurrentText) {
443                            pComboBox->removeItem(i);
444                            iCount--;
445                            break;
446                    }
447            }
448            while (iCount >= iLimit)
449                    pComboBox->removeItem(--iCount);
450            pComboBox->insertItem(0, sCurrentText);
451            iCount++;
452    
453            // Save combobox list to configuration settings file...
454            m_settings.beginGroup("/History/" + pComboBox->objectName());
455            for (int i = 0; i < iCount; i++) {
456                    const QString& sText = pComboBox->itemText(i);
457                    if (sText.isEmpty())
458                            break;
459                    m_settings.setValue("/Item" + QString::number(i + 1), sText);
460            }
461            m_settings.endGroup();
462    }
463    
464    int Options::getMaxVoices() {
465    #ifndef CONFIG_MAX_VOICES
466            return -1;
467    #else
468            if (iMaxVoices > 0) return iMaxVoices;
469            return getEffectiveMaxVoices();
470    #endif // CONFIG_MAX_VOICES
471    }
472    
473      m_settings.beginGroup("/History/" + QString(pComboBox->name()));  int Options::getEffectiveMaxVoices() {
474      for (int i = 0; i < iLimit; i++) {  #ifndef CONFIG_MAX_VOICES
475          QString sText = m_settings.readEntry("/Item" + QString::number(i + 1), QString::null);          return -1;
476          if (sText.isEmpty())  #else
477              break;          MainForm *pMainForm = MainForm::getInstance();
478          add2ComboBoxHistory(pComboBox, sText, iLimit);          if (!pMainForm || !pMainForm->client())
479      }                  return -1;
     m_settings.endGroup();  
480    
481      pComboBox->setUpdatesEnabled(true);          return ::lscp_get_voices(pMainForm->client());
482    #endif // CONFIG_MAX_VOICES
483  }  }
484    
485    void Options::setMaxVoices(int iMaxVoices) {
486    #ifdef CONFIG_MAX_VOICES
487            if (iMaxVoices < 1) return;
488    
489            MainForm *pMainForm = MainForm::getInstance();
490            if (!pMainForm || !pMainForm->client())
491                    return;
492    
493            lscp_status_t result =
494                    ::lscp_set_voices(pMainForm->client(), iMaxVoices);
495    
496            if (result != LSCP_OK) {
497                    pMainForm->appendMessagesClient("lscp_set_voices");
498                    return;
499            }
500    
501  void qsamplerOptions::saveComboBoxHistory ( QComboBox *pComboBox, int iLimit )          this->iMaxVoices = iMaxVoices;
502  {  #endif // CONFIG_MAX_VOICES
503      add2ComboBoxHistory(pComboBox, pComboBox->currentText(), iLimit, 0);  }
504    
505      m_settings.beginGroup("/History/" + QString(pComboBox->name()));  int Options::getMaxStreams() {
506      for (int i = 0; i < iLimit && i < pComboBox->count(); i++) {  #ifndef CONFIG_MAX_VOICES
507          QString sText = pComboBox->text(i);          return -1;
508          if (sText.isEmpty())  #else
509              break;          if (iMaxStreams > 0) return iMaxStreams;
510          m_settings.writeEntry("/Item" + QString::number(i + 1), sText);          return getEffectiveMaxStreams();
511      }  #endif // CONFIG_MAX_VOICES
     m_settings.endGroup();  
512  }  }
513    
514    int Options::getEffectiveMaxStreams() {
515    #ifndef CONFIG_MAX_VOICES
516            return -1;
517    #else
518            MainForm *pMainForm = MainForm::getInstance();
519            if (!pMainForm || !pMainForm->client())
520                    return -1;
521    
522            return ::lscp_get_streams(pMainForm->client());
523    #endif // CONFIG_MAX_VOICES
524    }
525    
526    void Options::setMaxStreams(int iMaxStreams) {
527    #ifdef CONFIG_MAX_VOICES
528            if (iMaxStreams < 0) return;
529    
530            MainForm *pMainForm = MainForm::getInstance();
531            if (!pMainForm || !pMainForm->client())
532                    return;
533    
534            lscp_status_t result =
535                    ::lscp_set_streams(pMainForm->client(), iMaxStreams);
536    
537            if (result != LSCP_OK) {
538                    pMainForm->appendMessagesClient("lscp_set_streams");
539                    return;
540            }
541    
542            this->iMaxStreams = iMaxStreams;
543    #endif // CONFIG_MAX_VOICES
544    }
545    
546    void Options::sendFineTuningSettings() {
547            setMaxVoices(iMaxVoices);
548            setMaxStreams(iMaxStreams);
549    
550            MainForm *pMainForm = MainForm::getInstance();
551            if (!pMainForm || !pMainForm->client())
552                    return;
553    
554            pMainForm->appendMessages(QObject::tr("Sent fine tuning settings."));
555    }
556    
557    } // namespace QSampler
558    
559    
560  // end of qsamplerOptions.cpp  // end of qsamplerOptions.cpp

Legend:
Removed from v.119  
changed lines
  Added in v.2718

  ViewVC Help
Powered by ViewVC