99f9a721f1fe65285eb30f132fc26bf27bd7b63d
[someplayer] / src / mainwindow.h
1 /*
2  * SomePlayer - An alternate music player for Maemo 5
3  * Copyright (C) 2010 Nikolay (somebody) Tischenko <niktischenko@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  */
19
20 #ifndef MAINWINDOW_H
21 #define MAINWINDOW_H
22
23 #include <QMainWindow>
24 #include <QMessageBox>
25 #include <QTranslator>
26 #include "playerform.h"
27 #include "libraryform.h"
28 #include "busywidget.h"
29 #include "equalizerdialog.h"
30 #include "managelibraryform.h"
31 #include "directoryview.h"
32 #include "settingsform.h"
33 #include "aboutform.h"
34 #include "library.h"
35 #include "dbusclient.h"
36 #include <QTimer>
37
38 namespace Ui {
39         class MainWindow;
40 }
41
42 using SomePlayer::DataObjects::Library;
43 using SomePlayer::DataObjects::Track;
44
45 class MainWindow : public QMainWindow
46 {
47         Q_OBJECT
48
49 public:
50         explicit MainWindow(QWidget *parent = 0);
51         ~MainWindow();
52
53 private:
54         Ui::MainWindow *ui;
55
56 signals:
57         void landscapeMode();
58         void portraitMode();
59
60 public slots:
61         void about();
62         void player();
63         void library();
64         void settings();
65         void updateTranslations();
66 private slots:
67         void _manage_library();
68         void _save_playlist();
69         void _clear_current_playlist();
70         void _set_timer();
71         void _timeout();
72         void _equalizer();
73         void _equalizer_value_changed(int, int);
74         void _orientation_changed();
75         void _fullscreen(bool);
76         void _add_tracks(QList<Track>);
77         void _change_orientation();
78         void _hw_zoom_policy_changed();
79         void _set_display_state(bool);
80         void _zoom_key_pressed(quint32);
81         void _fmtx_settings_changed();
82 private:
83         PlayerForm *_player_form;
84         LibraryForm *_library_form;
85         BusyWidget *_busy_widget;
86         DirectoryView *_directory_form;
87         SettingsForm *_settings_form;
88         AboutForm *_about_form;
89         Library *_library;
90         QTimer *_timer;
91         EqualizerDialog *_equalizer_dialog;
92         ManageLibraryForm *_manage_library_form;
93         int _timeout_interval;
94         QTranslator *_translator;
95         DBusClient _dbus_client;
96         bool _display_unlocked;
97         quint32 _system_volume; // yes, it is here
98 };
99
100 #endif // MAINWINDOW_H