Fix typo
[kdepim.git] / kjots / kjotsbrowser.h
blob9cbe72a386d81cc3a5c31215ee8820cd348ab1ee
1 //
2 // kjots
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 KJOTSBROWSER_H
25 #define KJOTSBROWSER_H
27 #include <KTextBrowser>
29 class QItemSelectionModel;
31 class KJotsBrowser : public QTextBrowser
33 Q_OBJECT
34 public:
35 explicit KJotsBrowser ( QItemSelectionModel *selectionModel, QWidget* );
36 virtual ~KJotsBrowser ();
38 void delayedInitialization ();
40 protected slots:
41 void linkClicked(const QUrl&);
43 private:
44 QItemSelectionModel *m_itemSelectionModel;
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;*/