Krita Source Code Documentation
Loading...
Searching...
No Matches
dlg_imagesize.h
Go to the documentation of this file.
1/*
2 * dlg_imagesize.h -- part of KimageShop^WKrayon^WKrita
3 *
4 * SPDX-FileCopyrightText: 2004 Boudewijn Rempt <boud@valdyas.org>
5 * SPDX-FileCopyrightText: 2013 Juan Palacios <jpalaciosdev@gmail.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
9#ifndef DLG_IMAGESIZE
10#define DLG_IMAGESIZE
11
12#include <KoDialog.h>
13
15class WdgImageSize;
16
18{
19
20 Q_OBJECT
21
22public:
23
24 DlgImageSize(QWidget * parent, int width, int height, double resolution);
25 ~DlgImageSize() override;
26
27 qint32 desiredWidth();
28 qint32 desiredHeight();
29 double desiredResolution();
30
32
33private:
34 QScopedPointer<WdgImageSize> m_page;
35};
36
37#endif // DLG_IMAGESIZE
DlgImageSize(QWidget *parent, int width, int height, double resolution)
~DlgImageSize() override
QScopedPointer< WdgImageSize > m_page
KisFilterStrategy * filterType()
qint32 desiredWidth()
double desiredResolution()
qint32 desiredHeight()
A dialog base class with standard buttons and predefined layouts.
Definition KoDialog.h:116