french -> French
[kdepim.git] / kjots / kjotsbookmarks.h
blobf91b68af18c0153021163dd1cd918a53f96d092f
1 //
2 // kjotsbookmarks
3 //
4 // Copyright (C) 1997 Christoph Neerfeld <Christoph.Neerfeld@home.ivm.de>
5 // Copyright (C) 2002, 2003 Aaron J. Seigo <aseigo@kde.org>
6 // Copyright (C) 2003 Stanislav Kljuhhin <crz@hot.ee>
7 // Copyright (C) 2005-2006 Jaison Lee <lee.jaison@gmail.com>
8 //
9 // This program is free software; you can redistribute it and/or modify
10 // it under the terms of the GNU General Public License as published by
11 // the Free Software Foundation; either version 2 of the License, or
12 // (at your option) any later version.
14 // This program is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 // GNU General Public License for more details.
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 #ifndef KJOTSBOOKMARKS
25 #define KJOTSBOOKMARKS
27 #include <kbookmarkmanager.h>
29 class KJotsTreeView;
31 class KJotsBookmarks : public QObject, public KBookmarkOwner
33 Q_OBJECT
35 public:
36 explicit KJotsBookmarks( KJotsTreeView *treeView );
37 ~KJotsBookmarks();
39 virtual QString currentUrl() const;
40 virtual QString currentTitle() const;
41 virtual void openBookmark( const KBookmark & bm, Qt::MouseButtons mb, Qt::KeyboardModifiers km );
43 private:
44 KJotsTreeView *m_treeView;
47 #endif
48 /* ex: set tabstop=4 softtabstop=4 shiftwidth=4 expandtab: */
49 /* kate: tab-indents off; replace-tabs on; tab-width 4; remove-trailing-space on; encoding utf-8;*/