/*************************************************************************** * Copyright (C) 2011 by Peter Penz * * * * 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 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