diff options
Diffstat (limited to 'korn/process_proto.h')
-rw-r--r-- | korn/process_proto.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/korn/process_proto.h b/korn/process_proto.h new file mode 100644 index 000000000..6275be2c6 --- /dev/null +++ b/korn/process_proto.h @@ -0,0 +1,48 @@ +/* + * Copyright (C) 2004, Mart Kelder ([email protected]) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * 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 USA + */ + +#ifndef MK_PROCESS_PROTOCOL +#define MK_PROCESS_PROTOCOL + +#include "kio_proto.h" + +class Process_Protocol : public KIO_Protocol +{ +public: + Process_Protocol() { } + virtual ~Process_Protocol() { } + + virtual KIO_Protocol * clone() const { return new Process_Protocol; } + + virtual QString protocol() const { return "process"; } + virtual QString configName() const { return "process"; } + + virtual bool canReadSubjects() const { return false; } + virtual bool canDeleteMail() const { return false; } + virtual bool canReadMail() const { return false; } + virtual bool fullMessage() const { return false; } + + virtual QString mailboxName() const { return i18n("Program: "); } + + virtual void configFillGroupBoxes( QStringList* ) const; + virtual void configFields( QPtrVector< QWidget >* vector, const QObject*, QPtrList< AccountInput >* ) const; + virtual void readEntries( QMap< QString, QString >*, QMap< QString, QString >* ) const; + virtual void writeEntries( QMap< QString, QString >* ) const; +}; + +#endif |