2019-07-23 04:18:14 +05:30
|
|
|
#pragma once
|
|
|
|
|
2019-07-23 04:35:23 +05:30
|
|
|
#include <QAction>
|
|
|
|
#include <QMap>
|
2022-04-22 20:06:00 +05:30
|
|
|
#include <QToolBar>
|
2019-07-23 04:18:14 +05:30
|
|
|
|
2019-07-25 04:32:30 +05:30
|
|
|
class QMenu;
|
|
|
|
|
2022-04-22 20:06:00 +05:30
|
|
|
class WideBar : public QToolBar {
|
2019-07-23 04:18:14 +05:30
|
|
|
Q_OBJECT
|
|
|
|
|
2022-04-22 20:06:00 +05:30
|
|
|
public:
|
|
|
|
explicit WideBar(const QString& title, QWidget* parent = nullptr);
|
|
|
|
explicit WideBar(QWidget* parent = nullptr);
|
2019-07-25 04:32:30 +05:30
|
|
|
virtual ~WideBar();
|
2019-07-23 04:18:14 +05:30
|
|
|
|
2022-04-22 20:06:00 +05:30
|
|
|
void addAction(QAction* action);
|
2019-07-25 04:32:30 +05:30
|
|
|
void addSeparator();
|
2019-07-23 04:18:14 +05:30
|
|
|
|
2022-04-22 20:06:00 +05:30
|
|
|
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:
|
2019-07-25 04:32:30 +05:30
|
|
|
struct BarEntry;
|
2022-04-22 20:06:00 +05:30
|
|
|
|
|
|
|
auto getMatching(QAction* act) -> QList<BarEntry*>::iterator;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QList<BarEntry*> m_entries;
|
2019-07-23 04:18:14 +05:30
|
|
|
};
|