aboutsummaryrefslogtreecommitdiff
path: root/application/widgets/WideBar.h
diff options
context:
space:
mode:
Diffstat (limited to 'application/widgets/WideBar.h')
-rw-r--r--application/widgets/WideBar.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/application/widgets/WideBar.h b/application/widgets/WideBar.h
deleted file mode 100644
index d1b8cbe7..00000000
--- a/application/widgets/WideBar.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#pragma once
-
-#include <QToolBar>
-#include <QAction>
-#include <QMap>
-
-class QMenu;
-
-class WideBar : public QToolBar
-{
- Q_OBJECT
-
-public:
- explicit WideBar(const QString &title, QWidget * parent = nullptr);
- explicit WideBar(QWidget * parent = nullptr);
- virtual ~WideBar();
-
- void addAction(QAction *action);
- void addSeparator();
- void insertSpacer(QAction *action);
- QMenu *createContextMenu(QWidget *parent = nullptr, const QString & title = QString());
-
-private:
- struct BarEntry;
- QList<BarEntry *> m_entries;
-};