┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/information/metadataconfigurationdialog_p.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_p.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_p.h')
-rw-r--r--src/panels/information/metadataconfigurationdialog_p.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/panels/information/metadataconfigurationdialog_p.h b/src/panels/information/metadataconfigurationdialog_p.h
deleted file mode 100644
index b566bbde3..000000000
--- a/src/panels/information/metadataconfigurationdialog_p.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/***************************************************************************
- * 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>
-#include <kurl.h>
-
-class QListWidget;
-
-/**
- * @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:
- void loadMetaData();
-
-private:
- KUrl m_url;
- QListWidget* m_metaDataList;
-};
-
-#endif