X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fmainwindow.cpp;h=f71f9dc77730ce5b766565556a4a5bc2411a3d88;hb=refs%2Ftags%2F1.4.0;hp=20dc3a9347a752cb86db1c7b42661eb71a79a82c;hpb=f51c4ea03daed5d168cacb15335023ba441cd7c0;p=someplayer diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 20dc3a9..f71f9dc 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1,63 +1,312 @@ +/* + * SomePlayer - An alternate music player for Maemo 5 + * Copyright (C) 2010 Nikolay (somebody) Tischenko + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + #include "mainwindow.h" #include "ui_mainwindow.h" #include #include +#include #include +#include +#include -#include "player.h" +#include "player/player.h" #include "library.h" +#include "timerdialog.h" +#include "equalizerdialog.h" +#include "saveplaylistdialog.h" +#include "settingsdialog.h" + +using namespace SomePlayer::DataObjects; +using namespace SomePlayer::Storage; MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { + Config config; + _library = new Library(config.applicationDir(), config.applicationDir()); ui->setupUi(this); - connect(ui->actionOpen, SIGNAL(triggered()), this, SLOT(openMedia())); - connect(ui->actionAbout_Qt, SIGNAL(triggered()), this, SLOT(aboutQt())); connect(ui->actionAbout, SIGNAL(triggered()), this, SLOT(about())); - connect(ui->actionPlayer, SIGNAL(triggered()), this, SLOT(player())); - connect(ui->actionLibrary, SIGNAL(triggered()), this, SLOT(library())); + connect(ui->actionSettings, SIGNAL(triggered()), this, SLOT(settings())); setAnimated(true); - _playerForm = new PlayerForm(); - _libraryForm = new LibraryForm(); - ui->stackedWidget->insertWidget(0, _playerForm); - ui->stackedWidget->insertWidget(1, _libraryForm); - _playerForm->setAttribute(Qt::WA_Maemo5StackedWindow); - _libraryForm->setAttribute(Qt::WA_Maemo5StackedWindow); - connect(_playerForm, SIGNAL(library()), this, SLOT(library())); - library(); + setAttribute(Qt::WA_Maemo5StackedWindow); + _player_form = new PlayerForm(_library, this); + ui->centralWidget->layout()->addWidget(_player_form); + _library_form = new LibraryForm(_library, this); + _directory_form = new DirectoryView(this); + _directory_form->hide(); + _timer = new QTimer(this); + _equalizer_dialog = new EqualizerDialog(this); + _manage_library_form = new ManageLibraryForm(_library, this); + 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())); + connect(ui->actionSavePlaylist, SIGNAL(triggered()), this, SLOT(_save_playlist())); + connect(_player_form, SIGNAL(clearPlaylist()), this, SLOT(_clear_current_playlist())); + connect(ui->actionSetTimer, SIGNAL(triggered()), this, SLOT(_set_timer())); + connect(ui->actionEqualizer, SIGNAL(triggered()), this, SLOT(_equalizer())); + connect(_library, SIGNAL(done()), _library_form, SLOT(refresh())); + connect(_player_form, SIGNAL(refreshLibrary()), _library_form, SLOT(refresh())); + connect(_manage_library_form, SIGNAL(refreshLibrary()), _library_form, SLOT(refresh())); + connect(_timer, SIGNAL(timeout()), this, SLOT(_timeout())); + connect(_equalizer_dialog, SIGNAL(valueChanged(int,int)), this, SLOT(_equalizer_value_changed(int, int))); + connect(_equalizer_dialog, SIGNAL(equalizerEnabled()), _player_form, SLOT(enableEqualizer())); + connect(_equalizer_dialog, SIGNAL(equalizerDisabled()), _player_form, SLOT(disableEqualizer())); + connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(_orientation_changed())); + connect(_player_form, SIGNAL(fullscreen(bool)), this, SLOT(_fullscreen(bool))); + connect(_library_form, SIGNAL(addAndPlay(Track)), _player_form, SLOT(play(Track))); + connect(_directory_form, SIGNAL(addAndPlay(Track)), _player_form, SLOT(play(Track))); + connect(_player_form, SIGNAL(dirView()), _directory_form, SLOT(show())); + connect(_directory_form, SIGNAL(addTracks(QList)), this, SLOT(_add_tracks(QList))); + _player_form->reload(true); + QString mode = config.getValue("ui/orientation").toString(); + if (mode == "landscape") { + setAttribute(Qt::WA_Maemo5LandscapeOrientation); + _player_form->landscapeMode(); + _library_form->landscapeMode(); + _equalizer_dialog->landscapeMode(); + _directory_form->lanscapeMode(); + } else if (mode == "portrait") { + setAttribute(Qt::WA_Maemo5PortraitOrientation); + _player_form->portraitMode(); + _library_form->portraitMode(); + _equalizer_dialog->portraitMode(); + _directory_form->portraitMode(); + } else if (mode == "auto") { // initialization in landscape + _player_form->landscapeMode(); + _library_form->landscapeMode(); + _equalizer_dialog->landscapeMode(); + _directory_form->lanscapeMode(); + setAttribute(Qt::WA_Maemo5AutoOrientation); + } + _library_form->updateIcons(); + _player_form->updateIcons(); + _manage_library_form->updateIcons(); + _directory_form->updateIcons(); + _player_form->checkGradient(); + _library_form->checkGradient(); + _directory_form->updateGradient(); + setWindowTitle("SomePlayer"); } MainWindow::~MainWindow() { - delete _playerForm; - delete _libraryForm; + delete _player_form; + delete _library_form; delete ui; } -void MainWindow::openMedia() -{ -// SomePlayer::DataObjects::Library *l = new SomePlayer::DataObjects::Library("/tmp", "/tmp"); -// l->addDirectory("/mnt/music/Three Days Grace"); -} - -void MainWindow::aboutQt() { - QMessageBox::aboutQt(this, "About Qt"); -} - void MainWindow::about() { - QMessageBox::about(this, "About SomePlayer", "Alternate music player for Maemo 5 " + 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\" "); } void MainWindow::player() { - ui->stackedWidget->setCurrentIndex(0); - setWindowTitle("SomePlayer"); + _player_form->reload(true); + _orientation_changed(); // workaround } void MainWindow::library() { - ui->stackedWidget->setCurrentIndex(1); - setWindowTitle("SomePlayer Library"); + ui->menuBar->setEnabled(true); + _library_form->show(); + _orientation_changed(); // workaround + _manage_library_form->hide(); +} + +void MainWindow::_manage_library() { + _manage_library_form->refresh(); + _manage_library_form->show(); +} + +void MainWindow::_save_playlist() { + QList playlists = _library->getPlaylistsNames(); + playlists.removeOne(_CURRENT_PLAYLIST_SUBST_); + Playlist cur = _library->getCurrentPlaylist(); + // construct playlist name if possible + QString suggest_name; + QList tracks = cur.tracks(); + QString artist = tracks.at(0).metadata().artist(), album = tracks.at(0).metadata().album(); + foreach (Track t, tracks) { + if (t.metadata().album() != album) + album = ""; + if (t.metadata().artist() != artist) + artist = ""; + } + if (album.isEmpty() && artist.isEmpty()) { + suggest_name = "New playlist"; + } else if (album.isEmpty()) { + suggest_name = artist; + } else { + suggest_name = QString("%1 - %2").arg(artist).arg(album); + } + + // constructed + SavePlaylistDialog dialog(suggest_name, this); + dialog.setPlaylistNames(playlists); + if (dialog.exec() == QDialog::Accepted) { + 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 (append) { + Playlist target = _library->getPlaylist(name); + QList tracks = cur.tracks(); + foreach (Track track, tracks) { + target.addTrack(track); + } + _library->savePlaylist(target); + } else { + cur.setName(name); + _library->savePlaylist(cur); + } + } +} + +void MainWindow::_clear_current_playlist() { + Playlist playlist = _library->getCurrentPlaylist(); + playlist.clear(); + _library->saveCurrentPlaylist(playlist); + _player_form->reload(true); +} + +void MainWindow::_set_timer() { + TimerDialog dialog(this); + dialog.init(); + if (_timer->isActive()) { + dialog.showDisable(); + int msec = _timeout_interval; + int h = msec/3600000; + int m = msec/60000 - h * 60; + int s = msec/1000 - h * 3600 - m * 60; + dialog.setTime(h, m, s); + } + if (QDialog::Accepted == dialog.exec()) { + if (!dialog.timerDisabled()) { + int h, m, s; + dialog.getTime(&h, &m, &s); + _timeout_interval = h*3600000+m*60000+s*1000; + _timer->setInterval(1000); + _timer->setSingleShot(false); + _timer->start(); + } else if (_timer->isActive()) { + _timer->stop(); + _player_form->hideCountdown(); + } + } +} + +void MainWindow::_timeout() { + _timeout_interval -= 1000; + if (_timeout_interval <= 0) { + _player_form->stop(); + _player_form->hideCountdown(); + _timer->stop(); + } else { + int h = _timeout_interval / 3600000; + int m = (_timeout_interval / 60000) - 60*h; + int s = (_timeout_interval / 1000) - 3600*h - 60*m; + QString hp = h < 10 ? QString("0%1").arg(h) : QString("%1").arg(h); + QString mp = m < 10 ? QString("0%1").arg(m) : QString("%1").arg(m); + QString sp = s < 10 ? QString("0%1").arg(s) : QString("%1").arg(s); + _player_form->showCountdown(hp+":"+mp+":"+sp); + } +} + +void MainWindow::_equalizer() { + if (_player_form->isEqualizerAvailable()) { + double val = 0; + for (int i = 0; i < 10; i++) { + _player_form->equalizerValue(i, &val); + _equalizer_dialog->setValue(i, (int)(val * 10 + 0.5)); + } + _equalizer_dialog->setEqualizerEnabled(_player_form->isEqualizerEnabled()); + _equalizer_dialog->reloadPresets(); + _equalizer_dialog->exec(); + } else { + QMessageBox::information(this, "Error", "No equalizer support. Please install gstreamer0.10-plugins-good-extra"); + } +} + +void MainWindow::_equalizer_value_changed(int band, int val) { + _player_form->setEqualizerValue(band, (val / 10.0)); +} + +void MainWindow::settings() { + SettingsDialog dialog; + dialog.exec(); + Config config; + _library_form->refresh(); + QString mode = config.getValue("ui/orientation").toString(); + if (mode == "landscape") { + setAttribute(Qt::WA_Maemo5LandscapeOrientation); + } else if (mode == "portrait") { + setAttribute(Qt::WA_Maemo5PortraitOrientation); + } else if (mode == "auto") { + setAttribute(Qt::WA_Maemo5AutoOrientation); + } + _player_form->updateIcons(); + _library_form->updateIcons(); + _manage_library_form->updateIcons(); + _player_form->checkGradient(); + _library_form->checkGradient(); + _directory_form->updateIcons(); + _directory_form->updateGradient(); + QTranslator *translator = new QTranslator(this); + translator->load(QString("/opt/someplayer/someplayer_%1").arg(config.getValue("ui/language").toString())); + QApplication::installTranslator(translator); +} + +void MainWindow::_orientation_changed() { + QRect screenGeometry = QApplication::desktop()->screenGeometry(); + if (screenGeometry.width() > screenGeometry.height()) { + _player_form->landscapeMode(); + _library_form->landscapeMode(); + _equalizer_dialog->landscapeMode(); + _directory_form->lanscapeMode(); + } else { + _player_form->portraitMode(); + _library_form->portraitMode(); + _equalizer_dialog->portraitMode(); + _directory_form->portraitMode(); + } +} + +void MainWindow::_fullscreen(bool f) { + if (f) showFullScreen(); + else showNormal(); +} + +void MainWindow::_add_tracks(QList tracks) { + Playlist cur = _library->getCurrentPlaylist(); + foreach (Track track, tracks) { + cur.addTrack(track); + } + _library->saveCurrentPlaylist(cur); + _player_form->reload(true); }