-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroove.h
68 lines (62 loc) · 1.37 KB
/
groove.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#ifndef GROOVE_H
#define GROOVE_H
#include <QtGui>
#include "gscom.h"
#include "splayer.h"
#if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
#include "qmaemo5rotator.h"
#endif
#include <QMenuBar>
#include "playlist.h"
#include "grooveprogressbar.h"
#include "topbar.h"
#include "vkb.h"
#include "bottombar.h"
#include "settings.h"
#include <QSettings>
//#include "mpgplayer.h"
#include "pwin.h"
class groove : public QWidget
{
Q_OBJECT;
public:
explicit groove(QWidget *parent = 0);
signals:
public slots:
void search();
void finishedS();
void changeS( QAction * action);
void play();
void stop();
void moreB();
void orientationChanged();
void performSearch(QString);
private slots:
void progressUpdate(int,qint64,qint64);
void addSongPlaylist();
void showOthers();
void togglePlaylist();
void toggleSettings();
void showSettings();
private:
void resizeEvent(QResizeEvent *);
//mpgplayer *mpg;
bottomBar *bBar;
sPlayer *player;
settings *settingsWin;
QMenuBar *mBar;
QPushButton *sMethod;
QStandardItemModel *model;
QLineEdit *lineEdit;
QTableView *resultView;
QPushButton *button;
bool portrait;
gscom *gs;
pWin *pwindow;
QStackedWidget *stack;
#if defined(Q_WS_MAEMO_5) || defined(Q_WS_HILDON)
QMaemo5Rotator *rot;
#endif
playlist *pl;
};
#endif // GROOVE_H