Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_bookmarked_configurations_editor.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2007 Cyrille Berger <cberger@cberger.net>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#ifndef _KIS_BOOKMARKED_CONFIGURATIONS_EDITOR_H_
8#define _KIS_BOOKMARKED_CONFIGURATIONS_EDITOR_H_
9
10#include <QDialog>
11#include <kritaui_export.h>
12
14
16class QItemSelection;
17
21class KRITAUI_EXPORT KisBookmarkedConfigurationsEditor : public QDialog
22{
23 Q_OBJECT
24public:
33private Q_SLOTS:
34 void currentConfigChanged(const QItemSelection& selected, const QItemSelection&);
35 void addCurrentConfiguration();
36 void deleteConfiguration();
37private:
38 struct Private;
39 Private* const d;
40};
41
42#endif