New UI, Vkbd and unicode support
[groove] / bottombar.h
diff --git a/bottombar.h b/bottombar.h
new file mode 100644 (file)
index 0000000..69c145f
--- /dev/null
@@ -0,0 +1,28 @@
+#ifndef BOTTOMBAR_H
+#define BOTTOMBAR_H
+
+#include <QWidget>
+
+namespace Ui {
+    class bottomBar;
+}
+
+class bottomBar : public QWidget
+{
+    Q_OBJECT
+
+public:
+    explicit bottomBar(QWidget *parent = 0);
+    ~bottomBar();
+signals:
+    void addB();
+protected:
+    void changeEvent(QEvent *e);
+private slots:
+    void on_addButton_clicked();
+
+private:
+    Ui::bottomBar *ui;
+};
+
+#endif // BOTTOMBAR_H