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.
130 lines
3.3 KiB
130 lines
3.3 KiB
/* -*- c++ -*-
|
|
sieveconfig.h
|
|
|
|
KMail, the KDE mail client.
|
|
Copyright (c) 2002 Marc Mutz <mutz@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License,
|
|
version 2.0, as published by the Free Software Foundation.
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
|
|
*/
|
|
|
|
#ifndef __KMAIL_SIEVECONFIG_H__
|
|
#define __KMAIL_SIEVECONFIG_H__
|
|
|
|
#include <tqwidget.h>
|
|
|
|
#include <kurl.h>
|
|
|
|
class TQCheckBox;
|
|
class TQLineEdit;
|
|
class KIntSpinBox;
|
|
class KConfigBase;
|
|
|
|
namespace KMail {
|
|
|
|
class SieveConfig {
|
|
public:
|
|
SieveConfig( bool managesieveSupported=false, bool reuseConfig=true,
|
|
unsigned int port=2000, const KURL & alternateURL=KURL(),
|
|
const TQString& vacationFileName = TQString() )
|
|
: mManagesieveSupported( managesieveSupported ),
|
|
mReuseConfig( reuseConfig ),
|
|
mPort( port ),
|
|
mAlternateURL( alternateURL ),
|
|
mVacationFileName( vacationFileName ) {}
|
|
|
|
SieveConfig( const SieveConfig & other )
|
|
: mManagesieveSupported( other.managesieveSupported() ),
|
|
mReuseConfig( other.reuseConfig() ),
|
|
mPort( other.port() ),
|
|
mAlternateURL( other.alternateURL() ),
|
|
mVacationFileName( other.vacationFileName() ) {}
|
|
|
|
bool managesieveSupported() const {
|
|
return mManagesieveSupported;
|
|
}
|
|
void setManagesieveSupported( bool enable ) {
|
|
mManagesieveSupported = enable;
|
|
}
|
|
|
|
bool reuseConfig() const {
|
|
return mReuseConfig;
|
|
}
|
|
void setReuseConfig( bool reuse ) {
|
|
mReuseConfig = reuse;
|
|
}
|
|
|
|
unsigned short port() const {
|
|
return mPort;
|
|
}
|
|
void setPort( unsigned short port ) {
|
|
mPort = port;
|
|
}
|
|
|
|
KURL alternateURL() const {
|
|
return mAlternateURL;
|
|
}
|
|
void setAlternateURL( const KURL & url ) {
|
|
mAlternateURL = url;
|
|
}
|
|
|
|
TQString vacationFileName() const { return mVacationFileName; }
|
|
|
|
void readConfig( const KConfigBase & config );
|
|
void writeConfig( KConfigBase & config ) const;
|
|
|
|
protected:
|
|
bool mManagesieveSupported;
|
|
bool mReuseConfig;
|
|
unsigned short mPort;
|
|
KURL mAlternateURL;
|
|
TQString mVacationFileName;
|
|
};
|
|
|
|
class SieveConfigEditor : public TQWidget {
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
SieveConfigEditor( TQWidget * parent=0, const char * name=0 );
|
|
|
|
bool managesieveSupported() const;
|
|
virtual void setManagesieveSupported( bool enable );
|
|
|
|
bool reuseConfig() const;
|
|
virtual void setReuseConfig( bool reuse );
|
|
|
|
unsigned short port() const;
|
|
virtual void setPort( unsigned short port );
|
|
|
|
KURL alternateURL() const;
|
|
virtual void setAlternateURL( const KURL & url );
|
|
|
|
TQString vacationFileName() const;
|
|
virtual void setVacationFileName( const TQString & url );
|
|
|
|
SieveConfig config() const {
|
|
return SieveConfig( managesieveSupported(), reuseConfig(),
|
|
port(), alternateURL(), vacationFileName() );
|
|
}
|
|
|
|
virtual void setConfig( const SieveConfig & config );
|
|
|
|
protected slots:
|
|
void slotEnableWidgets();
|
|
|
|
protected:
|
|
TQCheckBox * mManagesieveCheck;
|
|
TQCheckBox * mSameConfigCheck;
|
|
KIntSpinBox * mPortSpin;
|
|
TQLineEdit * mAlternateURLEdit;
|
|
TQString mVacationFileName;
|
|
};
|
|
|
|
} // namespace KMail
|
|
|
|
#endif // __KMAIL_SIEVECONFIG_H__
|