summaryrefslogtreecommitdiffstats
path: root/konqueror/sidebar/trees/bookmark_module/bookmark_module.h
diff options
context:
space:
mode:
Diffstat (limited to 'konqueror/sidebar/trees/bookmark_module/bookmark_module.h')
-rw-r--r--konqueror/sidebar/trees/bookmark_module/bookmark_module.h98
1 files changed, 98 insertions, 0 deletions
diff --git a/konqueror/sidebar/trees/bookmark_module/bookmark_module.h b/konqueror/sidebar/trees/bookmark_module/bookmark_module.h
new file mode 100644
index 000000000..b38cdb540
--- /dev/null
+++ b/konqueror/sidebar/trees/bookmark_module/bookmark_module.h
@@ -0,0 +1,98 @@
+/* This file is part of the KDE project
+ Copyright (C) 2000 David Faure <faure@kde.org>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License version 2 as published by the Free Software Foundation.
+
+ 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 bookmark_module_h
+#define bookmark_module_h
+
+#include <qmap.h>
+#include <qobject.h>
+#include <konq_sidebartreemodule.h>
+#include <kbookmark.h>
+#include <kdialogbase.h>
+class KonqSidebarBookmarkItem;
+
+class KActionCollection;
+class KLineEdit;
+
+/**
+ * This module displays bookmarks in the tree
+ */
+class KonqSidebarBookmarkModule : public QObject, public KonqSidebarTreeModule
+{
+ Q_OBJECT
+public:
+ KonqSidebarBookmarkModule( KonqSidebarTree * parentTree );
+ virtual ~KonqSidebarBookmarkModule();
+
+ // Handle this new toplevel item [can only be called once currently]
+ virtual void addTopLevelItem( KonqSidebarTreeTopLevelItem * item );
+ virtual bool handleTopLevelContextMenu( KonqSidebarTreeTopLevelItem *, const QPoint& );
+
+ void showPopupMenu();
+
+
+protected slots:
+ void slotBookmarksChanged( const QString & );
+ void slotMoved(QListViewItem*,QListViewItem*,QListViewItem*);
+ void slotDropped(KListView*,QDropEvent*,QListViewItem*,QListViewItem*);
+ void slotCreateFolder();
+ void slotDelete();
+ void slotProperties(KonqSidebarBookmarkItem *bi = 0);
+ void slotOpenNewWindow();
+ void slotOpenTab();
+ void slotCopyLocation();
+
+protected:
+ void fillListView();
+ void fillGroup( KonqSidebarTreeItem * parentItem, KBookmarkGroup group );
+ KonqSidebarBookmarkItem * findByAddress( const QString & address ) const;
+
+private slots:
+ void slotOpenChange(QListViewItem*);
+
+private:
+ KonqSidebarTreeTopLevelItem * m_topLevelItem;
+ KonqSidebarBookmarkItem * m_rootItem;
+
+ KActionCollection *m_collection;
+
+ bool m_ignoreOpenChange;
+ QMap<QString, bool> m_folderOpenState;
+};
+
+class BookmarkEditDialog : public KDialogBase
+{
+ Q_OBJECT
+
+public:
+ BookmarkEditDialog( const QString& title, const QString& url,
+ QWidget * = 0, const char * = 0,
+ const QString& caption = i18n( "Add Bookmark" ) );
+
+ QString finalUrl() const;
+ QString finalTitle() const;
+
+protected slots:
+ void slotOk();
+ void slotCancel();
+
+private:
+ KLineEdit *m_title, *m_location;
+};
+
+#endif