Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_select_layer_action.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: 2012 Arjen Hiemstra <ahiemstra@heimr.nl>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef KIS_SELECT_LAYER_ACTION_H
8#define KIS_SELECT_LAYER_ACTION_H
9
11
18{
19public:
26
32
33 explicit KisSelectLayerAction();
34 ~KisSelectLayerAction() override;
35
36 int priority() const override;
37
38 void activate(int shortcut) override;
39 void deactivate(int shortcut) override;
40
41 void begin(int shortcut, QEvent *event) override;
42 void inputEvent(QEvent *event) override;
43
44private:
45 class Private;
46 Private * const d;
47};
48
49#endif // KIS_SELECT_LAYER_ACTION_H
Abstract base class for input actions.
Select Layer implementation of KisAbstractInputAction.
void begin(int shortcut, QEvent *event) override
void activate(int shortcut) override
void deactivate(int shortcut) override
void inputEvent(QEvent *event) override