mainwindow.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KORG_MAINWINDOW_H
00021 #define KORG_MAINWINDOW_H
00022
00023
00024 #include <kparts/mainwindow.h>
00025
00026 namespace KOrg {
00027
00028 class CalendarViewBase;
00029
00034 class MainWindow : public KParts::MainWindow
00035 {
00036 public:
00037 MainWindow(const char *name) : KParts::MainWindow(0,name) {}
00038 virtual ~MainWindow() {};
00039
00040 virtual CalendarViewBase *view() const = 0;
00041
00043 virtual bool openURL(const KURL &url,bool merge=false) = 0;
00045 virtual bool saveURL() = 0;
00047 virtual bool saveAsURL(const KURL & kurl) = 0;
00048
00050 virtual KURL getCurrentURL() const = 0;
00051 };
00052
00053 }
00054
00055 #endif
This file is part of the documentation for kdelibs Version 3.1.5.