summaryrefslogtreecommitdiffstats
path: root/src/groupconfigdlg.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-05-29 16:51:56 -0500
committerTimothy Pearson <[email protected]>2012-05-29 16:51:56 -0500
commit68e675057219723d6c657db4fd930c5b49ff583c (patch)
tree97024975d90d419111e9b1c3a27345ac1ac8f816 /src/groupconfigdlg.h
parent5948ba909d1a2541865fcb2b52f76a7719f72f3e (diff)
downloadkcmldapmanager-68e675057219723d6c657db4fd930c5b49ff583c.tar.gz
kcmldapmanager-68e675057219723d6c657db4fd930c5b49ff583c.zip
Add RO group editor
Diffstat (limited to 'src/groupconfigdlg.h')
-rw-r--r--src/groupconfigdlg.h53
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 *
+ * *
+ * 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_