blob: 857b46b2e21a55fe3d94da62656f44a5d3766a7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef BEETPLAYER_H
#define BEETPLAYER_H
#include <QMainWindow>
class BeetPlayer : public QMainWindow {
Q_OBJECT
public:
enum Tabs { Player = 0, Indexer = 1 };
explicit BeetPlayer(QWidget *parent = 0, Qt::WindowFlags f = 0);
public slots:
void configure();
private:
void openDatabase();
void createGlobalActions();
};
#endif // BEETPLAYER_H
|