A lot of changes (animations, initial library manager)
[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 "trackrenderer.h"
32 #include "tagresolver.h"
33 #include "dbusadaptor.h"
34 #include "toolswidget.h"
35
36 namespace Ui {
37     class PlayerForm;
38 }
39
40 using SomePlayer::DataObjects::Library;
41 using SomePlayer::DataObjects::Playlist;
42 using SomePlayer::DataObjects::Track;
43 using SomePlayer::Playback::Player;
44 using SomePlayer::Playback::PlayerState;
45 using SomePlayer::DataObjects::TagResolver;
46
47 class PlayerForm : public QWidget
48 {
49     Q_OBJECT
50
51 public:
52         explicit PlayerForm(Library *lib, QWidget *parent = 0);
53         ~PlayerForm();
54         bool isEqualizerEnabled() { return _player->equalizerEnabled(); }
55         bool isEqualizerAvailable() { return _player->equalizerAvailable(); }
56
57 signals:
58         void library();
59         void fullscreen(bool);
60         void clearPlaylist();
61
62 public slots:
63         void reload(bool);
64         void search(QString);
65         void nextItem();
66         void prevItem();
67         void cancelSearch();
68         void addFiles(QList<QString> files);
69         void stop();
70         void setEqualizerValue(int band, double value) { _player->setEqualizerValue(band, value); }
71         void equalizerValue(int band, double *value) { _player->equalizerValue(band, value); }
72         void enableEqualizer() { _player->enableEqualizer(); }
73         void disableEqualizer() { _player->disableEqualizer(); }
74         void portraitMode();
75         void landscapeMode();
76         void updateIcons();
77         void checkGradient();
78         void play(Track);
79
80 private slots:
81         void _library();
82         void _toggle_view();
83         void _process_click(QModelIndex);
84         void _track_changed(Track);
85         void _tick(int, int);
86         void _slider_released();
87         void _custom_context_menu_requested ( const QPoint & pos );
88         void _delete_track();
89         void _enqueue_track();
90         void _add_to_favorites();
91         void _add_to_playlists();
92         void _edit_tags();
93         void _state_changed(PlayerState);
94         void _toggle_repeat();
95         void _toggle_random();
96         void _toggle_volume();
97         void _track_decoded(Track);
98         void _volume_changed();
99         void _tools_widget_toggle();
100
101 private:
102     Ui::PlayerForm *ui;
103         Library *_lib;
104         Playlist _current_playlist;
105         QTime *_time;
106         QStandardItemModel *_model;
107         Player *_player;
108         QSlider *_seek_slider;
109         QMenu *_context_menu;
110         QString _search_pattern;
111         ToolsWidget *_tools_widget;
112         bool landscape;
113         QString _icons_theme;
114         QString _top_gradient;
115         QString _bottom_gradient;
116
117         TrackRenderer *_track_renderer;
118         TagResolver *_tag_resolver;
119         void _display_track(Track);
120         int _search_current_id;
121
122         DBusAdaptop *_dbusadaptor;
123 };
124
125 #endif // PLAYERFORM_H