SVN_SILENT made messages (.desktop file)
[kdepim.git] / kjots / KJotsMain.h
blob8ec708560a33483477f204772a856fd5e8ef54cb
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 // Copyright (C) 2007-2008 Stephen Kelly <steveire@gmail.com>
9 //
10 // This program is free software; you can redistribute it and/or modify
11 // it under the terms of the GNU General Public License as published by
12 // the Free Software Foundation; either version 2 of the License, or
13 // (at your option) any later version.
15 // This program is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License
21 // along with this program; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 #ifndef KJOTSMAIN_H
26 #define KJOTSMAIN_H
28 #include <kxmlguiwindow.h>
30 class KJotsWidget;
32 class KJotsMain : public KXmlGuiWindow
34 Q_OBJECT
36 public:
37 KJotsMain();
40 public slots:
41 void updateCaption(QString);
42 void onQuit();
43 void activeAnchorChanged(const QString &, const QString &);
45 protected:
46 /**
47 Reimplemented from KMainWindow
49 /* reimp */ bool queryClose();
51 private:
52 KJotsWidget* component;
56 #endif // KJotsMainNew_included
57 /* ex: set tabstop=4 softtabstop=4 shiftwidth=4 expandtab: */
58 /* kate: tab-indents off; replace-tabs on; tab-width 4; remove-trailing-space on; encoding utf-8;*/