Now 'Artist name' and 'ArTist Name' is the same for library
[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
34 namespace Ui {
35     class PlayerForm;
36 }
37
38 using SomePlayer::DataObjects::Library;
39 using SomePlayer::DataObjects::Playlist;
40 using SomePlayer::DataObjects::Track;
41 using SomePlayer::Playback::Player;
42 using SomePlayer::Playback::PlayerState;
43 using SomePlayer::DataObjects::TagResolver;
44
45 class PlayerForm : public QWidget
46 {
47     Q_OBJECT
48
49 public:
50         explicit PlayerForm(Library *lib, QWidget *parent = 0);
51     ~PlayerForm();
52 signals:
53         void library();
54         void showSearchPanel();
55         void hideSearchPanel();
56
57 public slots:
58         void reload();
59         void search(QString &);
60         void nextItem();
61         void prevItem();
62         void cancelSearch();
63         void addFiles(QList<QString> files);
64
65 private slots:
66         void _library();
67         void _toggle_view();
68         void _process_click(QModelIndex);
69         void _track_changed(Track);
70         void _tick(int, int);
71         void _slider_released();
72         void _custom_context_venu_requested ( const QPoint & pos );
73         void _delete_track();
74         void _enqueue_track();
75         void _add_to_favorites();
76         void _add_to_playlists();
77         void _state_changed(PlayerState);
78         void _toggle_repeat();
79         void _toggle_random();
80         void _track_decoded(Track);
81
82 private:
83     Ui::PlayerForm *ui;
84         Library *_lib;
85         Playlist _current_playlist;
86         QTime *_time;
87         QStandardItemModel *_model;
88         Player *_player;
89         QSlider *_seek_slider;
90         QMenu *_context_menu;
91         QString _search_pattern;
92
93         TrackRenderer *_track_renderer;
94         TagResolver *_tag_resolver;
95         void _display_track(Track);
96         int _search_current_id;
97 };
98
99 #endif // PLAYERFORM_H