Fixed broken image issue in taglib
[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
50 signals:
51         void addAndPlay(Track);
52         void addTracks(QList<Track>);
53
54 private:
55         Ui::DirectoryView *ui;
56         QStandardItemModel *_model;
57         QList<QString> REGISTERED_FILE_EXTENSIONS;
58         void readDir(QString path);
59         QList<QString> _directories;
60         QList<QString> _files;
61         QString _icons_theme;
62         QString _current_dir;
63         TagResolver *_tagresolver;
64         MediaScanner *_mediascanner;
65         QList<Track> _tracks;
66         QString _bottom_gradient;
67         QString _top_gradient;
68
69 private slots:
70         void _back();
71         void _home();
72         void _toggle_selection();
73         void _add();
74         void _add_track(Track);
75         void _done();
76         void _process_click(QModelIndex);
77         void _process_dblclick(QModelIndex);
78         void _process_selection(QItemSelection, QItemSelection);
79
80 };
81
82 #endif // DIRECTORYVIEW_H