Proof-reading - fixed one usage of the i18n plural form (it wasn't doing before,...
[kdeadmin.git] / kuser / ku_configdlg.h
blobdad3bab486043adcc4424ebb533b68bde27653cb
1 /*
2 * Copyright (c) 1998 Denis Perchine <dyp@perchine.com>
3 * Copyright (c) 2004 Szombathelyi György <gyurco@freemail.hu>
4 * Former maintainer: Adriaan de Groot <groot@kde.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
20 **/
22 #ifndef _KU_CONFIGDLG_H_
23 #define _KU_CONFIGDLG_H_
25 #include <QList>
26 #include <QProgressDialog>
28 #include <kconfigdialog.h>
29 #include <kldap/ldif.h>
30 #include <kprogressdialog.h>
31 #include <kio/job.h>
33 class Ui_KU_LdapSamba;
34 namespace KLDAP { class LdapConfigWidget; }
35 namespace KIO { class Job; }
36 typedef struct KU_SambaDomain {
37 QString name;
38 QString sid;
39 uint ridbase;
42 class KU_ConfigDlg : public KConfigDialog {
43 Q_OBJECT
44 public:
45 KU_ConfigDlg( KConfigSkeleton *config, QWidget* parent, const char * name = 0 );
46 ~KU_ConfigDlg();
47 private:
48 QProgressDialog *mProg;
49 Ui_KU_LdapSamba *sambaui;
50 KLDAP::LdapConfigWidget *ldconf;
51 KLDAP::Ldif mLdif;
52 QString mErrorMsg;
53 QList<KU_SambaDomain> mResult;
54 KU_SambaDomain mDomain;
55 private slots:
56 void slotQueryClicked();
57 void loadData( KIO::Job*, const QByteArray& d );
58 void loadResult( KJob* job);
61 #endif // _KU_CONFIGDLG_H_