PrismLauncher/launcher/ui/widgets/WideBar.h

35 lines
799 B
C
Raw Normal View History

2019-07-22 23:48:14 +01:00
#pragma once
2019-07-23 00:05:23 +01:00
#include <QAction>
#include <QMap>
#include <QToolBar>
2019-07-22 23:48:14 +01:00
class QMenu;
class WideBar : public QToolBar {
2019-07-22 23:48:14 +01:00
Q_OBJECT
public:
explicit WideBar(const QString& title, QWidget* parent = nullptr);
explicit WideBar(QWidget* parent = nullptr);
virtual ~WideBar();
2019-07-22 23:48:14 +01:00
void addAction(QAction* action);
void addSeparator();
2019-07-22 23:48:14 +01:00
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-22 23:48:14 +01:00
};