Krita Source Code Documentation
Loading...
Searching...
No Matches
dlg_waveletdecompose.h
Go to the documentation of this file.
1/*
2 *
3 * SPDX-FileCopyrightText: 2016 Miroslav Talasek <miroslav.talasek@seznam.cz>
4 *
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 */
7#ifndef DLG_WAVELETDECOMPOSE
8#define DLG_WAVELETDECOMPOSE
9
10#include <KoDialog.h>
11
12#include "ui_wdg_waveletdecompose.h"
13
14class WdgWaveletDecompose : public QWidget, public Ui::WdgWaveletDecompose
15{
16 Q_OBJECT
17
18public:
19 WdgWaveletDecompose(QWidget *parent) : QWidget(parent) {
20 setupUi(this);
21 }
22};
23
25{
26
27 Q_OBJECT
28
29public:
30
31 DlgWaveletDecompose(QWidget * parent = 0,
32 const char* name = 0);
33 ~DlgWaveletDecompose() override;
34
35 void setScales(quint32 scales);
36 qint32 scales();
37
38private Q_SLOTS:
39
40 void okClicked();
41
42private:
43
45
46};
47
48#endif // DLG_WAVELETDECOMPOSE
WdgWaveletDecompose * m_page
void setScales(quint32 scales)
DlgWaveletDecompose(QWidget *parent=0, const char *name=0)
A dialog base class with standard buttons and predefined layouts.
Definition KoDialog.h:116
WdgWaveletDecompose(QWidget *parent)