add more spacing
[personal-kdebase.git] / apps / konqueror / src / konqextendedbookmarkowner.h
blob2f42b5020437beb971ca9fd0451a3736f8ffab14
1 /* This file is part of the KDE project
2 Copyright (C) 2003 Alexander Kellett <lypanov@kde.org>
3 Copyright (C) 1998, 1999 Simon Hausmann <hausmann@kde.org>
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
21 #ifndef KONQEXTENDEDBOOKMARKOWNER_H
22 #define KONQEXTENDEDBOOKMARKOWNER_H
24 #include <konqbookmarkmenu.h>
26 class KonqExtendedBookmarkOwner : public KonqBookmarkOwner
28 public:
29 KonqExtendedBookmarkOwner(KonqMainWindow *);
30 virtual QString currentTitle() const;
31 virtual QString currentUrl() const;
32 virtual bool supportsTabs() const;
33 virtual QList<QPair<QString, QString> > currentBookmarkList() const;
34 virtual void openBookmark(const KBookmark & bm, Qt::MouseButtons mb, Qt::KeyboardModifiers km);
35 virtual void openInNewTab(const KBookmark &bm);
36 virtual void openInNewWindow(const KBookmark &bm);
37 virtual void openFolderinTabs(const KBookmarkGroup &grp);
39 private:
40 KonqMainWindow *m_pKonqMainWindow;
43 #endif