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