2019-07-23 04:18:14 +05:30
|
|
|
#pragma once
|
|
|
|
|
2019-07-23 04:35:23 +05:30
|
|
|
#include <QAction>
|
|
|
|
#include <QMap>
|
2022-11-19 20:25:40 +05:30
|
|
|
#include <QMenu>
|
2022-04-22 20:06:00 +05:30
|
|
|
#include <QToolBar>
|
2019-07-23 04:18:14 +05:30
|
|
|
|
2022-11-19 22:09:43 +05:30
|
|
|
#include <memory>
|
|
|
|
|
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);
|
2022-11-19 20:25:40 +05:30
|
|
|
~WideBar() override = default;
|
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());
|
2022-11-25 18:03:05 +05:30
|
|
|
void showVisibilityMenu(const QPoint&);
|
2022-04-22 20:06:00 +05:30
|
|
|
|
2022-11-20 01:40:43 +05:30
|
|
|
// Ideally we would use a QBitArray for this, but it doesn't support string conversion,
|
|
|
|
// so using it in settings is very messy.
|
|
|
|
|
|
|
|
[[nodiscard]] QByteArray getVisibilityState() const;
|
|
|
|
void setVisibilityState(QByteArray&&);
|
|
|
|
|
2022-04-22 20:06:00 +05:30
|
|
|
private:
|
2022-11-19 20:25:40 +05:30
|
|
|
struct BarEntry {
|
|
|
|
enum class Type { None, Action, Separator, Spacer } type = Type::None;
|
|
|
|
QAction* bar_action = nullptr;
|
|
|
|
QAction* menu_action = nullptr;
|
|
|
|
};
|
2022-04-22 20:06:00 +05:30
|
|
|
|
2022-11-19 20:25:40 +05:30
|
|
|
auto getMatching(QAction* act) -> QList<BarEntry>::iterator;
|
2022-04-22 20:06:00 +05:30
|
|
|
|
2022-11-22 23:00:54 +05:30
|
|
|
/** Used to distinguish between versions of the WideBar with different actions */
|
|
|
|
[[nodiscard]] QByteArray getHash() const;
|
|
|
|
[[nodiscard]] bool checkHash(QByteArray const&) const;
|
|
|
|
|
2022-04-22 20:06:00 +05:30
|
|
|
private:
|
2022-11-19 20:25:40 +05:30
|
|
|
QList<BarEntry> m_entries;
|
2022-11-19 22:09:43 +05:30
|
|
|
|
|
|
|
// Menu to toggle visibility from buttons in the bar
|
|
|
|
std::unique_ptr<QMenu> m_bar_menu = nullptr;
|
|
|
|
enum class MenuState { Fresh, Dirty } m_menu_state = MenuState::Dirty;
|
2019-07-23 04:18:14 +05:30
|
|
|
};
|