kontact
aboutdialog.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef KONTACT_ABOUTDIALOG_H
00026 #define KONTACT_ABOUTDIALOG_H
00027
00028 #include <kpagedialog.h>
00029
00030 class KAboutData;
00031 namespace Kontact {
00032
00033 class Core;
00034 class Plugin;
00035
00036 class AboutDialog : public KPageDialog
00037 {
00038 Q_OBJECT
00039 public:
00040 AboutDialog( Kontact::Core *core );
00041
00042 protected:
00043 void addAboutPlugin( Kontact::Plugin *plugin );
00044
00045 void addAboutData( const QString &title, const QString &icon,
00046 const KAboutData *about );
00047
00048 void addLicenseText( const KAboutData *about );
00049
00050 QString formatPerson( const QString &name, const QString &email );
00051
00052 private slots:
00053 void saveSize();
00054
00055 private:
00056 Core *mCore;
00057 };
00058
00059 }
00060
00061 #endif