core.h
00001 /* 00002 This file is part of KDE Kontact. 00003 00004 Copyright (c) 2001 Matthias Hoelzer-Kluepfel <mhk@kde.org> 00005 Copyright (c) 2002-2003 Daniel Molkentin <molkentin@kde.org> 00006 00007 This library is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU Library General Public 00009 License as published by the Free Software Foundation; either 00010 version 2 of the License, or (at your option) any later version. 00011 00012 This library is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 Library General Public License for more details. 00016 00017 You should have received a copy of the GNU Library General Public License 00018 along with this library; see the file COPYING.LIB. If not, write to 00019 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00020 Boston, MA 02110-1301, USA. 00021 00022 */ 00023 #ifndef KONTACT_CORE_H 00024 #define KONTACT_CORE_H 00025 00026 #include <tqdatetime.h> 00027 #include <kdepimmacros.h> 00028 #include <kparts/mainwindow.h> 00029 #include <kparts/part.h> 00030 00031 class KAction; 00032 00033 namespace Kontact 00034 { 00035 00036 class Plugin; 00037 00041 class KDE_EXPORT Core : public KParts::MainWindow 00042 { 00043 Q_OBJECT 00044 TQ_OBJECT 00045 public: 00046 virtual ~Core(); 00047 00052 virtual void selectPlugin( Kontact::Plugin *plugin ) = 0; 00053 00058 virtual void selectPlugin( const TQString &plugin ) = 0; 00059 00063 virtual TQValueList<Kontact::Plugin*> pluginList() const = 0; 00064 00068 KParts::ReadOnlyPart *createPart( const char *libname ); 00069 00074 virtual void partLoaded( Plugin* plugin, KParts::ReadOnlyPart * part ) = 0; 00075 00076 signals: 00080 void dayChanged( const TQDate& ); 00081 00082 protected: 00083 Core( TQWidget *parentWidget = 0, const char *name = 0 ); 00084 00085 TQString lastErrorMessage() const; 00086 00087 private slots: 00088 void slotPartDestroyed( TQObject * ); 00089 void checkNewDay(); 00090 00091 private: 00092 TQMap<TQCString,KParts::ReadOnlyPart *> mParts; 00093 TQDate mLastDate; 00094 00095 class Private; 00096 Private *d; 00097 }; 00098 00099 } 00100 00101 #endif 00102 00103 // vim: sw=2 sts=2 et tw=80