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.
27 lines
580 B
27 lines
580 B
#ifndef __KMAIL__MANAGESIEVESCRIPTSDIALOG_P_H__ |
|
#define __KMAIL__MANAGESIEVESCRIPTSDIALOG_P_H__ |
|
|
|
#include <kdialog.h> |
|
|
|
#include <QTextEdit> |
|
|
|
namespace KMail { |
|
|
|
class SieveEditor : public KDialog { |
|
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__ */ |
|
|
|
|