Krita Source Code Documentation
Loading...
Searching...
No Matches
KisMediaEncoderFormatPreferencesDialog.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: GPL-3.0-or-later
3 */
4#ifndef KISMEDIAENCODERPREFERENCESDIALOG
5#define KISMEDIAENCODERPREFERENCESDIALOG
6
7#include <QDialog>
8#include <QVariantMap>
9
10#include <kritaui_export.h>
11
13
14class KRITAUI_EXPORT KisMediaEncoderPreferencesDialog : public QDialog
15{
16public:
18 const QVariantMap &preferences,
19 QWidget *parent = nullptr);
20
21 QVariant preferences() const;
22
23private Q_SLOTS:
24 void slotReset();
25
26private:
28 QWidget *m_widget;
29};
30
31#endif