summaryrefslogtreecommitdiff
path: root/src/urlbar/resourcelinkdialog.h
diff options
context:
space:
mode:
authorPhaneendra Hegde <pnh.pes@gmail.com>2012-05-27 09:49:35 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-05-27 23:34:32 +0200
commitc4e2c2524615d781e1884123169dfdd928be09d4 (patch)
tree0e6e47f69ec9884ce60c9539217c2bf471a529db /src/urlbar/resourcelinkdialog.h
parentAdd application icon ( Windows & OS X ). (diff)
downloadrekonq-c4e2c2524615d781e1884123169dfdd928be09d4.tar.xz
Fancy bookmarking on rekonq :)
- Fancy bookmarking's resource link dialog added to bookmark context menu - UI improvements in bookmarks dialog - WARNING: Nepomuk/soprano dependencies added NB: Merged and squashed by adjam ;)
Diffstat (limited to 'src/urlbar/resourcelinkdialog.h')
-rw-r--r--src/urlbar/resourcelinkdialog.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/urlbar/resourcelinkdialog.h b/src/urlbar/resourcelinkdialog.h
new file mode 100644
index 00000000..7e623778
--- /dev/null
+++ b/src/urlbar/resourcelinkdialog.h
@@ -0,0 +1,66 @@
+/*
+ This is a part of the GSoC project - Fancy Bookmarking
+ Copyright 2011 Phaneendra Hegde <pnh.pes@gmail.com>
+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Library General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or (at your
+ option) any later version.
+
+ This library 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 Library General Public
+ License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to the
+ Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ 02110-1301, USA.
+*/
+
+
+#ifndef RESOURCELINKDIALOG_H
+#define RESOURCELINKDIALOG_H
+
+//Qt includes
+#include <QListView>
+
+//kde includes
+#include <KDialog>
+#include <KLineEdit>
+#include <KConfigDialog>
+
+namespace Nepomuk
+{
+ class Resource;
+ namespace Query {
+ class Query;
+ }
+
+ class ResourceLinkDialog : public KDialog
+ {
+ Q_OBJECT
+
+ public:
+ explicit ResourceLinkDialog( Nepomuk::Resource& nfoResource, QWidget* parent = 0 );
+ virtual ~ResourceLinkDialog();
+ void setRelatedResources();
+
+ private Q_SLOTS:
+ void dynamicSearchingSlot();
+ void resourceSelectedSlot(int);
+ void linkResourceSlot();
+ void unlinkResourceSlot();
+ void createNewResourceSlot();
+ void showContextMenu(const QPoint&);
+
+
+ private:
+ class Private;
+ Private* const d;
+
+ };
+
+}
+
+#endif // RESOURCELINKDIALOG_H