┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/bookmarkssidebarpage.h
diff options
context:
space:
mode:
authorKevin Ottens <[email protected]>2007-04-09 09:16:39 +0000
committerKevin Ottens <[email protected]>2007-04-09 09:16:39 +0000
commit30161a7b3fe76578f43a61381c98a5ae475ed52a (patch)
treef79e987e472925336c33be52221a33613ae1cee3 /src/bookmarkssidebarpage.h
parent714d08f17c9135704cf48534823611cb015590a0 (diff)
Dolphin is now KBookmark* free.
svn path=/trunk/KDE/kdebase/apps/; revision=651766
Diffstat (limited to 'src/bookmarkssidebarpage.h')
-rw-r--r--src/bookmarkssidebarpage.h110
1 files changed, 0 insertions, 110 deletions
diff --git a/src/bookmarkssidebarpage.h b/src/bookmarkssidebarpage.h
deleted file mode 100644
index c50585ccb..000000000
--- a/src/bookmarkssidebarpage.h
+++ /dev/null
@@ -1,110 +0,0 @@
-/***************************************************************************
- * Copyright (C) 2006 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 _BOOKMARKSSIDEBARPAGE_H_
-#define _BOOKMARKSSIDEBARPAGE_H_
-
-#include <q3listbox.h>
-//Added by qt3to4:
-#include <QPaintEvent>
-#include <QPixmap>
-
-#include "sidebarpage.h"
-
-class KUrl;
-class BookmarksListBox;
-
-/**
- * @brief Sidebar page for accessing bookmarks.
- *
- * It is possible to add, remove and edit bookmarks
- * by a context menu. The selection of the bookmark
- * is automatically adjusted to the Url given by
- * the active view.
- */
-class BookmarksSidebarPage : public SidebarPage
-{
- Q_OBJECT
-
-public:
- BookmarksSidebarPage(QWidget* parent=0);
- virtual ~BookmarksSidebarPage();
-
-public slots:
- void setUrl(const KUrl& url);
-
-private slots:
- /** Fills the listbox with the bookmarks stored in DolphinSettings. */
- void updateBookmarks();
-
- /**
- * Checks whether the left mouse button has been clicked above a bookmark.
- * If this is the case, the Url for the currently active view is adjusted.
- */
- void slotMouseButtonClicked(int button, Q3ListBoxItem* item);
-
- /** @see QListBox::slotContextMenuRequested */
- void slotContextMenuRequested(Q3ListBoxItem* item, const QPoint& pos);
-
-private:
- /**
- * Updates the selection dependent from the given Url \a url. The
- * Url must not match exactly to one of the available bookmarks:
- * The bookmark which is equal to the Url or at least is a parent Url
- * is selected. If there are more than one possible parent Url candidates,
- * the bookmark which covers the bigger range of the Url is selected.
- */
- void adjustSelection(const KUrl& url);
-
- BookmarksListBox* m_bookmarksList;
-};
-
-/**
- * @brief Listbox which contains a list of bookmarks.
- *
- * Only QListBox::paintEvent() has been overwritten to prevent
- * that a (not wanted) frameborder is drawn.
- */
-class BookmarksListBox : public Q3ListBox
-{
- Q_OBJECT
-
-public:
- BookmarksListBox(QWidget* parent);
- virtual ~BookmarksListBox();
-
-protected:
- /** @see QWidget::paintEvent() */
- virtual void paintEvent(QPaintEvent* event);
-};
-
-/**
- * @brief Item which can be added to a BookmarksListBox.
- *
- * Only QListBoxPixmap::height() has been overwritten to get
- * a spacing between the items.
- */
-class BookmarkItem : public Q3ListBoxPixmap
-{
-public:
- BookmarkItem(const QPixmap& pixmap, const QString& text);
- virtual ~BookmarkItem();
- virtual int height(const Q3ListBox* listBox) const;
-};
-
-#endif // _BOOKMARKSSIDEBARPAGE_H_