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