4e20950b9662d367e1109667e05c719446cbab02
[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 "library.h"
34 #include <QTimer>
35
36 namespace Ui {
37         class MainWindow;
38 }
39
40 using SomePlayer::DataObjects::Library;
41 using SomePlayer::DataObjects::Track;
42
43 class MainWindow : public QMainWindow
44 {
45         Q_OBJECT
46
47 public:
48         explicit MainWindow(QWidget *parent = 0);
49         ~MainWindow();
50
51 private:
52         Ui::MainWindow *ui;
53
54 signals:
55         void landscapeMode();
56         void portraitMode();
57
58 public slots:
59         void about();
60         void player();
61         void library();
62         void settings();
63         void updateTranslations();
64 private slots:
65         void _manage_library();
66         void _save_playlist();
67         void _clear_current_playlist();
68         void _set_timer();
69         void _timeout();
70         void _equalizer();
71         void _equalizer_value_changed(int, int);
72         void _orientation_changed();
73         void _fullscreen(bool);
74         void _add_tracks(QList<Track>);
75         void _change_orientation();
76 private:
77         PlayerForm *_player_form;
78         LibraryForm *_library_form;
79         BusyWidget *_busy_widget;
80         DirectoryView *_directory_form;
81         SettingsForm *_settings_form;
82         Library *_library;
83         QTimer *_timer;
84         EqualizerDialog *_equalizer_dialog;
85         ManageLibraryForm *_manage_library_form;
86         int _timeout_interval;
87         QTranslator *_translator;
88 };
89
90 #endif // MAINWINDOW_H