-
Notifications
You must be signed in to change notification settings - Fork 1
/
mainwindow.h
48 lines (38 loc) · 930 Bytes
/
mainwindow.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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "player.h"
namespace Ui {
class MainWindow;
}
class QtAwesome;
class ArfariusApplication;
class PlayListModel;
class PlayListItem;
class MacMediaKeys;
class Collection;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(ArfariusApplication *application, QWidget *parent = nullptr);
~MainWindow();
protected:
void closeEvent(QCloseEvent *e);
void keyPressEvent(QKeyEvent *);
private:
QtAwesome *awesome;
Ui::MainWindow *ui;
MacMediaKeys *mac_media_keys;
Player *player;
PlayListModel *playlist;
PlayListItem *current_item;
private slots:
void updateState(Player::State);
void updateItem(PlayListItem*);
void updateHistogram();
void applicationStateChanged(Qt::ApplicationState);
void playlistSave();
void playlistGather();
};
#endif // MAINWINDOW_H