blob: d6a28f53f022cbd0782400387d05f1cfc3e2b5d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* SPDX-FileCopyrightText: 2011 Peter Penz <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef CONFIGUREPREVIEWPLUGINDIALOG_H
#define CONFIGUREPREVIEWPLUGINDIALOG_H
#include <QDialog>
/**
* @brief Dialog for configuring preview-plugins.
*/
class ConfigurePreviewPluginDialog : public QDialog
{
Q_OBJECT
public:
/**
* @param pluginName User visible name of the plugin
* @param desktopEntryName The name of the plugin that is noted in the desktopentry.
* Is used to instantiate the plugin to get the configuration
* widget.
* @param parent Parent widget.
*/
ConfigurePreviewPluginDialog(const QString& pluginName,
const QString& desktopEntryName,
QWidget* parent);
~ConfigurePreviewPluginDialog() override = default;
};
#endif
|