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