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