Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_dlg_brush_hud_config.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2016 Dmitry Kazakov <dimula73@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef KIS_DLG_BRUSH_HUD_CONFIG_H
8#define KIS_DLG_BRUSH_HUD_CONFIG_H
9
10#include <QScopedPointer>
11#include <QDialog>
12
13#include "kis_types.h"
14
15
16namespace Ui {
18}
19
20class KisDlgConfigureBrushHud : public QDialog
21{
22 Q_OBJECT
23
24public:
25 explicit KisDlgConfigureBrushHud(KisPaintOpPresetSP preset, QWidget *parent = 0);
26 ~KisDlgConfigureBrushHud() override;
27
28private Q_SLOTS:
29 void slotConfigAccepted();
30
31 void slotMoveRight();
32 void slotMoveLeft();
33 void slotMoveUp();
34 void slotMoveDown();
35
36private:
37 Ui::KisDlgConfigureBrushHud *ui;
38
39private:
40 struct Private;
41 const QScopedPointer<Private> m_d;
42};
43
44#endif // KIS_DLG_BRUSH_HUD_CONFIG_H
KisDlgConfigureBrushHud(KisPaintOpPresetSP preset, QWidget *parent=0)
const QScopedPointer< Private > m_d
Ui::KisDlgConfigureBrushHud * ui