Proof-reading - fixed one usage of the i18n plural form (it wasn't doing before,...
[kdeadmin.git] / kuser / ku_groupldap.h
blobc5505fbbae133b0ee2a014478d768ead00b767a0
1 /*
2 * Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 **/
20 #ifndef _KU_GROUPLDAP_H_
21 #define _KU_GROUPLDAP_H_
24 #include <QProgressDialog>
26 #include <kldap/ldapsearch.h>
27 #include <kldap/ldapobject.h>
28 #include <kldap/ldapoperation.h>
29 #include <kldap/ldapurl.h>
30 #include <kio/job.h>
32 #include "ku_group.h"
34 class KU_GroupLDAP : public QObject, public KU_Groups {
35 Q_OBJECT
36 public:
37 KU_GroupLDAP( KU_PrefsBase *cfg );
38 virtual ~KU_GroupLDAP();
40 virtual bool reload();
41 virtual bool dbcommit();
43 private slots:
44 void result( KLDAP::LdapSearch *search );
45 void data( KLDAP::LdapSearch *search, const KLDAP::LdapObject& data );
46 private:
47 KLDAP::LdapUrl mUrl;
48 QProgressDialog *mProg;
50 bool mOk;
51 int mAdv;
53 QString getRDN( const KU_Group &group ) const;
54 void createModStruct( const KU_Group &group, int oldindex, KLDAP::LdapOperation::ModOps &ops);
57 #endif // _KU_GROUPLDAP_H_