FMTX support
[someplayer] / src / playerform.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 PLAYERFORM_H
21 #define PLAYERFORM_H
22
23 #include <QWidget>
24 #include "someplayer.h"
25 #include "playlist.h"
26 #include <QStandardItemModel>
27 #include "player/player.h"
28 #include <QSlider>
29 #include <QMenu>
30 #include <QTime>
31 #include <QPushButton>
32 #include "trackrenderer.h"
33 #include "tagresolver.h"
34 #include "dbusadaptor.h"
35 #include "toolswidget.h"
36 #include "coverfinder.h"
37 #include "clickablelabel.h"
38
39 namespace Ui {
40     class PlayerForm;
41 }
42
43 using SomePlayer::DataObjects::Library;
44 using SomePlayer::DataObjects::Playlist;
45 using SomePlayer::DataObjects::Track;
46 using SomePlayer::Playback::Player;
47 using SomePlayer::Playback::PlayerState;
48 using SomePlayer::DataObjects::TagResolver;
49
50 class PlayerForm : public QWidget
51 {
52     Q_OBJECT
53
54 public:
55         explicit PlayerForm(Library *lib, QWidget *parent = 0);
56         ~PlayerForm();
57         bool isEqualizerEnabled() { return _player->equalizerEnabled(); }
58         bool isEqualizerAvailable() { return _player->equalizerAvailable(); }
59         QString playerCaption();
60
61 signals:
62         void library();
63         void fullscreen(bool);
64         void clearPlaylist();
65         void refreshLibrary();
66         void dirView();
67         void trackChanged();
68
69 public slots:
70         void reload(bool);
71         void search(QString);
72         void nextItem();
73         void prevItem();
74         void cancelSearch();
75         void addFiles(QList<QString> files);
76         void stop();
77         void setEqualizerValue(int band, double value) { _player->setEqualizerValue(band, value); }
78         void equalizerValue(int band, double *value) { _player->equalizerValue(band, value); }
79         void enableEqualizer() { _player->enableEqualizer(); }
80         void disableEqualizer() { _player->disableEqualizer(); }
81         void portraitMode();
82         void landscapeMode();
83         void updateIcons();
84         void checkGradient();
85         void play(Track);
86         void next();
87         void prev();
88         void showCountdown(QString);
89         void hideCountdown();
90         void updateTranslations();
91         void updateTrackColor();
92
93 private slots:
94         void _library();
95         void _dirview();
96         void _toggle_view();
97         void _process_click(QModelIndex);
98         void _track_changed(Track);
99         void _tick(int, int);
100         void _slider_released();
101         void _custom_context_menu_requested ( const QPoint & pos );
102         void _delete_track();
103         void _c_delete_track();
104         void _enqueue_track();
105         void _add_to_favorites();
106         void _c_add_to_favorites();
107         void _add_to_playlists();
108         void _c_add_to_playlists();
109         void _edit_tags();
110         void _c_edit_tags();
111         void _state_changed(PlayerState);
112         void _toggle_repeat();
113         void _toggle_random();
114         void _track_decoded(Track);
115         void _tools_widget_toggle();
116         void _display_cover(QImage);
117         void _toggle_extra_buttons();
118
119 private:
120     Ui::PlayerForm *ui;
121         Library *_lib;
122         Playlist _current_playlist;
123         ClickableLabel *_cover;
124         QTime *_time;
125         QStandardItemModel *_model;
126         CoverFinder *_coverfinder;
127         Player *_player;
128         QSlider *_seek_slider;
129         QMenu *_context_menu;
130         QString _search_pattern;
131         ToolsWidget *_tools_widget;
132         QPushButton *_fscreen_button;
133         bool landscape;
134         QString _icons_theme;
135         QString _top_gradient;
136         QString _bottom_gradient;
137         bool _show_extra_buttons;
138
139         QAction *__clear_playlist;
140         QAction *__delete_action;
141         QAction *__add_to_favorites;
142         QAction *__enqueue_action;
143         QAction *__add_to_playlists;
144         QAction *__edit_tags;
145
146         TrackRenderer *_track_renderer;
147         TagResolver *_tag_resolver;
148         void _display_track(Track);
149         int _search_current_id;
150
151         DBusAdaptop *_dbusadaptor;
152 };
153
154 #endif // PLAYERFORM_H