knotes_plugin.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KNOTES_PLUGIN_H
00021 #define KNOTES_PLUGIN_H
00022
00023 #include <klocale.h>
00024
00025 #include "plugin.h"
00026
00027 class KNotesPart;
00028 class SummaryWidget;
00029
00030 class KNotesPlugin : public Kontact::Plugin
00031 {
00032 Q_OBJECT
00033
00034 public:
00035 KNotesPlugin( Kontact::Core *core, const char *name, const QStringList& );
00036 ~KNotesPlugin();
00037
00038 virtual Kontact::Summary *createSummaryWidget( QWidget *parentWidget );
00039
00040 const KAboutData *aboutData();
00041
00042 protected:
00043 KParts::Part* createPart();
00044
00045 private slots:
00046 void slotNewNote();
00047
00048 private:
00049 KAboutData *mAboutData;
00050 };
00051
00052 #endif
This file is part of the documentation for kontact Library Version 3.2.2.