pollymc/launcher/ui/widgets/WideBar.h

35 lines
799 B
C
Raw Normal View History

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