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.
67 lines
2.0 KiB
67 lines
2.0 KiB
/* -*- c++ -*- |
|
* kmail: KDE mail client |
|
* This file: Copyright (C) 2000 Espen Sand, espen@kde.org |
|
* Copyright (C) 2001-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 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
* |
|
*/ |
|
|
|
#ifndef _CONFIGURE_DIALOG_H_ |
|
#define _CONFIGURE_DIALOG_H_ |
|
|
|
#include <kdialogbase.h> |
|
#include <qptrlist.h> |
|
class QWidget; |
|
class KConfig; |
|
|
|
class ConfigurationPage; |
|
|
|
class ConfigureDialog : public KDialogBase |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
ConfigureDialog( QWidget *parent=0, const char *name=0, bool modal=true ); |
|
~ConfigureDialog(); |
|
virtual void show(); |
|
|
|
protected slots: |
|
virtual void slotOk(); |
|
virtual void slotApply(); |
|
virtual void slotHelp(); |
|
/** Installs a new profile (in the dislog's widgets; to apply, the |
|
user has to hit the apply button). Profiles are normal kmail |
|
config files which hae an additonal group "KMail Profile" |
|
containing keys "name" and "desc" for the name and |
|
description, resp. Only keys that this profile is supposed to |
|
alter should be included in the file. |
|
*/ |
|
virtual void slotInstallProfile( KConfig * profile ); |
|
|
|
|
|
private slots: |
|
void slotCancelOrClose(); |
|
|
|
protected: |
|
void setup(); |
|
void apply(bool); |
|
|
|
protected: |
|
QPtrList<ConfigurationPage> mPages; |
|
ConfigurationPage * mPageWithProfiles; |
|
}; |
|
|
|
#endif
|
|
|