2019-07-22 23:48:14 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QToolBar>
|
2019-07-23 00:05:23 +01:00
|
|
|
#include <QAction>
|
|
|
|
#include <QMap>
|
2019-07-22 23:48:14 +01:00
|
|
|
|
2019-07-25 00:02:30 +01:00
|
|
|
class QMenu;
|
|
|
|
|
2019-07-22 23:48:14 +01:00
|
|
|
class WideBar : public QToolBar
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit WideBar(const QString &title, QWidget * parent = nullptr);
|
|
|
|
explicit WideBar(QWidget * parent = nullptr);
|
2019-07-25 00:02:30 +01:00
|
|
|
virtual ~WideBar();
|
2019-07-22 23:48:14 +01:00
|
|
|
|
|
|
|
void addAction(QAction *action);
|
2019-07-25 00:02:30 +01:00
|
|
|
void addSeparator();
|
2019-07-22 23:48:14 +01:00
|
|
|
void insertSpacer(QAction *action);
|
2019-07-25 00:02:30 +01:00
|
|
|
QMenu *createContextMenu(QWidget *parent = nullptr, const QString & title = QString());
|
2019-07-22 23:48:14 +01:00
|
|
|
|
|
|
|
private:
|
2019-07-25 00:02:30 +01:00
|
|
|
struct BarEntry;
|
|
|
|
QList<BarEntry *> m_entries;
|
2019-07-22 23:48:14 +01:00
|
|
|
};
|