032ceefa1d
Signed-off-by: flow <flowlnlnln@gmail.com>
35 lines
799 B
C++
35 lines
799 B
C++
#pragma once
|
|
|
|
#include <QAction>
|
|
#include <QMap>
|
|
#include <QToolBar>
|
|
|
|
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);
|
|
void insertSeparator(QAction* before);
|
|
void insertActionBefore(QAction* before, QAction* action);
|
|
void insertActionAfter(QAction* after, QAction* action);
|
|
|
|
QMenu* createContextMenu(QWidget* parent = nullptr, const QString& title = QString());
|
|
|
|
private:
|
|
struct BarEntry;
|
|
|
|
auto getMatching(QAction* act) -> QList<BarEntry*>::iterator;
|
|
|
|
private:
|
|
QList<BarEntry*> m_entries;
|
|
};
|