diff options
Diffstat (limited to 'src/groupconfigdlg.h')
-rw-r--r-- | src/groupconfigdlg.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/groupconfigdlg.h b/src/groupconfigdlg.h new file mode 100644 index 0000000..f85a2a2 --- /dev/null +++ b/src/groupconfigdlg.h @@ -0,0 +1,53 @@ +/*************************************************************************** + * Copyright (C) 2012 by Timothy Pearson * + * [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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef _GROUPCONFIGDIALOG_H_ +#define _GROUPCONFIGDIALOG_H_ + +#include <kdialogbase.h> + +#include "libtdeldap.h" +#include "groupconfigbase.h" + +class GroupConfigDialog : public KDialogBase +{ + Q_OBJECT + +public: + GroupConfigDialog(LDAPGroupInfo group, LDAPConfig* parent = 0, const char* name = 0); + LDAPGroupInfo groupProperties(); + +public slots: + void slotOk(); + void processLockouts(); + +private slots: + void addSelectedUserToGroup(); + void removeSelectedUserFromGroup(); + +public: + LDAPGroupConfigBase *m_base; + +private: + LDAPGroupInfo m_group; + LDAPConfig* m_ldapconfig; +}; + +#endif // _GROUPCONFIGDIALOG_H_ |