diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /kmail/managesievescriptsdialog.h | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/managesievescriptsdialog.h')
-rw-r--r-- | kmail/managesievescriptsdialog.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/kmail/managesievescriptsdialog.h b/kmail/managesievescriptsdialog.h new file mode 100644 index 00000000..f0b99ebc --- /dev/null +++ b/kmail/managesievescriptsdialog.h @@ -0,0 +1,55 @@ +#ifndef __KMAIL__MANAGESIEVESCRIPTSDIALOG_H__ +#define __KMAIL__MANAGESIEVESCRIPTSDIALOG_H__ + +#include <kdialogbase.h> +#include <kurl.h> +#include <qmap.h> + +class QListView; +class QCheckListItem; + +namespace KMail { + +class SieveJob; +class SieveEditor; + +class ManageSieveScriptsDialog : public KDialogBase { + Q_OBJECT +public: + ManageSieveScriptsDialog( QWidget * parent=0, const char * name=0 ); + ~ManageSieveScriptsDialog(); + +private slots: + void slotRefresh(); + void slotItem( KMail::SieveJob *, const QString &, bool ); + void slotResult( KMail::SieveJob *, bool, const QString &, bool ); + void slotContextMenuRequested( QListViewItem *, const QPoint & ); + void slotDoubleClicked( QListViewItem * ); + void slotSelectionChanged( QListViewItem * ); + void slotNewScript(); + void slotEditScript(); + void slotDeleteScript(); + void slotGetResult( KMail::SieveJob *, bool, const QString &, bool ); + void slotPutResult( KMail::SieveJob *, bool ); + void slotSieveEditorOkClicked(); + void slotSieveEditorCancelClicked(); + +private: + void killAllJobs(); + void changeActiveScript( QCheckListItem * ); + +private: + QListView * mListView; + SieveEditor * mSieveEditor; + QMap<KMail::SieveJob*,QCheckListItem*> mJobs; + QMap<QCheckListItem*,KURL> mUrls; + QMap<QCheckListItem*,QCheckListItem*> mSelectedItems; + QCheckListItem * mContextMenuItem; + KURL mCurrentURL; + bool mWasActive : 1; +}; + +} + +#endif /* __KMAIL__MANAGESIEVESCRIPTSDIALOG_H__ */ + |