Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
78 lines
1.7 KiB
C++
78 lines
1.7 KiB
C++
// This file is part of Desktop App Toolkit,
|
|
// a set of libraries for developing nice desktop applications.
|
|
//
|
|
// For license and copyright information please follow this link:
|
|
// https://github.com/desktop-app/legal/blob/master/LEGAL
|
|
//
|
|
#pragma once
|
|
|
|
#include "ui/text/text.h"
|
|
#include "ui/widgets/menu/menu_item_base.h"
|
|
#include "styles/style_widgets.h"
|
|
|
|
class Painter;
|
|
|
|
namespace Ui::Menu {
|
|
|
|
class Action : public ItemBase {
|
|
public:
|
|
Action(
|
|
not_null<RpWidget*> parent,
|
|
const style::Menu &st,
|
|
not_null<QAction*> action,
|
|
const style::icon *icon,
|
|
const style::icon *iconOver);
|
|
|
|
QAccessible::Role accessibilityRole() override {
|
|
return QAccessible::MenuItem;
|
|
}
|
|
QString accessibilityName() override {
|
|
return _action->text();
|
|
}
|
|
|
|
[[nodiscard]] const style::Menu &st() const;
|
|
|
|
bool isEnabled() const override;
|
|
not_null<QAction*> action() const override;
|
|
|
|
void handleKeyPress(not_null<QKeyEvent*> e) override;
|
|
|
|
void setIcon(
|
|
const style::icon *icon,
|
|
const style::icon *iconOver = nullptr);
|
|
|
|
void setMarkedText(
|
|
TextWithEntities text,
|
|
QString shortcut,
|
|
const Text::MarkedContext &context = {});
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *e) override;
|
|
QPoint prepareRippleStartPosition() const override;
|
|
QImage prepareRippleMask() const override;
|
|
|
|
int contentHeight() const override;
|
|
|
|
void paintBackground(QPainter &p, bool selected);
|
|
void paintText(Painter &p);
|
|
|
|
private:
|
|
void processAction();
|
|
void paint(Painter &p);
|
|
|
|
bool hasSubmenu() const;
|
|
|
|
Text::String _text;
|
|
QString _shortcut;
|
|
const not_null<QAction*> _action;
|
|
const style::Menu &_st;
|
|
const style::icon *_icon;
|
|
const style::icon *_iconOver;
|
|
// std::unique_ptr<ToggleView> _toggle;
|
|
int _textWidth = 0;
|
|
const int _height;
|
|
|
|
};
|
|
|
|
} // namespace Ui::Menu
|