Krita Source Code Documentation
Loading...
Searching...
No Matches
KoFilterEffectConfigWidgetBase.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: 2009 Jan Hambrecht <jaham@gmx.net>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 */
6
7#ifndef KOFILTEREFFECTCONFIGWIDGETBASE_H
8#define KOFILTEREFFECTCONFIGWIDGETBASE_H
9
10#include "kritaflake_export.h"
11#include <QWidget>
12
13class KoFilterEffect;
14
16class KRITAFLAKE_EXPORT KoFilterEffectConfigWidgetBase : public QWidget
17{
18 Q_OBJECT
19public:
20 explicit KoFilterEffectConfigWidgetBase(QWidget *parent = 0);
22
24 virtual bool editFilterEffect(KoFilterEffect *filterEffect) = 0;
25
26Q_SIGNALS:
29};
30
31#endif // KOFILTEREFFECTCONFIGWIDGETBASE_H
Base class for filter effects config widgets.
void filterChanged()
Is emitted when the filter effect has changed.
virtual bool editFilterEffect(KoFilterEffect *filterEffect)=0
Sets the filter effect to be edited by the config widget.