Minor bugfixes
[someplayer] / src / settingsform.cpp
index 2d5978b..530ed28 100644 (file)
@@ -23,6 +23,7 @@
 #include <QDebug>
 #include <QFile>
 #include "someplayer.h"
+#include "fmtxsettingsdialog.h"
 
 using namespace SomePlayer::Storage;
 
@@ -32,6 +33,11 @@ SettingsForm::SettingsForm(QWidget *parent) :
 {
        ui->setupUi(this);
        Config config;
+
+       _color_map << "blue" << "magenta" << "red" << "yellow" <<
+                       "white" << "black" << "light" << "dark";
+       _lang_map << "en" << "ru" << "cn";
+
        QString albumSorting = config.getValue("ui/albumsorting").toString();
        QString showTrackLenght = config.getValue("ui/showtracklenght").toString();
        QString orientation = config.getValue("ui/orientation").toString();
@@ -44,9 +50,14 @@ SettingsForm::SettingsForm(QWidget *parent) :
        ui->orientationLButton->setChecked(true);
        ui->iconsWButton->setChecked(true);
        ui->gradientYButton->setChecked(true);
-       ui->engLangButton->setChecked(true);
-       ui->cBlueButton->setChecked(true);
+       ui->langComboBox->setCurrentIndex(_lang_map.indexOf(language));
+       ui->colorComboBox->setCurrentIndex(_color_map.indexOf(track_color));
        ui->pauseHPNoButton->setChecked(true);
+       ui->hwKeysBox->setChecked(false);
+       ui->hwkeysLabel->setEnabled(false);
+       ui->hwTControlButton->setEnabled(false);
+       ui->hwVolumeButton->setEnabled(false);
+       ui->fmtxGroupBox->setChecked(false);
        if (albumSorting == "alphabet") {
                ui->albumsSortAButton->setChecked(true);
        }
@@ -64,26 +75,27 @@ SettingsForm::SettingsForm(QWidget *parent) :
        if (gradient == "no") {
                ui->gradientNButton->setChecked(true);
        }
-       if (language == "ru") {
-               ui->ruLangButton->setChecked(true);
+       if (config.getValue("hw/hpautopause").toString() == "yes") {
+               ui->pauseHPYesButton->setChecked(true);
+       }
+       if (config.getValue("hw/zoomkeys").toString() == "enabled") {
+               ui->hwKeysBox->setChecked(true);
+               ui->hwkeysLabel->setEnabled(true);
+               ui->hwTControlButton->setEnabled(true);
+               ui->hwVolumeButton->setEnabled(true);
        }
-       if (track_color == "black") {
-               ui->cBlackButton->setChecked(true);
-       } else if (track_color == "magenta") {
-               ui->cMagentaButton->setChecked(true);
-       } else if (track_color == "Red") {
-               ui->cRedButton->setChecked(true);
-       } else if (track_color == "yellow") {
-               ui->cYellowButton->setChecked(true);
-       } else if (track_color == "white") {
-               ui->cWhiteButton->setChecked(true);
-       } else if (track_color == "dark") {
-               ui->cDarkButton->setChecked(true);
-       } else if (track_color == "light") {
-               ui->cLightButton->setChecked(true);
+       QString behavior = config.getValue("hw/zoom_action").toString();
+       if (behavior == "volume") {
+               ui->hwVolumeButton->setChecked(true);
+       } else if (behavior == "track") {
+               ui->hwTControlButton->setChecked(true);
+       } else {
+               ui->hwVolumeButton->setChecked(true);
+               config.setValue("hw/zoom_action", "volume");
        }
-       if (config.getValue("playback/hpautopause").toString() == "yes") {
-               ui->pauseHPYesButton->setChecked(true);
+       if (config.getValue("fmtx/enabled").toString() == "yes") {
+               ui->fmtxGroupBox->setChecked(true);
+               emit fmtxSettingsChanged();
        }
        if (!QFile::exists(QString(_APPLICATION_PATH_)+"/someplayer_ru.qm")) {
                ui->langBox->hide();
@@ -99,18 +111,19 @@ SettingsForm::SettingsForm(QWidget *parent) :
        connect (ui->iconsWButton, SIGNAL(toggled(bool)), this, SLOT(_set_icons_white(bool)));
        connect (ui->gradientNButton, SIGNAL(toggled(bool)), this, SLOT(_set_gradient_no(bool)));
        connect (ui->gradientYButton, SIGNAL(toggled(bool)), this, SLOT(_set_gradient_yes(bool)));
-       connect (ui->engLangButton, SIGNAL(toggled(bool)), this, SLOT(_set_lang_en(bool)));
-       connect (ui->ruLangButton, SIGNAL(toggled(bool)), this, SLOT(_set_lang_ru(bool)));
-       connect (ui->cBlackButton, SIGNAL(toggled(bool)), this, SLOT(_set_color_black(bool)));
-       connect (ui->cBlueButton, SIGNAL(toggled(bool)), this, SLOT(_set_color_blue(bool)));
-       connect (ui->cDarkButton, SIGNAL(toggled(bool)), this, SLOT(_set_color_dark(bool)));
-       connect (ui->cLightButton, SIGNAL(toggled(bool)), this, SLOT(_set_color_light(bool)));
-       connect (ui->cMagentaButton, SIGNAL(toggled(bool)), this, SLOT(_set_color_magenta(bool)));
-       connect (ui->cRedButton, SIGNAL(toggled(bool)), this, SLOT(_set_color_red(bool)));
-       connect (ui->cWhiteButton, SIGNAL(toggled(bool)), this, SLOT(_set_color_white(bool)));
-       connect (ui->cYellowButton, SIGNAL(toggled(bool)), this, SLOT(_set_color_yellow(bool)));
        connect (ui->pauseHPNoButton, SIGNAL(toggled(bool)), this, SLOT(_set_pause_hp_no(bool)));
        connect (ui->pauseHPYesButton, SIGNAL(toggled(bool)), this, SLOT(_set_pause_hp_yes(bool)));
+       connect (ui->hwKeysBox, SIGNAL(toggled(bool)), this, SLOT(_toggle_hw_settings(bool)));
+       connect (ui->hwVolumeButton, SIGNAL(toggled(bool)), this, SLOT(_set_hw_volume_control(bool)));
+       connect (ui->hwTControlButton, SIGNAL(toggled(bool)), this, SLOT(_set_hw_track_control(bool)));
+       connect (ui->uiButton, SIGNAL(clicked()), this, SLOT(_toggle_view_ui()));
+       connect (ui->hwButton, SIGNAL(clicked()), this, SLOT(_toggle_view_hw()));
+       connect (ui->libraryButton, SIGNAL(clicked()), this, SLOT(_toggle_view_lib()));
+       connect (ui->fmtxSettingsButton, SIGNAL(clicked()), this, SLOT(_open_fmtx_settings()));
+       connect (ui->fmtxGroupBox, SIGNAL(toggled(bool)), this, SLOT(_toggle_fmtx_settings(bool)));
+       connect (ui->colorComboBox, SIGNAL(activated(int)), this, SLOT(_set_color(int)));
+       connect (ui->langComboBox, SIGNAL(activated(int)), this, SLOT(_set_language(int)));
+       _toggle_view_ui();
        setAttribute(Qt::WA_Maemo5StackedWindow);
        setWindowFlags(Qt::Window | windowFlags());
 }
@@ -197,110 +210,80 @@ void SettingsForm::_set_gradient_yes(bool checked) {
        emit gradientChanged();
 }
 
-void SettingsForm::_set_color_black(bool checked) {
-       if (!checked) return;
+void SettingsForm::_set_color(int code) {
        Config config;
-       config.setValue("ui/trackcolor", "black");
+       config.setValue("ui/trackcolor", _color_map[code]);
        emit trackColorChanged();
 }
 
-void SettingsForm::_set_color_blue(bool checked) {
-       if (!checked) return;
+void SettingsForm::_set_language(int code) {
        Config config;
-       config.setValue("ui/trackcolor", "blue");
-       emit trackColorChanged();
+       config.setValue("ui/language", _lang_map[code]);
+       emit translationChanged();
 }
 
-void SettingsForm::_set_color_dark(bool checked) {
+void SettingsForm::_set_pause_hp_no(bool checked) {
        if (!checked) return;
        Config config;
-       config.setValue("ui/trackcolor", "dark");
-       emit trackColorChanged();
+       config.setValue("hw/hpautopause", "no");
 }
 
-void SettingsForm::_set_color_light(bool checked) {
+void SettingsForm::_set_pause_hp_yes(bool checked) {
        if (!checked) return;
        Config config;
-       config.setValue("ui/trackcolor", "light");
-       emit trackColorChanged();
+       config.setValue("hw/hpautopause", "yes");
 }
 
-void SettingsForm::_set_color_magenta(bool checked) {
-       if (!checked) return;
+void SettingsForm::_toggle_hw_settings(bool checked) {
        Config config;
-       config.setValue("ui/trackcolor", "magenta");
-       emit trackColorChanged();
+       config.setValue("hw/zoomkeys", checked ? "enabled" : "disabled");
+       ui->hwkeysLabel->setEnabled(checked);
+       ui->hwTControlButton->setEnabled(checked);
+       ui->hwVolumeButton->setEnabled(checked);
+       emit hwZoomPolicyChanged();
 }
 
-void SettingsForm::_set_color_red(bool checked) {
+void SettingsForm::_set_hw_track_control(bool checked) {
        if (!checked) return;
        Config config;
-       config.setValue("ui/trackcolor", "red");
-       emit trackColorChanged();
+       config.setValue("hw/zoom_action", "track");
 }
 
-void SettingsForm::_set_color_white(bool checked) {
+void SettingsForm::_set_hw_volume_control(bool checked) {
        if (!checked) return;
        Config config;
-       config.setValue("ui/trackcolor", "white");
-       emit trackColorChanged();
+       config.setValue("hw/zoom_action", "volume");
 }
 
-void SettingsForm::_set_color_yellow(bool checked) {
-       if (!checked) return;
-       Config config;
-       config.setValue("ui/trackcolor", "yellow");
-       emit trackColorChanged();
+void SettingsForm::_toggle_view_ui() {
+       ui->hwButton->setChecked(false);
+       ui->libraryButton->setChecked(false);
+       ui->uiButton->setChecked(true);
+       ui->stackedWidget->setCurrentIndex(0);
 }
 
-void SettingsForm::_set_lang_en(bool checked) {
-       if (!checked) return;
-       Config config;
-       config.setValue("ui/language", "en");
-       emit translationChanged();
+void SettingsForm::_toggle_view_lib() {
+       ui->hwButton->setChecked(false);
+       ui->uiButton->setChecked(false);
+       ui->libraryButton->setChecked(true);
+       ui->stackedWidget->setCurrentIndex(1);
 }
 
-void SettingsForm::_set_lang_ru(bool checked) {
-       if (!checked) return;
-       Config config;
-       config.setValue("ui/language", "ru");
-       emit translationChanged();
-}
-
-void SettingsForm::_set_pause_hp_no(bool checked) {
-       if (!checked) return;
-       Config config;
-       config.setValue("playback/hpautopause", "no");
-}
-
-void SettingsForm::_set_pause_hp_yes(bool checked) {
-       if (!checked) return;
-       Config config;
-       config.setValue("playback/hpautopause", "yes");
+void SettingsForm::_toggle_view_hw() {
+       ui->uiButton->setChecked(false);
+       ui->libraryButton->setChecked(false);
+       ui->hwButton->setChecked(true);
+       ui->stackedWidget->setCurrentIndex(2);
 }
 
 void SettingsForm::updateTranslations() {
+       Config config;
        ui->retranslateUi(this);
+       ui->langComboBox->setCurrentIndex(_lang_map.indexOf(config.getValue("ui/language").toString()));
+       ui->colorComboBox->setCurrentIndex(_color_map.indexOf(config.getValue("ui/trackcolor").toString()));
 }
 
 void SettingsForm::landscapeMode() {
-       ui->cButtonsLayout->removeWidget(ui->cBlueButton);
-       ui->cButtonsLayout->removeWidget(ui->cMagentaButton);
-       ui->cButtonsLayout->removeWidget(ui->cRedButton);
-       ui->cButtonsLayout->removeWidget(ui->cYellowButton);
-       ui->cButtonsLayout->removeWidget(ui->cWhiteButton);
-       ui->cButtonsLayout->removeWidget(ui->cBlackButton);
-       ui->cButtonsLayout->removeWidget(ui->cLightButton);
-       ui->cButtonsLayout->removeWidget(ui->cDarkButton);
-       ui->cButtonsLayout->addWidget(ui->cBlueButton, 0, 0);
-       ui->cButtonsLayout->addWidget(ui->cMagentaButton, 0, 1);
-       ui->cButtonsLayout->addWidget(ui->cRedButton, 0, 2);
-       ui->cButtonsLayout->addWidget(ui->cYellowButton, 0, 3);
-       ui->cButtonsLayout->addWidget(ui->cWhiteButton, 1, 0);
-       ui->cButtonsLayout->addWidget(ui->cBlackButton, 1, 1);
-       ui->cButtonsLayout->addWidget(ui->cLightButton, 1, 2);
-       ui->cButtonsLayout->addWidget(ui->cDarkButton, 1, 3);
-
        ui->orientationGridLayout->removeWidget(ui->orientationAButton);
        ui->orientationGridLayout->removeWidget(ui->orientationLButton);
        ui->orientationGridLayout->removeWidget(ui->orientationPButton);
@@ -310,23 +293,6 @@ void SettingsForm::landscapeMode() {
 }
 
 void SettingsForm::portraitMode() {
-       ui->cButtonsLayout->removeWidget(ui->cBlueButton);
-       ui->cButtonsLayout->removeWidget(ui->cMagentaButton);
-       ui->cButtonsLayout->removeWidget(ui->cRedButton);
-       ui->cButtonsLayout->removeWidget(ui->cYellowButton);
-       ui->cButtonsLayout->removeWidget(ui->cWhiteButton);
-       ui->cButtonsLayout->removeWidget(ui->cBlackButton);
-       ui->cButtonsLayout->removeWidget(ui->cLightButton);
-       ui->cButtonsLayout->removeWidget(ui->cDarkButton);
-       ui->cButtonsLayout->addWidget(ui->cBlueButton, 0, 0);
-       ui->cButtonsLayout->addWidget(ui->cMagentaButton, 0, 1);
-       ui->cButtonsLayout->addWidget(ui->cRedButton, 1, 0);
-       ui->cButtonsLayout->addWidget(ui->cYellowButton, 1, 1);
-       ui->cButtonsLayout->addWidget(ui->cWhiteButton, 2, 0);
-       ui->cButtonsLayout->addWidget(ui->cBlackButton, 2, 1);
-       ui->cButtonsLayout->addWidget(ui->cLightButton, 3, 0);
-       ui->cButtonsLayout->addWidget(ui->cDarkButton, 3, 1);
-
        ui->orientationGridLayout->removeWidget(ui->orientationAButton);
        ui->orientationGridLayout->removeWidget(ui->orientationLButton);
        ui->orientationGridLayout->removeWidget(ui->orientationPButton);
@@ -334,3 +300,18 @@ void SettingsForm::portraitMode() {
        ui->orientationGridLayout->addWidget(ui->orientationAButton, 0, 1);
        ui->orientationGridLayout->addWidget(ui->orientationPButton, 1, 0, 1, 2);
 }
+
+void SettingsForm::_open_fmtx_settings() {
+       FmtxSettingsDialog dialog(this);
+       dialog.exec();
+       Config config;
+       config.setValue("fmtx/station_name", dialog.stationName());
+       config.setValue("fmtx/frequency", dialog.frequency());
+       emit fmtxSettingsChanged();
+}
+
+void SettingsForm::_toggle_fmtx_settings(bool checked) {
+       Config config;
+       config.setValue("fmtx/enabled", checked ? "yes" : "no");
+       emit fmtxSettingsChanged();
+}