/[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 3555 by capela, Tue Aug 13 10:19:32 2019 UTC revision 3654 by capela, Wed Dec 11 15:27:16 2019 UTC
# 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>  #include <QFileDialog>
33    
34    #include <QStyleFactory>
35    
36    
37    // Default (empty/blank) name.
38    static const char *g_pszDefName = QT_TRANSLATE_NOOP("qsamplerOptionsForm", "(default)");
39    
40    
41  namespace QSampler {  namespace QSampler {
42    
# Line 133  OptionsForm::OptionsForm ( QWidget* pPar Line 141  OptionsForm::OptionsForm ( QWidget* pPar
141          QObject::connect(m_ui.InstrumentNamesCheckBox,          QObject::connect(m_ui.InstrumentNamesCheckBox,
142                  SIGNAL(stateChanged(int)),                  SIGNAL(stateChanged(int)),
143                  SLOT(optionsChanged()));                  SLOT(optionsChanged()));
144            QObject::connect(m_ui.CustomColorThemeComboBox,
145                    SIGNAL(activated(int)),
146                    SLOT(optionsChanged()));
147            QObject::connect(m_ui.CustomColorThemeToolButton,
148                    SIGNAL(clicked()),
149                    SLOT(editCustomColorThemes()));
150            QObject::connect(m_ui.CustomStyleThemeComboBox,
151                    SIGNAL(activated(int)),
152                    SLOT(optionsChanged()));
153          QObject::connect(m_ui.BaseFontSizeComboBox,          QObject::connect(m_ui.BaseFontSizeComboBox,
154                  SIGNAL(editTextChanged(const QString&)),                  SIGNAL(editTextChanged(const QString&)),
155                  SLOT(optionsChanged()));                  SLOT(optionsChanged()));
# Line 281  void OptionsForm::setup ( Options *pOpti Line 298  void OptionsForm::setup ( Options *pOpti
298          );          );
299  #endif // CONFIG_MAX_VOICES  #endif // CONFIG_MAX_VOICES
300    
301            // Custom display options...
302            resetCustomColorThemes(m_pOptions->sCustomColorTheme);
303            resetCustomStyleThemes(m_pOptions->sCustomStyleTheme);
304    
305          // Done.          // Done.
306          m_iDirtySetup--;          m_iDirtySetup--;
307          stabilizeForm();          stabilizeForm();
# Line 323  void OptionsForm::accept (void) Line 344  void OptionsForm::accept (void)
344                  m_pOptions->bInstrumentNames = m_ui.InstrumentNamesCheckBox->isChecked();                  m_pOptions->bInstrumentNames = m_ui.InstrumentNamesCheckBox->isChecked();
345                  m_pOptions->iMaxRecentFiles  = m_ui.MaxRecentFilesSpinBox->value();                  m_pOptions->iMaxRecentFiles  = m_ui.MaxRecentFilesSpinBox->value();
346                  m_pOptions->iBaseFontSize  = m_ui.BaseFontSizeComboBox->currentText().toInt();                  m_pOptions->iBaseFontSize  = m_ui.BaseFontSizeComboBox->currentText().toInt();
347                    // Custom color/style theme options...
348                    const QString sOldCustomStyleTheme = m_pOptions->sCustomStyleTheme;
349                    if (m_ui.CustomStyleThemeComboBox->currentIndex() > 0)
350                            m_pOptions->sCustomStyleTheme = m_ui.CustomStyleThemeComboBox->currentText();
351                    else
352                            m_pOptions->sCustomStyleTheme.clear();
353                    const QString sOldCustomColorTheme = m_pOptions->sCustomColorTheme;
354                    if (m_ui.CustomColorThemeComboBox->currentIndex() > 0)
355                            m_pOptions->sCustomColorTheme = m_ui.CustomColorThemeComboBox->currentText();
356                    else
357                            m_pOptions->sCustomColorTheme.clear();
358                    // Check whether restart is needed or whether
359                    // custom options maybe set up immediately...
360                    int iNeedRestart = 0;
361                    if (m_pOptions->sCustomStyleTheme != sOldCustomStyleTheme) {
362                            if (m_pOptions->sCustomStyleTheme.isEmpty()) {
363                                    ++iNeedRestart;
364                            } else {
365                                    QApplication::setStyle(
366                                            QStyleFactory::create(m_pOptions->sCustomStyleTheme));
367                            }
368                    }
369                    if (m_pOptions->sCustomColorTheme != sOldCustomColorTheme) {
370                            if (m_pOptions->sCustomColorTheme.isEmpty()) {
371                                    ++iNeedRestart;
372                            } else {
373                                    QPalette pal;
374                                    if (PaletteForm::namedPalette(
375                                                    &m_pOptions->settings(), m_pOptions->sCustomColorTheme, pal))
376                                            QApplication::setPalette(pal);
377                            }
378                    }
379                    // Show restart message if needed...
380                    if (iNeedRestart > 0) {
381                            QMessageBox::information(this,
382                                    tr("Information"),
383                                    tr("Some settings may be only effective\n"
384                                    "next time you start this application."));
385                    }
386                  // Reset dirty flag.                  // Reset dirty flag.
387                  m_iDirtyCount = 0;                  m_iDirtyCount = 0;
388          }          }
# Line 356  void OptionsForm::reject (void) Line 416  void OptionsForm::reject (void)
416          // Check if there's any pending changes...          // Check if there's any pending changes...
417          if (m_iDirtyCount > 0) {          if (m_iDirtyCount > 0) {
418                  switch (QMessageBox::warning(this,                  switch (QMessageBox::warning(this,
419                          QSAMPLER_TITLE ": " + tr("Warning"),                          tr("Warning"),
420                          tr("Some settings have been changed.\n\n"                          tr("Some settings have been changed.\n\n"
421                          "Do you want to apply the changes?"),                          "Do you want to apply the changes?"),
422                          QMessageBox::Apply |                          QMessageBox::Apply |
# Line 492  void OptionsForm::maxStreamsChanged(int Line 552  void OptionsForm::maxStreamsChanged(int
552          optionsChanged();          optionsChanged();
553  }  }
554    
555    
556    // Custom color palette theme manager.
557    void OptionsForm::editCustomColorThemes (void)
558    {
559            PaletteForm form(this);
560            form.setSettings(&m_pOptions->settings());
561    
562            QString sCustomColorTheme;
563            int iDirtyCustomColorTheme = 0;
564    
565            const int iCustomColorTheme
566                    = m_ui.CustomColorThemeComboBox->currentIndex();
567            if (iCustomColorTheme > 0) {
568                    sCustomColorTheme = m_ui.CustomColorThemeComboBox->itemText(
569                            iCustomColorTheme);
570                    form.setPaletteName(sCustomColorTheme);
571            }
572    
573            if (form.exec() == QDialog::Accepted) {
574                    sCustomColorTheme = form.paletteName();
575                    ++iDirtyCustomColorTheme;
576            }
577    
578            if (iDirtyCustomColorTheme > 0 || form.isDirty()) {
579                    resetCustomColorThemes(sCustomColorTheme);
580                    optionsChanged();
581            }
582    }
583    
584    
585    // Custom color palette themes settler.
586    void OptionsForm::resetCustomColorThemes (
587            const QString& sCustomColorTheme )
588    {
589            m_ui.CustomColorThemeComboBox->clear();
590            m_ui.CustomColorThemeComboBox->addItem(
591                    tr(g_pszDefName));
592            m_ui.CustomColorThemeComboBox->addItems(
593                    PaletteForm::namedPaletteList(&m_pOptions->settings()));
594    
595            int iCustomColorTheme = 0;
596            if (!sCustomColorTheme.isEmpty()) {
597                    iCustomColorTheme = m_ui.CustomColorThemeComboBox->findText(
598                            sCustomColorTheme);
599                    if (iCustomColorTheme < 0)
600                            iCustomColorTheme = 0;
601            }
602            m_ui.CustomColorThemeComboBox->setCurrentIndex(iCustomColorTheme);
603    }
604    
605    
606    // Custom widget style themes settler.
607    void OptionsForm::resetCustomStyleThemes (
608            const QString& sCustomStyleTheme )
609    {
610            m_ui.CustomStyleThemeComboBox->clear();
611            m_ui.CustomStyleThemeComboBox->addItem(
612                    tr(g_pszDefName));
613            m_ui.CustomStyleThemeComboBox->addItems(QStyleFactory::keys());
614    
615            int iCustomStyleTheme = 0;
616            if (!sCustomStyleTheme.isEmpty()) {
617                    iCustomStyleTheme = m_ui.CustomStyleThemeComboBox->findText(
618                            sCustomStyleTheme);
619                    if (iCustomStyleTheme < 0)
620                            iCustomStyleTheme = 0;
621            }
622            m_ui.CustomStyleThemeComboBox->setCurrentIndex(iCustomStyleTheme);
623    }
624    
625    
626  } // namespace QSampler  } // namespace QSampler
627    
628  // end of qsamplerOptionsForm.cpp  // end of qsamplerOptionsForm.cpp

Legend:
Removed from v.3555  
changed lines
  Added in v.3654

  ViewVC Help
Powered by ViewVC