Home
last modified time | relevance | path

Searched refs:KeyButtonBar (Results 1 – 15 of 15) sorted by relevance

/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/gui/widgets/
H A Dkey_button_bar.cpp89 KeyButtonBar::KeyButtonBar(QWidget* receiver, QWidget* parent, Qt::WindowFlags f) in KeyButtonBar() function in OpenOrienteering::KeyButtonBar
103 KeyButtonBar::~KeyButtonBar() = default;
123 connect(button, &QAbstractButton::clicked, this, &KeyButtonBar::sendKeyPressAndRelease); in addKeyButton()
140 connect(button, &QAbstractButton::clicked, this, &KeyButtonBar::sendModifierChange); in addModifierButton()
146 bool KeyButtonBar::eventFilter(QObject* /*watched*/, QEvent* event) in eventFilter()
220 void KeyButtonBar::showEvent(QShowEvent* event) in showEvent()
227 void KeyButtonBar::hideEvent(QHideEvent* event) in hideEvent()
235 void KeyButtonBar::sendKeyPressAndRelease() in sendKeyPressAndRelease()
261 void KeyButtonBar::sendModifierChange(bool checked) in sendModifierChange()
293 void KeyButtonBar::sendKeyPressEvent(Qt::Key key_code) in sendKeyPressEvent()
[all …]
H A Dkey_button_bar.h53 class KeyButtonBar : public QWidget
63 KeyButtonBar(QWidget* receiver, QWidget* parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
65 ~KeyButtonBar() override;
145 Q_DISABLE_COPY(KeyButtonBar)
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/tools/
H A Ddraw_circle_tool.h40 class KeyButtonBar; variable
81 QPointer<KeyButtonBar> key_button_bar;
H A Ddraw_rectangle_tool.h47 class KeyButtonBar; variable
160 QPointer<KeyButtonBar> key_button_bar;
H A Ddraw_path_tool.h48 class KeyButtonBar; variable
130 QPointer<KeyButtonBar> key_button_bar;
H A Dtool_base.h52 class KeyButtonBar; variable
333 QPointer<KeyButtonBar> key_button_bar;
H A Ddraw_circle_tool.cpp69 key_button_bar = new KeyButtonBar(editor->getMainWidget()); in init()
H A Ddraw_point_tool.cpp82 key_button_bar = new KeyButtonBar(editor->getMainWidget()); in initImpl()
H A Ddraw_text_tool.cpp111 key_button_bar = new KeyButtonBar(editor->getMainWidget()); in initImpl()
H A Dedit_line_tool.cpp405 key_button_bar = new KeyButtonBar(editor->getMainWidget()); in initImpl()
H A Ddraw_rectangle_tool.cpp89 key_button_bar = new KeyButtonBar(editor->getMainWidget()); in init()
H A Dedit_point_tool.cpp537 key_button_bar = new KeyButtonBar(editor->getMainWidget()); in initImpl()
H A Ddraw_path_tool.cpp101 key_button_bar = new KeyButtonBar(editor->getMainWidget()); in init()
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/gui/map/
H A Dmap_widget.cpp917 else if (QWidget* child_widget = qobject_cast<KeyButtonBar*>(child)) in resizeEvent()
H A Dmap_editor.cpp1682 if (isEditingInProgress() && !map_widget->findChild<KeyButtonBar*>()) in keyPressEventFilter()