You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
590 B
28 lines
590 B
15 years ago
|
#ifndef __KMAIL__MANAGESIEVESCRIPTSDIALOG_P_H__
|
||
|
#define __KMAIL__MANAGESIEVESCRIPTSDIALOG_P_H__
|
||
|
|
||
|
#include <kdialogbase.h>
|
||
|
|
||
|
#include <qtextedit.h>
|
||
|
|
||
|
namespace KMail {
|
||
|
|
||
|
class SieveEditor : public KDialogBase {
|
||
|
Q_OBJECT
|
||
|
Q_PROPERTY( QString script READ script WRITE setScript )
|
||
|
public:
|
||
|
SieveEditor( QWidget * parent=0, const char * name=0 );
|
||
|
~SieveEditor();
|
||
|
|
||
|
QString script() const { return mTextEdit->text(); }
|
||
|
void setScript( const QString & script ) { mTextEdit->setText( script ); }
|
||
|
|
||
|
private:
|
||
|
QTextEdit * mTextEdit;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* __KMAIL__MANAGESIEVESCRIPTSDIALOG_P_H__ */
|
||
|
|