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.
97 lines
2.9 KiB
97 lines
2.9 KiB
/* -*- c++ -*- |
|
subscriptiondialog.h |
|
|
|
This file is part of KMail, the KDE mail client. |
|
Copyright (C) 2002 Carsten Burghardt <burghardt@kde.org> |
|
|
|
KMail is free software; you can redistribute it and/or modify it |
|
under the terms of the GNU General Public License, version 2, as |
|
published by the Free Software Foundation. |
|
|
|
KMail 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
In addition, as a special exception, the copyright holders give |
|
permission to link the code of this program with any edition of |
|
the Qt library by Trolltech AS, Norway (or with modified versions |
|
of Qt that use the same license as Qt), and distribute linked |
|
combinations including the two. You must obey the GNU General |
|
Public License in all respects for all of the code used other than |
|
Qt. If you modify this file, you may extend this exception to |
|
your version of the file, but you are not obligated to do so. If |
|
you do not wish to do so, delete this exception statement from |
|
your version. |
|
*/ |
|
|
|
#ifndef __SUBSCRIPTIONDIALOG |
|
#define __SUBSCRIPTIONDIALOG |
|
|
|
#include <qdict.h> |
|
#include <ksubscription.h> |
|
#include "imapaccountbase.h" |
|
|
|
class KMMessage; |
|
class FolderStorage; |
|
|
|
namespace KMail { |
|
|
|
class SubscriptionDialog : public KSubscription |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
SubscriptionDialog( QWidget *parent, const QString &caption, KAccount* acct, |
|
QString startPath = QString::null ); |
|
|
|
protected: |
|
void findParentItem ( QString &name, QString &path, QString &compare, |
|
GroupItem **parent, GroupItem **oldItem ); |
|
|
|
public slots: |
|
/** |
|
* get the listing from the imap-server |
|
*/ |
|
void slotListDirectory(const QStringList&, const QStringList&, |
|
const QStringList&, const QStringList&, const ImapAccountBase::jobData &); |
|
|
|
/** |
|
* called by Ok-button, saves the changes |
|
*/ |
|
void slotSave(); |
|
|
|
protected slots: |
|
/** |
|
* Loads the folders |
|
*/ |
|
void slotLoadFolders(); |
|
|
|
/** |
|
* Reimplemented to cancel remaining jobs |
|
*/ |
|
virtual void slotCancel(); |
|
|
|
/** |
|
* Create or update the listitems |
|
*/ |
|
void createItems(); |
|
|
|
private: |
|
QString mDelimiter; |
|
QStringList mFolderNames, mFolderPaths, |
|
mFolderMimeTypes, mFolderAttributes; |
|
ImapAccountBase::jobData mJobData; |
|
uint mCount; |
|
bool mCheckForExisting; |
|
QDict<GroupItem> mItemDict; |
|
QString mStartPath; |
|
}; |
|
|
|
} // namespace KMail |
|
|
|
#endif
|
|
|