summaryrefslogtreecommitdiff
path: root/noncore/settings/usermanager/userdialog.h
Unidiff
Diffstat (limited to 'noncore/settings/usermanager/userdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/usermanager/userdialog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/settings/usermanager/userdialog.h b/noncore/settings/usermanager/userdialog.h
index a878588..133b35d 100644
--- a/noncore/settings/usermanager/userdialog.h
+++ b/noncore/settings/usermanager/userdialog.h
@@ -2,49 +2,52 @@
2 * * 2 * *
3 * This program is free software; you can redistribute it and/or modify * 3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by * 4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or * 5 * the Free Software Foundation; either version 2 of the License, or *
6 * (at your option) any later version. * 6 * (at your option) any later version. *
7 * * 7 * *
8 ***************************************************************************/ 8 ***************************************************************************/
9#ifndef USERDIALOG_H 9#ifndef USERDIALOG_H
10#define USERDIALOG_H 10#define USERDIALOG_H
11 11
12#include <qdialog.h> 12#include <qdialog.h>
13#include <qlineedit.h> 13#include <qlineedit.h>
14#include <qcombobox.h> 14#include <qcombobox.h>
15#include <qlistview.h> 15#include <qlistview.h>
16#include <qtabwidget.h> 16#include <qtabwidget.h>
17#include <qpushbutton.h> 17#include <qpushbutton.h>
18#include <qcheckbox.h>
18 19
19#include <qpe/resource.h> 20#include <qpe/resource.h>
20 21
21#include <opie/ofiledialog.h> 22#include <opie/ofiledialog.h>
22 23
23class UserDialog : public QDialog 24class UserDialog : public QDialog
24{ 25{
25 Q_OBJECT 26 Q_OBJECT
26private: 27private:
27 QTabWidget *myTabWidget; 28 QTabWidget *myTabWidget;
28 QPushButton *picturePushButton; 29 QPushButton *picturePushButton;
29 QLineEdit *loginLineEdit; 30 QLineEdit *loginLineEdit;
30 QLineEdit *uidLineEdit; 31 QLineEdit *uidLineEdit;
31 QLineEdit *gecosLineEdit; 32 QLineEdit *gecosLineEdit;
32 QLineEdit *passwordLineEdit; 33 QLineEdit *passwordLineEdit;
33 QComboBox *shellComboBox; 34 QComboBox *shellComboBox;
34 QComboBox *groupComboBox; 35 QComboBox *groupComboBox;
36 QLabel *skelLabel;
37 QCheckBox *skelCheckBox;
35 QListView *groupsListView; 38 QListView *groupsListView;
36 39
37 QStringList groupMembers; 40 QStringList groupMembers;
38 QString pictureLocation; 41 QString pictureLocation;
39 QImage userImage; 42 QImage userImage;
40 int groupID; 43 int groupID;
41 int userID; 44 int userID;
42 45
43 void setupTab1(void); 46 void setupTab1(void);
44 void setupTab2(void); 47 void setupTab2(void);
45 void accept(void); 48 void accept(void);
46 49
47private slots: 50private slots:
48 void clickedPicture(void); 51 void clickedPicture(void);
49 52
50public: 53public: