Version bump
[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 #define ORIENTATION_LANDSCAPE 0
39 #define ORIENTATION_PORTRAIT 1
40
41 namespace Ui {
42         class MainWindow;
43 }
44
45 using SomePlayer::DataObjects::Library;
46 using SomePlayer::DataObjects::Track;
47
48 class MainWindow : public QMainWindow
49 {
50         Q_OBJECT
51
52 public:
53         explicit MainWindow(QWidget *parent = 0);
54         ~MainWindow();
55
56 private:
57         Ui::MainWindow *ui;
58
59 protected:
60         bool eventFilter(QObject *, QEvent *);
61
62 signals:
63         void landscapeMode();
64         void portraitMode();
65
66 public slots:
67         void about();
68         void player();
69         void library();
70         void settings();
71         void updateTranslations();
72 private slots:
73         void _manage_library();
74         void _save_playlist();
75         void _import_playlits();
76         void _clear_current_playlist();
77         void _set_timer();
78         void _timeout();
79         void _equalizer();
80         void _equalizer_value_changed(int, int);
81         void _orientation_changed();
82         void _fullscreen(bool);
83         void _add_tracks(QList<Track>);
84         void _change_orientation();
85         void _hw_zoom_policy_changed();
86         void _set_display_state(bool);
87         void _zoom_key_pressed(quint32);
88         void _fmtx_settings_changed();
89         void _clear_current();
90 private:
91         PlayerForm *_player_form;
92         LibraryForm *_library_form;
93         BusyWidget *_busy_widget;
94         DirectoryView *_directory_form;
95         SettingsForm *_settings_form;
96         AboutForm *_about_form;
97         Library *_library;
98         QTimer *_timer;
99         EqualizerDialog *_equalizer_dialog;
100         ManageLibraryForm *_manage_library_form;
101         int _timeout_interval;
102         QTranslator *_translator;
103         DBusClient _dbus_client;
104         bool _display_unlocked;
105         quint32 _system_volume; // yes, it is here
106         int _orientation; // 0 - landscape, 1 - portrait
107 };
108
109 #endif // MAINWINDOW_H