/[svn]/qsampler/trunk/src/qsamplerOptionsForm.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerOptionsForm.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1558 by capela, Thu Dec 6 09:35:33 2007 UTC revision 3651 by capela, Wed Dec 11 11:08:45 2019 UTC
# Line 1  Line 1 
1  // qsamplerOptionsForm.cpp  // qsamplerOptionsForm.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2019, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007, Christian Schoenebeck     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
# Line 25  Line 25 
25  #include "qsamplerAbout.h"  #include "qsamplerAbout.h"
26  #include "qsamplerOptions.h"  #include "qsamplerOptions.h"
27    
28    #include "qsamplerPaletteForm.h"
29    
30  #include <QMessageBox>  #include <QMessageBox>
31  #include <QFontDialog>  #include <QFontDialog>
32    #include <QFileDialog>
33    
34    #include <QStyleFactory>
35    
36    
37    // Translatable macro contextualizer.
38    #undef  _TR
39    #define _TR(x) QT_TR_NOOP(x)
40    
41    
42    // Default (empty/blank) name.
43    static const char *g_pszDefName = _TR("(default)");
44    
45    
46  namespace QSampler {  namespace QSampler {
# Line 41  OptionsForm::OptionsForm ( QWidget* pPar Line 55  OptionsForm::OptionsForm ( QWidget* pPar
55          m_ui.setupUi(this);          m_ui.setupUi(this);
56    
57          // No settings descriptor initially (the caller will set it).          // No settings descriptor initially (the caller will set it).
58          m_pOptions = NULL;          m_pOptions = nullptr;
59    
60          // Initialize dirty control state.          // Initialize dirty control state.
61          m_iDirtySetup = 0;          m_iDirtySetup = 0;
# Line 72  OptionsForm::OptionsForm ( QWidget* pPar Line 86  OptionsForm::OptionsForm ( QWidget* pPar
86          QObject::connect(m_ui.StartDelaySpinBox,          QObject::connect(m_ui.StartDelaySpinBox,
87                  SIGNAL(valueChanged(int)),                  SIGNAL(valueChanged(int)),
88                  SLOT(optionsChanged()));                  SLOT(optionsChanged()));
89            QObject::connect(m_ui.MessagesLogCheckBox,
90                    SIGNAL(stateChanged(int)),
91                    SLOT(optionsChanged()));
92            QObject::connect(m_ui.MessagesLogPathComboBox,
93                    SIGNAL(editTextChanged(const QString&)),
94                    SLOT(optionsChanged()));
95            QObject::connect(m_ui.MessagesLogPathToolButton,
96                    SIGNAL(clicked()),
97                    SLOT(browseMessagesLogPath()));
98          QObject::connect(m_ui.DisplayFontPushButton,          QObject::connect(m_ui.DisplayFontPushButton,
99                  SIGNAL(clicked()),                  SIGNAL(clicked()),
100                  SLOT(chooseDisplayFont()));                  SLOT(chooseDisplayFont()));
# Line 99  OptionsForm::OptionsForm ( QWidget* pPar Line 122  OptionsForm::OptionsForm ( QWidget* pPar
122          QObject::connect(m_ui.ConfirmRemoveCheckBox,          QObject::connect(m_ui.ConfirmRemoveCheckBox,
123                  SIGNAL(stateChanged(int)),                  SIGNAL(stateChanged(int)),
124                  SLOT(optionsChanged()));                  SLOT(optionsChanged()));
125            QObject::connect(m_ui.ConfirmResetCheckBox,
126                    SIGNAL(stateChanged(int)),
127                    SLOT(optionsChanged()));
128            QObject::connect(m_ui.ConfirmRestartCheckBox,
129                    SIGNAL(stateChanged(int)),
130                    SLOT(optionsChanged()));
131            QObject::connect(m_ui.ConfirmErrorCheckBox,
132                    SIGNAL(stateChanged(int)),
133                    SLOT(optionsChanged()));
134          QObject::connect(m_ui.KeepOnTopCheckBox,          QObject::connect(m_ui.KeepOnTopCheckBox,
135                  SIGNAL(stateChanged(int)),                  SIGNAL(stateChanged(int)),
136                  SLOT(optionsChanged()));                  SLOT(optionsChanged()));
# Line 114  OptionsForm::OptionsForm ( QWidget* pPar Line 146  OptionsForm::OptionsForm ( QWidget* pPar
146          QObject::connect(m_ui.InstrumentNamesCheckBox,          QObject::connect(m_ui.InstrumentNamesCheckBox,
147                  SIGNAL(stateChanged(int)),                  SIGNAL(stateChanged(int)),
148                  SLOT(optionsChanged()));                  SLOT(optionsChanged()));
149          QObject::connect(m_ui.OkPushButton,          QObject::connect(m_ui.CustomColorThemeComboBox,
150                    SIGNAL(activated(int)),
151                    SLOT(optionsChanged()));
152            QObject::connect(m_ui.CustomColorThemeToolButton,
153                  SIGNAL(clicked()),                  SIGNAL(clicked()),
154                    SLOT(editCustomColorThemes()));
155            QObject::connect(m_ui.CustomStyleThemeComboBox,
156                    SIGNAL(activated(int)),
157                    SLOT(optionsChanged()));
158            QObject::connect(m_ui.BaseFontSizeComboBox,
159                    SIGNAL(editTextChanged(const QString&)),
160                    SLOT(optionsChanged()));
161            QObject::connect(m_ui.MaxVoicesSpinBox,
162                    SIGNAL(valueChanged(int)),
163                    SLOT(maxVoicesChanged(int)));
164            QObject::connect(m_ui.MaxStreamsSpinBox,
165                    SIGNAL(valueChanged(int)),
166                    SLOT(maxStreamsChanged(int)));
167            QObject::connect(m_ui.DialogButtonBox,
168                    SIGNAL(accepted()),
169                  SLOT(accept()));                  SLOT(accept()));
170          QObject::connect(m_ui.CancelPushButton,          QObject::connect(m_ui.DialogButtonBox,
171                  SIGNAL(clicked()),                  SIGNAL(rejected()),
172                  SLOT(reject()));                  SLOT(reject()));
173  }  }
174    
# Line 141  void OptionsForm::setup ( Options *pOpti Line 191  void OptionsForm::setup ( Options *pOpti
191          m_pOptions->loadComboBoxHistory(m_ui.ServerHostComboBox);          m_pOptions->loadComboBoxHistory(m_ui.ServerHostComboBox);
192          m_pOptions->loadComboBoxHistory(m_ui.ServerPortComboBox);          m_pOptions->loadComboBoxHistory(m_ui.ServerPortComboBox);
193          m_pOptions->loadComboBoxHistory(m_ui.ServerCmdLineComboBox);          m_pOptions->loadComboBoxHistory(m_ui.ServerCmdLineComboBox);
194            m_pOptions->loadComboBoxHistory(m_ui.MessagesLogPathComboBox);
195    
196          // Load Server settings...          // Load Server settings...
197          m_ui.ServerHostComboBox->setEditText(m_pOptions->sServerHost);          m_ui.ServerHostComboBox->setEditText(m_pOptions->sServerHost);
# Line 150  void OptionsForm::setup ( Options *pOpti Line 201  void OptionsForm::setup ( Options *pOpti
201          m_ui.ServerCmdLineComboBox->setEditText(m_pOptions->sServerCmdLine);          m_ui.ServerCmdLineComboBox->setEditText(m_pOptions->sServerCmdLine);
202          m_ui.StartDelaySpinBox->setValue(m_pOptions->iStartDelay);          m_ui.StartDelaySpinBox->setValue(m_pOptions->iStartDelay);
203    
204            // Logging options...
205            m_ui.MessagesLogCheckBox->setChecked(m_pOptions->bMessagesLog);
206            m_ui.MessagesLogPathComboBox->setEditText(m_pOptions->sMessagesLogPath);
207    
208          // Load Display options...          // Load Display options...
209          QFont font;          QFont font;
210          QPalette pal;          QPalette pal;
# Line 174  void OptionsForm::setup ( Options *pOpti Line 229  void OptionsForm::setup ( Options *pOpti
229          // Messages font.          // Messages font.
230          if (m_pOptions->sMessagesFont.isEmpty()          if (m_pOptions->sMessagesFont.isEmpty()
231                  || !font.fromString(m_pOptions->sMessagesFont))                  || !font.fromString(m_pOptions->sMessagesFont))
232                  font = QFont("Fixed", 8);                  font = QFont("Monospace", 8);
233          pal = m_ui.MessagesFontTextLabel->palette();          pal = m_ui.MessagesFontTextLabel->palette();
234          pal.setColor(QPalette::Background, Qt::white);          pal.setColor(QPalette::Background, pal.base().color());
235          m_ui.MessagesFontTextLabel->setPalette(pal);          m_ui.MessagesFontTextLabel->setPalette(pal);
236          m_ui.MessagesFontTextLabel->setFont(font);          m_ui.MessagesFontTextLabel->setFont(font);
237          m_ui.MessagesFontTextLabel->setText(font.family()          m_ui.MessagesFontTextLabel->setText(font.family()
# Line 188  void OptionsForm::setup ( Options *pOpti Line 243  void OptionsForm::setup ( Options *pOpti
243    
244          // Other options finally.          // Other options finally.
245          m_ui.ConfirmRemoveCheckBox->setChecked(m_pOptions->bConfirmRemove);          m_ui.ConfirmRemoveCheckBox->setChecked(m_pOptions->bConfirmRemove);
246            m_ui.ConfirmRestartCheckBox->setChecked(m_pOptions->bConfirmRestart);
247            m_ui.ConfirmResetCheckBox->setChecked(m_pOptions->bConfirmReset);
248            m_ui.ConfirmErrorCheckBox->setChecked(m_pOptions->bConfirmError);
249          m_ui.KeepOnTopCheckBox->setChecked(m_pOptions->bKeepOnTop);          m_ui.KeepOnTopCheckBox->setChecked(m_pOptions->bKeepOnTop);
250          m_ui.StdoutCaptureCheckBox->setChecked(m_pOptions->bStdoutCapture);          m_ui.StdoutCaptureCheckBox->setChecked(m_pOptions->bStdoutCapture);
251          m_ui.CompletePathCheckBox->setChecked(m_pOptions->bCompletePath);          m_ui.CompletePathCheckBox->setChecked(m_pOptions->bCompletePath);
252          m_ui.InstrumentNamesCheckBox->setChecked(m_pOptions->bInstrumentNames);          m_ui.InstrumentNamesCheckBox->setChecked(m_pOptions->bInstrumentNames);
253          m_ui.MaxRecentFilesSpinBox->setValue(m_pOptions->iMaxRecentFiles);          m_ui.MaxRecentFilesSpinBox->setValue(m_pOptions->iMaxRecentFiles);
254            if (m_pOptions->iBaseFontSize > 0)
255                    m_ui.BaseFontSizeComboBox->setEditText(QString::number(m_pOptions->iBaseFontSize));
256            else
257                    m_ui.BaseFontSizeComboBox->setCurrentIndex(0);
258    
259  #ifndef CONFIG_LIBGIG  #ifndef CONFIG_LIBGIG
260          m_ui.InstrumentNamesCheckBox->setEnabled(false);          m_ui.InstrumentNamesCheckBox->setEnabled(false);
261  #endif  #endif
262    
263            bMaxVoicesModified = bMaxStreamsModified = false;
264    #ifdef CONFIG_MAX_VOICES
265            const bool bMaxVoicesSupported =
266                    m_pOptions->getEffectiveMaxVoices() >= 0;
267            const bool bMaxStreamsSupported =
268                    m_pOptions->getEffectiveMaxStreams() >= 0;
269    
270            m_ui.MaxVoicesSpinBox->setEnabled(bMaxVoicesSupported);
271            m_ui.MaxVoicesSpinBox->setValue(m_pOptions->getMaxVoices());
272            if (!bMaxVoicesSupported)
273                    m_ui.MaxVoicesSpinBox->setToolTip(
274                            tr("This parameter is not supported by the current sampler "
275                               "version in use.")
276                    );
277            else
278                    m_ui.MaxVoicesSpinBox->setToolTip(
279                            tr("The max. amount of voices the sampler shall process "
280                               "simultaneously.")
281                    );
282    
283            m_ui.MaxStreamsSpinBox->setEnabled(bMaxStreamsSupported);
284            m_ui.MaxStreamsSpinBox->setValue(m_pOptions->getMaxStreams());
285            if (!bMaxStreamsSupported)
286                    m_ui.MaxStreamsSpinBox->setToolTip(
287                            tr("This parameter is not supported by the current sampler "
288                               "version in use.")
289                    );
290            else
291                    m_ui.MaxStreamsSpinBox->setToolTip(
292                            tr("The max. amount of disk streams the sampler shall process "
293                               "simultaneously.")
294                    );
295    #else
296            m_ui.MaxVoicesSpinBox->setEnabled(false);
297            m_ui.MaxStreamsSpinBox->setEnabled(false);
298            m_ui.MaxVoicesSpinBox->setToolTip(
299                    tr("QSampler was built without support for this parameter.")
300            );
301            m_ui.MaxStreamsSpinBox->setToolTip(
302                    tr("QSampler was built without support for this parameter.")
303            );
304    #endif // CONFIG_MAX_VOICES
305    
306            // Custom display options...
307            resetCustomColorThemes(m_pOptions->sCustomColorTheme);
308            resetCustomStyleThemes(m_pOptions->sCustomStyleTheme);
309    
310          // Done.          // Done.
311          m_iDirtySetup--;          m_iDirtySetup--;
312          stabilizeForm();          stabilizeForm();
# Line 215  void OptionsForm::accept (void) Line 324  void OptionsForm::accept (void)
324                  m_pOptions->iServerTimeout = m_ui.ServerTimeoutSpinBox->value();                  m_pOptions->iServerTimeout = m_ui.ServerTimeoutSpinBox->value();
325                  m_pOptions->bServerStart   = m_ui.ServerStartCheckBox->isChecked();                  m_pOptions->bServerStart   = m_ui.ServerStartCheckBox->isChecked();
326                  m_pOptions->sServerCmdLine = m_ui.ServerCmdLineComboBox->currentText().trimmed();                  m_pOptions->sServerCmdLine = m_ui.ServerCmdLineComboBox->currentText().trimmed();
327                  m_pOptions->iStartDelay      = m_ui.StartDelaySpinBox->value();                  m_pOptions->iStartDelay    = m_ui.StartDelaySpinBox->value();
328                    // Logging options...
329                    m_pOptions->bMessagesLog   = m_ui.MessagesLogCheckBox->isChecked();
330                    m_pOptions->sMessagesLogPath = m_ui.MessagesLogPathComboBox->currentText();
331                  // Channels options...                  // Channels options...
332                  m_pOptions->sDisplayFont   = m_ui.DisplayFontTextLabel->font().toString();                  m_pOptions->sDisplayFont   = m_ui.DisplayFontTextLabel->font().toString();
333                  m_pOptions->bDisplayEffect = m_ui.DisplayEffectCheckBox->isChecked();                  m_pOptions->bDisplayEffect = m_ui.DisplayEffectCheckBox->isChecked();
# Line 228  void OptionsForm::accept (void) Line 340  void OptionsForm::accept (void)
340                  m_pOptions->iMessagesLimitLines = m_ui.MessagesLimitLinesSpinBox->value();                  m_pOptions->iMessagesLimitLines = m_ui.MessagesLimitLinesSpinBox->value();
341                  // Other options...                  // Other options...
342                  m_pOptions->bConfirmRemove = m_ui.ConfirmRemoveCheckBox->isChecked();                  m_pOptions->bConfirmRemove = m_ui.ConfirmRemoveCheckBox->isChecked();
343                    m_pOptions->bConfirmRestart = m_ui.ConfirmRestartCheckBox->isChecked();
344                    m_pOptions->bConfirmReset  = m_ui.ConfirmResetCheckBox->isChecked();
345                    m_pOptions->bConfirmError  = m_ui.ConfirmErrorCheckBox->isChecked();
346                  m_pOptions->bKeepOnTop     = m_ui.KeepOnTopCheckBox->isChecked();                  m_pOptions->bKeepOnTop     = m_ui.KeepOnTopCheckBox->isChecked();
347                  m_pOptions->bStdoutCapture = m_ui.StdoutCaptureCheckBox->isChecked();                  m_pOptions->bStdoutCapture = m_ui.StdoutCaptureCheckBox->isChecked();
348                  m_pOptions->bCompletePath  = m_ui.CompletePathCheckBox->isChecked();                  m_pOptions->bCompletePath  = m_ui.CompletePathCheckBox->isChecked();
349                  m_pOptions->bInstrumentNames = m_ui.InstrumentNamesCheckBox->isChecked();                  m_pOptions->bInstrumentNames = m_ui.InstrumentNamesCheckBox->isChecked();
350                  m_pOptions->iMaxRecentFiles  = m_ui.MaxRecentFilesSpinBox->value();                  m_pOptions->iMaxRecentFiles  = m_ui.MaxRecentFilesSpinBox->value();
351                    m_pOptions->iBaseFontSize  = m_ui.BaseFontSizeComboBox->currentText().toInt();
352                    // Custom color/style theme options...
353                    const QString sOldCustomStyleTheme = m_pOptions->sCustomStyleTheme;
354                    if (m_ui.CustomStyleThemeComboBox->currentIndex() > 0)
355                            m_pOptions->sCustomStyleTheme = m_ui.CustomStyleThemeComboBox->currentText();
356                    else
357                            m_pOptions->sCustomStyleTheme.clear();
358                    const QString sOldCustomColorTheme = m_pOptions->sCustomColorTheme;
359                    if (m_ui.CustomColorThemeComboBox->currentIndex() > 0)
360                            m_pOptions->sCustomColorTheme = m_ui.CustomColorThemeComboBox->currentText();
361                    else
362                            m_pOptions->sCustomColorTheme.clear();
363                    // Check whether restart is needed or whether
364                    // custom options maybe set up immediately...
365                    int iNeedRestart = 0;
366                    if (m_pOptions->sCustomStyleTheme != sOldCustomStyleTheme) {
367                            if (m_pOptions->sCustomStyleTheme.isEmpty()) {
368                                    ++iNeedRestart;
369                            } else {
370                                    QApplication::setStyle(
371                                            QStyleFactory::create(m_pOptions->sCustomStyleTheme));
372                            }
373                    }
374                    if (m_pOptions->sCustomColorTheme != sOldCustomColorTheme) {
375                            if (m_pOptions->sCustomColorTheme.isEmpty()) {
376                                    ++iNeedRestart;
377                            } else {
378                                    QPalette pal;
379                                    if (PaletteForm::namedPalette(
380                                                    &m_pOptions->settings(), m_pOptions->sCustomColorTheme, pal))
381                                            QApplication::setPalette(pal);
382                            }
383                    }
384                    // Show restart message if needed...
385                    if (iNeedRestart > 0) {
386                            QMessageBox::information(this,
387                                    tr("Information"),
388                                    tr("Some settings may be only effective\n"
389                                    "next time you start this application."));
390                    }
391                  // Reset dirty flag.                  // Reset dirty flag.
392                  m_iDirtyCount = 0;                  m_iDirtyCount = 0;
393          }          }
394    
395            // if the user modified the limits, apply them to the sampler
396            // (and store it later in qsampler's configuration)
397            if (bMaxVoicesModified && m_ui.MaxVoicesSpinBox->isEnabled())
398                    m_pOptions->setMaxVoices(m_ui.MaxVoicesSpinBox->value());
399            if (bMaxStreamsModified && m_ui.MaxStreamsSpinBox->isEnabled())
400                    m_pOptions->setMaxStreams(m_ui.MaxStreamsSpinBox->value());
401    
402          // Save combobox history...          // Save combobox history...
403          m_pOptions->saveComboBoxHistory(m_ui.ServerHostComboBox);          m_pOptions->saveComboBoxHistory(m_ui.ServerHostComboBox);
404          m_pOptions->saveComboBoxHistory(m_ui.ServerPortComboBox);          m_pOptions->saveComboBoxHistory(m_ui.ServerPortComboBox);
405          m_pOptions->saveComboBoxHistory(m_ui.ServerCmdLineComboBox);          m_pOptions->saveComboBoxHistory(m_ui.ServerCmdLineComboBox);
406            m_pOptions->saveComboBoxHistory(m_ui.MessagesLogPathComboBox);
407    
408            // Save/commit to disk.
409            m_pOptions->saveOptions();
410    
411          // Just go with dialog acceptance.          // Just go with dialog acceptance.
412          QDialog::accept();          QDialog::accept();
# Line 255  void OptionsForm::reject (void) Line 421  void OptionsForm::reject (void)
421          // Check if there's any pending changes...          // Check if there's any pending changes...
422          if (m_iDirtyCount > 0) {          if (m_iDirtyCount > 0) {
423                  switch (QMessageBox::warning(this,                  switch (QMessageBox::warning(this,
424                          QSAMPLER_TITLE ": " + tr("Warning"),                          tr("Warning"),
425                          tr("Some settings have been changed.\n\n"                          tr("Some settings have been changed.\n\n"
426                          "Do you want to apply the changes?"),                          "Do you want to apply the changes?"),
427                          tr("Apply"), tr("Discard"), tr("Cancel"))) {                          QMessageBox::Apply |
428                  case 0:     // Apply...                          QMessageBox::Discard |
429                            QMessageBox::Cancel)) {
430                    case QMessageBox::Apply:
431                          accept();                          accept();
432                          return;                          return;
433                  case 1:     // Discard                  case QMessageBox::Discard:
434                          break;                          break;
435                  default:    // Cancel.                  default:    // Cancel.
436                          bReject = false;                          bReject = false;
# Line 288  void OptionsForm::optionsChanged (void) Line 456  void OptionsForm::optionsChanged (void)
456  // Stabilize current form state.  // Stabilize current form state.
457  void OptionsForm::stabilizeForm (void)  void OptionsForm::stabilizeForm (void)
458  {  {
459            bool bValid = (m_iDirtyCount > 0);
460    
461          bool bEnabled = m_ui.ServerStartCheckBox->isChecked();          bool bEnabled = m_ui.ServerStartCheckBox->isChecked();
462          m_ui.ServerCmdLineTextLabel->setEnabled(bEnabled);          m_ui.ServerCmdLineTextLabel->setEnabled(bEnabled);
463          m_ui.ServerCmdLineComboBox->setEnabled(bEnabled);          m_ui.ServerCmdLineComboBox->setEnabled(bEnabled);
464          m_ui.StartDelayTextLabel->setEnabled(bEnabled);          m_ui.StartDelayTextLabel->setEnabled(bEnabled);
465          m_ui.StartDelaySpinBox->setEnabled(bEnabled);          m_ui.StartDelaySpinBox->setEnabled(bEnabled);
466    
467            bEnabled = m_ui.MessagesLogCheckBox->isChecked();
468            m_ui.MessagesLogPathComboBox->setEnabled(bEnabled);
469            m_ui.MessagesLogPathToolButton->setEnabled(bEnabled);
470            if (bEnabled && bValid) {
471                    const QString& sPath = m_ui.MessagesLogPathComboBox->currentText();
472                    bValid = !sPath.isEmpty();
473            }
474    
475          m_ui.AutoRefreshTimeSpinBox->setEnabled(          m_ui.AutoRefreshTimeSpinBox->setEnabled(
476                  m_ui.AutoRefreshCheckBox->isChecked());                  m_ui.AutoRefreshCheckBox->isChecked());
477          m_ui.MessagesLimitLinesSpinBox->setEnabled(          m_ui.MessagesLimitLinesSpinBox->setEnabled(
478                  m_ui.MessagesLimitCheckBox->isChecked());                  m_ui.MessagesLimitCheckBox->isChecked());
479    
480          m_ui.OkPushButton->setEnabled(m_iDirtyCount > 0);          m_ui.DialogButtonBox->button(QDialogButtonBox::Ok)->setEnabled(bValid);
481    }
482    
483    
484    // Messages log path browse slot.
485    void OptionsForm::browseMessagesLogPath (void)
486    {
487            QString sFileName = QFileDialog::getSaveFileName(
488                    this,                                                                                   // Parent.
489                    tr("Messages Log"),                                             // Caption.
490                    m_ui.MessagesLogPathComboBox->currentText(),    // Start here.
491                    tr("Log files") + " (*.log)"                    // Filter (log files)
492            );
493    
494            if (!sFileName.isEmpty()) {
495                    m_ui.MessagesLogPathComboBox->setEditText(sFileName);
496                    m_ui.MessagesLogPathComboBox->setFocus();
497                    optionsChanged();
498            }
499  }  }
500    
501    
# Line 339  void OptionsForm::toggleDisplayEffect ( Line 535  void OptionsForm::toggleDisplayEffect (
535          QPalette pal;          QPalette pal;
536          pal.setColor(QPalette::Foreground, Qt::green);          pal.setColor(QPalette::Foreground, Qt::green);
537          if (bOn) {          if (bOn) {
538                  QPixmap pm(":/icons/displaybg1.png");                  QPixmap pm(":/images/displaybg1.png");
539                  pal.setBrush(QPalette::Background, QBrush(pm));                  pal.setBrush(QPalette::Background, QBrush(pm));
540          } else {          } else {
541                  pal.setColor(QPalette::Background, Qt::black);                  pal.setColor(QPalette::Background, Qt::black);
# Line 349  void OptionsForm::toggleDisplayEffect ( Line 545  void OptionsForm::toggleDisplayEffect (
545          optionsChanged();          optionsChanged();
546  }  }
547    
548  } // namespace QSampler  void OptionsForm::maxVoicesChanged(int /*iMaxVoices*/)
549    {
550            bMaxVoicesModified = true;
551            optionsChanged();
552    }
553    
554    void OptionsForm::maxStreamsChanged(int /*iMaxStreams*/)
555    {
556            bMaxStreamsModified = true;
557            optionsChanged();
558    }
559    
560    
561    // Custom color palette theme manager.
562    void OptionsForm::editCustomColorThemes (void)
563    {
564            PaletteForm form(this);
565            form.setSettings(&m_pOptions->settings());
566    
567            QString sCustomColorTheme;
568            int iDirtyCustomColorTheme = 0;
569    
570            const int iCustomColorTheme
571                    = m_ui.CustomColorThemeComboBox->currentIndex();
572            if (iCustomColorTheme > 0) {
573                    sCustomColorTheme = m_ui.CustomColorThemeComboBox->itemText(
574                            iCustomColorTheme);
575                    form.setPaletteName(sCustomColorTheme);
576            }
577    
578            if (form.exec() == QDialog::Accepted) {
579                    sCustomColorTheme = form.paletteName();
580                    ++iDirtyCustomColorTheme;
581            }
582    
583            if (iDirtyCustomColorTheme > 0 || form.isDirty()) {
584                    resetCustomColorThemes(sCustomColorTheme);
585                    optionsChanged();
586            }
587    }
588    
589    
590    // Custom color palette themes settler.
591    void OptionsForm::resetCustomColorThemes (
592            const QString& sCustomColorTheme )
593    {
594            m_ui.CustomColorThemeComboBox->clear();
595            m_ui.CustomColorThemeComboBox->addItem(
596                    tr(g_pszDefName));
597            m_ui.CustomColorThemeComboBox->addItems(
598                    PaletteForm::namedPaletteList(&m_pOptions->settings()));
599    
600            int iCustomColorTheme = 0;
601            if (!sCustomColorTheme.isEmpty()) {
602                    iCustomColorTheme = m_ui.CustomColorThemeComboBox->findText(
603                            sCustomColorTheme);
604                    if (iCustomColorTheme < 0)
605                            iCustomColorTheme = 0;
606            }
607            m_ui.CustomColorThemeComboBox->setCurrentIndex(iCustomColorTheme);
608    }
609    
610    
611    // Custom widget style themes settler.
612    void OptionsForm::resetCustomStyleThemes (
613            const QString& sCustomStyleTheme )
614    {
615            m_ui.CustomStyleThemeComboBox->clear();
616            m_ui.CustomStyleThemeComboBox->addItem(
617                    tr(g_pszDefName));
618            m_ui.CustomStyleThemeComboBox->addItems(QStyleFactory::keys());
619    
620            int iCustomStyleTheme = 0;
621            if (!sCustomStyleTheme.isEmpty()) {
622                    iCustomStyleTheme = m_ui.CustomStyleThemeComboBox->findText(
623                            sCustomStyleTheme);
624                    if (iCustomStyleTheme < 0)
625                            iCustomStyleTheme = 0;
626            }
627            m_ui.CustomStyleThemeComboBox->setCurrentIndex(iCustomStyleTheme);
628    }
629    
630    
631    } // namespace QSampler
632    
633  // end of qsamplerOptionsForm.cpp  // end of qsamplerOptionsForm.cpp

Legend:
Removed from v.1558  
changed lines
  Added in v.3651

  ViewVC Help
Powered by ViewVC