diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 12:13:12 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 12:13:12 -0600 |
commit | c8b59ecab5c226aaa059d5acaff6633b93ec51d9 (patch) | |
tree | 33c3e30a2e8374dca8906e07047b1f3116f6ecee /clients/tde/src/part/adminusermgmt/groupauthdlg.h | |
parent | 61dfcc04f73e45082f51945a7b98b7838da56da8 (diff) | |
download | ulab-c8b59ecab5c226aaa059d5acaff6633b93ec51d9.tar.gz ulab-c8b59ecab5c226aaa059d5acaff6633b93ec51d9.zip |
Use proper file names for the group permissions editor
Diffstat (limited to 'clients/tde/src/part/adminusermgmt/groupauthdlg.h')
-rw-r--r-- | clients/tde/src/part/adminusermgmt/groupauthdlg.h | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/clients/tde/src/part/adminusermgmt/groupauthdlg.h b/clients/tde/src/part/adminusermgmt/groupauthdlg.h new file mode 100644 index 0000000..3290c7f --- /dev/null +++ b/clients/tde/src/part/adminusermgmt/groupauthdlg.h @@ -0,0 +1,73 @@ +/*************************************************************************** + * Copyright (C) 2013 by Timothy Pearson * + * kb9vqf@pearsoncomputing.net * + * * + * 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 _GROUPAUTHDIALOG_H_ +#define _GROUPAUTHDIALOG_H_ + +#include <kdialogbase.h> +#include <kcombobox.h> + +class GroupPermissionsDlgBase; +class TopLevel; + +typedef TQPair< TQString, TQ_UINT32 > TQKeyedStringPair; +typedef TQValueList< TQKeyedStringPair > TQKeyedStringList; + +class TQListBoxKeyedText : public TQListBoxText +{ + public: + TQListBoxKeyedText(TQListBox* listbox, const TQString & text=TQString::null, const TQ_UINT32 key=0); + TQListBoxKeyedText(const TQString & text=TQString::null, const TQ_UINT32 key=0 ); + TQListBoxKeyedText(TQListBox* listbox, const TQString & text, const TQ_UINT32 key, TQListBoxItem *after); + ~TQListBoxKeyedText(); + + public: + TQ_UINT32 key(); + + private: + TQ_UINT32 m_key; +}; + +class GroupPermissionsDialog : public KDialogBase +{ + Q_OBJECT + + public: + GroupPermissionsDialog(TQWidget* parent = 0, const char* name = 0); + + public: + void setGroupName(TQString name, bool editable); + TQString groupName(); + void setPermissionsSelectorLabel(TQString label); + void setAvailableServers(TQKeyedStringList list); + void setSelectedServers(TQKeyedStringList list); + TQKeyedStringList selectedServers(); + + public slots: + void slotOk(); + + private slots: + void processLockouts(); + + private: + GroupPermissionsDlgBase *m_base; +}; + +#endif |