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