Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_dlg_adjustment_layer.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006 Boudewijn Rempt <boud@valdyas.org>
3 * SPDX-FileCopyrightText: 2008 Cyrille Berger <cberger@cberger.net>
4 *
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 */
7#ifndef KISDLGAdjustMENTLAYER_H
8#define KISDLGAdjustMENTLAYER_H
9
10#include <KoDialog.h>
11
14class KisViewManager;
15#include "kis_types.h"
16#include "ui_wdgfilternodecreation.h"
17
22{
23
24 Q_OBJECT
25
26public:
27
41 KisPaintDeviceSP paintDevice,
42 const QString & layerName,
43 const QString & caption,
44 KisViewManager *view,
45 QWidget *parent = 0);
46 ~KisDlgAdjustmentLayer() override;
48 QString layerName() const;
49
50public Q_SLOTS:
51 void adjustSize();
52
53protected Q_SLOTS:
54 void slotNameChanged(const QString &);
55 void slotConfigChanged();
57
58private:
61 Ui::WdgFilterNodeCreation wdgFilterNodeCreation;
64 QString m_layerName;
65
66};
67
68#endif
Ui::WdgFilterNodeCreation wdgFilterNodeCreation
KisDlgAdjustmentLayer(KisNodeSP node, KisNodeFilterInterface *nfi, KisPaintDeviceSP paintDevice, const QString &layerName, const QString &caption, KisViewManager *view, QWidget *parent=0)
KisNodeFilterInterface * m_nodeFilterInterface
void slotNameChanged(const QString &)
KisFilterConfigurationSP filterConfiguration() const
KisFilterConfigurationSP m_currentFilter
A dialog base class with standard buttons and predefined layouts.
Definition KoDialog.h:116