diff options
author | Timothy Pearson <[email protected]> | 2013-03-23 01:08:28 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-03-23 01:08:28 -0500 |
commit | d969e63d2c0d827a33f68c4f5c0ec1634c390fd0 (patch) | |
tree | 5ae59c16042a6bb822f653244305cfe52a1a2baa /src/machineconfigdlg.h | |
parent | 9e37d8b745632d3da494c68f66f31d8e304c6e41 (diff) | |
download | kcmldapmanager-d969e63d2c0d827a33f68c4f5c0ec1634c390fd0.tar.gz kcmldapmanager-d969e63d2c0d827a33f68c4f5c0ec1634c390fd0.zip |
Add machine add dialog
Add user list command to cmdline utility
Fix user add command in cmdline utility
Diffstat (limited to 'src/machineconfigdlg.h')
-rw-r--r-- | src/machineconfigdlg.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/machineconfigdlg.h b/src/machineconfigdlg.h new file mode 100644 index 0000000..25f2554 --- /dev/null +++ b/src/machineconfigdlg.h @@ -0,0 +1,50 @@ +/*************************************************************************** + * Copyright (C) 2013 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 _MACHINECONFIGDIALOG_H_ +#define _MACHINECONFIGDIALOG_H_ + +#include <kdialogbase.h> + +#include "libtdeldap.h" +#include "machineconfigbase.h" + +class MachineConfigDialog : public KDialogBase +{ + Q_OBJECT + +public: + MachineConfigDialog(LDAPMachineInfo machine, TQString realmName, LDAPConfig* parent = 0, const char* name = 0); + LDAPMachineInfo machineProperties(); + +public slots: + void slotOk(); + void processLockouts(); + void manuallySpecifyPasswordClicked(); + +public: + LDAPMachineConfigBase *m_base; + LDAPMachineInfo m_machine; + +private: + LDAPConfig* m_ldapconfig; +}; + +#endif // _MACHINECONFIGDIALOG_H_ |