Added portuguese translation. Update _it and _pl
[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 <QStack>
28 #include "tagresolver.h"
29 #include "mediascanner.h"
30
31 namespace Ui {
32         class DirectoryView;
33 }
34
35 using SomePlayer::DataObjects::TagResolver;
36 using SomePlayer::Storage::MediaScanner;
37 using SomePlayer::DataObjects::Track;
38
39 class DirectoryView : public QWidget
40 {
41         Q_OBJECT
42
43 public:
44         explicit DirectoryView(QWidget *parent = 0);
45         ~DirectoryView();
46
47 public slots:
48         void updateIcons();
49         void checkGradient();
50         void lanscapeMode();
51         void portraitMode();
52         void updateTranslations();
53
54 signals:
55         void addAndPlay(Track);
56         void addTracks(QList<Track>);
57
58 private:
59         Ui::DirectoryView *ui;
60         QStandardItemModel *_model;
61         QList<QString> REGISTERED_FILE_EXTENSIONS;
62         void readDir(QString path, QString pathToScroll="");
63         void homeScreen();
64         QList<QString> _directories;
65         QList<QString> _files;
66         QString _icons_theme;
67         QString _current_dir;
68         TagResolver *_tagresolver;
69         MediaScanner *_mediascanner;
70         QList<Track> _tracks;
71         QString _bottom_gradient;
72         QString _top_gradient;
73         QStack<QString> _nav_history;
74
75 private slots:
76         void _back();
77         void _home();
78         void _toggle_selection();
79         void _add();
80         void _add_track(Track);
81         void _done();
82         void _process_click(QModelIndex);
83         void _process_dblclick(QModelIndex);
84         void _process_selection(QItemSelection, QItemSelection);
85
86 };
87
88 #endif // DIRECTORYVIEW_H