Fixed minor bug with 'More' button
[someplayer] / src / directoryview.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 DIRECTORYVIEW_H
21 #define DIRECTORYVIEW_H
22
23 #include <QWidget>
24 #include <QStandardItemModel>
25 #include <QStandardItem>
26 #include <QItemSelection>
27 #include "tagresolver.h"
28 #include "mediascanner.h"
29
30 namespace Ui {
31         class DirectoryView;
32 }
33
34 using SomePlayer::DataObjects::TagResolver;
35 using SomePlayer::Storage::MediaScanner;
36 using SomePlayer::DataObjects::Track;
37
38 class DirectoryView : public QWidget
39 {
40         Q_OBJECT
41
42 public:
43         explicit DirectoryView(QWidget *parent = 0);
44         ~DirectoryView();
45         void updateIcons();
46         void updateGradient();
47         void lanscapeMode();
48         void portraitMode();
49         void updateTranslations();
50
51 signals:
52         void addAndPlay(Track);
53         void addTracks(QList<Track>);
54
55 private:
56         Ui::DirectoryView *ui;
57         QStandardItemModel *_model;
58         QList<QString> REGISTERED_FILE_EXTENSIONS;
59         void readDir(QString path);
60         void homeScreen();
61         QList<QString> _directories;
62         QList<QString> _files;
63         QString _icons_theme;
64         QString _current_dir;
65         TagResolver *_tagresolver;
66         MediaScanner *_mediascanner;
67         QList<Track> _tracks;
68         QString _bottom_gradient;
69         QString _top_gradient;
70
71 private slots:
72         void _back();
73         void _home();
74         void _toggle_selection();
75         void _add();
76         void _add_track(Track);
77         void _done();
78         void _process_click(QModelIndex);
79         void _process_dblclick(QModelIndex);
80         void _process_selection(QItemSelection, QItemSelection);
81
82 };
83
84 #endif // DIRECTORYVIEW_H