Merge branch 'master' of https://vcs.maemo.org/git/vlc-remote
[vlc-remote] / playlistmainwindow.h
1 /*   VLC-REMOTE for MAEMO 5
2  *   Copyright (C) 2010 Schutz Sacha <istdasklar@gmail.com>
3  *   This program is free software; you can redistribute it and/or modify
4  *   it under the terms of the GNU General Public License version 2,
5  *   or (at your option) any later version, as published by the Free
6  *   Software Foundation
7  *
8  *   This program is distributed in the hope that it will be useful,
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  *   GNU General Public License for more details
12  *
13  *   You should have received a copy of the GNU General Public
14  *   License along with this program; if not, write to the
15  *   Free Software Foundation, Inc.,
16  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18 #ifndef PLAYLISTMAINWINDOW_H
19 #define PLAYLISTMAINWINDOW_H
20
21 #include <QMainWindow>
22 #include <QTimer>
23
24 namespace Ui {
25     class PlayListMainWindow;
26 }
27
28 class PlayListMainWindow : public QMainWindow {
29     Q_OBJECT
30 public:
31     explicit PlayListMainWindow(QWidget *parent = 0);
32     ~PlayListMainWindow();
33
34 protected:
35     void changeEvent(QEvent *e);
36
37 private:
38     Ui::PlayListMainWindow *ui;
39     QTimer * mTimer;
40 };
41
42 #endif // PLAYLISTMAINWINDOW_H