diff options
| author | Peter Penz <[email protected]> | 2011-02-25 20:39:18 +0100 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2011-02-27 20:38:35 +0100 |
| commit | 1b2b63eb3a01025e03ff964f187adda52c62bcb3 (patch) | |
| tree | 9cd88bac9980ffda772878adada70e7a62cbddce /src/settings/general/configurepreviewplugindialog.h | |
| parent | 96c0153e96917e994b5a188a01bb021fc4832707 (diff) | |
Allow to configure thumbnail-plugins
Adjust the preview-settings to allow users to configure thumbnail-plugins. For consistency also the service-settings have been adjusted to use the ServiceModel and ServiceItemDelegate.
Diffstat (limited to 'src/settings/general/configurepreviewplugindialog.h')
| -rw-r--r-- | src/settings/general/configurepreviewplugindialog.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/settings/general/configurepreviewplugindialog.h b/src/settings/general/configurepreviewplugindialog.h new file mode 100644 index 000000000..5a3f5354a --- /dev/null +++ b/src/settings/general/configurepreviewplugindialog.h @@ -0,0 +1,55 @@ +/*************************************************************************** + * Copyright (C) 2011 by Peter Penz <[email protected]> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * + ***************************************************************************/ + +#ifndef CONFIGUREPREVIEWPLUGINDIALOG_H +#define CONFIGUREPREVIEWPLUGINDIALOG_H + +#include <KDialog> + +class ThumbCreatorV2; + +/** + * @brief Dialog for configuring preview-plugins. + */ +class ConfigurePreviewPluginDialog : public KDialog +{ + 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. + */ + explicit ConfigurePreviewPluginDialog(const QString& pluginName, + const QString& desktopEntryName, + QWidget* parent = 0); + virtual ~ConfigurePreviewPluginDialog(); + +private slots: + void slotOk(); + +private: + QWidget* m_configurationWidget; + ThumbCreatorV2* m_previewPlugin; +}; + +#endif |
