Documentation: Menus.docbook Composer menu Message and correcct formatting.
[kdepim.git] / korganizer / korganizer.h
blobf84b1d5ec4c03ae90442cb5394cc5aece5d26119
1 /*
2 This file is part of KOrganizer.
4 Copyright (c) 1997, 1998, 1999 Preston Brown <preston.brown@yale.edu>
5 Fester Zigterman <F.J.F.ZigtermanRustenburg@student.utwente.nl>
6 Ian Dawes <iadawes@globalserve.net>
7 Laszlo Boloni <boloni@cs.purdue.edu>
9 Copyright (c) 2000-2003 Cornelius Schumacher <schumacher@kde.org>
10 Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License along
23 with this program; if not, write to the Free Software Foundation, Inc.,
24 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 As a special exception, permission is given to link this program
27 with any edition of Qt, and distribute the resulting executable,
28 without including the source code for Qt in the source distribution.
30 #ifndef KORG_KORGANIZER_H
31 #define KORG_KORGANIZER_H
33 #include "korganizer/mainwindow.h"
34 #include "korganizer/part.h"
36 #include <KParts/MainWindow>
38 class CalendarView;
40 // Workaround for moc workaround for visual c++ 6.0 sucking
41 typedef KOrg::MainWindow KOrgMainWindow;
42 typedef KParts::MainWindow KPartsMainWindow;
44 /**
45 This is the main class for KOrganizer. It extends the KDE KMainWindow.
46 it provides the main view that the user sees upon startup, as well as
47 menus, buttons, etc. etc.
49 @short constructs a new main window for korganizer
50 @author Preston Brown
52 class KOrganizer : public KPartsMainWindow, public KOrgMainWindow
54 Q_OBJECT
55 public:
56 KOrganizer();
57 virtual ~KOrganizer();
59 void init( bool hasDocument );
61 KOrg::CalendarViewBase *view() const;
62 ActionManager *actionManager() { return mActionManager; }
63 KActionCollection *getActionCollection() const { return actionCollection(); }
65 /**
66 Open calendar file from URL. Merge into current calendar, if \a merge is
67 true.
68 @param url The URL to open
69 @param merge true if the incidences in URL should be imported into the
70 current calendar (default resource or calendar file),
71 false if the URL should be added as a new resource.
72 @return true on success, false if an error occurred
74 bool openURL( const KUrl &url, bool merge = false );
76 /** Save calendar file to URL of current calendar */
77 bool saveURL();
79 /** Save calendar file to URL */
80 bool saveAsURL( const KUrl &kurl );
82 /** Get current URL */
83 KUrl getCurrentURL() const;
85 virtual KXMLGUIFactory *mainGuiFactory() { return factory(); }
86 virtual KXMLGUIClient *mainGuiClient() { return this; }
87 virtual QWidget *topLevelWidget() { return this; }
89 public slots:
90 /** show status message */
91 void showStatusMessage( const QString & );
93 protected slots:
95 /** using the KConfig associated with the kapp variable, read in the
96 * settings from the config file.
98 void readSettings();
100 /** write current state to config file. */
101 void writeSettings();
103 void statusBarPressed( int id );
105 /** Sets title of window according to filename and modification state */
106 void setTitle();
108 void newMainWindow( const KUrl & );
110 void slotEditKeys();
112 protected:
113 void initActions();
114 // void initViews();
116 /** supplied so that close events close calendar properly.*/
117 bool queryClose();
118 bool queryExit();
120 /* Session management */
121 void saveProperties( KConfigGroup & );
122 void readProperties( const KConfigGroup & );
124 private:
125 CalendarView *mCalendarView; // Main view widget
126 KOrg::Part::List mParts; // List of parts loaded
128 // status bar ids
129 enum {
130 ID_HISTORY,
131 ID_GENERAL,
132 ID_ACTIVE,
133 ID_MESSAGES_IN,
134 ID_MESSAGES_OUT
136 ActionManager *mActionManager;
139 #endif