Fixed issue with silent mode in phone
[someplayer] / src / mainwindow.cpp
index ab982f4..e997150 100644 (file)
@@ -25,6 +25,7 @@
 #include <QFile>
 #include <QDesktopWidget>
 #include <QTranslator>
+#include <QKeyEvent>
 
 #include "player/player.h"
 
 
 using namespace SomePlayer::DataObjects;
 using namespace SomePlayer::Storage;
+using namespace SomePlayer::Playback;
 
 MainWindow::MainWindow(QWidget *parent) :
        QMainWindow(parent),
        ui(new Ui::MainWindow)
 {
+       _display_unlocked = true; // in most cases
        Config config;
        _library = new Library(config.applicationDir(), config.applicationDir());
        _translator = new QTranslator(this);
@@ -59,6 +62,8 @@ MainWindow::MainWindow(QWidget *parent) :
        _manage_library_form = new ManageLibraryForm(_library, this);
        _settings_form = new SettingsForm(this);
        _settings_form->hide();
+       _about_form = new AboutForm(this);
+       _about_form->hide();
        connect(_player_form, SIGNAL(library()), this, SLOT(library()));
        connect(_library_form, SIGNAL(refreshPlayer()), this, SLOT(player()));
        connect(ui->actionManageLibrary, SIGNAL(triggered()), this, SLOT(_manage_library()));
@@ -83,12 +88,17 @@ MainWindow::MainWindow(QWidget *parent) :
        connect(_settings_form, SIGNAL(iconsChanged()), _library_form, SLOT(updateIcons()));
        connect(_settings_form, SIGNAL(iconsChanged()), _manage_library_form, SLOT(updateIcons()));
        connect(_settings_form, SIGNAL(iconsChanged()), _directory_form, SLOT(updateIcons()));
+       connect(_settings_form, SIGNAL(iconsChanged()), _about_form, SLOT(updateIcons()));
        connect(_settings_form, SIGNAL(gradientChanged()), _player_form, SLOT(checkGradient()));
        connect(_settings_form, SIGNAL(gradientChanged()), _library_form, SLOT(checkGradient()));
+       connect(_settings_form, SIGNAL(gradientChanged()), _directory_form, SLOT(checkGradient()));
        connect(_settings_form, SIGNAL(libraryOptionsChanged()), _library_form, SLOT(refresh()));
        connect(_settings_form, SIGNAL(orientationChanged()), this, SLOT(_change_orientation()));
        connect(_settings_form, SIGNAL(translationChanged()), this, SLOT(updateTranslations()));
        connect(_settings_form, SIGNAL(trackColorChanged()), _player_form, SLOT(updateTrackColor()));
+       connect(_settings_form, SIGNAL(hwZoomPolicyChanged()), this, SLOT(_hw_zoom_policy_changed()));
+       connect(&_dbus_client, SIGNAL(displayStateChanged(bool)), this, SLOT(_set_display_state(bool)));
+       connect(_settings_form, SIGNAL(fmtxSettingsChanged()), this, SLOT(_fmtx_settings_changed()));
        _player_form->reload(true);
        QString mode = config.getValue("ui/orientation").toString();
        if (mode == "landscape") {
@@ -119,7 +129,9 @@ MainWindow::MainWindow(QWidget *parent) :
        _directory_form->updateIcons();
        _player_form->checkGradient();
        _library_form->checkGradient();
-       _directory_form->updateGradient();
+       _directory_form->checkGradient();
+       _hw_zoom_policy_changed();
+       config.setValue("fmtx/enabled", "no");
        setWindowTitle("SomePlayer");
 }
 
@@ -131,9 +143,7 @@ MainWindow::~MainWindow()
 }
 
 void MainWindow::about() {
-       QMessageBox::about(this, QString("About SomePlayer v")+_SOMEPLAYER_VERSION_, "Alternate music player for Maemo 5 "
-                                          "written in C++ with Qt4\n\n"
-                                          "Author: Nikolay Tischenko aka \"somebody\" <niktischenko@gmail.com>");
+       _about_form->show();
 }
 
 void MainWindow::player() {
@@ -182,13 +192,13 @@ void MainWindow::_save_playlist() {
                QString name = dialog.selectedName();
                bool append = false;
                if (playlists.contains(name)) {
-                       if (QMessageBox::question(this, "Append to playlist?", "Playlist with name \""+name+"\" already exists.\n"
-                                                 "Dow you want to append current playlist to it?",
-                                                 QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok) {
-                               append = true;
-                       } else {
-                               append = false;
+                       if (QMessageBox::question(this, "Overwrite playlist?", "Overwrite playlist \""+name+"\"?", QMessageBox::Ok, QMessageBox::Cancel)
+                               != QMessageBox::Ok) {
+                               return;
                        }
+                       append = (QMessageBox::question(this, "Append to playlist?", "Playlist with name \""+name+"\" already exists.\n"
+                                                 "Dow you want to append current playlist to it?",
+                                                 QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok);
                }
                if (append) {
                        Playlist target = _library->getPlaylist(name);
@@ -205,6 +215,7 @@ void MainWindow::_save_playlist() {
 }
 
 void MainWindow::_clear_current_playlist() {
+       CONFIRM_ACTION(this, tr("Clear playlist?"))
        Playlist playlist = _library->getCurrentPlaylist();
        playlist.clear();
        _library->saveCurrentPlaylist(playlist);
@@ -292,12 +303,14 @@ void MainWindow::_change_orientation() {
 void MainWindow::_orientation_changed() {
        QRect screenGeometry = QApplication::desktop()->screenGeometry();
        if (screenGeometry.width() > screenGeometry.height()) {
+               _orientation = ORIENTATION_LANDSCAPE;
                _player_form->landscapeMode();
                _library_form->landscapeMode();
                _equalizer_dialog->landscapeMode();
                _directory_form->lanscapeMode();
                _settings_form->landscapeMode();
        } else {
+               _orientation = ORIENTATION_PORTRAIT;
                _player_form->portraitMode();
                _library_form->portraitMode();
                _equalizer_dialog->portraitMode();
@@ -335,4 +348,73 @@ void MainWindow::updateTranslations() {
        _manage_library_form->updateTranslations();
        _directory_form->updateTranslations();
        _settings_form->updateTranslations();
+       _about_form->updateTranslations();
+}
+
+void MainWindow::_hw_zoom_policy_changed() {
+       Config config;
+       QString state = config.getValue("hw/zoomkeys").toString();
+       if (state == "enabled") {
+               _dbus_client.enableKeys();
+               connect(&_dbus_client, SIGNAL(zoomKeyPressed(quint32)), this, SLOT(_zoom_key_pressed(quint32)));
+       } else {
+               _dbus_client.disableKeys();
+               disconnect(&_dbus_client, SIGNAL(zoomKeyPressed(quint32)), this, SLOT(_zoom_key_pressed(quint32)));
+       }
+}
+
+void MainWindow::_set_display_state(bool state) {
+       _display_unlocked = state;
+       if (!_display_unlocked) { // remember volume level when blocking screen
+               _system_volume = _dbus_client.getVolume();
+       }
+}
+
+void MainWindow::_zoom_key_pressed(quint32 code) {
+       if (_display_unlocked) {
+               return;
+       }
+       Config config;
+       QString behavior = config.getValue("hw/zoom_action").toString();
+       bool inverted = config.getValue("hw/zoom_inverted").toBool();
+       if (inverted) {
+               if (code == MM_KEY_DOWN) {
+                       code = MM_KEY_UP;
+               } else {
+                       code = MM_KEY_DOWN;
+               }
+       }
+       if (code == MM_KEY_DOWN) {
+               if (behavior == "track") {
+                       if (_orientation == ORIENTATION_LANDSCAPE) {
+                               _player_form->next();
+                       } else {
+                               _player_form->prev();
+                       }
+                       _dbus_client.setVolume(_system_volume);
+               }
+       } else if (code == MM_KEY_UP) {
+               if (behavior == "track") {
+                       if (_orientation == ORIENTATION_LANDSCAPE) {
+                               _player_form->prev();
+                       } else {
+                               _player_form->next();
+                       }
+                       _dbus_client.setVolume(_system_volume);
+               }
+       }
+}
+
+void MainWindow::_fmtx_settings_changed() {
+       Config config;
+       if (config.getValue("fmtx/enabled").toString() == "yes") {
+               QString station_name = config.getValue("fmtx/station_name").toString();
+               int frequency = config.getValue("fmtx/frequency").toInt();
+               system(QString("fmtx_client -p1 -f%1 -s\"%2\" -t\"%3\" 2>&1 >/dev/null")
+                      .arg(frequency)
+                      .arg(station_name)
+                      .arg(_player_form->playerCaption()).toAscii());
+       } else {
+               system("fmtx_client -p 0 2>&1 >/dev/null");
+       }
 }