pollymc/launcher/ui/widgets/WideBar.h

28 lines
611 B
C
Raw Normal View History

2019-07-23 04:18:14 +05:30
#pragma once
#include <QToolBar>
2019-07-23 04:35:23 +05:30
#include <QAction>
#include <QMap>
2019-07-23 04:18:14 +05:30
class QMenu;
2019-07-23 04:18:14 +05:30
class WideBar : public QToolBar
{
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 insertActionBefore(QAction *before, QAction *action);
QMenu *createContextMenu(QWidget *parent = nullptr, const QString & title = QString());
2019-07-23 04:18:14 +05:30
private:
struct BarEntry;
QList<BarEntry *> m_entries;
2019-07-23 04:18:14 +05:30
};