Krita Source Code Documentation
Loading...
Searching...
No Matches
KisDlgChangeCloneSource.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2019 Tusooa Zhu <tusooa@vista.aero>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef KIS_DLG_CHANGE_CLONE_SOURCE_H_
8#define KIS_DLG_CHANGE_CLONE_SOURCE_H_
9
10#include "kis_types.h"
11#include <KoDialog.h>
12
13#include "ui_wdgchangeclonesource.h"
14
15class QWidget;
16class KisViewManager;
17
19{
20 Q_OBJECT
21
22public:
23 KisDlgChangeCloneSource(QList<KisCloneLayerSP> layers, KisViewManager *view, QWidget *parent = 0);
24
25 ~KisDlgChangeCloneSource() override;
26
27private:
29
30public Q_SLOTS:
32
33private:
34 struct Private;
35 const QScopedPointer<Private> d;
36};
37
38#endif // KIS_DLG_CHANGE_CLONE_SOURCE_H_
KisDlgChangeCloneSource(QList< KisCloneLayerSP > layers, KisViewManager *view, QWidget *parent=0)
const QScopedPointer< Private > d
A dialog base class with standard buttons and predefined layouts.
Definition KoDialog.h:116