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.
36 lines
831 B
36 lines
831 B
/* KMail account for maildir mail folders |
|
* |
|
*/ |
|
#ifndef kmacctmaildir_h |
|
#define kmacctmaildir_h |
|
|
|
#include "kmaccount.h" |
|
#include "kmglobal.h" |
|
|
|
class KMAcctMaildir: public KMAccount |
|
{ |
|
protected: |
|
friend class ::AccountManager; |
|
|
|
KMAcctMaildir(AccountManager* owner, const QString& accountName, uint id); |
|
|
|
public: |
|
virtual ~KMAcctMaildir(); |
|
virtual void init(void); |
|
virtual void pseudoAssign( const KMAccount * a ); |
|
|
|
/** Access to location of maildir mail file (usually something like |
|
"/home/joe/Maildir"). */ |
|
const QString& location(void) const { return mLocation; } |
|
virtual void setLocation(const QString&); |
|
|
|
virtual void processNewMail(bool); |
|
virtual void readConfig(KConfigGroup&); |
|
virtual void writeConfig(KConfigGroup&); |
|
|
|
protected: |
|
QString mLocation; |
|
bool hasNewMail; |
|
}; |
|
|
|
#endif /*kmacctmaildir_h*/
|
|
|