New repeat mode: repeate one
[someplayer] / src / libraryform.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 LIBRARYFORM_H
21 #define LIBRARYFORM_H
22
23 #include <QWidget>
24 #include "someplayer.h"
25
26 #include <QStandardItemModel>
27 #include <QStandardItem>
28 #include <QModelIndex>
29 #include <QItemSelectionModel>
30 #include <QItemSelection>
31 #include "playlist.h"
32 #include "toolswidget.h"
33
34 namespace Ui {
35     class LibraryForm;
36 }
37
38 using SomePlayer::DataObjects::Library;
39 using SomePlayer::DataObjects::Track;
40 using SomePlayer::DataObjects::Playlist;
41
42 enum LibraryFormListState {STATE_NONE, STATE_ARTIST, STATE_ALBUM, STATE_TRACK, STATE_PLAYLIST, STATE_PLAYLIST_TRACK, STATE_DYNAMIC};
43
44 class LibraryForm : public QWidget
45 {
46     Q_OBJECT
47
48 public:
49         explicit LibraryForm(Library *lib, QWidget *parent = 0);
50     ~LibraryForm();
51 signals:
52         void player(bool);
53         void busy(QString);
54         void done();
55         void fullscreen(bool);
56         void addAndPlay(Track);
57 public slots:
58         void search(QString);
59         void nextItem();
60         void prevItem();
61         void cancelSearch();
62         void refresh();
63         void landscapeMode();
64         void portraitMode();
65         void updateIcons();
66         void checkGradient();
67 private slots:
68         void _player();
69         void _view_button();
70         void _dynamic_button();
71         void _playlists_button();
72         void _toggle_select_all_button();
73         void _add_button();
74         void _delete_button();
75         void _back_button();
76         void _use_button();
77         void _process_list_click(QModelIndex);
78         void _process_dblclick(QModelIndex);
79         void _process_selection(QItemSelection, QItemSelection);
80         void _more_button();
81
82 private:
83         Ui::LibraryForm *ui;
84         Library *_lib;
85         QStandardItemModel *_model;
86         LibraryFormListState _state;
87         bool _is_dynamic; // workaround
88         QString _current_artist;
89         QString _current_album;
90         Playlist _current_playlist;
91         QList<Track> _current_tracks;
92         QString _search_pattern;
93         int _search_current_id;
94         bool _current_playlist_changed;
95         ToolsWidget *_tools_widget;
96         bool landscape;
97         QString _icons_theme;
98         QString _top_gradient;
99         QString _bottom_gradient;
100
101         void _add_artist(Playlist *cur, QString artist);
102         void _add_album(Playlist *cur, QString artist, QString album);
103         void _add_track(Playlist *cur, Track track);
104         void _add_playlist(Playlist *cur, QString name);
105         void _delete_track(Track track);
106 };
107
108 #endif // LIBRARYFORM_H