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.
tdepim/kmail/kmacctmaildir.h

38 lines
866 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 TQString& 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 TQString& location(void) const { return mLocation; }
virtual void setLocation(const TQString&);
virtual TQString type(void) const;
virtual void processNewMail(bool);
virtual void readConfig(TDEConfig&);
virtual void writeConfig(TDEConfig&);
protected:
TQString mLocation;
bool hasNewMail;
};
#endif /*kmacctmaildir_h*/