corewidget.h
00001
00021 #ifndef COREWIDGET_H
00022 #define COREWIDGET_H
00023
00024 #include "attachment.h"
00025
00026 #include <qwidget.h>
00027
00028 namespace Komposer
00029 {
00030
00031 class CoreWidget : public QWidget
00032 {
00033 Q_OBJECT
00034 public:
00035 CoreWidget( QWidget* parent, const char* name=0 );
00036
00037 virtual QString subject() const =0;
00038 virtual QStringList to() const =0;
00039 virtual QStringList cc() const =0;
00040 virtual QStringList bcc() const =0;
00041 virtual QString from() const =0;
00042 virtual QString replyTo() const =0;
00043 virtual AttachmentList attachments() const =0;
00044 };
00045 }
00046
00047 #endif
This file is part of the documentation for libkdepim Library Version 3.2.2.