Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_edit_profiles_dialog.h
Go to the documentation of this file.
1/*
2 * This file is part of the KDE project
3 * SPDX-FileCopyrightText: 2013 Arjen Hiemstra <ahiemstra@heimr.nl>
4 *
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 */
7
8#ifndef KISEDITPROFILESDIALOG_H
9#define KISEDITPROFILESDIALOG_H
10
11#include <KoDialog.h>
12
18{
19 Q_OBJECT
20public:
21 KisEditProfilesDialog(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
22 ~KisEditProfilesDialog() override;
23
24private Q_SLOTS:
28 void resetButtonClicked();
29
30private:
31 class Private;
32 Private *const d {nullptr};
33};
34
35#endif // KISEDITPROFILESDIALOG_H
A dialog that provides facilities to edit all the available profiles.
KisEditProfilesDialog(QWidget *parent=nullptr, Qt::WindowFlags f=Qt::WindowFlags())
A dialog base class with standard buttons and predefined layouts.
Definition KoDialog.h:116