Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_selection_actions_panel_handle.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2026 Luna Lovecraft <ciubix8514@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-3.0-or-later
5 */
6
7#ifndef _KIS_SELECTION_ACTIONS_PANNEL_HANDLE
8#define _KIS_SELECTION_ACTIONS_PANNEL_HANDLE
9#include <qpainter.h>
10#include <qwidget.h>
11
12class KisSelectionActionsPanelHandle : public QWidget
13{
14public:
15 KisSelectionActionsPanelHandle(int size, QWidget *parent);
17 void draw(QPainter& painter);
18 void set_held(bool held);
19private:
20 struct Private;
21 QScopedPointer<Private> d;
22};
23#endif