diff options
Diffstat (limited to 'kuser/delUser.h')
-rw-r--r-- | kuser/delUser.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/kuser/delUser.h b/kuser/delUser.h new file mode 100644 index 0000000..0317a9b --- /dev/null +++ b/kuser/delUser.h @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2002 Waldo Bastian <bastian@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 as published by the Free Software Foundation. + * + * This library 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 + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + **/ + + +#ifndef _KU_DELUSER_H_ +#define _KU_DELUSER_H_ + +#include <kdialogbase.h> +#include <qcheckbox.h> + +#include "kuser.h" + +class delUser: public KDialogBase { + Q_OBJECT +public: + delUser(KU::KUser *AUser, QWidget *parent = 0, const char *name = 0); + + bool getDeleteHomeDir() + { return m_deleteHomeDir->isChecked(); } + bool getDeleteMailBox() + { return m_deleteMailBox->isChecked(); } + +private: + QCheckBox *m_deleteHomeDir; + QCheckBox *m_deleteMailBox; +}; + +#endif // _KU_DELUSER_H + + |