┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/information/metadataconfigurationdialog.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-10-16 14:17:49 +0000
committerPeter Penz <[email protected]>2009-10-16 14:17:49 +0000
commita6355d1ca42ae6ff57da81dbc1a3b097fbc333ca (patch)
tree3fd8f2bd0537f81e59cb6d5be53c67e8ce6d3f35 /src/panels/information/metadataconfigurationdialog.h
parent7d4242d2c77e8e70e0a45af7a626b561febfdd04 (diff)
prepare MetaDataConfigurationDialog to be a public class in the Nepomuk libs
svn path=/trunk/KDE/kdebase/apps/; revision=1036074
Diffstat (limited to 'src/panels/information/metadataconfigurationdialog.h')
-rw-r--r--src/panels/information/metadataconfigurationdialog.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/panels/information/metadataconfigurationdialog.h b/src/panels/information/metadataconfigurationdialog.h
new file mode 100644
index 000000000..18f0ecde6
--- /dev/null
+++ b/src/panels/information/metadataconfigurationdialog.h
@@ -0,0 +1,46 @@
+/***************************************************************************
+ * Copyright (C) 2009 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 META_DATA_CONFIGURATION_DIALOG_H
+#define META_DATA_CONFIGURATION_DIALOG_H
+
+#include <kdialog.h>
+
+/**
+ * @brief Dialog which allows to configure which meta data should be shown.
+ */
+class MetaDataConfigurationDialog : public KDialog
+{
+ Q_OBJECT
+
+public:
+ MetaDataConfigurationDialog(const KUrl& url,
+ QWidget* parent = 0,
+ Qt::WFlags flags = 0);
+ virtual ~MetaDataConfigurationDialog();
+
+protected slots:
+ virtual void slotButtonClicked(int button);
+
+private:
+ class Private;
+ Private* d;
+};
+
+#endif