summaryrefslogtreecommitdiff
path: root/noncore/settings/usermanager
authorumopapisdn <umopapisdn>2002-09-28 22:28:39 (UTC)
committer umopapisdn <umopapisdn>2002-09-28 22:28:39 (UTC)
commitaa347496d408431d85ff2d7a2cf60479407620af (patch) (unidiff)
tree64e7fed8efd41d2c4b3bdf26c863a5486ee0ede3 /noncore/settings/usermanager
parent7980189a2cb34e2864c339ef68bfbe7fb4910750 (diff)
downloadopie-aa347496d408431d85ff2d7a2cf60479407620af.zip
opie-aa347496d408431d85ff2d7a2cf60479407620af.tar.gz
opie-aa347496d408431d85ff2d7a2cf60479407620af.tar.bz2
*** empty log message ***
Diffstat (limited to 'noncore/settings/usermanager') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/usermanager/userdialog.cpp35
-rw-r--r--noncore/settings/usermanager/userdialog.h1
-rw-r--r--noncore/settings/usermanager/usermanager.cpp7
3 files changed, 38 insertions, 5 deletions
diff --git a/noncore/settings/usermanager/userdialog.cpp b/noncore/settings/usermanager/userdialog.cpp
index 6940a3b..c6b8a57 100644
--- a/noncore/settings/usermanager/userdialog.cpp
+++ b/noncore/settings/usermanager/userdialog.cpp
@@ -200,12 +200,22 @@ bool UserDialog::addUser(int uid, int gid) {
200 // Add User to additional groups. 200 // Add User to additional groups.
201 QListViewItemIterator it( adduserDialog->groupsListView ); 201 QListViewItemIterator it( adduserDialog->groupsListView );
202 for ( ; it.current(); ++it ) { 202 for ( ; it.current(); ++it ) {
203 if ( it.current()->isSelected() ) 203 if ( it.current()->isSelected() )
204 accounts->addGroupMember(it.current()->text(0),adduserDialog->loginLineEdit->text()); 204 accounts->addGroupMember(it.current()->text(0),adduserDialog->loginLineEdit->text());
205 } 205 }
206 // Copy image to pics/users/
207 if(!(adduserDialog->userImage.isNull())) {
208 QDir d;
209 if(!(d.exists("/opt/QtPalmtop/pics/users"))) {
210 d.mkdir("/opt/QtPalmtop/pics/users");
211 }
212 QString filename="/opt/QtPalmtop/pics/users/"+accounts->pw_name+".png";
213 adduserDialog->userImage=adduserDialog->userImage.smoothScale(48,48);
214 adduserDialog->userImage.save(filename,"PNG");
215 }
206 return true; 216 return true;
207} 217}
208 218
209/** 219/**
210 * Deletes the user account. 220 * Deletes the user account.
211 * 221 *
@@ -293,12 +303,23 @@ bool UserDialog::editUser(const char *username) {
293 // Add User to additional groups that he/she is a member of. 303 // Add User to additional groups that he/she is a member of.
294 QListViewItemIterator it( edituserDialog->groupsListView ); 304 QListViewItemIterator it( edituserDialog->groupsListView );
295 for ( ; it.current(); ++it ) { 305 for ( ; it.current(); ++it ) {
296 if ( it.current()->isSelected() ) 306 if ( it.current()->isSelected() )
297 accounts->addGroupMember(it.current()->text(0),edituserDialog->loginLineEdit->text()); 307 accounts->addGroupMember(it.current()->text(0),edituserDialog->loginLineEdit->text());
298 } 308 }
309
310 // Copy image to pics/users/
311 if(!(edituserDialog->userImage.isNull())) {
312 QDir d;
313 if(!(d.exists("/opt/QtPalmtop/pics/users"))) {
314 d.mkdir("/opt/QtPalmtop/pics/users");
315 }
316 QString filename="/opt/QtPalmtop/pics/users/"+accounts->pw_name+".png";
317 edituserDialog->userImage=edituserDialog->userImage.smoothScale(48,48);
318 edituserDialog->userImage.save(filename,"PNG");
319 }
299 return true; 320 return true;
300} 321}
301 322
302/** 323/**
303 * "OK" has been clicked. Verify some information before closing the dialog. 324 * "OK" has been clicked. Verify some information before closing the dialog.
304 * 325 *
@@ -315,11 +336,19 @@ void UserDialog::accept() {
315/** 336/**
316 * This slot is called when the usericon is clicked, this loads (should) the iconselector. 337 * This slot is called when the usericon is clicked, this loads (should) the iconselector.
317 * 338 *
318 */ 339 */
319void UserDialog::clickedPicture() { 340void UserDialog::clickedPicture() {
320 QString filename=OFileDialog::getOpenFileName(OFileSelector::EXTENDED,"/opt/QtPalmtop/pics"); 341 QString filename=OFileDialog::getOpenFileName(OFileSelector::EXTENDED,"/opt/QtPalmtop/pics");
321 // OFileDialog *fd=new OFileDialog("Select Icon",this, OFileSelector::OPEN, OFileSelector::EXTENDED,"/"); 342 if(!(filename.isEmpty())) {
322 //fd->showMaximized(); 343 userImage.reset();
323 //fd->exec(); 344 if(!(userImage.load(filename))) {
324 QMessageBox::information(0,"Sorry!","Icon selection not yet implemented.\nComming real soon now! (tm)\n"+filename); 345 QMessageBox::information(0,"Sorry!","Icon selection not yet implemented.\nComming real soon now! (tm)\n"+filename);
346 } else {
347 userImage=userImage.smoothScale(48,48);
348 QPixmap *picture;
349 picture=(QPixmap *)picturePushButton->pixmap();
350 picture->convertFromImage(userImage,0);
351 picturePushButton->update();
352 }
353 }
325} 354}
diff --git a/noncore/settings/usermanager/userdialog.h b/noncore/settings/usermanager/userdialog.h
index df54269..a878588 100644
--- a/noncore/settings/usermanager/userdialog.h
+++ b/noncore/settings/usermanager/userdialog.h
@@ -33,12 +33,13 @@ private:
33 QComboBox *shellComboBox; 33 QComboBox *shellComboBox;
34 QComboBox *groupComboBox; 34 QComboBox *groupComboBox;
35 QListView *groupsListView; 35 QListView *groupsListView;
36 36
37 QStringList groupMembers; 37 QStringList groupMembers;
38 QString pictureLocation; 38 QString pictureLocation;
39 QImage userImage;
39 int groupID; 40 int groupID;
40 int userID; 41 int userID;
41 42
42 void setupTab1(void); 43 void setupTab1(void);
43 void setupTab2(void); 44 void setupTab2(void);
44 void accept(void); 45 void accept(void);
diff --git a/noncore/settings/usermanager/usermanager.cpp b/noncore/settings/usermanager/usermanager.cpp
index 87dd7f1..ed18b7f 100644
--- a/noncore/settings/usermanager/usermanager.cpp
+++ b/noncore/settings/usermanager/usermanager.cpp
@@ -70,12 +70,13 @@ void UserConfig::setupTabAccounts() {
70 QWidget *tabpage = new QWidget(this); 70 QWidget *tabpage = new QWidget(this);
71 QVBoxLayout *layout = new QVBoxLayout(tabpage); 71 QVBoxLayout *layout = new QVBoxLayout(tabpage);
72 layout->setMargin(5); 72 layout->setMargin(5);
73 73
74 usersIconView=new QIconView(tabpage,"users"); 74 usersIconView=new QIconView(tabpage,"users");
75 usersIconView->setItemTextPos(QIconView::Right); 75 usersIconView->setItemTextPos(QIconView::Right);
76 usersIconView->setArrangement(QIconView::LeftToRight);
76 layout->addWidget(usersIconView); 77 layout->addWidget(usersIconView);
77 78
78 myTabWidget->addTab(tabpage,"Users"); 79 myTabWidget->addTab(tabpage,"Users");
79} 80}
80 81
81void UserConfig::setupTabAllUsers() { 82void UserConfig::setupTabAllUsers() {
@@ -120,20 +121,22 @@ void UserConfig::getUsers() {
120 availableUID=500; 121 availableUID=500;
121 for(QStringList::Iterator it=accounts->passwdStringList.begin(); it!=accounts->passwdStringList.end(); ++it) { 122 for(QStringList::Iterator it=accounts->passwdStringList.begin(); it!=accounts->passwdStringList.end(); ++it) {
122 accounts->splitPasswdEntry(*it); // Split the string into it's components and store in variables in the accounts object. ("pr_name" and so on.) 123 accounts->splitPasswdEntry(*it); // Split the string into it's components and store in variables in the accounts object. ("pr_name" and so on.)
123 new QListViewItem(usersListView,QString::number(accounts->pw_uid),accounts->pw_name,accounts->pw_gecos); 124 new QListViewItem(usersListView,QString::number(accounts->pw_uid),accounts->pw_name,accounts->pw_gecos);
124 if((accounts->pw_uid>=500) && (accounts->pw_uid<65000)) {// Is this user a "normal" user ? 125 if((accounts->pw_uid>=500) && (accounts->pw_uid<65000)) {// Is this user a "normal" user ?
125 mytext=QString(accounts->pw_name)+" - ("+QString(accounts->pw_gecos)+")"; // The string displayed next to the icon. 126 mytext=QString(accounts->pw_name)+" - ("+QString(accounts->pw_gecos)+")"; // The string displayed next to the icon.
126 mypixmap=Resource::loadPixmap(QString("users/"+accounts->pw_name));// Is there an icon for this user? 127 // mypixmap=Resource::loadPixmap(QString("users/"+accounts->pw_name));// Is there an icon for this user? Resource::loadPixmap is caching, doesn't work.
127 if(mypixmap.isNull()) { 128 if(!(mypixmap.load("/opt/QtPalmtop/pics/users/"+accounts->pw_name+".png"))) {
129 // if(mypixmap.isNull()) {
128 mypixmap=Resource::loadPixmap(QString("usermanager/usericon"));// If this user has no icon, load the default icon. 130 mypixmap=Resource::loadPixmap(QString("usermanager/usericon"));// If this user has no icon, load the default icon.
129 } 131 }
130 new QIconViewItem(usersIconView,mytext,mypixmap);// Add the icon+text to the qiconview. 132 new QIconViewItem(usersIconView,mytext,mypixmap);// Add the icon+text to the qiconview.
131 } 133 }
132 if((accounts->pw_uid>=availableUID) && (accounts->pw_uid<65000)) availableUID=accounts->pw_uid+1; // Increase 1 to the latest know UID to get a free uid. 134 if((accounts->pw_uid>=availableUID) && (accounts->pw_uid<65000)) availableUID=accounts->pw_uid+1; // Increase 1 to the latest know UID to get a free uid.
133 } 135 }
136 usersIconView->sort();
134} 137}
135 138
136void UserConfig::addUser() { 139void UserConfig::addUser() {
137 if(UserDialog::addUser(availableUID,availableGID)) {// Add the user to the system, also send next available UID and GID. 140 if(UserDialog::addUser(availableUID,availableGID)) {// Add the user to the system, also send next available UID and GID.
138 getUsers(); // Update users views. 141 getUsers(); // Update users views.
139 getGroups(); // Update groups view. 142 getGroups(); // Update groups view.