new file: debian-maemo.tar.gz
[groove] / bottombar.h
1 #ifndef BOTTOMBAR_H
2 #define BOTTOMBAR_H
3
4 #include <QWidget>
5 #include <QDesktopWidget>
6
7 namespace Ui {
8     class bottomBar;
9 }
10
11 class bottomBar : public QWidget
12 {
13     Q_OBJECT
14
15 public:
16     explicit bottomBar(QWidget *parent = 0);
17     ~bottomBar();
18 signals:
19     void addB();
20 protected:
21     void changeEvent(QEvent *e);
22 private slots:
23     void on_addButton_clicked();
24
25 private:
26     Ui::bottomBar *ui;
27 };
28
29 #endif // BOTTOMBAR_H