-rw-r--r-- | pwmanager/pwmanager/addentrywnd_emb.cpp | 20 | ||||
-rw-r--r-- | pwmanager/pwmanager/addentrywnd_emb.h | 5 | ||||
-rw-r--r-- | pwmanager/pwmanager/addentrywndimpl.cpp | 22 | ||||
-rw-r--r-- | pwmanager/pwmanager/addentrywndimpl.h | 2 | ||||
-rw-r--r-- | pwmanager/pwmanager/commentbox.cpp | 87 | ||||
-rw-r--r-- | pwmanager/pwmanager/commentbox.h | 40 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwmanagerE.pro | 3 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwmdoc.cpp | 4 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwmprefs.cpp | 3 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwmprefs.h | 1 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwmviewstyle.cpp | 4 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwmviewstyle_1.cpp | 6 |
12 files changed, 132 insertions, 65 deletions
diff --git a/pwmanager/pwmanager/addentrywnd_emb.cpp b/pwmanager/pwmanager/addentrywnd_emb.cpp index ed02e6d..dd09d13 100644 --- a/pwmanager/pwmanager/addentrywnd_emb.cpp +++ b/pwmanager/pwmanager/addentrywnd_emb.cpp | |||
@@ -1,213 +1,199 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of PwManager/Platform independent. | 2 | This file is part of PwManager/Platform independent. |
3 | Copyright (c) 2004 Ulf Schenk | 3 | Copyright (c) 2004 Ulf Schenk |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | 22 | ||
23 | $Id$ | 23 | $Id$ |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #include "addentrywnd_emb.h" | 26 | #include "addentrywnd_emb.h" |
27 | 27 | ||
28 | #include <qlayout.h> | 28 | #include <qlayout.h> |
29 | #include <qlabel.h> | 29 | #include <qlabel.h> |
30 | #include <qtabwidget.h> | 30 | #include <qtabwidget.h> |
31 | #include <qgroupbox.h> | 31 | #include <qgroupbox.h> |
32 | #include <klocale.h> | 32 | #include <klocale.h> |
33 | #include <kcombobox.h> | 33 | #include <kcombobox.h> |
34 | #include <klineedit.h> | 34 | #include <klineedit.h> |
35 | #include <qpushbutton.h> | 35 | #include <qpushbutton.h> |
36 | #include <qmultilineedit.h> | ||
36 | 37 | ||
37 | /* | 38 | /* |
38 | * Constructs a addEntryWnd as a child of 'parent', with the | 39 | * Constructs a addEntryWnd as a child of 'parent', with the |
39 | * name 'name' and widget flags set to 'f'. | 40 | * name 'name' and widget flags set to 'f'. |
40 | * | 41 | * |
41 | * The dialog will by default be modeless, unless you set 'modal' to | 42 | * The dialog will by default be modeless, unless you set 'modal' to |
42 | * TRUE to construct a modal dialog. | 43 | * TRUE to construct a modal dialog. |
43 | */ | 44 | */ |
44 | addEntryWnd::addEntryWnd( QWidget* parent, const char* name) | 45 | addEntryWnd::addEntryWnd( QWidget* parent, const char* name) |
45 | : KDialogBase( KDialogBase::Plain, i18n( "edit/add a password entry" ), | 46 | : KDialogBase( KDialogBase::Plain, i18n( "edit/add a password entry" ), |
46 | KDialogBase::Ok | KDialogBase::Cancel, | 47 | KDialogBase::Ok | KDialogBase::Cancel, |
47 | KDialogBase::Ok, parent, name, true ) | 48 | KDialogBase::Ok, parent, name, true ) |
48 | { | 49 | { |
49 | QWidget *page = plainPage(); | 50 | QWidget *page = plainPage(); |
50 | QVBoxLayout *pageLayout = new QVBoxLayout( page ); | 51 | QVBoxLayout *pageLayout = new QVBoxLayout( page ); |
51 | 52 | ||
52 | QTabWidget* mTabWidget = new QTabWidget( page ); | 53 | QTabWidget* mTabWidget = new QTabWidget( page ); |
53 | pageLayout->addWidget( mTabWidget ); | 54 | pageLayout->addWidget( mTabWidget ); |
54 | 55 | ||
55 | //////////////////////////////////////////////////////////////////// | 56 | //////////////////////////////////////////////////////////////////// |
56 | // This is the Password tab | 57 | // This is the Password tab |
57 | QWidget *tab1 = new QWidget( mTabWidget ); | 58 | QWidget *tab1 = new QWidget( mTabWidget ); |
58 | 59 | ||
59 | QGridLayout *layout = new QGridLayout( tab1, 3, 1 ); | 60 | QGridLayout *layout = new QGridLayout( tab1, 3, 1 ); |
60 | layout->setMargin( KDialogBase::marginHint() ); | 61 | layout->setMargin( KDialogBase::marginHint() ); |
61 | layout->setSpacing( KDialogBase::spacingHint() ); | 62 | layout->setSpacing( KDialogBase::spacingHint() ); |
62 | 63 | ||
63 | 64 | ||
64 | 65 | ||
65 | int i = 0; | 66 | int i = 0; |
66 | descLineEdit = new KLineEdit( tab1, "descLineEdit" ); | 67 | descLineEdit = new KLineEdit( tab1, "descLineEdit" ); |
67 | QLabel* label = new QLabel( descLineEdit, i18n("Description:"), tab1 ); | 68 | QLabel* label = new QLabel( descLineEdit, i18n("Description:"), tab1 ); |
68 | layout->addWidget( label, i, 0 ); | 69 | layout->addWidget( label, i, 0 ); |
69 | layout->addWidget( descLineEdit, i, 1 ); | 70 | layout->addWidget( descLineEdit, i, 1 ); |
70 | i++; | 71 | i++; |
71 | 72 | ||
72 | categoryComboBox = new KComboBox( tab1 ); | 73 | categoryComboBox = new KComboBox( tab1 ); |
73 | label = new QLabel( categoryComboBox, i18n("Category:"), tab1 ); | 74 | label = new QLabel( categoryComboBox, i18n("Category:"), tab1 ); |
74 | layout->addWidget( label, i, 0 ); | 75 | layout->addWidget( label, i, 0 ); |
75 | layout->addWidget( categoryComboBox, i, 1 ); | 76 | layout->addWidget( categoryComboBox, i, 1 ); |
76 | i++; | 77 | i++; |
77 | categoryComboBox->setEditable( TRUE ); | 78 | categoryComboBox->setEditable( TRUE ); |
78 | categoryComboBox->setSizeLimit( 100 ); | 79 | categoryComboBox->setSizeLimit( 100 ); |
79 | categoryComboBox->setAutoCompletion( TRUE ); | 80 | categoryComboBox->setAutoCompletion( TRUE ); |
80 | categoryComboBox->setDuplicatesEnabled( FALSE ); | 81 | categoryComboBox->setDuplicatesEnabled( FALSE ); |
81 | 82 | ||
82 | usernameLineEdit = new KLineEdit( tab1, "usernameLineEdit" ); | 83 | usernameLineEdit = new KLineEdit( tab1, "usernameLineEdit" ); |
83 | label = new QLabel( usernameLineEdit, i18n("Username:"), tab1 ); | 84 | label = new QLabel( usernameLineEdit, i18n("Username:"), tab1 ); |
84 | layout->addWidget( label, i, 0 ); | 85 | layout->addWidget( label, i, 0 ); |
85 | layout->addWidget( usernameLineEdit, i, 1 ); | 86 | layout->addWidget( usernameLineEdit, i, 1 ); |
86 | i++; | 87 | i++; |
87 | 88 | ||
88 | pwLineEdit = new KLineEdit( tab1, "pwLineEdit" ); | 89 | pwLineEdit = new KLineEdit( tab1, "pwLineEdit" ); |
89 | pwLineEdit->setEchoMode( QLineEdit::Password ); | 90 | pwLineEdit->setEchoMode( QLineEdit::Password ); |
90 | label = new QLabel( pwLineEdit, i18n("Password:"), tab1 ); | 91 | label = new QLabel( pwLineEdit, i18n("Password:"), tab1 ); |
91 | layout->addWidget( label, i, 0 ); | 92 | layout->addWidget( label, i, 0 ); |
92 | layout->addWidget( pwLineEdit, i, 1 ); | 93 | layout->addWidget( pwLineEdit, i, 1 ); |
93 | i++; | 94 | i++; |
94 | 95 | ||
95 | revealButton = new QPushButton( i18n("&Reveal"), tab1, "revealButton" ); | 96 | revealButton = new QPushButton( i18n("&Reveal"), tab1, "revealButton" ); |
96 | revealButton->setToggleButton( TRUE ); | 97 | revealButton->setToggleButton( TRUE ); |
97 | layout->addWidget( revealButton, i, 0 ); | 98 | layout->addWidget( revealButton, i, 0 ); |
98 | 99 | ||
99 | generateButton = new QPushButton( i18n("&Generate"), tab1, "generateButton" ); | 100 | generateButton = new QPushButton( i18n("&Generate"), tab1, "generateButton" ); |
100 | layout->addWidget( generateButton, i, 1 ); | 101 | layout->addWidget( generateButton, i, 1 ); |
101 | i++; | 102 | i++; |
102 | 103 | ||
103 | urlLineEdit = new KLineEdit( tab1, "urlLineEdit" ); | 104 | urlLineEdit = new KLineEdit( tab1, "urlLineEdit" ); |
104 | label = new QLabel( urlLineEdit, i18n("URL:"), tab1 ); | 105 | label = new QLabel( urlLineEdit, i18n("URL:"), tab1 ); |
105 | layout->addWidget( label, i, 0 ); | 106 | layout->addWidget( label, i, 0 ); |
106 | layout->addWidget( urlLineEdit, i, 1 ); | 107 | layout->addWidget( urlLineEdit, i, 1 ); |
107 | i++; | 108 | i++; |
108 | 109 | ||
109 | mTabWidget->addTab( tab1, i18n( "&Password" ) ); | 110 | mTabWidget->addTab( tab1, i18n( "&Password" ) ); |
110 | 111 | ||
111 | 112 | ||
112 | //////////////////////////////////////////////////////////////////// | 113 | //////////////////////////////////////////////////////////////////// |
113 | // This is the Comment tab | 114 | // This is the Comment tab |
114 | QWidget *tab2 = new QWidget( mTabWidget ); | 115 | QWidget *tab2 = new QWidget( mTabWidget ); |
115 | 116 | ||
116 | layout = new QGridLayout( tab2, 3, 1 ); | 117 | layout = new QGridLayout( tab2, 3, 1 ); |
117 | layout->setMargin( KDialogBase::marginHintSmall() ); | 118 | layout->setMargin( KDialogBase::marginHintSmall() ); |
118 | layout->setSpacing( KDialogBase::spacingHintSmall() ); | 119 | layout->setSpacing( KDialogBase::spacingHintSmall() ); |
119 | i = 0; | 120 | i = 0; |
120 | 121 | ||
121 | 122 | commentTextEdit = new QMultiLineEdit(tab2); | |
122 | 123 | layout->addMultiCellWidget( commentTextEdit, i, i, 0, 0 ); | |
123 | groupBox1 = new QGroupBox( tab2, "groupBox1" ); | ||
124 | commentDummy = new QLabel( groupBox1, "commentDummy" ); | ||
125 | commentDummy->setText( QString::null ); | ||
126 | |||
127 | groupBox1->setTitle( i18n( "Comment:" ) ); | ||
128 | |||
129 | layout->addMultiCellWidget( groupBox1, i, i, 0, 1 ); | ||
130 | i++; | ||
131 | |||
132 | |||
133 | advancedCommentButton = new QPushButton( i18n("advanced comment"), groupBox1, "advancedCommentButton" ); | ||
134 | advancedCommentButton->setToggleButton( FALSE ); | ||
135 | layout->addMultiCellWidget( advancedCommentButton, i, i, 0, 1 ); | ||
136 | i++; | 124 | i++; |
137 | 125 | ||
138 | 126 | ||
139 | mTabWidget->addTab( tab2, i18n( "&Comments" ) ); | 127 | mTabWidget->addTab( tab2, i18n( "&Comments" ) ); |
140 | 128 | ||
141 | 129 | ||
142 | //////////////////////////////////////////////////////////////////// | 130 | //////////////////////////////////////////////////////////////////// |
143 | // This is the Launcher tab | 131 | // This is the Launcher tab |
144 | QWidget *tab3 = new QWidget( mTabWidget ); | 132 | QWidget *tab3 = new QWidget( mTabWidget ); |
145 | 133 | ||
146 | layout = new QGridLayout( tab3, 3, 1 ); | 134 | layout = new QGridLayout( tab3, 3, 1 ); |
147 | layout->setMargin( KDialogBase::marginHintSmall() ); | 135 | layout->setMargin( KDialogBase::marginHintSmall() ); |
148 | layout->setSpacing( KDialogBase::spacingHintSmall() ); | 136 | layout->setSpacing( KDialogBase::spacingHintSmall() ); |
149 | i = 0; | 137 | i = 0; |
150 | 138 | ||
151 | launcherLineEdit = new KLineEdit( tab3, "launcherLineEdit" ); | 139 | launcherLineEdit = new KLineEdit( tab3, "launcherLineEdit" ); |
152 | label = new QLabel( launcherLineEdit, i18n("Launcher:"), tab3 ); | 140 | label = new QLabel( launcherLineEdit, i18n("Launcher:"), tab3 ); |
153 | 141 | ||
154 | QLabel* label1 = new QLabel( launcherLineEdit, i18n("$d = Description"), tab3 ); | 142 | QLabel* label1 = new QLabel( launcherLineEdit, i18n("$d = Description"), tab3 ); |
155 | QLabel* label2 = new QLabel( launcherLineEdit, i18n("$n = Username"), tab3 ); | 143 | QLabel* label2 = new QLabel( launcherLineEdit, i18n("$n = Username"), tab3 ); |
156 | QLabel* label3 = new QLabel( launcherLineEdit, i18n("$c = Comment"), tab3 ); | 144 | QLabel* label3 = new QLabel( launcherLineEdit, i18n("$c = Comment"), tab3 ); |
157 | QLabel* label4 = new QLabel( launcherLineEdit, i18n("$u = URL"), tab3 ); | 145 | QLabel* label4 = new QLabel( launcherLineEdit, i18n("$u = URL"), tab3 ); |
158 | QLabel* label5 = new QLabel( launcherLineEdit, i18n("$p = Password"), tab3 ); | 146 | QLabel* label5 = new QLabel( launcherLineEdit, i18n("$p = Password"), tab3 ); |
159 | 147 | ||
160 | label = new QLabel( launcherLineEdit, i18n("Launcher:"), tab3 ); | 148 | label = new QLabel( launcherLineEdit, i18n("Launcher:"), tab3 ); |
161 | 149 | ||
162 | layout->addWidget( label1, i, 0 ); | 150 | layout->addWidget( label1, i, 0 ); |
163 | layout->addWidget( label2, i, 1 ); | 151 | layout->addWidget( label2, i, 1 ); |
164 | i++; | 152 | i++; |
165 | layout->addWidget( label3, i, 0 ); | 153 | layout->addWidget( label3, i, 0 ); |
166 | layout->addWidget( label4, i, 1 ); | 154 | layout->addWidget( label4, i, 1 ); |
167 | i++; | 155 | i++; |
168 | layout->addWidget( label5, i, 0 ); | 156 | layout->addWidget( label5, i, 0 ); |
169 | i++; | 157 | i++; |
170 | 158 | ||
171 | layout->addWidget( label, i, 0 ); | 159 | layout->addWidget( label, i, 0 ); |
172 | layout->addWidget( launcherLineEdit, i, 1 ); | 160 | layout->addWidget( launcherLineEdit, i, 1 ); |
173 | i++; | 161 | i++; |
174 | 162 | ||
175 | 163 | ||
176 | mTabWidget->addTab( tab3, i18n( "&Launcher" ) ); | 164 | mTabWidget->addTab( tab3, i18n( "&Launcher" ) ); |
177 | 165 | ||
178 | // signals and slots connections | 166 | // signals and slots connections |
179 | connect( generateButton, SIGNAL( clicked() ), this, SLOT( generateButton_slot() ) ); | 167 | connect( generateButton, SIGNAL( clicked() ), this, SLOT( generateButton_slot() ) ); |
180 | connect( revealButton, SIGNAL( toggled(bool) ), this, SLOT( revealButton_slot() ) ); | 168 | connect( revealButton, SIGNAL( toggled(bool) ), this, SLOT( revealButton_slot() ) ); |
181 | connect( advancedCommentButton, SIGNAL( toggled(bool) ), this, SLOT( advancedCommentButton_slot(bool) ) ); | ||
182 | |||
183 | } | 169 | } |
184 | 170 | ||
185 | /* | 171 | /* |
186 | * Destroys the object and frees any allocated resources | 172 | * Destroys the object and frees any allocated resources |
187 | */ | 173 | */ |
188 | addEntryWnd::~addEntryWnd() | 174 | addEntryWnd::~addEntryWnd() |
189 | { | 175 | { |
190 | // no need to delete child widgets, Qt does it all for us | 176 | // no need to delete child widgets, Qt does it all for us |
191 | } | 177 | } |
192 | 178 | ||
193 | void addEntryWnd::slotOk() | 179 | void addEntryWnd::slotOk() |
194 | { | 180 | { |
195 | qWarning( "addEntryWnd::slotOk(): Not implemented yet" ); | 181 | qWarning( "addEntryWnd::slotOk(): Not implemented yet" ); |
196 | } | 182 | } |
197 | 183 | ||
198 | void addEntryWnd::revealButton_slot() | 184 | void addEntryWnd::revealButton_slot() |
199 | { | 185 | { |
200 | qWarning( "addEntryWnd::revealButton_slot(): Not implemented yet" ); | 186 | qWarning( "addEntryWnd::revealButton_slot(): Not implemented yet" ); |
201 | } | 187 | } |
202 | 188 | ||
203 | void addEntryWnd::generateButton_slot() | 189 | void addEntryWnd::generateButton_slot() |
204 | { | 190 | { |
205 | qWarning( "addEntryWnd::generateButton_slot(): Not implemented yet" ); | 191 | qWarning( "addEntryWnd::generateButton_slot(): Not implemented yet" ); |
206 | } | 192 | } |
207 | 193 | ||
208 | void addEntryWnd::advancedCommentButton_slot(bool) | 194 | void addEntryWnd::advancedCommentButton_slot(bool) |
209 | { | 195 | { |
210 | qWarning( "addEntryWnd::advancedCommentButton_slot(bool): Not implemented yet" ); | 196 | qWarning( "addEntryWnd::advancedCommentButton_slot(bool): Not implemented yet" ); |
211 | } | 197 | } |
212 | 198 | ||
213 | 199 | ||
diff --git a/pwmanager/pwmanager/addentrywnd_emb.h b/pwmanager/pwmanager/addentrywnd_emb.h index e368721..83761dc 100644 --- a/pwmanager/pwmanager/addentrywnd_emb.h +++ b/pwmanager/pwmanager/addentrywnd_emb.h | |||
@@ -1,73 +1,72 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of PwManager/Platform independent. | 2 | This file is part of PwManager/Platform independent. |
3 | Copyright (c) 2004 Ulf Schenk | 3 | Copyright (c) 2004 Ulf Schenk |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | 22 | ||
23 | $Id$ | 23 | $Id$ |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #ifndef ADDENTRYWND_EMB_H | 26 | #ifndef ADDENTRYWND_EMB_H |
27 | #define ADDENTRYWND_EMB_H | 27 | #define ADDENTRYWND_EMB_H |
28 | 28 | ||
29 | #include <qvariant.h> | 29 | #include <qvariant.h> |
30 | #include <kdialogbase.h> | 30 | #include <kdialogbase.h> |
31 | 31 | ||
32 | class QVBoxLayout; | 32 | class QVBoxLayout; |
33 | class QHBoxLayout; | 33 | class QHBoxLayout; |
34 | class QGridLayout; | 34 | class QGridLayout; |
35 | class QSpacerItem; | 35 | class QSpacerItem; |
36 | class KLineEdit; | 36 | class KLineEdit; |
37 | class QPushButton; | 37 | class QPushButton; |
38 | class KComboBox; | 38 | class KComboBox; |
39 | class QLabel; | 39 | class QLabel; |
40 | class QGroupBox; | 40 | class QGroupBox; |
41 | class QMultiLineEdit; | ||
41 | 42 | ||
42 | class addEntryWnd : public KDialogBase | 43 | class addEntryWnd : public KDialogBase |
43 | { | 44 | { |
44 | Q_OBJECT | 45 | Q_OBJECT |
45 | 46 | ||
46 | public: | 47 | public: |
47 | addEntryWnd( QWidget* parent = 0, const char* name = 0); | 48 | addEntryWnd( QWidget* parent = 0, const char* name = 0); |
48 | ~addEntryWnd(); | 49 | ~addEntryWnd(); |
49 | 50 | ||
50 | KLineEdit* launcherLineEdit; | 51 | KLineEdit* launcherLineEdit; |
51 | QPushButton* generateButton; | 52 | QPushButton* generateButton; |
52 | KLineEdit* descLineEdit; | 53 | KLineEdit* descLineEdit; |
53 | KComboBox* categoryComboBox; | 54 | KComboBox* categoryComboBox; |
54 | KLineEdit* usernameLineEdit; | 55 | KLineEdit* usernameLineEdit; |
55 | KLineEdit* pwLineEdit; | 56 | KLineEdit* pwLineEdit; |
56 | KLineEdit* urlLineEdit; | 57 | KLineEdit* urlLineEdit; |
57 | 58 | ||
58 | QPushButton* revealButton; | 59 | QPushButton* revealButton; |
59 | QGroupBox* groupBox1; | 60 | QMultiLineEdit* commentTextEdit; |
60 | QLabel* commentDummy; | ||
61 | QPushButton* advancedCommentButton; | ||
62 | 61 | ||
63 | public slots: | 62 | public slots: |
64 | virtual void revealButton_slot(); | 63 | virtual void revealButton_slot(); |
65 | virtual void generateButton_slot(); | 64 | virtual void generateButton_slot(); |
66 | virtual void advancedCommentButton_slot(bool on); | 65 | virtual void advancedCommentButton_slot(bool on); |
67 | 66 | ||
68 | protected slots: | 67 | protected slots: |
69 | virtual void slotOk(); | 68 | virtual void slotOk(); |
70 | 69 | ||
71 | }; | 70 | }; |
72 | 71 | ||
73 | #endif // ADDENTRYWND_H | 72 | #endif // ADDENTRYWND_H |
diff --git a/pwmanager/pwmanager/addentrywndimpl.cpp b/pwmanager/pwmanager/addentrywndimpl.cpp index ffd301f..d47f32c 100644 --- a/pwmanager/pwmanager/addentrywndimpl.cpp +++ b/pwmanager/pwmanager/addentrywndimpl.cpp | |||
@@ -1,203 +1,217 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | * * | 2 | * * |
3 | * copyright (C) 2003, 2004 by Michael Buesch * | 3 | * copyright (C) 2003, 2004 by Michael Buesch * |
4 | * email: mbuesch@freenet.de * | 4 | * email: mbuesch@freenet.de * |
5 | * * | 5 | * * |
6 | * Many very good improvements and the original implementations of * | 6 | * Many very good improvements and the original implementations of * |
7 | * them came from Matt Scifo <mscifo@o1.com> * | 7 | * them came from Matt Scifo <mscifo@o1.com> * |
8 | * * | 8 | * * |
9 | * This program is free software; you can redistribute it and/or modify * | 9 | * This program is free software; you can redistribute it and/or modify * |
10 | * it under the terms of the GNU General Public License version 2 * | 10 | * it under the terms of the GNU General Public License version 2 * |
11 | * as published by the Free Software Foundation. * | 11 | * as published by the Free Software Foundation. * |
12 | * * | 12 | * * |
13 | ***************************************************************************/ | 13 | ***************************************************************************/ |
14 | 14 | ||
15 | /*************************************************************************** | 15 | /*************************************************************************** |
16 | * copyright (C) 2004 by Ulf Schenk | 16 | * copyright (C) 2004 by Ulf Schenk |
17 | * This file is originaly based on version 1.0.1 of pwmanager | 17 | * This file is originaly based on version 1.0.1 of pwmanager |
18 | * and was modified to run on embedded devices that run microkde | 18 | * and was modified to run on embedded devices that run microkde |
19 | * | 19 | * |
20 | * $Id$ | 20 | * $Id$ |
21 | **************************************************************************/ | 21 | **************************************************************************/ |
22 | 22 | ||
23 | #include "addentrywndimpl.h" | 23 | #include "addentrywndimpl.h" |
24 | #include "pwmexception.h" | 24 | #include "pwmexception.h" |
25 | #include "pwgenwndimpl.h" | 25 | #include "pwgenwndimpl.h" |
26 | #ifndef PWM_EMBEDDED | 26 | #ifndef PWM_EMBEDDED |
27 | #include "advcommeditimpl.h" | 27 | #include "advcommeditimpl.h" |
28 | #endif | 28 | #endif |
29 | #include "htmlgen.h" | 29 | #include "htmlgen.h" |
30 | 30 | ||
31 | #include <kmessagebox.h> | 31 | #include <kmessagebox.h> |
32 | #include <klocale.h> | 32 | #include <klocale.h> |
33 | 33 | ||
34 | #include <qpushbutton.h> | 34 | #include <qpushbutton.h> |
35 | #include <qlabel.h> | 35 | #include <qlabel.h> |
36 | #include <qlayout.h> | ||
37 | |||
36 | 38 | ||
37 | #ifndef PWM_EMBEDDED | 39 | #ifndef PWM_EMBEDDED |
38 | AddEntryWndImpl::AddEntryWndImpl() | 40 | AddEntryWndImpl::AddEntryWndImpl() |
39 | : addEntryWnd( 0, "AddEntryWndImpl", TRUE) | 41 | : addEntryWnd( 0, "AddEntryWndImpl", TRUE) |
40 | #else | 42 | #else |
41 | AddEntryWndImpl::AddEntryWndImpl( QWidget* parent, const char* name) | 43 | AddEntryWndImpl::AddEntryWndImpl( QWidget* parent, const char* name) |
42 | : addEntryWnd( parent, name) | 44 | : addEntryWnd( parent, name) |
43 | #endif | 45 | #endif |
44 | { | 46 | { |
47 | #ifndef PWM_EMBEDDED | ||
45 | editAdvCommentButton = 0; | 48 | editAdvCommentButton = 0; |
46 | commentTextEdit = 0; | 49 | commentTextEdit = 0; |
50 | #endif | ||
47 | switchComment(false); | 51 | switchComment(false); |
48 | pwGen = new PwGenWndImpl(this); | 52 | pwGen = new PwGenWndImpl(this); |
49 | } | 53 | } |
50 | 54 | ||
51 | AddEntryWndImpl::~AddEntryWndImpl() | 55 | AddEntryWndImpl::~AddEntryWndImpl() |
52 | { | 56 | { |
57 | #ifndef PWM_EMBEDDED | ||
53 | delete_ifnot_null(editAdvCommentButton); | 58 | delete_ifnot_null(editAdvCommentButton); |
54 | delete_ifnot_null(commentTextEdit); | 59 | delete_ifnot_null(commentTextEdit); |
60 | #endif | ||
55 | delete pwGen; | 61 | delete pwGen; |
56 | } | 62 | } |
57 | 63 | ||
58 | #ifdef PWM_EMBEDDED | 64 | #ifdef PWM_EMBEDDED |
59 | void AddEntryWndImpl::slotOk() | 65 | void AddEntryWndImpl::slotOk() |
60 | { | 66 | { |
61 | slotApply(); | 67 | slotApply(); |
62 | 68 | ||
63 | if (pwLineEdit->text().isEmpty()) { | 69 | if (pwLineEdit->text().isEmpty()) { |
64 | KMessageBox::error(this, | 70 | KMessageBox::error(this, |
65 | i18n("Sorry, you haven't set a password."), | 71 | i18n("Sorry, you haven't set a password."), |
66 | i18n("no password")); | 72 | i18n("no password")); |
67 | return; | 73 | return; |
68 | } | 74 | } |
69 | 75 | ||
70 | if (descLineEdit->text().isEmpty()) { | 76 | if (descLineEdit->text().isEmpty()) { |
71 | KMessageBox::error(this, | 77 | KMessageBox::error(this, |
72 | i18n("You haven't set a \"Description\"."), | 78 | i18n("You haven't set a \"Description\"."), |
73 | i18n("Description not set")); | 79 | i18n("Description not set")); |
74 | return; | 80 | return; |
75 | } | 81 | } |
76 | 82 | ||
77 | KDialogBase::slotOk(); | 83 | KDialogBase::slotOk(); |
78 | } | 84 | } |
79 | #else | 85 | #else |
80 | 86 | ||
81 | void AddEntryWndImpl::okButton_slot() | 87 | void AddEntryWndImpl::okButton_slot() |
82 | { | 88 | { |
83 | if (pwLineEdit->text().isEmpty()) { | 89 | if (pwLineEdit->text().isEmpty()) { |
84 | KMessageBox::error(this, | 90 | KMessageBox::error(this, |
85 | i18n("Sorry, you haven't set a password."), | 91 | i18n("Sorry, you haven't set a password."), |
86 | i18n("no password")); | 92 | i18n("no password")); |
87 | return; | 93 | return; |
88 | } | 94 | } |
89 | if (descLineEdit->text().isEmpty()) { | 95 | if (descLineEdit->text().isEmpty()) { |
90 | KMessageBox::error(this, | 96 | KMessageBox::error(this, |
91 | i18n | 97 | i18n |
92 | ("You haven't set a \"Description\"."), | 98 | ("You haven't set a \"Description\"."), |
93 | i18n("Description not set")); | 99 | i18n("Description not set")); |
94 | return; | 100 | return; |
95 | } | 101 | } |
96 | done(1); | 102 | done(1); |
97 | } | 103 | } |
98 | 104 | ||
99 | void AddEntryWndImpl::cancelButton_slot() | 105 | void AddEntryWndImpl::cancelButton_slot() |
100 | { | 106 | { |
101 | done(2); | 107 | done(2); |
102 | } | 108 | } |
103 | #endif | 109 | #endif |
104 | 110 | ||
105 | void AddEntryWndImpl::setCurrCategory(const QString &cat) | 111 | void AddEntryWndImpl::setCurrCategory(const QString &cat) |
106 | { | 112 | { |
107 | int i, count = categoryComboBox->count(); | 113 | int i, count = categoryComboBox->count(); |
108 | 114 | ||
109 | for (i = 0; i < count; ++i) { | 115 | for (i = 0; i < count; ++i) { |
110 | if (categoryComboBox->text(i) == cat) { | 116 | if (categoryComboBox->text(i) == cat) { |
111 | categoryComboBox->setCurrentItem(i); | 117 | categoryComboBox->setCurrentItem(i); |
112 | return; | 118 | return; |
113 | } | 119 | } |
114 | } | 120 | } |
115 | BUG(); | 121 | BUG(); |
116 | } | 122 | } |
117 | 123 | ||
118 | void AddEntryWndImpl::revealButton_slot() | 124 | void AddEntryWndImpl::revealButton_slot() |
119 | { | 125 | { |
120 | if (revealButton->isOn()) { | 126 | if (revealButton->isOn()) { |
121 | pwLineEdit->setEchoMode(QLineEdit::Normal); | 127 | pwLineEdit->setEchoMode(QLineEdit::Normal); |
122 | } else { | 128 | } else { |
123 | pwLineEdit->setEchoMode(QLineEdit::Password); | 129 | pwLineEdit->setEchoMode(QLineEdit::Password); |
124 | } | 130 | } |
125 | } | 131 | } |
126 | 132 | ||
127 | void AddEntryWndImpl::generateButton_slot() | 133 | void AddEntryWndImpl::generateButton_slot() |
128 | { | 134 | { |
129 | if (!pwGen->exec()) | 135 | if (!pwGen->exec()) |
130 | return; | 136 | return; |
131 | setPassword(pwGen->getPassword()); | 137 | setPassword(pwGen->getPassword()); |
132 | } | 138 | } |
133 | 139 | ||
134 | QString AddEntryWndImpl::getComment() | 140 | QString AddEntryWndImpl::getComment() |
135 | { | 141 | { |
142 | #ifndef PWM_EMBEDDED | ||
136 | if (isAdvancedComment()) { | 143 | if (isAdvancedComment()) { |
137 | return advCommentDta; | 144 | return advCommentDta; |
138 | } | 145 | } |
146 | #endif | ||
139 | return commentTextEdit->text(); | 147 | return commentTextEdit->text(); |
140 | } | 148 | } |
141 | 149 | ||
142 | void AddEntryWndImpl::setComment(const QString &comm) | 150 | void AddEntryWndImpl::setComment(const QString &comm) |
143 | { | 151 | { |
152 | #ifndef PWM_EMBEDDED | ||
144 | if (HtmlGen::isHtml(comm)) { | 153 | if (HtmlGen::isHtml(comm)) { |
145 | advancedCommentButton->setOn(true); | 154 | advancedCommentButton->setOn(true); |
146 | advCommentDta = comm; | 155 | advCommentDta = comm; |
147 | } else { | 156 | } else { |
148 | advancedCommentButton->setOn(false); | 157 | advancedCommentButton->setOn(false); |
149 | commentTextEdit->setText(comm); | 158 | commentTextEdit->setText(comm); |
150 | } | 159 | } |
160 | #else | ||
161 | commentTextEdit->setText(comm); | ||
162 | #endif | ||
151 | } | 163 | } |
152 | 164 | ||
153 | void AddEntryWndImpl::advancedCommentButton_slot(bool on) | 165 | void AddEntryWndImpl::advancedCommentButton_slot(bool on) |
154 | { | 166 | { |
167 | #ifndef PWM_EMBEDDED | ||
155 | switchComment(on); | 168 | switchComment(on); |
169 | #endif | ||
156 | } | 170 | } |
157 | 171 | ||
158 | void AddEntryWndImpl::switchComment(bool toAdvanced) | 172 | void AddEntryWndImpl::switchComment(bool toAdvanced) |
159 | { | 173 | { |
174 | #ifndef PWM_EMBEDDED | ||
175 | |||
160 | useAdvComment = toAdvanced; | 176 | useAdvComment = toAdvanced; |
161 | if (toAdvanced) { | 177 | if (toAdvanced) { |
162 | if (commentTextEdit) { | 178 | if (commentTextEdit) { |
163 | savedCommentText = commentTextEdit->text(); | 179 | savedCommentText = commentTextEdit->text(); |
164 | delete_and_null(commentTextEdit); | 180 | delete_and_null(commentTextEdit); |
165 | } | 181 | } |
166 | if (editAdvCommentButton) | 182 | if (editAdvCommentButton) |
167 | return; | 183 | return; |
168 | editAdvCommentButton = new QPushButton(i18n("Edit advanced comment..."), | 184 | editAdvCommentButton = new QPushButton(i18n("Edit advanced comment..."), |
169 | commentDummy); | 185 | commentDummy); |
170 | editAdvCommentButton->resize(commentDummy->size().width(), 50); | 186 | editAdvCommentButton->resize(commentDummy->size().width(), 50); |
171 | connect(editAdvCommentButton, SIGNAL(clicked()), | 187 | connect(editAdvCommentButton, SIGNAL(clicked()), |
172 | this, SLOT(editAdvCommentButton_slot())); | 188 | this, SLOT(editAdvCommentButton_slot())); |
173 | editAdvCommentButton->show(); | 189 | editAdvCommentButton->show(); |
174 | } else { | 190 | } else { |
175 | delete_ifnot_null(editAdvCommentButton); | 191 | delete_ifnot_null(editAdvCommentButton); |
176 | if (commentTextEdit) | 192 | if (commentTextEdit) |
177 | return; | 193 | return; |
178 | #ifndef PWM_EMBEDDED | 194 | |
179 | commentTextEdit = new QTextEdit(commentDummy); | 195 | commentTextEdit = new QTextEdit(commentDummy); |
180 | commentTextEdit->setTextFormat(Qt::PlainText); | 196 | commentTextEdit->setTextFormat(Qt::PlainText); |
181 | #else | ||
182 | commentTextEdit = new QMultiLineEdit(commentDummy); | ||
183 | #endif | ||
184 | commentTextEdit->resize(commentDummy->size()); | 197 | commentTextEdit->resize(commentDummy->size()); |
185 | commentTextEdit->setText(savedCommentText); | 198 | commentTextEdit->setText(savedCommentText); |
186 | commentTextEdit->show(); | 199 | commentTextEdit->show(); |
187 | } | 200 | } |
201 | #endif | ||
188 | } | 202 | } |
189 | 203 | ||
190 | void AddEntryWndImpl::editAdvCommentButton_slot() | 204 | void AddEntryWndImpl::editAdvCommentButton_slot() |
191 | { | 205 | { |
192 | #ifndef PWM_EMBEDDED | 206 | #ifndef PWM_EMBEDDED |
193 | AdvCommEditImpl editor(this); | 207 | AdvCommEditImpl editor(this); |
194 | editor.setHtmlDta(advCommentDta); | 208 | editor.setHtmlDta(advCommentDta); |
195 | if (editor.exec()) | 209 | if (editor.exec()) |
196 | return; | 210 | return; |
197 | advCommentDta = editor.getHtmlDta(); | 211 | advCommentDta = editor.getHtmlDta(); |
198 | #endif | 212 | #endif |
199 | } | 213 | } |
200 | 214 | ||
201 | #ifndef PWM_EMBEDDED | 215 | #ifndef PWM_EMBEDDED |
202 | #include "addentrywndimpl.moc" | 216 | #include "addentrywndimpl.moc" |
203 | #endif | 217 | #endif |
diff --git a/pwmanager/pwmanager/addentrywndimpl.h b/pwmanager/pwmanager/addentrywndimpl.h index 622e9d2..ce9a594 100644 --- a/pwmanager/pwmanager/addentrywndimpl.h +++ b/pwmanager/pwmanager/addentrywndimpl.h | |||
@@ -1,127 +1,127 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | * * | 2 | * * |
3 | * copyright (C) 2003, 2004 by Michael Buesch * | 3 | * copyright (C) 2003, 2004 by Michael Buesch * |
4 | * email: mbuesch@freenet.de * | 4 | * email: mbuesch@freenet.de * |
5 | * * | 5 | * * |
6 | * This program is free software; you can redistribute it and/or modify * | 6 | * This program is free software; you can redistribute it and/or modify * |
7 | * it under the terms of the GNU General Public License version 2 * | 7 | * it under the terms of the GNU General Public License version 2 * |
8 | * as published by the Free Software Foundation. * | 8 | * as published by the Free Software Foundation. * |
9 | * * | 9 | * * |
10 | ***************************************************************************/ | 10 | ***************************************************************************/ |
11 | 11 | ||
12 | /*************************************************************************** | 12 | /*************************************************************************** |
13 | * copyright (C) 2004 by Ulf Schenk | 13 | * copyright (C) 2004 by Ulf Schenk |
14 | * This file is originaly based on version 1.0.1 of pwmanager | 14 | * This file is originaly based on version 1.0.1 of pwmanager |
15 | * and was modified to run on embedded devices that run microkde | 15 | * and was modified to run on embedded devices that run microkde |
16 | * | 16 | * |
17 | * $Id$ | 17 | * $Id$ |
18 | **************************************************************************/ | 18 | **************************************************************************/ |
19 | 19 | ||
20 | #ifndef __ADDENTRYWNDIMPL_H | 20 | #ifndef __ADDENTRYWNDIMPL_H |
21 | #define __ADDENTRYWNDIMPL_H | 21 | #define __ADDENTRYWNDIMPL_H |
22 | 22 | ||
23 | 23 | ||
24 | #ifndef PWM_EMBEDDED | 24 | #ifndef PWM_EMBEDDED |
25 | #include <qlineedit.h> | 25 | #include <qlineedit.h> |
26 | #include <qtextedit.h> | 26 | #include <qtextedit.h> |
27 | #include <qcombobox.h> | 27 | #include <qcombobox.h> |
28 | #include "addentrywnd.h" | 28 | #include "addentrywnd.h" |
29 | #else | 29 | #else |
30 | #include <klineedit.h> | 30 | #include <klineedit.h> |
31 | #include <kcombobox.h> | 31 | #include <kcombobox.h> |
32 | #include <qmultilineedit.h> | 32 | #include <qmultilineedit.h> |
33 | #include "addentrywnd_emb.h" | 33 | #include "addentrywnd_emb.h" |
34 | #endif | 34 | #endif |
35 | 35 | ||
36 | #include <qpushbutton.h> | 36 | #include <qpushbutton.h> |
37 | 37 | ||
38 | class PwGenWndImpl; | 38 | class PwGenWndImpl; |
39 | 39 | ||
40 | /** "add/edit" Window */ | 40 | /** "add/edit" Window */ |
41 | class AddEntryWndImpl : public addEntryWnd | 41 | class AddEntryWndImpl : public addEntryWnd |
42 | { | 42 | { |
43 | Q_OBJECT | 43 | Q_OBJECT |
44 | public: | 44 | public: |
45 | #ifndef PWM_EMBEDDED | 45 | #ifndef PWM_EMBEDDED |
46 | AddEntryWndImpl(); | 46 | AddEntryWndImpl(); |
47 | #else | 47 | #else |
48 | AddEntryWndImpl( QWidget* parent = 0, const char* name = 0); | 48 | AddEntryWndImpl( QWidget* parent = 0, const char* name = 0); |
49 | #endif | 49 | #endif |
50 | ~AddEntryWndImpl(); | 50 | ~AddEntryWndImpl(); |
51 | 51 | ||
52 | /* get... functions */ | 52 | /* get... functions */ |
53 | QString getDescription() | 53 | QString getDescription() |
54 | { return descLineEdit->text(); } | 54 | { return descLineEdit->text(); } |
55 | QString getCategory() | 55 | QString getCategory() |
56 | { return categoryComboBox->currentText(); } | 56 | { return categoryComboBox->currentText(); } |
57 | QString getUsername() | 57 | QString getUsername() |
58 | { return usernameLineEdit->text(); } | 58 | { return usernameLineEdit->text(); } |
59 | QString getPassword() | 59 | QString getPassword() |
60 | { return pwLineEdit->text(); } | 60 | { return pwLineEdit->text(); } |
61 | QString getUrl() | 61 | QString getUrl() |
62 | { return urlLineEdit->text(); } | 62 | { return urlLineEdit->text(); } |
63 | QString getLauncher() | 63 | QString getLauncher() |
64 | { return launcherLineEdit->text(); } | 64 | { return launcherLineEdit->text(); } |
65 | QString getComment(); | 65 | QString getComment(); |
66 | 66 | ||
67 | /* set... functions */ | 67 | /* set... functions */ |
68 | void setDescription(const QString &desc) | 68 | void setDescription(const QString &desc) |
69 | { descLineEdit->setText(desc); } | 69 | { descLineEdit->setText(desc); } |
70 | void setCurrCategory(const QString &cat); | 70 | void setCurrCategory(const QString &cat); |
71 | void addCategory(const QString &cat) | 71 | void addCategory(const QString &cat) |
72 | { categoryComboBox->insertItem(cat); } | 72 | { categoryComboBox->insertItem(cat); } |
73 | void setUsername(const QString &name) | 73 | void setUsername(const QString &name) |
74 | { usernameLineEdit->setText(name); } | 74 | { usernameLineEdit->setText(name); } |
75 | void setPassword(const QString &pw) | 75 | void setPassword(const QString &pw) |
76 | { pwLineEdit->setText(pw); } | 76 | { pwLineEdit->setText(pw); } |
77 | void setUrl(const QString &url) | 77 | void setUrl(const QString &url) |
78 | { urlLineEdit->setText(url); } | 78 | { urlLineEdit->setText(url); } |
79 | void setLauncher(const QString launcher) | 79 | void setLauncher(const QString launcher) |
80 | { launcherLineEdit->setText(launcher); } | 80 | { launcherLineEdit->setText(launcher); } |
81 | void setComment(const QString &comm); | 81 | void setComment(const QString &comm); |
82 | 82 | ||
83 | /** are we using an advanced comment */ | 83 | /** are we using an advanced comment */ |
84 | bool isAdvancedComment() | 84 | bool isAdvancedComment() |
85 | { return useAdvComment; } | 85 | { return useAdvComment; } |
86 | 86 | ||
87 | public slots: | 87 | public slots: |
88 | #ifndef PWM_EMBEDDED | 88 | #ifndef PWM_EMBEDDED |
89 | //MOC_SKIP_BEGIN | 89 | //MOC_SKIP_BEGIN |
90 | /** OK button pressed */ | 90 | /** OK button pressed */ |
91 | void okButton_slot(); | 91 | void okButton_slot(); |
92 | /** cancel button pressed */ | 92 | /** cancel button pressed */ |
93 | void cancelButton_slot(); | 93 | void cancelButton_slot(); |
94 | //MOC_SKIP_END | 94 | //MOC_SKIP_END |
95 | #else | 95 | #else |
96 | virtual void slotOk(); | 96 | virtual void slotOk(); |
97 | #endif | 97 | #endif |
98 | /** Reveal button pressed */ | 98 | /** Reveal button pressed */ |
99 | void revealButton_slot(); | 99 | void revealButton_slot(); |
100 | /** Generate button pressed */ | 100 | /** Generate button pressed */ |
101 | void generateButton_slot(); | 101 | void generateButton_slot(); |
102 | /** advanced comment button pressed */ | 102 | /** advanced comment button pressed */ |
103 | void advancedCommentButton_slot(bool on); | 103 | void advancedCommentButton_slot(bool on); |
104 | /** edit advanced comment button pressed */ | 104 | /** edit advanced comment button pressed */ |
105 | void editAdvCommentButton_slot(); | 105 | void editAdvCommentButton_slot(); |
106 | 106 | ||
107 | protected: | 107 | protected: |
108 | void switchComment(bool toAdvanced); | 108 | void switchComment(bool toAdvanced); |
109 | 109 | ||
110 | protected: | 110 | protected: |
111 | QPushButton *editAdvCommentButton; | 111 | QPushButton *editAdvCommentButton; |
112 | #ifndef PWM_EMBEDDED | 112 | #ifndef PWM_EMBEDDED |
113 | QTextEdit *commentTextEdit; | 113 | QTextEdit *commentTextEdit; |
114 | #else | 114 | #else |
115 | QMultiLineEdit * commentTextEdit; | 115 | //nothing here |
116 | #endif | 116 | #endif |
117 | /** saved data from normal comment text edit box */ | 117 | /** saved data from normal comment text edit box */ |
118 | QString savedCommentText; | 118 | QString savedCommentText; |
119 | /** use an advanced comment? */ | 119 | /** use an advanced comment? */ |
120 | bool useAdvComment; | 120 | bool useAdvComment; |
121 | /** data of advanced comment (if available) */ | 121 | /** data of advanced comment (if available) */ |
122 | QString advCommentDta; | 122 | QString advCommentDta; |
123 | /** password generation object */ | 123 | /** password generation object */ |
124 | PwGenWndImpl *pwGen; | 124 | PwGenWndImpl *pwGen; |
125 | }; | 125 | }; |
126 | 126 | ||
127 | #endif | 127 | #endif |
diff --git a/pwmanager/pwmanager/commentbox.cpp b/pwmanager/pwmanager/commentbox.cpp index 280b139..4a76f36 100644 --- a/pwmanager/pwmanager/commentbox.cpp +++ b/pwmanager/pwmanager/commentbox.cpp | |||
@@ -1,238 +1,281 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | * * | 2 | * * |
3 | * copyright (C) 2004 by Michael Buesch * | 3 | * copyright (C) 2004 by Michael Buesch * |
4 | * email: mbuesch@freenet.de * | 4 | * email: mbuesch@freenet.de * |
5 | * * | 5 | * * |
6 | * This program is free software; you can redistribute it and/or modify * | 6 | * This program is free software; you can redistribute it and/or modify * |
7 | * it under the terms of the GNU General Public License version 2 * | 7 | * it under the terms of the GNU General Public License version 2 * |
8 | * as published by the Free Software Foundation. * | 8 | * as published by the Free Software Foundation. * |
9 | * * | 9 | * * |
10 | ***************************************************************************/ | 10 | ***************************************************************************/ |
11 | 11 | ||
12 | /*************************************************************************** | 12 | /*************************************************************************** |
13 | * copyright (C) 2004 by Ulf Schenk | 13 | * copyright (C) 2004 by Ulf Schenk |
14 | * This file is originaly based on version 1.0.1 of pwmanager | 14 | * This file is originaly based on version 1.0.1 of pwmanager |
15 | * and was modified to run on embedded devices that run microkde | 15 | * and was modified to run on embedded devices that run microkde |
16 | * | 16 | * |
17 | * $Id$ | 17 | * $Id$ |
18 | **************************************************************************/ | 18 | **************************************************************************/ |
19 | 19 | ||
20 | #include "commentbox.h" | 20 | #include "commentbox.h" |
21 | #include "pwmexception.h" | 21 | #include "pwmexception.h" |
22 | #include "htmlgen.h" | 22 | #include "htmlgen.h" |
23 | 23 | ||
24 | #include <klocale.h> | 24 | #include <klocale.h> |
25 | 25 | ||
26 | #ifndef PWM_EMBEDDED | 26 | #ifndef PWM_EMBEDDED |
27 | #include <khtml_part.h> | 27 | #include <khtml_part.h> |
28 | #include <khtmlview.h> | 28 | #include <khtmlview.h> |
29 | #include <qtextedit.h> | 29 | #include <qtextedit.h> |
30 | #else | 30 | #else |
31 | #include <qmultilineedit.h> | 31 | #include <qmultilineedit.h> |
32 | #endif | 32 | #endif |
33 | 33 | ||
34 | |||
35 | |||
36 | #ifndef PWM_EMBEDDED | ||
34 | CommentBox::CommentBox(QWidget *_parentWidget) | 37 | CommentBox::CommentBox(QWidget *_parentWidget) |
35 | { | 38 | { |
36 | PWM_ASSERT(_parentWidget); | 39 | PWM_ASSERT(_parentWidget); |
37 | parentWidget = _parentWidget; | 40 | parentWidget = _parentWidget; |
38 | textDta = 0; | 41 | textDta = 0; |
39 | #ifndef PWM_EMBEDDED | ||
40 | htmlDta = 0; | 42 | htmlDta = 0; |
41 | #endif | ||
42 | mode = mode_notSet; | 43 | mode = mode_notSet; |
43 | } | 44 | } |
44 | 45 | ||
45 | CommentBox::~CommentBox() | 46 | CommentBox::~CommentBox() |
46 | { | 47 | { |
47 | clearText(); | 48 | clearText(); |
48 | clearHtml(); | 49 | clearHtml(); |
49 | } | 50 | } |
50 | 51 | ||
51 | void CommentBox::clear() | 52 | void CommentBox::clear() |
52 | { | 53 | { |
53 | clearText(); | 54 | clearText(); |
54 | clearHtml(); | 55 | clearHtml(); |
55 | mode = mode_notSet; | 56 | mode = mode_notSet; |
57 | this->hide(); | ||
56 | } | 58 | } |
57 | 59 | ||
58 | void CommentBox::clearText() | 60 | void CommentBox::clearText() |
59 | { | 61 | { |
60 | delete_ifnot_null(textDta); | 62 | delete_ifnot_null(textDta); |
61 | } | 63 | } |
62 | 64 | ||
63 | void CommentBox::clearHtml() | 65 | void CommentBox::clearHtml() |
64 | { | 66 | { |
65 | #ifndef PWM_EMBEDDED | ||
66 | delete_ifnot_null(htmlDta); | 67 | delete_ifnot_null(htmlDta); |
67 | #endif | ||
68 | } | 68 | } |
69 | 69 | ||
70 | void CommentBox::setText(const QString &text) | 70 | void CommentBox::setText(const QString &text) |
71 | { | 71 | { |
72 | switchTo(mode_text); | 72 | switchTo(mode_text); |
73 | PWM_ASSERT(textDta); | 73 | PWM_ASSERT(textDta); |
74 | textDta->setText(i18n("Comment") + ": " + text); | 74 | textDta->setText(i18n("Comment") + ": " + text); |
75 | if (!textDta->isVisible()) | 75 | if (!textDta->isVisible()) |
76 | textDta->show(); | 76 | textDta->show(); |
77 | } | 77 | } |
78 | 78 | ||
79 | bool CommentBox::getText(QString *text) | 79 | bool CommentBox::getText(QString *text) |
80 | { | 80 | { |
81 | if (mode != mode_text) | 81 | if (mode != mode_text) |
82 | return false; | 82 | return false; |
83 | PWM_ASSERT(text); | 83 | PWM_ASSERT(text); |
84 | if (!textDta) { | 84 | if (!textDta) { |
85 | *text = ""; | 85 | *text = ""; |
86 | return true; | 86 | return true; |
87 | } | 87 | } |
88 | *text = textDta->text(); | 88 | *text = textDta->text(); |
89 | return true; | 89 | return true; |
90 | } | 90 | } |
91 | 91 | ||
92 | void CommentBox::setHtml(QString code) | 92 | void CommentBox::setHtml(QString code) |
93 | { | 93 | { |
94 | #ifndef PWM_EMBEDDED | ||
95 | switchTo(mode_html); | 94 | switchTo(mode_html); |
96 | PWM_ASSERT(htmlDta); | 95 | PWM_ASSERT(htmlDta); |
97 | if (!HtmlGen::replaceSSDummy(&code)) | 96 | if (!HtmlGen::replaceSSDummy(&code)) |
98 | printWarn("CommentBox::setHtml(): replaceSSDummy() failed!"); | 97 | printWarn("CommentBox::setHtml(): replaceSSDummy() failed!"); |
99 | htmlDta->begin(); | 98 | htmlDta->begin(); |
100 | htmlDta->write(code); | 99 | htmlDta->write(code); |
101 | htmlDta->end(); | 100 | htmlDta->end(); |
102 | htmlDta->show(); | 101 | htmlDta->show(); |
103 | #endif | ||
104 | } | 102 | } |
105 | 103 | ||
106 | void CommentBox::setContent(const QString &dta) | 104 | void CommentBox::setContent(const QString &dta) |
107 | { | 105 | { |
108 | // if there's no data, hide the comment-box | 106 | // if there's no data, hide the comment-box |
109 | if (dta.isEmpty()) { | 107 | if (dta.isEmpty()) { |
110 | clear(); | 108 | clear(); |
111 | return; | 109 | return; |
112 | } | 110 | } |
113 | #ifndef PWM_EMBEDDED | ||
114 | if (HtmlGen::isHtml(dta)) { | 111 | if (HtmlGen::isHtml(dta)) { |
115 | setHtml(dta); | 112 | setHtml(dta); |
116 | return; | 113 | return; |
117 | } | 114 | } |
118 | #endif | ||
119 | // we assume it's plain text | 115 | // we assume it's plain text |
120 | setText(dta); | 116 | setText(dta); |
121 | } | 117 | } |
122 | 118 | ||
123 | void CommentBox::switchTo(commentBoxMode newMode) | 119 | void CommentBox::switchTo(commentBoxMode newMode) |
124 | { | 120 | { |
125 | if (newMode == mode) | 121 | if (newMode == mode) |
126 | return; | 122 | return; |
127 | 123 | ||
128 | // cleanup old mode | 124 | // cleanup old mode |
129 | switch (mode) { | 125 | switch (mode) { |
130 | case mode_text: | 126 | case mode_text: |
131 | clearText(); | 127 | clearText(); |
132 | break; | 128 | break; |
133 | case mode_html: | 129 | case mode_html: |
134 | clearHtml(); | 130 | clearHtml(); |
135 | break; | 131 | break; |
136 | default: | 132 | default: |
137 | break; | 133 | break; |
138 | } | 134 | } |
139 | 135 | ||
140 | // setup new mode | 136 | // setup new mode |
141 | switch (newMode) { | 137 | switch (newMode) { |
142 | case mode_text: | 138 | case mode_text: |
143 | #ifndef PWM_EMBEDDED | ||
144 | textDta = new QTextEdit(parentWidget); | 139 | textDta = new QTextEdit(parentWidget); |
145 | textDta->setTextFormat(Qt::PlainText); | 140 | textDta->setTextFormat(Qt::PlainText); |
146 | #else | ||
147 | textDta = new QMultiLineEdit(parentWidget); | ||
148 | #endif | ||
149 | textDta->setReadOnly(true); | 141 | textDta->setReadOnly(true); |
150 | textDta->show(); | 142 | textDta->show(); |
151 | break; | 143 | break; |
152 | case mode_html: | 144 | case mode_html: |
153 | #ifndef PWM_EMBEDDED | ||
154 | htmlDta = new KHTMLPart(parentWidget, 0, | 145 | htmlDta = new KHTMLPart(parentWidget, 0, |
155 | parentWidget); | 146 | parentWidget); |
156 | htmlDta->show(); | 147 | htmlDta->show(); |
157 | #endif | ||
158 | break; | 148 | break; |
159 | default: | 149 | default: |
160 | BUG(); | 150 | BUG(); |
161 | break; | 151 | break; |
162 | } | 152 | } |
163 | 153 | ||
164 | mode = newMode; | 154 | mode = newMode; |
165 | } | 155 | } |
166 | 156 | ||
167 | void CommentBox::show() | 157 | void CommentBox::show() |
168 | { | 158 | { |
169 | switch (mode) { | 159 | switch (mode) { |
170 | case mode_text: | 160 | case mode_text: |
171 | PWM_ASSERT(textDta); | 161 | PWM_ASSERT(textDta); |
172 | textDta->show(); | 162 | textDta->show(); |
173 | break; | 163 | break; |
174 | case mode_html: | 164 | case mode_html: |
175 | #ifndef PWM_EMBEDDED | ||
176 | PWM_ASSERT(htmlDta); | 165 | PWM_ASSERT(htmlDta); |
177 | htmlDta->show(); | 166 | htmlDta->show(); |
178 | #endif | ||
179 | break; | 167 | break; |
180 | default: | 168 | default: |
181 | break; | 169 | break; |
182 | } | 170 | } |
171 | |||
183 | } | 172 | } |
184 | 173 | ||
185 | void CommentBox::hide() | 174 | void CommentBox::hide() |
186 | { | 175 | { |
187 | switch (mode) { | 176 | switch (mode) { |
188 | case mode_text: | 177 | case mode_text: |
189 | PWM_ASSERT(textDta); | 178 | PWM_ASSERT(textDta); |
190 | textDta->hide(); | 179 | textDta->hide(); |
191 | break; | 180 | break; |
192 | case mode_html: | 181 | case mode_html: |
193 | #ifndef PWM_EMBEDDED | ||
194 | PWM_ASSERT(htmlDta); | 182 | PWM_ASSERT(htmlDta); |
195 | htmlDta->hide(); | 183 | htmlDta->hide(); |
196 | #endif | ||
197 | break; | 184 | break; |
198 | default: | 185 | default: |
199 | break; | 186 | break; |
200 | } | 187 | } |
201 | } | 188 | } |
202 | 189 | ||
203 | void CommentBox::resize(const QSize &size) | 190 | void CommentBox::resize(const QSize &size) |
204 | { | 191 | { |
205 | switch (mode) { | 192 | switch (mode) { |
206 | case mode_text: | 193 | case mode_text: |
207 | PWM_ASSERT(textDta); | 194 | PWM_ASSERT(textDta); |
208 | textDta->resize(size); | 195 | textDta->resize(size); |
209 | break; | 196 | break; |
210 | case mode_html: | 197 | case mode_html: |
211 | #ifndef PWM_EMBEDDED | ||
212 | PWM_ASSERT(htmlDta); | 198 | PWM_ASSERT(htmlDta); |
213 | htmlDta->view()->resize(size); | 199 | htmlDta->view()->resize(size); |
214 | #endif | ||
215 | break; | 200 | break; |
216 | default: | 201 | default: |
217 | break; | 202 | break; |
218 | } | 203 | } |
204 | |||
219 | } | 205 | } |
220 | 206 | ||
221 | QSize CommentBox::size() | 207 | QSize CommentBox::size() |
222 | { | 208 | { |
223 | switch (mode) { | 209 | switch (mode) { |
224 | case mode_text: | 210 | case mode_text: |
225 | PWM_ASSERT(textDta); | 211 | PWM_ASSERT(textDta); |
226 | return textDta->size(); | 212 | return textDta->size(); |
227 | break; | 213 | break; |
228 | case mode_html: | 214 | case mode_html: |
229 | #ifndef PWM_EMBEDDED | ||
230 | PWM_ASSERT(htmlDta); | 215 | PWM_ASSERT(htmlDta); |
231 | return htmlDta->view()->size(); | 216 | return htmlDta->view()->size(); |
232 | #endif | ||
233 | break; | 217 | break; |
234 | default: | 218 | default: |
235 | break; | 219 | break; |
236 | } | 220 | } |
221 | |||
237 | return QSize(); | 222 | return QSize(); |
238 | } | 223 | } |
224 | |||
225 | |||
226 | //////////////////////////////////////////////////////////////////////// | ||
227 | |||
228 | #else | ||
229 | |||
230 | CommentBox::CommentBox(QWidget *_parentWidget) | ||
231 | : QMultiLineEdit(_parentWidget) | ||
232 | |||
233 | { | ||
234 | this->setReadOnly(true); | ||
235 | } | ||
236 | |||
237 | CommentBox::~CommentBox() | ||
238 | { | ||
239 | } | ||
240 | |||
241 | void CommentBox::clear() | ||
242 | { | ||
243 | this->hide(); | ||
244 | } | ||
245 | |||
246 | |||
247 | void CommentBox::setText(const QString &text) | ||
248 | { | ||
249 | QMultiLineEdit::setText(i18n("Comment") + ": " + text); | ||
250 | if (!this->isVisible()) | ||
251 | this->show(); | ||
252 | } | ||
253 | |||
254 | bool CommentBox::getText(QString *text) | ||
255 | { | ||
256 | *text = this->text(); | ||
257 | return true; | ||
258 | } | ||
259 | |||
260 | void CommentBox::setContent(const QString &dta) | ||
261 | { | ||
262 | // if there's no data, hide the comment-box | ||
263 | if (dta.isEmpty()) { | ||
264 | clear(); | ||
265 | return; | ||
266 | } | ||
267 | |||
268 | // we assume it's plain text | ||
269 | setText(dta); | ||
270 | } | ||
271 | |||
272 | #endif | ||
273 | |||
274 | |||
275 | |||
276 | |||
277 | |||
278 | |||
279 | |||
280 | |||
281 | |||
diff --git a/pwmanager/pwmanager/commentbox.h b/pwmanager/pwmanager/commentbox.h index a220acd..352867c 100644 --- a/pwmanager/pwmanager/commentbox.h +++ b/pwmanager/pwmanager/commentbox.h | |||
@@ -1,100 +1,124 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | * * | 2 | * * |
3 | * copyright (C) 2004 by Michael Buesch * | 3 | * copyright (C) 2004 by Michael Buesch * |
4 | * email: mbuesch@freenet.de * | 4 | * email: mbuesch@freenet.de * |
5 | * * | 5 | * * |
6 | * This program is free software; you can redistribute it and/or modify * | 6 | * This program is free software; you can redistribute it and/or modify * |
7 | * it under the terms of the GNU General Public License version 2 * | 7 | * it under the terms of the GNU General Public License version 2 * |
8 | * as published by the Free Software Foundation. * | 8 | * as published by the Free Software Foundation. * |
9 | * * | 9 | * * |
10 | ***************************************************************************/ | 10 | ***************************************************************************/ |
11 | 11 | ||
12 | /*************************************************************************** | 12 | /*************************************************************************** |
13 | * copyright (C) 2004 by Ulf Schenk | 13 | * copyright (C) 2004 by Ulf Schenk |
14 | * This file is originaly based on version 1.0.1 of pwmanager | 14 | * This file is originaly based on version 1.0.1 of pwmanager |
15 | * and was modified to run on embedded devices that run microkde | 15 | * and was modified to run on embedded devices that run microkde |
16 | * | 16 | * |
17 | * $Id$ | 17 | * $Id$ |
18 | **************************************************************************/ | 18 | **************************************************************************/ |
19 | 19 | ||
20 | #ifndef COMMENTBOX_H | 20 | #ifndef COMMENTBOX_H |
21 | #define COMMENTBOX_H | 21 | #define COMMENTBOX_H |
22 | 22 | ||
23 | #include <qstring.h> | 23 | #include <qstring.h> |
24 | #include <qsize.h> | 24 | #include <qsize.h> |
25 | |||
26 | class QWidget; | 25 | class QWidget; |
27 | class QTextEdit; | 26 | class QTextEdit; |
28 | class QMultiLineEdit; | ||
29 | class KHTMLPart; | 27 | class KHTMLPart; |
30 | 28 | ||
31 | /** Implementation of the advanced HTML comment box */ | 29 | #ifndef PWM_EMBEDDED |
32 | class CommentBox | 30 | |
31 | class CommentBox | ||
33 | { | 32 | { |
34 | protected: | 33 | protected: |
35 | enum commentBoxMode | 34 | enum commentBoxMode |
36 | { | 35 | { |
37 | mode_notSet = 0, | 36 | mode_notSet = 0, |
38 | mode_text, | 37 | mode_text, |
39 | mode_html | 38 | mode_html |
40 | }; | 39 | }; |
41 | 40 | ||
42 | public: | 41 | public: |
43 | CommentBox(QWidget *_parentWidget); | 42 | CommentBox(QWidget *_parentWidget); |
44 | ~CommentBox(); | 43 | ~CommentBox(); |
45 | 44 | ||
46 | /** clear all data in the comment box */ | 45 | /** clear all data in the comment box */ |
47 | void clear(); | 46 | void clear(); |
48 | /** show the comment box */ | 47 | /** show the comment box */ |
49 | void show(); | 48 | void show(); |
50 | /** hide the comment box */ | 49 | /** hide the comment box */ |
51 | void hide(); | 50 | void hide(); |
52 | /** resize the comment box */ | 51 | /** resize the comment box */ |
53 | void resize(const QSize &size); | 52 | void resize(const QSize &size); |
54 | void resize(int w, int h) | 53 | void resize(int w, int h) |
55 | { resize(QSize(w, h)); } | 54 | { resize(QSize(w, h)); } |
56 | /** get the size of the comment box */ | 55 | /** get the size of the comment box */ |
57 | QSize size(); | 56 | QSize size(); |
58 | /** if neccessary switch to text-mode and | 57 | /** if neccessary switch to text-mode and |
59 | * insert this text into the comment box | 58 | * insert this text into the comment box |
60 | */ | 59 | */ |
61 | void setText(const QString &text); | 60 | void setText(const QString &text); |
62 | /** get the text of the comment box. | 61 | /** get the text of the comment box. |
63 | * If it's not in text-mode it returns false | 62 | * If it's not in text-mode it returns false |
64 | */ | 63 | */ |
65 | bool getText(QString *text); | 64 | bool getText(QString *text); |
66 | /** if neccessary switch to HTML-mode and | 65 | /** if neccessary switch to HTML-mode and |
67 | * insert this html code into the comment box | 66 | * insert this html code into the comment box |
68 | */ | 67 | */ |
69 | void setHtml(QString code); | 68 | void setHtml(QString code); |
70 | /** checks "dta" for its type, sets the correct | 69 | /** checks "dta" for its type, sets the correct |
71 | * mode and writes "dta" to the comment box | 70 | * mode and writes "dta" to the comment box |
72 | */ | 71 | */ |
73 | void setContent(const QString &dta); | 72 | void setContent(const QString &dta); |
74 | 73 | ||
75 | protected: | 74 | protected: |
76 | /** switch the current mode */ | 75 | /** switch the current mode */ |
77 | void switchTo(commentBoxMode newMode); | 76 | void switchTo(commentBoxMode newMode); |
78 | /** clear all text data */ | 77 | /** clear all text data */ |
79 | void clearText(); | 78 | void clearText(); |
80 | /** clear all HTML data */ | 79 | /** clear all HTML data */ |
81 | void clearHtml(); | 80 | void clearHtml(); |
82 | 81 | ||
83 | protected: | 82 | protected: |
84 | /** parent widget for this comment box */ | 83 | /** parent widget for this comment box */ |
85 | QWidget *parentWidget; | 84 | QWidget *parentWidget; |
86 | /** current comment box usage type */ | 85 | /** current comment box usage type */ |
87 | commentBoxMode mode; | 86 | commentBoxMode mode; |
88 | #ifndef PWM_EMBEDDED | ||
89 | /** if the comment box is a normal textbox, data is stored here */ | 87 | /** if the comment box is a normal textbox, data is stored here */ |
90 | QTextEdit *textDta; | 88 | QTextEdit *textDta; |
91 | /** if the comment box is a HTML box, data is stored here */ | 89 | /** if the comment box is a HTML box, data is stored here */ |
92 | KHTMLPart *htmlDta; | 90 | KHTMLPart *htmlDta; |
91 | }; | ||
92 | |||
93 | #else | 93 | #else |
94 | /** if the comment box is a normal textbox, data is stored here */ | 94 | #include <qmultilineedit.h> |
95 | QMultiLineEdit *textDta; | 95 | /** Implementation of the advanced HTML comment box */ |
96 | #endif | 96 | //US ENH: CommentBox must be derived from QWidget, to allow the splitter to set a initial size |
97 | // without conflicting with the two display modes | ||
98 | |||
99 | class CommentBox : public QMultiLineEdit | ||
100 | { | ||
101 | public: | ||
102 | CommentBox(QWidget *_parentWidget); | ||
103 | ~CommentBox(); | ||
104 | |||
105 | /** clear all data in the comment box */ | ||
106 | void clear(); | ||
107 | /** if neccessary switch to text-mode and | ||
108 | * insert this text into the comment box | ||
109 | */ | ||
110 | void setText(const QString &text); | ||
111 | /** get the text of the comment box. | ||
112 | * If it's not in text-mode it returns false | ||
113 | */ | ||
114 | bool getText(QString *text); | ||
115 | /** if neccessary switch to HTML-mode and | ||
116 | * insert this html code into the comment box | ||
117 | */ | ||
118 | void setContent(const QString &dta); | ||
97 | 119 | ||
98 | }; | 120 | }; |
121 | #endif | ||
122 | |||
99 | 123 | ||
100 | #endif | 124 | #endif |
diff --git a/pwmanager/pwmanager/pwmanagerE.pro b/pwmanager/pwmanager/pwmanagerE.pro index 3bcf679..4e482ca 100644 --- a/pwmanager/pwmanager/pwmanagerE.pro +++ b/pwmanager/pwmanager/pwmanagerE.pro | |||
@@ -1,139 +1,140 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on | 2 | CONFIG += qt warn_on |
3 | 3 | ||
4 | 4 | ||
5 | TARGET = pwmpi | 5 | TARGET = pwmpi |
6 | OBJECTS_DIR = obj/$(PLATFORM) | 6 | OBJECTS_DIR = obj/$(PLATFORM) |
7 | MOC_DIR = moc/$(PLATFORM) | 7 | MOC_DIR = moc/$(PLATFORM) |
8 | DESTDIR=$(QPEDIR)/bin | 8 | DESTDIR=$(QPEDIR)/bin |
9 | 9 | ||
10 | INCLUDEPATH += . ../../qtcompat ../../qtcompat/xml ../../libkdepim ../../microkde ../../microkde/kdecore ../../microkde/kdeui ../../microkde/kutils $(QPEDIR)/include | 10 | INCLUDEPATH += . ../../qtcompat ../../qtcompat/xml ../../libkdepim ../../microkde ../../microkde/kdecore ../../microkde/kdeui ../../microkde/kutils $(QPEDIR)/include |
11 | DEFINES += PWM_EMBEDDED PWM_DEBUG | 11 | DEFINES += PWM_EMBEDDED CONFIG_DEBUG |
12 | |||
12 | LIBS += -lmicrokde | 13 | LIBS += -lmicrokde |
13 | LIBS += -lmicroqtcompat | 14 | LIBS += -lmicroqtcompat |
14 | LIBS += -lmicrokdepim | 15 | LIBS += -lmicrokdepim |
15 | LIBS += -L$(QPEDIR)/lib | 16 | LIBS += -L$(QPEDIR)/lib |
16 | LIBS += -lqpe | 17 | LIBS += -lqpe |
17 | LIBS += -lbz2 | 18 | LIBS += -lbz2 |
18 | LIBS += $(QTOPIALIB) | 19 | LIBS += $(QTOPIALIB) |
19 | 20 | ||
20 | #INTERFACES = \ | 21 | #INTERFACES = \ |
21 | #addentrywnd.ui \ | 22 | #addentrywnd.ui \ |
22 | #configwnd.ui \ | 23 | #configwnd.ui \ |
23 | #findwnd.ui \ | 24 | #findwnd.ui \ |
24 | #getmasterpwwnd.ui \ | 25 | #getmasterpwwnd.ui \ |
25 | #pwgenwnd.ui \ | 26 | #pwgenwnd.ui \ |
26 | #setmasterpwwnd.ui \ | 27 | #setmasterpwwnd.ui \ |
27 | #subtbledit.ui | 28 | #subtbledit.ui |
28 | 29 | ||
29 | #INTERFACES = \ | 30 | #INTERFACES = \ |
30 | #subtbledit.ui \ | 31 | #subtbledit.ui \ |
31 | 32 | ||
32 | 33 | ||
33 | 34 | ||
34 | #HEADERS = \ | 35 | #HEADERS = \ |
35 | #configuration_31compat.h \ | 36 | #configuration_31compat.h \ |
36 | #configuration.h \ | 37 | #configuration.h \ |
37 | #configwnd.h \ | 38 | #configwnd.h \ |
38 | #configwndimpl.h \ | 39 | #configwndimpl.h \ |
39 | #selftest.h | 40 | #selftest.h |
40 | #subtbledit.h \ | 41 | #subtbledit.h \ |
41 | #subtbleditimpl.h \ | 42 | #subtbleditimpl.h \ |
42 | 43 | ||
43 | HEADERS = \ | 44 | HEADERS = \ |
44 | addentrywnd_emb.h \ | 45 | addentrywnd_emb.h \ |
45 | addentrywndimpl.h \ | 46 | addentrywndimpl.h \ |
46 | base64.h \ | 47 | base64.h \ |
47 | binentrygen.h \ | 48 | binentrygen.h \ |
48 | blowfish.h \ | 49 | blowfish.h \ |
49 | commentbox.h \ | 50 | commentbox.h \ |
50 | compiler.h \ | 51 | compiler.h \ |
51 | compressbzip2.h \ | 52 | compressbzip2.h \ |
52 | compressgzip.h \ | 53 | compressgzip.h \ |
53 | findwnd_emb.h \ | 54 | findwnd_emb.h \ |
54 | findwndimpl.h \ | 55 | findwndimpl.h \ |
55 | genpasswd.h \ | 56 | genpasswd.h \ |
56 | getkeycardwnd.h \ | 57 | getkeycardwnd.h \ |
57 | getmasterpwwnd_emb.h \ | 58 | getmasterpwwnd_emb.h \ |
58 | getmasterpwwndimpl.h \ | 59 | getmasterpwwndimpl.h \ |
59 | globalstuff.h \ | 60 | globalstuff.h \ |
60 | gpasmanfile.h \ | 61 | gpasmanfile.h \ |
61 | htmlgen.h \ | 62 | htmlgen.h \ |
62 | htmlparse.h \ | 63 | htmlparse.h \ |
63 | ipc.h \ | 64 | ipc.h \ |
64 | listobjselectwnd.h \ | 65 | listobjselectwnd.h \ |
65 | listviewpwm.h \ | 66 | listviewpwm.h \ |
66 | printtext.h \ | 67 | printtext.h \ |
67 | pwgenwnd_emb.h \ | 68 | pwgenwnd_emb.h \ |
68 | pwgenwndimpl.h \ | 69 | pwgenwndimpl.h \ |
69 | pwmdoc.h \ | 70 | pwmdoc.h \ |
70 | pwmdocui.h \ | 71 | pwmdocui.h \ |
71 | pwmexception.h \ | 72 | pwmexception.h \ |
72 | pwm.h \ | 73 | pwm.h \ |
73 | pwminit.h \ | 74 | pwminit.h \ |
74 | pwmprefs.h \ | 75 | pwmprefs.h \ |
75 | pwmprint.h \ | 76 | pwmprint.h \ |
76 | pwmtray.h \ | 77 | pwmtray.h \ |
77 | pwmview.h \ | 78 | pwmview.h \ |
78 | pwmviewstyle_0.h \ | 79 | pwmviewstyle_0.h \ |
79 | pwmviewstyle_1.h \ | 80 | pwmviewstyle_1.h \ |
80 | pwmviewstyle.h \ | 81 | pwmviewstyle.h \ |
81 | randomizer.h \ | 82 | randomizer.h \ |
82 | rc2.h \ | 83 | rc2.h \ |
83 | rencatwnd.h \ | 84 | rencatwnd.h \ |
84 | serializer.h \ | 85 | serializer.h \ |
85 | setmasterpwwnd_emb.h \ | 86 | setmasterpwwnd_emb.h \ |
86 | setmasterpwwndimpl.h \ | 87 | setmasterpwwndimpl.h \ |
87 | sha1.h \ | 88 | sha1.h \ |
88 | waitwnd.h \ | 89 | waitwnd.h \ |
89 | kcmconfigs/kcmpwmconfig.h \ | 90 | kcmconfigs/kcmpwmconfig.h \ |
90 | kcmconfigs/pwmconfigwidget.h \ | 91 | kcmconfigs/pwmconfigwidget.h \ |
91 | 92 | ||
92 | #sources that need not be build | 93 | #sources that need not be build |
93 | #SOURCES = \ | 94 | #SOURCES = \ |
94 | #advcommeditimpl.cpp \ | 95 | #advcommeditimpl.cpp \ |
95 | #configuration.cpp \ | 96 | #configuration.cpp \ |
96 | #configwnd.cpp \ | 97 | #configwnd.cpp \ |
97 | #configwndimpl.cpp \ | 98 | #configwndimpl.cpp \ |
98 | #configuration_31compat.cpp \ | 99 | #configuration_31compat.cpp \ |
99 | #htmlparse.cpp \ | 100 | #htmlparse.cpp \ |
100 | #printtext.cpp \ | 101 | #printtext.cpp \ |
101 | #selftest.cpp \ | 102 | #selftest.cpp \ |
102 | #pwmprint.cpp \ | 103 | #pwmprint.cpp \ |
103 | #spinforsignal.cpp | 104 | #spinforsignal.cpp |
104 | #subtbledit.cpp \ | 105 | #subtbledit.cpp \ |
105 | #subtbleditimpl.cpp \ | 106 | #subtbleditimpl.cpp \ |
106 | 107 | ||
107 | SOURCES = \ | 108 | SOURCES = \ |
108 | addentrywnd_emb.cpp \ | 109 | addentrywnd_emb.cpp \ |
109 | addentrywndimpl.cpp \ | 110 | addentrywndimpl.cpp \ |
110 | base64.cpp \ | 111 | base64.cpp \ |
111 | binentrygen.cpp \ | 112 | binentrygen.cpp \ |
112 | blowfish.cpp \ | 113 | blowfish.cpp \ |
113 | commentbox.cpp \ | 114 | commentbox.cpp \ |
114 | compressbzip2.cpp \ | 115 | compressbzip2.cpp \ |
115 | compressgzip.cpp \ | 116 | compressgzip.cpp \ |
116 | findwnd_emb.cpp \ | 117 | findwnd_emb.cpp \ |
117 | findwndimpl.cpp \ | 118 | findwndimpl.cpp \ |
118 | genpasswd.cpp \ | 119 | genpasswd.cpp \ |
119 | getkeycardwnd.cpp \ | 120 | getkeycardwnd.cpp \ |
120 | getmasterpwwnd_emb.cpp \ | 121 | getmasterpwwnd_emb.cpp \ |
121 | getmasterpwwndimpl.cpp \ | 122 | getmasterpwwndimpl.cpp \ |
122 | globalstuff.cpp \ | 123 | globalstuff.cpp \ |
123 | gpasmanfile.cpp \ | 124 | gpasmanfile.cpp \ |
124 | htmlgen.cpp \ | 125 | htmlgen.cpp \ |
125 | ipc.cpp \ | 126 | ipc.cpp \ |
126 | listobjselectwnd.cpp \ | 127 | listobjselectwnd.cpp \ |
127 | listviewpwm.cpp \ | 128 | listviewpwm.cpp \ |
128 | main.cpp \ | 129 | main.cpp \ |
129 | pwgenwnd_emb.cpp \ | 130 | pwgenwnd_emb.cpp \ |
130 | pwgenwndimpl.cpp \ | 131 | pwgenwndimpl.cpp \ |
131 | pwm.cpp \ | 132 | pwm.cpp \ |
132 | pwmdoc.cpp \ | 133 | pwmdoc.cpp \ |
133 | pwmdocui.cpp \ | 134 | pwmdocui.cpp \ |
134 | pwmexception.cpp \ | 135 | pwmexception.cpp \ |
135 | pwminit.cpp \ | 136 | pwminit.cpp \ |
136 | pwmprefs.cpp \ | 137 | pwmprefs.cpp \ |
137 | pwmtray.cpp \ | 138 | pwmtray.cpp \ |
138 | pwmview.cpp \ | 139 | pwmview.cpp \ |
139 | pwmviewstyle_0.cpp \ | 140 | pwmviewstyle_0.cpp \ |
diff --git a/pwmanager/pwmanager/pwmdoc.cpp b/pwmanager/pwmanager/pwmdoc.cpp index c167c2c..1b6d36f 100644 --- a/pwmanager/pwmanager/pwmdoc.cpp +++ b/pwmanager/pwmanager/pwmdoc.cpp | |||
@@ -1,176 +1,174 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | * * | 2 | * * |
3 | * copyright (C) 2003, 2004 by Michael Buesch * | 3 | * copyright (C) 2003, 2004 by Michael Buesch * |
4 | * email: mbuesch@freenet.de * | 4 | * email: mbuesch@freenet.de * |
5 | * * | 5 | * * |
6 | * This program is free software; you can redistribute it and/or modify * | 6 | * This program is free software; you can redistribute it and/or modify * |
7 | * it under the terms of the GNU General Public License version 2 * | 7 | * it under the terms of the GNU General Public License version 2 * |
8 | * as published by the Free Software Foundation. * | 8 | * as published by the Free Software Foundation. * |
9 | * * | 9 | * * |
10 | ***************************************************************************/ | 10 | ***************************************************************************/ |
11 | 11 | ||
12 | /*************************************************************************** | 12 | /*************************************************************************** |
13 | * copyright (C) 2004 by Ulf Schenk | 13 | * copyright (C) 2004 by Ulf Schenk |
14 | * This file is originaly based on version 2.0 of pwmanager | 14 | * This file is originaly based on version 2.0 of pwmanager |
15 | * and was modified to run on embedded devices that run microkde | 15 | * and was modified to run on embedded devices that run microkde |
16 | * | 16 | * |
17 | * $Id$ | 17 | * $Id$ |
18 | **************************************************************************/ | 18 | **************************************************************************/ |
19 | 19 | ||
20 | #include "pwmdoc.h" | 20 | #include "pwmdoc.h" |
21 | #include "pwmview.h" | 21 | #include "pwmview.h" |
22 | #include "blowfish.h" | 22 | #include "blowfish.h" |
23 | #include "sha1.h" | 23 | #include "sha1.h" |
24 | #include "globalstuff.h" | 24 | #include "globalstuff.h" |
25 | #include "gpasmanfile.h" | 25 | #include "gpasmanfile.h" |
26 | #include "serializer.h" | 26 | #include "serializer.h" |
27 | #include "compressgzip.h" | 27 | #include "compressgzip.h" |
28 | #include "compressbzip2.h" | 28 | #include "compressbzip2.h" |
29 | #include "randomizer.h" | 29 | #include "randomizer.h" |
30 | #include "pwminit.h" | 30 | #include "pwminit.h" |
31 | #ifndef PWM_EMBEDDED | 31 | #ifndef PWM_EMBEDDED |
32 | //US #include "libgryptif.h" | 32 | //US #include "libgryptif.h" |
33 | #else | 33 | #else |
34 | #include "pwmprefs.h" | 34 | #include "pwmprefs.h" |
35 | #include "kglobal.h" | 35 | #include "kglobal.h" |
36 | #endif | 36 | #endif |
37 | 37 | ||
38 | #ifdef CONFIG_KWALLETIF | 38 | #ifdef CONFIG_KWALLETIF |
39 | # include "kwalletemu.h" | 39 | # include "kwalletemu.h" |
40 | #endif // CONFIG_KWALLETIF | 40 | #endif // CONFIG_KWALLETIF |
41 | 41 | ||
42 | #include <qdatetime.h> | 42 | #include <qdatetime.h> |
43 | #include <qsize.h> | 43 | #include <qsize.h> |
44 | #include <qfileinfo.h> | 44 | #include <qfileinfo.h> |
45 | #include <qfile.h> | 45 | #include <qfile.h> |
46 | 46 | ||
47 | #define __USE_GNU | ||
48 | #define _GNU_SOURCE | ||
49 | #include <stdio.h> | 47 | #include <stdio.h> |
50 | #include <stdlib.h> | 48 | #include <stdlib.h> |
51 | #include <errno.h> | 49 | #include <errno.h> |
52 | #include <string.h> | 50 | #include <string.h> |
53 | //US#include <iostream> | 51 | //US#include <iostream> |
54 | #include <algorithm> | 52 | #include <algorithm> |
55 | #include <sys/types.h> | 53 | #include <sys/types.h> |
56 | #include <sys/stat.h> | 54 | #include <sys/stat.h> |
57 | #include <unistd.h> | 55 | #include <unistd.h> |
58 | #include <stdint.h> | 56 | #include <stdint.h> |
59 | 57 | ||
60 | //TODO: reset to its normal value. | 58 | //TODO: reset to its normal value. |
61 | #define META_CHECK_TIMER_INTERVAL10/*300*/ /* sek */ | 59 | #define META_CHECK_TIMER_INTERVAL10/*300*/ /* sek */ |
62 | 60 | ||
63 | using namespace std; | 61 | using namespace std; |
64 | 62 | ||
65 | 63 | ||
66 | void PwMDocList::add(PwMDoc *doc, const string &id) | 64 | void PwMDocList::add(PwMDoc *doc, const string &id) |
67 | { | 65 | { |
68 | #ifdef PWM_DEBUG | 66 | #ifdef PWM_DEBUG |
69 | // check for existance of object in debug mode only. | 67 | // check for existance of object in debug mode only. |
70 | vector<listItem>::iterator begin = docList.begin(), | 68 | vector<listItem>::iterator begin = docList.begin(), |
71 | end = docList.end(), | 69 | end = docList.end(), |
72 | i = begin; | 70 | i = begin; |
73 | while (i != end) { | 71 | while (i != end) { |
74 | if (i->doc == doc) { | 72 | if (i->doc == doc) { |
75 | BUG(); | 73 | BUG(); |
76 | return; | 74 | return; |
77 | } | 75 | } |
78 | ++i; | 76 | ++i; |
79 | } | 77 | } |
80 | #endif | 78 | #endif |
81 | listItem newItem; | 79 | listItem newItem; |
82 | newItem.doc = doc; | 80 | newItem.doc = doc; |
83 | newItem.docId = id; | 81 | newItem.docId = id; |
84 | docList.push_back(newItem); | 82 | docList.push_back(newItem); |
85 | } | 83 | } |
86 | 84 | ||
87 | void PwMDocList::edit(PwMDoc *doc, const string &newId) | 85 | void PwMDocList::edit(PwMDoc *doc, const string &newId) |
88 | { | 86 | { |
89 | vector<listItem>::iterator begin = docList.begin(), | 87 | vector<listItem>::iterator begin = docList.begin(), |
90 | end = docList.end(), | 88 | end = docList.end(), |
91 | i = begin; | 89 | i = begin; |
92 | while (i != end) { | 90 | while (i != end) { |
93 | if (i->doc == doc) { | 91 | if (i->doc == doc) { |
94 | i->docId = newId; | 92 | i->docId = newId; |
95 | return; | 93 | return; |
96 | } | 94 | } |
97 | ++i; | 95 | ++i; |
98 | } | 96 | } |
99 | } | 97 | } |
100 | 98 | ||
101 | void PwMDocList::del(PwMDoc *doc) | 99 | void PwMDocList::del(PwMDoc *doc) |
102 | { | 100 | { |
103 | vector<listItem>::iterator begin = docList.begin(), | 101 | vector<listItem>::iterator begin = docList.begin(), |
104 | end = docList.end(), | 102 | end = docList.end(), |
105 | i = begin; | 103 | i = begin; |
106 | while (i != end) { | 104 | while (i != end) { |
107 | if (i->doc == doc) { | 105 | if (i->doc == doc) { |
108 | docList.erase(i); | 106 | docList.erase(i); |
109 | return; | 107 | return; |
110 | } | 108 | } |
111 | ++i; | 109 | ++i; |
112 | } | 110 | } |
113 | } | 111 | } |
114 | 112 | ||
115 | bool PwMDocList::find(const string &id, listItem *ret) | 113 | bool PwMDocList::find(const string &id, listItem *ret) |
116 | { | 114 | { |
117 | vector<listItem>::iterator begin = docList.begin(), | 115 | vector<listItem>::iterator begin = docList.begin(), |
118 | end = docList.end(), | 116 | end = docList.end(), |
119 | i = begin; | 117 | i = begin; |
120 | while (i != end) { | 118 | while (i != end) { |
121 | if (i->docId == id) { | 119 | if (i->docId == id) { |
122 | if (ret) | 120 | if (ret) |
123 | *ret = *i; | 121 | *ret = *i; |
124 | return true; | 122 | return true; |
125 | } | 123 | } |
126 | ++i; | 124 | ++i; |
127 | } | 125 | } |
128 | return false; | 126 | return false; |
129 | } | 127 | } |
130 | 128 | ||
131 | 129 | ||
132 | 130 | ||
133 | DocTimer::DocTimer(PwMDoc *_doc) | 131 | DocTimer::DocTimer(PwMDoc *_doc) |
134 | : doc (_doc) | 132 | : doc (_doc) |
135 | , mpwLock (0) | 133 | , mpwLock (0) |
136 | , autoLockLock (0) | 134 | , autoLockLock (0) |
137 | , metaCheckLock (0) | 135 | , metaCheckLock (0) |
138 | { | 136 | { |
139 | mpwTimer = new QTimer; | 137 | mpwTimer = new QTimer; |
140 | autoLockTimer = new QTimer; | 138 | autoLockTimer = new QTimer; |
141 | metaCheckTimer = new QTimer; | 139 | metaCheckTimer = new QTimer; |
142 | connect(mpwTimer, SIGNAL(timeout()), | 140 | connect(mpwTimer, SIGNAL(timeout()), |
143 | this, SLOT(mpwTimeout())); | 141 | this, SLOT(mpwTimeout())); |
144 | connect(autoLockTimer, SIGNAL(timeout()), | 142 | connect(autoLockTimer, SIGNAL(timeout()), |
145 | this, SLOT(autoLockTimeout())); | 143 | this, SLOT(autoLockTimeout())); |
146 | connect(metaCheckTimer, SIGNAL(timeout()), | 144 | connect(metaCheckTimer, SIGNAL(timeout()), |
147 | this, SLOT(metaCheckTimeout())); | 145 | this, SLOT(metaCheckTimeout())); |
148 | } | 146 | } |
149 | 147 | ||
150 | DocTimer::~DocTimer() | 148 | DocTimer::~DocTimer() |
151 | { | 149 | { |
152 | delete mpwTimer; | 150 | delete mpwTimer; |
153 | delete autoLockTimer; | 151 | delete autoLockTimer; |
154 | delete metaCheckTimer; | 152 | delete metaCheckTimer; |
155 | } | 153 | } |
156 | 154 | ||
157 | void DocTimer::start(TimerIDs timer) | 155 | void DocTimer::start(TimerIDs timer) |
158 | { | 156 | { |
159 | switch (timer) { | 157 | switch (timer) { |
160 | case id_mpwTimer: | 158 | case id_mpwTimer: |
161 | if (mpwTimer->isActive()) | 159 | if (mpwTimer->isActive()) |
162 | mpwTimer->stop(); | 160 | mpwTimer->stop(); |
163 | doc->setDocStatFlag(DOC_STAT_UNLOCK_WITHOUT_PW); | 161 | doc->setDocStatFlag(DOC_STAT_UNLOCK_WITHOUT_PW); |
164 | mpwTimer->start(conf()->confGlobPwTimeout() * 1000, true); | 162 | mpwTimer->start(conf()->confGlobPwTimeout() * 1000, true); |
165 | break; | 163 | break; |
166 | case id_autoLockTimer: | 164 | case id_autoLockTimer: |
167 | if (autoLockTimer->isActive()) | 165 | if (autoLockTimer->isActive()) |
168 | autoLockTimer->stop(); | 166 | autoLockTimer->stop(); |
169 | if (conf()->confGlobLockTimeout() > 0) | 167 | if (conf()->confGlobLockTimeout() > 0) |
170 | autoLockTimer->start(conf()->confGlobLockTimeout() * 1000, true); | 168 | autoLockTimer->start(conf()->confGlobLockTimeout() * 1000, true); |
171 | break; | 169 | break; |
172 | case id_metaCheckTimer: | 170 | case id_metaCheckTimer: |
173 | if (metaCheckTimer->isActive()) | 171 | if (metaCheckTimer->isActive()) |
174 | metaCheckTimer->stop(); | 172 | metaCheckTimer->stop(); |
175 | metaCheckTimer->start(META_CHECK_TIMER_INTERVAL * 1000, true); | 173 | metaCheckTimer->start(META_CHECK_TIMER_INTERVAL * 1000, true); |
176 | break; | 174 | break; |
@@ -1046,258 +1044,256 @@ bool PwMDoc::delEntry(const QString &category, unsigned int index, bool dontFlag | |||
1046 | if (!findCategory(category, &cat)) { | 1044 | if (!findCategory(category, &cat)) { |
1047 | BUG(); | 1045 | BUG(); |
1048 | return false; | 1046 | return false; |
1049 | } | 1047 | } |
1050 | 1048 | ||
1051 | return delEntry(cat, index, dontFlagDirty); | 1049 | return delEntry(cat, index, dontFlagDirty); |
1052 | } | 1050 | } |
1053 | 1051 | ||
1054 | bool PwMDoc::delEntry(unsigned int category, unsigned int index, bool dontFlagDirty) | 1052 | bool PwMDoc::delEntry(unsigned int category, unsigned int index, bool dontFlagDirty) |
1055 | { | 1053 | { |
1056 | if (isDeepLocked()) | 1054 | if (isDeepLocked()) |
1057 | return false; | 1055 | return false; |
1058 | if (index > dta[category].d.size() - 1) | 1056 | if (index > dta[category].d.size() - 1) |
1059 | return false; | 1057 | return false; |
1060 | getDataChangedLock(); | 1058 | getDataChangedLock(); |
1061 | if (!lockAt(category, index, false)) { | 1059 | if (!lockAt(category, index, false)) { |
1062 | putDataChangedLock(); | 1060 | putDataChangedLock(); |
1063 | return false; | 1061 | return false; |
1064 | } | 1062 | } |
1065 | putDataChangedLock(); | 1063 | putDataChangedLock(); |
1066 | int lvPos = dta[category].d[index].listViewPos; | 1064 | int lvPos = dta[category].d[index].listViewPos; |
1067 | 1065 | ||
1068 | // delete entry | 1066 | // delete entry |
1069 | dta[category].d.erase(dta[category].d.begin() + index); | 1067 | dta[category].d.erase(dta[category].d.begin() + index); |
1070 | 1068 | ||
1071 | unsigned int i, entries = numEntries(category); | 1069 | unsigned int i, entries = numEntries(category); |
1072 | if (!entries) { | 1070 | if (!entries) { |
1073 | // no more entries in this category, so | 1071 | // no more entries in this category, so |
1074 | // we can delete it, too. | 1072 | // we can delete it, too. |
1075 | BUG_ON(!delCategory(category)); | 1073 | BUG_ON(!delCategory(category)); |
1076 | // delCategory() flags it dirty, so we need not to do so. | 1074 | // delCategory() flags it dirty, so we need not to do so. |
1077 | return true; | 1075 | return true; |
1078 | } | 1076 | } |
1079 | for (i = 0; i < entries; ++i) { | 1077 | for (i = 0; i < entries; ++i) { |
1080 | // decrement all listViewPositions that are greater than the deleted. | 1078 | // decrement all listViewPositions that are greater than the deleted. |
1081 | if (dta[category].d[i].listViewPos > lvPos) | 1079 | if (dta[category].d[i].listViewPos > lvPos) |
1082 | --dta[category].d[i].listViewPos; | 1080 | --dta[category].d[i].listViewPos; |
1083 | } | 1081 | } |
1084 | 1082 | ||
1085 | if (!dontFlagDirty) | 1083 | if (!dontFlagDirty) |
1086 | flagDirty(); | 1084 | flagDirty(); |
1087 | return true; | 1085 | return true; |
1088 | } | 1086 | } |
1089 | 1087 | ||
1090 | bool PwMDoc::editEntry(const QString &oldCategory, const QString &newCategory, | 1088 | bool PwMDoc::editEntry(const QString &oldCategory, const QString &newCategory, |
1091 | unsigned int index, PwMDataItem *d, bool updateMeta) | 1089 | unsigned int index, PwMDataItem *d, bool updateMeta) |
1092 | { | 1090 | { |
1093 | PWM_ASSERT(d); | 1091 | PWM_ASSERT(d); |
1094 | unsigned int oldCat = 0; | 1092 | unsigned int oldCat = 0; |
1095 | 1093 | ||
1096 | if (!findCategory(oldCategory, &oldCat)) { | 1094 | if (!findCategory(oldCategory, &oldCat)) { |
1097 | BUG(); | 1095 | BUG(); |
1098 | return false; | 1096 | return false; |
1099 | } | 1097 | } |
1100 | 1098 | ||
1101 | return editEntry(oldCat, newCategory, index, d, updateMeta); | 1099 | return editEntry(oldCat, newCategory, index, d, updateMeta); |
1102 | } | 1100 | } |
1103 | 1101 | ||
1104 | bool PwMDoc::editEntry(unsigned int oldCategory, const QString &newCategory, | 1102 | bool PwMDoc::editEntry(unsigned int oldCategory, const QString &newCategory, |
1105 | unsigned int index, PwMDataItem *d, bool updateMeta) | 1103 | unsigned int index, PwMDataItem *d, bool updateMeta) |
1106 | { | 1104 | { |
1107 | if (isDeepLocked()) | 1105 | if (isDeepLocked()) |
1108 | return false; | 1106 | return false; |
1109 | if (updateMeta) { | 1107 | if (updateMeta) { |
1110 | d->meta.update = QDateTime::currentDateTime(); | 1108 | d->meta.update = QDateTime::currentDateTime(); |
1111 | if (d->meta.create.isNull()) { | 1109 | if (d->meta.create.isNull()) { |
1112 | d->meta.create = d->meta.update; | 1110 | d->meta.create = d->meta.update; |
1113 | } | 1111 | } |
1114 | } | 1112 | } |
1115 | if (dta[oldCategory].name != newCategory.latin1()) { | 1113 | if (dta[oldCategory].name != newCategory.latin1()) { |
1116 | // the user changed the category. | 1114 | // the user changed the category. |
1117 | PwMerror ret; | 1115 | PwMerror ret; |
1118 | d->rev = 0; | 1116 | d->rev = 0; |
1119 | ret = addEntry(newCategory, d, true, false); | 1117 | ret = addEntry(newCategory, d, true, false); |
1120 | if (ret != e_success) | 1118 | if (ret != e_success) |
1121 | return false; | 1119 | return false; |
1122 | if (!delEntry(oldCategory, index, true)) | 1120 | if (!delEntry(oldCategory, index, true)) |
1123 | return false; | 1121 | return false; |
1124 | } else { | 1122 | } else { |
1125 | d->rev = dta[oldCategory].d[index].rev + 1; // increment revision counter. | 1123 | d->rev = dta[oldCategory].d[index].rev + 1; // increment revision counter. |
1126 | dta[oldCategory].d[index] = *d; | 1124 | dta[oldCategory].d[index] = *d; |
1127 | } | 1125 | } |
1128 | flagDirty(); | 1126 | flagDirty(); |
1129 | return true; | 1127 | return true; |
1130 | } | 1128 | } |
1131 | 1129 | ||
1132 | unsigned int PwMDoc::numEntries(const QString &category) | 1130 | unsigned int PwMDoc::numEntries(const QString &category) |
1133 | { | 1131 | { |
1134 | unsigned int cat = 0; | 1132 | unsigned int cat = 0; |
1135 | 1133 | ||
1136 | if (!findCategory(category, &cat)) { | 1134 | if (!findCategory(category, &cat)) { |
1137 | BUG(); | 1135 | BUG(); |
1138 | return 0; | 1136 | return 0; |
1139 | } | 1137 | } |
1140 | 1138 | ||
1141 | return numEntries(cat); | 1139 | return numEntries(cat); |
1142 | } | 1140 | } |
1143 | 1141 | ||
1144 | bool PwMDoc::serializeDta(string *d) | 1142 | bool PwMDoc::serializeDta(string *d) |
1145 | { | 1143 | { |
1146 | PWM_ASSERT(d); | 1144 | PWM_ASSERT(d); |
1147 | Serializer ser; | 1145 | Serializer ser; |
1148 | if (!ser.serialize(dta)) | 1146 | if (!ser.serialize(dta)) |
1149 | return false; | 1147 | return false; |
1150 | d->assign(ser.getXml()); | 1148 | d->assign(ser.getXml()); |
1151 | if (!d->size()) | 1149 | if (!d->size()) |
1152 | return false; | 1150 | return false; |
1153 | return true; | 1151 | return true; |
1154 | } | 1152 | } |
1155 | 1153 | ||
1156 | bool PwMDoc::deSerializeDta(const string *d, bool entriesLocked) | 1154 | bool PwMDoc::deSerializeDta(const string *d, bool entriesLocked) |
1157 | { | 1155 | { |
1158 | PWM_ASSERT(d); | 1156 | PWM_ASSERT(d); |
1159 | #ifndef PWM_EMBEDDED | 1157 | #ifndef PWM_EMBEDDED |
1160 | try { | 1158 | try { |
1161 | 1159 | ||
1162 | Serializer ser(d->c_str()); | 1160 | Serializer ser(d->c_str()); |
1163 | ser.setDefaultLockStat(entriesLocked); | 1161 | ser.setDefaultLockStat(entriesLocked); |
1164 | if (!ser.deSerialize(&dta)) | 1162 | if (!ser.deSerialize(&dta)) |
1165 | return false; | 1163 | return false; |
1166 | } catch (PwMException) { | 1164 | } catch (PwMException) { |
1167 | return false; | 1165 | return false; |
1168 | } | 1166 | } |
1169 | #else | 1167 | #else |
1170 | Serializer ser(d->c_str()); | 1168 | Serializer ser(d->c_str()); |
1171 | ser.setDefaultLockStat(entriesLocked); | 1169 | ser.setDefaultLockStat(entriesLocked); |
1172 | if (!ser.deSerialize(&dta)) | 1170 | if (!ser.deSerialize(&dta)) |
1173 | return false; | 1171 | return false; |
1174 | else | ||
1175 | return false; | ||
1176 | #endif | 1172 | #endif |
1177 | 1173 | ||
1178 | emitDataChanged(this); | 1174 | emitDataChanged(this); |
1179 | return true; | 1175 | return true; |
1180 | } | 1176 | } |
1181 | 1177 | ||
1182 | bool PwMDoc::getEntry(const QString &category, unsigned int index, | 1178 | bool PwMDoc::getEntry(const QString &category, unsigned int index, |
1183 | PwMDataItem * d, bool unlockIfLocked) | 1179 | PwMDataItem * d, bool unlockIfLocked) |
1184 | { | 1180 | { |
1185 | PWM_ASSERT(d); | 1181 | PWM_ASSERT(d); |
1186 | unsigned int cat = 0; | 1182 | unsigned int cat = 0; |
1187 | 1183 | ||
1188 | if (!findCategory(category, &cat)) { | 1184 | if (!findCategory(category, &cat)) { |
1189 | BUG(); | 1185 | BUG(); |
1190 | return false; | 1186 | return false; |
1191 | } | 1187 | } |
1192 | 1188 | ||
1193 | return getEntry(cat, index, d, unlockIfLocked); | 1189 | return getEntry(cat, index, d, unlockIfLocked); |
1194 | } | 1190 | } |
1195 | 1191 | ||
1196 | bool PwMDoc::getEntry(unsigned int category, unsigned int index, | 1192 | bool PwMDoc::getEntry(unsigned int category, unsigned int index, |
1197 | PwMDataItem *d, bool unlockIfLocked) | 1193 | PwMDataItem *d, bool unlockIfLocked) |
1198 | { | 1194 | { |
1199 | if (index > dta[category].d.size() - 1) | 1195 | if (index > dta[category].d.size() - 1) |
1200 | return false; | 1196 | return false; |
1201 | 1197 | ||
1202 | bool locked = isLocked(category, index); | 1198 | bool locked = isLocked(category, index); |
1203 | if (locked) { | 1199 | if (locked) { |
1204 | /* this entry is locked. We don't return a password, | 1200 | /* this entry is locked. We don't return a password, |
1205 | * until it's unlocked by the user by inserting | 1201 | * until it's unlocked by the user by inserting |
1206 | * chipcard or entering the mpw | 1202 | * chipcard or entering the mpw |
1207 | */ | 1203 | */ |
1208 | if (unlockIfLocked) { | 1204 | if (unlockIfLocked) { |
1209 | if (!lockAt(category, index, false)) { | 1205 | if (!lockAt(category, index, false)) { |
1210 | return false; | 1206 | return false; |
1211 | } | 1207 | } |
1212 | locked = false; | 1208 | locked = false; |
1213 | } | 1209 | } |
1214 | } | 1210 | } |
1215 | 1211 | ||
1216 | *d = dta[category].d[index]; | 1212 | *d = dta[category].d[index]; |
1217 | if (locked) | 1213 | if (locked) |
1218 | d->pw = LOCKED_STRING.latin1(); | 1214 | d->pw = LOCKED_STRING.latin1(); |
1219 | 1215 | ||
1220 | return true; | 1216 | return true; |
1221 | } | 1217 | } |
1222 | 1218 | ||
1223 | PwMerror PwMDoc::getCommentByLvp(const QString &category, int listViewPos, | 1219 | PwMerror PwMDoc::getCommentByLvp(const QString &category, int listViewPos, |
1224 | string *foundComment) | 1220 | string *foundComment) |
1225 | { | 1221 | { |
1226 | PWM_ASSERT(foundComment); | 1222 | PWM_ASSERT(foundComment); |
1227 | unsigned int cat = 0; | 1223 | unsigned int cat = 0; |
1228 | 1224 | ||
1229 | if (!findCategory(category, &cat)) | 1225 | if (!findCategory(category, &cat)) |
1230 | return e_invalidArg; | 1226 | return e_invalidArg; |
1231 | 1227 | ||
1232 | unsigned int i, entries = numEntries(cat); | 1228 | unsigned int i, entries = numEntries(cat); |
1233 | for (i = 0; i < entries; ++i) { | 1229 | for (i = 0; i < entries; ++i) { |
1234 | if (dta[cat].d[i].listViewPos == listViewPos) { | 1230 | if (dta[cat].d[i].listViewPos == listViewPos) { |
1235 | *foundComment = dta[cat].d[i].comment; | 1231 | *foundComment = dta[cat].d[i].comment; |
1236 | if (dta[cat].d[i].binary) | 1232 | if (dta[cat].d[i].binary) |
1237 | return e_binEntry; | 1233 | return e_binEntry; |
1238 | return e_normalEntry; | 1234 | return e_normalEntry; |
1239 | } | 1235 | } |
1240 | } | 1236 | } |
1241 | BUG(); | 1237 | BUG(); |
1242 | return e_generic; | 1238 | return e_generic; |
1243 | } | 1239 | } |
1244 | 1240 | ||
1245 | bool PwMDoc::compressDta(string *d, char algo) | 1241 | bool PwMDoc::compressDta(string *d, char algo) |
1246 | { | 1242 | { |
1247 | PWM_ASSERT(d); | 1243 | PWM_ASSERT(d); |
1248 | switch (algo) { | 1244 | switch (algo) { |
1249 | case PWM_COMPRESS_GZIP: { | 1245 | case PWM_COMPRESS_GZIP: { |
1250 | CompressGzip comp; | 1246 | CompressGzip comp; |
1251 | return comp.compress(d); | 1247 | return comp.compress(d); |
1252 | } case PWM_COMPRESS_BZIP2: { | 1248 | } case PWM_COMPRESS_BZIP2: { |
1253 | CompressBzip2 comp; | 1249 | CompressBzip2 comp; |
1254 | return comp.compress(d); | 1250 | return comp.compress(d); |
1255 | } case PWM_COMPRESS_NONE: { | 1251 | } case PWM_COMPRESS_NONE: { |
1256 | return true; | 1252 | return true; |
1257 | } default: { | 1253 | } default: { |
1258 | BUG(); | 1254 | BUG(); |
1259 | } | 1255 | } |
1260 | } | 1256 | } |
1261 | return false; | 1257 | return false; |
1262 | } | 1258 | } |
1263 | 1259 | ||
1264 | bool PwMDoc::decompressDta(string *d, char algo) | 1260 | bool PwMDoc::decompressDta(string *d, char algo) |
1265 | { | 1261 | { |
1266 | PWM_ASSERT(d); | 1262 | PWM_ASSERT(d); |
1267 | switch (algo) { | 1263 | switch (algo) { |
1268 | case PWM_COMPRESS_GZIP: { | 1264 | case PWM_COMPRESS_GZIP: { |
1269 | CompressGzip comp; | 1265 | CompressGzip comp; |
1270 | return comp.decompress(d); | 1266 | return comp.decompress(d); |
1271 | } case PWM_COMPRESS_BZIP2: { | 1267 | } case PWM_COMPRESS_BZIP2: { |
1272 | CompressBzip2 comp; | 1268 | CompressBzip2 comp; |
1273 | return comp.decompress(d); | 1269 | return comp.decompress(d); |
1274 | } case PWM_COMPRESS_NONE: { | 1270 | } case PWM_COMPRESS_NONE: { |
1275 | return true; | 1271 | return true; |
1276 | } | 1272 | } |
1277 | } | 1273 | } |
1278 | return false; | 1274 | return false; |
1279 | } | 1275 | } |
1280 | 1276 | ||
1281 | PwMerror PwMDoc::encrypt(string *d, const QString *pw, QFile *f, char algo) | 1277 | PwMerror PwMDoc::encrypt(string *d, const QString *pw, QFile *f, char algo) |
1282 | { | 1278 | { |
1283 | PWM_ASSERT(d); | 1279 | PWM_ASSERT(d); |
1284 | PWM_ASSERT(pw); | 1280 | PWM_ASSERT(pw); |
1285 | PWM_ASSERT(f); | 1281 | PWM_ASSERT(f); |
1286 | 1282 | ||
1287 | size_t encSize; | 1283 | size_t encSize; |
1288 | byte *encrypted = 0; | 1284 | byte *encrypted = 0; |
1289 | 1285 | ||
1290 | switch (algo) { | 1286 | switch (algo) { |
1291 | case PWM_CRYPT_BLOWFISH: { | 1287 | case PWM_CRYPT_BLOWFISH: { |
1292 | Blowfish::padNull(d); | 1288 | Blowfish::padNull(d); |
1293 | encSize = d->length(); | 1289 | encSize = d->length(); |
1294 | encrypted = new byte[encSize]; | 1290 | encrypted = new byte[encSize]; |
1295 | Blowfish bf; | 1291 | Blowfish bf; |
1296 | if (bf.bf_setkey((byte *) pw->latin1(), pw->length())) { | 1292 | if (bf.bf_setkey((byte *) pw->latin1(), pw->length())) { |
1297 | delete [] encrypted; | 1293 | delete [] encrypted; |
1298 | return e_weakPw; | 1294 | return e_weakPw; |
1299 | } | 1295 | } |
1300 | bf.bf_encrypt((byte *) encrypted, (byte *) d->c_str(), encSize); | 1296 | bf.bf_encrypt((byte *) encrypted, (byte *) d->c_str(), encSize); |
1301 | break; | 1297 | break; |
1302 | } | 1298 | } |
1303 | #ifndef PWM_EMBEDDED | 1299 | #ifndef PWM_EMBEDDED |
diff --git a/pwmanager/pwmanager/pwmprefs.cpp b/pwmanager/pwmanager/pwmprefs.cpp index d3847f6..7fd347f 100644 --- a/pwmanager/pwmanager/pwmprefs.cpp +++ b/pwmanager/pwmanager/pwmprefs.cpp | |||
@@ -1,192 +1,193 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of PwManager/Pi | 2 | This file is part of PwManager/Pi |
3 | Copyright (c) 2004 Ulf Schenk | 3 | Copyright (c) 2004 Ulf Schenk |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | 22 | ||
23 | $Id$ | 23 | $Id$ |
24 | */ | 24 | */ |
25 | 25 | ||
26 | 26 | ||
27 | #include <kconfig.h> | 27 | #include <kconfig.h> |
28 | #include <klocale.h> | 28 | #include <klocale.h> |
29 | #include <kstaticdeleter.h> | 29 | #include <kstaticdeleter.h> |
30 | 30 | ||
31 | #include "pwmprefs.h" | 31 | #include "pwmprefs.h" |
32 | 32 | ||
33 | PWMPrefs *PWMPrefs::sInstance = 0; | 33 | PWMPrefs *PWMPrefs::sInstance = 0; |
34 | static KStaticDeleter<PWMPrefs> staticDeleter; | 34 | static KStaticDeleter<PWMPrefs> staticDeleter; |
35 | 35 | ||
36 | PWMPrefs::PWMPrefs() | 36 | PWMPrefs::PWMPrefs() |
37 | : KPimPrefs("pwmanagerrc") | 37 | : KPimPrefs("pwmanagerrc") |
38 | { | 38 | { |
39 | KPrefs::setCurrentGroup( "Global" ); | 39 | KPrefs::setCurrentGroup( "Global" ); |
40 | 40 | ||
41 | addItemString( "autoStart", &mAutoStart, "" ); | 41 | addItemString( "autoStart", &mAutoStart, "" ); |
42 | addItemString( "browserCommand", &mBrowserCommand, "" ); | 42 | addItemString( "browserCommand", &mBrowserCommand, "" ); |
43 | addItemString( "xtermCommand", &mXTermCommand, CONF_DEFAULT_XTERMCOMMAND); | 43 | addItemString( "xtermCommand", &mXTermCommand, CONF_DEFAULT_XTERMCOMMAND); |
44 | addItemFont( "entryFont", &mEntryFont); | 44 | addItemFont( "entryFont", &mEntryFont); |
45 | addItemInt( "pwTimeout", &mPwTimeout, CONF_DEFAULT_PWTIMEOUT ); | 45 | addItemInt( "pwTimeout", &mPwTimeout, CONF_DEFAULT_PWTIMEOUT ); |
46 | addItemInt( "lockTimeout", &mLockTimeout, CONF_DEFAULT_LOCKTIMEOUT ); | 46 | addItemInt( "lockTimeout", &mLockTimeout, CONF_DEFAULT_LOCKTIMEOUT ); |
47 | addItemInt( "compression", &mCompression, CONF_DEFAULT_COMPRESSION ); | 47 | addItemInt( "compression", &mCompression, CONF_DEFAULT_COMPRESSION ); |
48 | addItemInt( "filePermissions", &mFilePermissions, CONF_DEFAULT_FILEPERMISSIONS ); | 48 | addItemInt( "filePermissions", &mFilePermissions, CONF_DEFAULT_FILEPERMISSIONS ); |
49 | addItemInt( "minimizeLock", &mMinimizeLock, CONF_DEFAULT_MINIMIZELOCK ); | 49 | addItemInt( "minimizeLock", &mMinimizeLock, CONF_DEFAULT_MINIMIZELOCK ); |
50 | addItemBool( "unlockOnOpen", &mUnlockOnOpen, CONF_DEFAULT_UNLOCKONOPEN ); | 50 | addItemBool( "unlockOnOpen", &mUnlockOnOpen, CONF_DEFAULT_UNLOCKONOPEN ); |
51 | addItemBool( "tray", &mTray, CONF_DEFAULT_TRAY ); | 51 | addItemBool( "tray", &mTray, CONF_DEFAULT_TRAY ); |
52 | addItemBool( "makeFileBackup", &mMakeFileBackup, CONF_DEFAULT_MAKEFILEBACKUP ); | 52 | addItemBool( "makeFileBackup", &mMakeFileBackup, CONF_DEFAULT_MAKEFILEBACKUP ); |
53 | addItemBool( "autostartDeepLocked", &mAutostartDeeplocked, CONF_DEFAULT_AUTOSTART_DEEPL ); | 53 | addItemBool( "autostartDeepLocked", &mAutostartDeeplocked, CONF_DEFAULT_AUTOSTART_DEEPL ); |
54 | addItemBool( "autoDeepLock", &mAutoDeeplock, CONF_DEFAULT_AUTODEEPLOCK ); | 54 | addItemBool( "autoDeepLock", &mAutoDeeplock, CONF_DEFAULT_AUTODEEPLOCK ); |
55 | addItemBool( "kwalletEmu", &mKWalletEmu, CONF_DEFAULT_KWALLETEMU ); | 55 | addItemBool( "kwalletEmu", &mKWalletEmu, CONF_DEFAULT_KWALLETEMU ); |
56 | addItemBool( "newEntrLockStat", &mNewEntrLockStat, CONF_DEFAULT_NEWENTRLOCKSTAT ); | 56 | addItemBool( "newEntrLockStat", &mNewEntrLockStat, CONF_DEFAULT_NEWENTRLOCKSTAT ); |
57 | 57 | ||
58 | KPrefs::setCurrentGroup( "Wnd" ); | 58 | KPrefs::setCurrentGroup( "Wnd" ); |
59 | 59 | ||
60 | addItemSize( "MainWndSize", &mMainWndSize); | 60 | addItemSize( "MainWndSize", &mMainWndSize); |
61 | addItemInt( "MainViewStyle", &mMainViewStyle, CONF_DEFAULT_MAINVIEWSTYLE ); | 61 | addItemInt( "MainViewStyle", &mMainViewStyle, CONF_DEFAULT_MAINVIEWSTYLE ); |
62 | addItemBool( "autoMinimizeOnStart", &mAutoMinimizeOnStart, CONF_DEFAULT_AUTOMINIMIZE ); | 62 | addItemBool( "autoMinimizeOnStart", &mAutoMinimizeOnStart, CONF_DEFAULT_AUTOMINIMIZE ); |
63 | addItemBool( "close", &mClose, CONF_DEFAULT_WNDCLOSE ); | 63 | addItemBool( "close", &mClose, CONF_DEFAULT_WNDCLOSE ); |
64 | addItemIntList( "CommentSplitter", &mCommentSplitter ); | 64 | addItemIntList( "commentSplitter", &mCommentSplitter ); |
65 | addItemIntList( "categorySplitter", &mCategorySplitter ); | ||
65 | } | 66 | } |
66 | 67 | ||
67 | PWMPrefs::~PWMPrefs() | 68 | PWMPrefs::~PWMPrefs() |
68 | { | 69 | { |
69 | } | 70 | } |
70 | 71 | ||
71 | PWMPrefs *PWMPrefs::instance() | 72 | PWMPrefs *PWMPrefs::instance() |
72 | { | 73 | { |
73 | if ( !sInstance ) { | 74 | if ( !sInstance ) { |
74 | #ifdef PWM_EMBEDDED | 75 | #ifdef PWM_EMBEDDED |
75 | sInstance = staticDeleter.setObject( new PWMPrefs() ); | 76 | sInstance = staticDeleter.setObject( new PWMPrefs() ); |
76 | #else //PWM_EMBEDDED | 77 | #else //PWM_EMBEDDED |
77 | //US the following line has changed ???. Why | 78 | //US the following line has changed ???. Why |
78 | staticDeleter.setObject( sInstance, new PWMPrefs() ); | 79 | staticDeleter.setObject( sInstance, new PWMPrefs() ); |
79 | #endif //KAB_EMBEDDED | 80 | #endif //KAB_EMBEDDED |
80 | sInstance->readConfig(); | 81 | sInstance->readConfig(); |
81 | } | 82 | } |
82 | 83 | ||
83 | return sInstance; | 84 | return sInstance; |
84 | } | 85 | } |
85 | 86 | ||
86 | // US introduce a nonconst way to return the config object. | 87 | // US introduce a nonconst way to return the config object. |
87 | KConfig* PWMPrefs::getConfig() | 88 | KConfig* PWMPrefs::getConfig() |
88 | { | 89 | { |
89 | return config(); | 90 | return config(); |
90 | } | 91 | } |
91 | 92 | ||
92 | /******************************************************************* | 93 | /******************************************************************* |
93 | * functions for reading the configuration settings | 94 | * functions for reading the configuration settings |
94 | *******************************************************************/ | 95 | *******************************************************************/ |
95 | 96 | ||
96 | QString PWMPrefs::confGlobAutoStart() | 97 | QString PWMPrefs::confGlobAutoStart() |
97 | { | 98 | { |
98 | return mAutoStart; | 99 | return mAutoStart; |
99 | } | 100 | } |
100 | 101 | ||
101 | QString PWMPrefs::confGlobBrowserCommand() | 102 | QString PWMPrefs::confGlobBrowserCommand() |
102 | { | 103 | { |
103 | return mBrowserCommand; | 104 | return mBrowserCommand; |
104 | } | 105 | } |
105 | 106 | ||
106 | QString PWMPrefs::confGlobXtermCommand() | 107 | QString PWMPrefs::confGlobXtermCommand() |
107 | { | 108 | { |
108 | return mXTermCommand; | 109 | return mXTermCommand; |
109 | } | 110 | } |
110 | 111 | ||
111 | QFont PWMPrefs::confGlobEntryFont() | 112 | QFont PWMPrefs::confGlobEntryFont() |
112 | { | 113 | { |
113 | return mEntryFont; | 114 | return mEntryFont; |
114 | } | 115 | } |
115 | 116 | ||
116 | int PWMPrefs::confGlobPwTimeout() | 117 | int PWMPrefs::confGlobPwTimeout() |
117 | { | 118 | { |
118 | return mPwTimeout; | 119 | return mPwTimeout; |
119 | } | 120 | } |
120 | 121 | ||
121 | int PWMPrefs::confGlobLockTimeout() | 122 | int PWMPrefs::confGlobLockTimeout() |
122 | { | 123 | { |
123 | return mLockTimeout; | 124 | return mLockTimeout; |
124 | } | 125 | } |
125 | 126 | ||
126 | int PWMPrefs::confGlobCompression() | 127 | int PWMPrefs::confGlobCompression() |
127 | { | 128 | { |
128 | return mCompression; | 129 | return mCompression; |
129 | } | 130 | } |
130 | 131 | ||
131 | int PWMPrefs::confGlobFilePermissions() | 132 | int PWMPrefs::confGlobFilePermissions() |
132 | { | 133 | { |
133 | return mFilePermissions; | 134 | return mFilePermissions; |
134 | } | 135 | } |
135 | 136 | ||
136 | int PWMPrefs::confGlobMinimizeLock() | 137 | int PWMPrefs::confGlobMinimizeLock() |
137 | { | 138 | { |
138 | return mMinimizeLock; | 139 | return mMinimizeLock; |
139 | } | 140 | } |
140 | 141 | ||
141 | bool PWMPrefs::confGlobUnlockOnOpen() | 142 | bool PWMPrefs::confGlobUnlockOnOpen() |
142 | { | 143 | { |
143 | return mUnlockOnOpen; | 144 | return mUnlockOnOpen; |
144 | } | 145 | } |
145 | 146 | ||
146 | bool PWMPrefs::confGlobTray() | 147 | bool PWMPrefs::confGlobTray() |
147 | { | 148 | { |
148 | return mTray; | 149 | return mTray; |
149 | } | 150 | } |
150 | 151 | ||
151 | bool PWMPrefs::confGlobMakeFileBackup() | 152 | bool PWMPrefs::confGlobMakeFileBackup() |
152 | { | 153 | { |
153 | return mMakeFileBackup; | 154 | return mMakeFileBackup; |
154 | } | 155 | } |
155 | 156 | ||
156 | bool PWMPrefs::confGlobAutostartDeepLocked() | 157 | bool PWMPrefs::confGlobAutostartDeepLocked() |
157 | { | 158 | { |
158 | return mAutostartDeeplocked; | 159 | return mAutostartDeeplocked; |
159 | } | 160 | } |
160 | 161 | ||
161 | bool PWMPrefs::confGlobAutoDeepLock() | 162 | bool PWMPrefs::confGlobAutoDeepLock() |
162 | { | 163 | { |
163 | return mAutoDeeplock; | 164 | return mAutoDeeplock; |
164 | } | 165 | } |
165 | 166 | ||
166 | bool PWMPrefs::confGlobKwalletEmu() | 167 | bool PWMPrefs::confGlobKwalletEmu() |
167 | { | 168 | { |
168 | return mKWalletEmu; | 169 | return mKWalletEmu; |
169 | } | 170 | } |
170 | 171 | ||
171 | bool PWMPrefs::confGlobNewEntrLockStat() | 172 | bool PWMPrefs::confGlobNewEntrLockStat() |
172 | { | 173 | { |
173 | return mNewEntrLockStat; | 174 | return mNewEntrLockStat; |
174 | } | 175 | } |
175 | 176 | ||
176 | QSize PWMPrefs::confWndMainWndSize() | 177 | QSize PWMPrefs::confWndMainWndSize() |
177 | { | 178 | { |
178 | return mMainWndSize; | 179 | return mMainWndSize; |
179 | } | 180 | } |
180 | 181 | ||
181 | int PWMPrefs::confWndMainViewStyle() | 182 | int PWMPrefs::confWndMainViewStyle() |
182 | { | 183 | { |
183 | return mMainViewStyle; | 184 | return mMainViewStyle; |
184 | } | 185 | } |
185 | 186 | ||
186 | bool PWMPrefs::confWndAutoMinimizeOnStart() | 187 | bool PWMPrefs::confWndAutoMinimizeOnStart() |
187 | { | 188 | { |
188 | return mAutoMinimizeOnStart; | 189 | return mAutoMinimizeOnStart; |
189 | } | 190 | } |
190 | 191 | ||
191 | bool PWMPrefs::confWndClose() | 192 | bool PWMPrefs::confWndClose() |
192 | { | 193 | { |
diff --git a/pwmanager/pwmanager/pwmprefs.h b/pwmanager/pwmanager/pwmprefs.h index 6a89d10..9fed7d2 100644 --- a/pwmanager/pwmanager/pwmprefs.h +++ b/pwmanager/pwmanager/pwmprefs.h | |||
@@ -11,140 +11,141 @@ | |||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | 22 | ||
23 | $Id$ | 23 | $Id$ |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #ifndef PWMPREFS_H | 26 | #ifndef PWMPREFS_H |
27 | #define PWMPREFS_H | 27 | #define PWMPREFS_H |
28 | 28 | ||
29 | #include <qstringlist.h> | 29 | #include <qstringlist.h> |
30 | #include <qsize.h> | 30 | #include <qsize.h> |
31 | 31 | ||
32 | #include <kpimprefs.h> | 32 | #include <kpimprefs.h> |
33 | 33 | ||
34 | class KConfig; | 34 | class KConfig; |
35 | 35 | ||
36 | #define conf() PWMPrefs::instance() | 36 | #define conf() PWMPrefs::instance() |
37 | 37 | ||
38 | 38 | ||
39 | #define CONF_DEFAULT_PWTIMEOUT 10/* 10 sec */ | 39 | #define CONF_DEFAULT_PWTIMEOUT 10/* 10 sec */ |
40 | #define CONF_DEFAULT_LOCKTIMEOUT 0/* 0 == disable */ | 40 | #define CONF_DEFAULT_LOCKTIMEOUT 0/* 0 == disable */ |
41 | #define CONF_DEFAULT_TRAY true | 41 | #define CONF_DEFAULT_TRAY true |
42 | #define CONF_DEFAULT_UNLOCKONOPENfalse | 42 | #define CONF_DEFAULT_UNLOCKONOPENfalse |
43 | #define CONF_DEFAULT_MAINVIEWSTYLE0 | 43 | #define CONF_DEFAULT_MAINVIEWSTYLE0 |
44 | #define CONF_DEFAULT_COMPRESSION 0x01/* gzip */ | 44 | #define CONF_DEFAULT_COMPRESSION 0x01/* gzip */ |
45 | #define CONF_DEFAULT_AUTOMINIMIZEfalse | 45 | #define CONF_DEFAULT_AUTOMINIMIZEfalse |
46 | #define CONF_DEFAULT_BROWSERCOMMAND"" | 46 | #define CONF_DEFAULT_BROWSERCOMMAND"" |
47 | #define CONF_DEFAULT_XTERMCOMMAND"konsole -e" | 47 | #define CONF_DEFAULT_XTERMCOMMAND"konsole -e" |
48 | #define CONF_DEFAULT_FILEPERMISSIONS0600 | 48 | #define CONF_DEFAULT_FILEPERMISSIONS0600 |
49 | #define CONF_DEFAULT_MAKEFILEBACKUPfalse | 49 | #define CONF_DEFAULT_MAKEFILEBACKUPfalse |
50 | #define CONF_DEFAULT_AUTOSTART_DEEPLtrue | 50 | #define CONF_DEFAULT_AUTOSTART_DEEPLtrue |
51 | #define CONF_DEFAULT_AUTODEEPLOCKtrue | 51 | #define CONF_DEFAULT_AUTODEEPLOCKtrue |
52 | #define CONF_DEFAULT_KWALLETEMU true | 52 | #define CONF_DEFAULT_KWALLETEMU true |
53 | #define CONF_DEFAULT_MINIMIZELOCK 2/* deep-lock */ | 53 | #define CONF_DEFAULT_MINIMIZELOCK 2/* deep-lock */ |
54 | #define CONF_DEFAULT_NEWENTRLOCKSTAT true/* locked */ | 54 | #define CONF_DEFAULT_NEWENTRLOCKSTAT true/* locked */ |
55 | #define CONF_DEFAULT_WNDCLOSE true/* don't minimize to tray */ | 55 | #define CONF_DEFAULT_WNDCLOSE true/* don't minimize to tray */ |
56 | 56 | ||
57 | class PWMPrefs : public KPimPrefs | 57 | class PWMPrefs : public KPimPrefs |
58 | { | 58 | { |
59 | public: | 59 | public: |
60 | virtual ~PWMPrefs(); | 60 | virtual ~PWMPrefs(); |
61 | 61 | ||
62 | static PWMPrefs *instance(); | 62 | static PWMPrefs *instance(); |
63 | 63 | ||
64 | public: | 64 | public: |
65 | /* functions for reading the configuration settings */ | 65 | /* functions for reading the configuration settings */ |
66 | /* GLOBAL */ | 66 | /* GLOBAL */ |
67 | QString confGlobAutoStart(); | 67 | QString confGlobAutoStart(); |
68 | QString confGlobBrowserCommand(); | 68 | QString confGlobBrowserCommand(); |
69 | QString confGlobXtermCommand(); | 69 | QString confGlobXtermCommand(); |
70 | QFont confGlobEntryFont(); | 70 | QFont confGlobEntryFont(); |
71 | int confGlobPwTimeout(); | 71 | int confGlobPwTimeout(); |
72 | int confGlobLockTimeout(); | 72 | int confGlobLockTimeout(); |
73 | int confGlobCompression(); | 73 | int confGlobCompression(); |
74 | int confGlobFilePermissions(); | 74 | int confGlobFilePermissions(); |
75 | int confGlobMinimizeLock(); | 75 | int confGlobMinimizeLock(); |
76 | bool confGlobUnlockOnOpen(); | 76 | bool confGlobUnlockOnOpen(); |
77 | bool confGlobTray(); | 77 | bool confGlobTray(); |
78 | bool confGlobMakeFileBackup(); | 78 | bool confGlobMakeFileBackup(); |
79 | bool confGlobAutostartDeepLocked(); | 79 | bool confGlobAutostartDeepLocked(); |
80 | bool confGlobAutoDeepLock(); | 80 | bool confGlobAutoDeepLock(); |
81 | bool confGlobKwalletEmu(); | 81 | bool confGlobKwalletEmu(); |
82 | bool confGlobNewEntrLockStat(); | 82 | bool confGlobNewEntrLockStat(); |
83 | /* WND */ | 83 | /* WND */ |
84 | QSize confWndMainWndSize(); | 84 | QSize confWndMainWndSize(); |
85 | int confWndMainViewStyle(); | 85 | int confWndMainViewStyle(); |
86 | bool confWndAutoMinimizeOnStart(); | 86 | bool confWndAutoMinimizeOnStart(); |
87 | bool confWndClose(); | 87 | bool confWndClose(); |
88 | 88 | ||
89 | public: | 89 | public: |
90 | /* functions for writing the configuration settings */ | 90 | /* functions for writing the configuration settings */ |
91 | /* GLOBAL */ | 91 | /* GLOBAL */ |
92 | void confGlobAutoStart(const QString &e); | 92 | void confGlobAutoStart(const QString &e); |
93 | void confGlobBrowserCommand(const QString &e); | 93 | void confGlobBrowserCommand(const QString &e); |
94 | void confGlobXtermCommand(const QString &e); | 94 | void confGlobXtermCommand(const QString &e); |
95 | void confGlobEntryFont(const QFont &e); | 95 | void confGlobEntryFont(const QFont &e); |
96 | void confGlobPwTimeout(int e); | 96 | void confGlobPwTimeout(int e); |
97 | void confGlobLockTimeout(int e); | 97 | void confGlobLockTimeout(int e); |
98 | void confGlobCompression(int e); | 98 | void confGlobCompression(int e); |
99 | void confGlobFilePermissions(int e); | 99 | void confGlobFilePermissions(int e); |
100 | void confGlobMinimizeLock(int e); | 100 | void confGlobMinimizeLock(int e); |
101 | void confGlobUnlockOnOpen(bool e); | 101 | void confGlobUnlockOnOpen(bool e); |
102 | void confGlobTray(bool e); | 102 | void confGlobTray(bool e); |
103 | void confGlobMakeFileBackup(bool e); | 103 | void confGlobMakeFileBackup(bool e); |
104 | void confGlobAutostartDeepLocked(bool e); | 104 | void confGlobAutostartDeepLocked(bool e); |
105 | void confGlobAutoDeepLock(bool e); | 105 | void confGlobAutoDeepLock(bool e); |
106 | void confGlobKwalletEmu(bool e); | 106 | void confGlobKwalletEmu(bool e); |
107 | void confGlobNewEntrLockStat(bool e); | 107 | void confGlobNewEntrLockStat(bool e); |
108 | /* WND */ | 108 | /* WND */ |
109 | void confWndMainWndSize(const QSize &e); | 109 | void confWndMainWndSize(const QSize &e); |
110 | void confWndMainViewStyle(int e); | 110 | void confWndMainViewStyle(int e); |
111 | void confWndAutoMinimizeOnStart(bool e); | 111 | void confWndAutoMinimizeOnStart(bool e); |
112 | void confWndClose(bool e); | 112 | void confWndClose(bool e); |
113 | 113 | ||
114 | 114 | ||
115 | 115 | ||
116 | QString mAutoStart; | 116 | QString mAutoStart; |
117 | QString mBrowserCommand; | 117 | QString mBrowserCommand; |
118 | QString mXTermCommand; | 118 | QString mXTermCommand; |
119 | QFont mEntryFont; | 119 | QFont mEntryFont; |
120 | int mPwTimeout; | 120 | int mPwTimeout; |
121 | int mLockTimeout; | 121 | int mLockTimeout; |
122 | int mCompression; | 122 | int mCompression; |
123 | int mFilePermissions; | 123 | int mFilePermissions; |
124 | int mMinimizeLock; | 124 | int mMinimizeLock; |
125 | bool mUnlockOnOpen; | 125 | bool mUnlockOnOpen; |
126 | bool mTray; | 126 | bool mTray; |
127 | bool mMakeFileBackup; | 127 | bool mMakeFileBackup; |
128 | bool mAutostartDeeplocked; | 128 | bool mAutostartDeeplocked; |
129 | bool mAutoDeeplock; | 129 | bool mAutoDeeplock; |
130 | bool mKWalletEmu; | 130 | bool mKWalletEmu; |
131 | bool mNewEntrLockStat; | 131 | bool mNewEntrLockStat; |
132 | QSize mMainWndSize; | 132 | QSize mMainWndSize; |
133 | int mMainViewStyle; | 133 | int mMainViewStyle; |
134 | bool mAutoMinimizeOnStart; | 134 | bool mAutoMinimizeOnStart; |
135 | bool mClose; | 135 | bool mClose; |
136 | 136 | ||
137 | //US ENH | 137 | //US ENH |
138 | QValueList<int> mCommentSplitter; | 138 | QValueList<int> mCommentSplitter; |
139 | QValueList<int> mCategorySplitter; | ||
139 | 140 | ||
140 | 141 | ||
141 | // US introduce a nonconst way to return the config object. | 142 | // US introduce a nonconst way to return the config object. |
142 | KConfig* getConfig(); | 143 | KConfig* getConfig(); |
143 | 144 | ||
144 | private: | 145 | private: |
145 | PWMPrefs(); | 146 | PWMPrefs(); |
146 | 147 | ||
147 | static PWMPrefs *sInstance; | 148 | static PWMPrefs *sInstance; |
148 | }; | 149 | }; |
149 | 150 | ||
150 | #endif | 151 | #endif |
diff --git a/pwmanager/pwmanager/pwmviewstyle.cpp b/pwmanager/pwmanager/pwmviewstyle.cpp index 9704615..0af1473 100644 --- a/pwmanager/pwmanager/pwmviewstyle.cpp +++ b/pwmanager/pwmanager/pwmviewstyle.cpp | |||
@@ -1,232 +1,232 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | * * | 2 | * * |
3 | * copyright (C) 2004 by Michael Buesch * | 3 | * copyright (C) 2004 by Michael Buesch * |
4 | * email: mbuesch@freenet.de * | 4 | * email: mbuesch@freenet.de * |
5 | * * | 5 | * * |
6 | * This program is free software; you can redistribute it and/or modify * | 6 | * This program is free software; you can redistribute it and/or modify * |
7 | * it under the terms of the GNU General Public License version 2 * | 7 | * it under the terms of the GNU General Public License version 2 * |
8 | * as published by the Free Software Foundation. * | 8 | * as published by the Free Software Foundation. * |
9 | * * | 9 | * * |
10 | ***************************************************************************/ | 10 | ***************************************************************************/ |
11 | 11 | ||
12 | 12 | ||
13 | /*************************************************************************** | 13 | /*************************************************************************** |
14 | * copyright (C) 2004 by Ulf Schenk | 14 | * copyright (C) 2004 by Ulf Schenk |
15 | * This file is originaly based on version 1.0.1 of pwmanager | 15 | * This file is originaly based on version 1.0.1 of pwmanager |
16 | * and was modified to run on embedded devices that run microkde | 16 | * and was modified to run on embedded devices that run microkde |
17 | * | 17 | * |
18 | * $Id$ | 18 | * $Id$ |
19 | **************************************************************************/ | 19 | **************************************************************************/ |
20 | 20 | ||
21 | #include "pwmviewstyle.h" | 21 | #include "pwmviewstyle.h" |
22 | #include "pwmexception.h" | 22 | #include "pwmexception.h" |
23 | #include "pwmviewstyle_0.h" | 23 | #include "pwmviewstyle_0.h" |
24 | #include "pwmviewstyle_1.h" | 24 | #include "pwmviewstyle_1.h" |
25 | #include "listviewpwm.h" | 25 | #include "listviewpwm.h" |
26 | #include "pwmview.h" | 26 | #include "pwmview.h" |
27 | #include "commentbox.h" | 27 | #include "commentbox.h" |
28 | #ifndef PWM_EMBEDDED | 28 | #ifndef PWM_EMBEDDED |
29 | #include "configuration.h" | 29 | #include "configuration.h" |
30 | #else | 30 | #else |
31 | #include "pwmprefs.h" | 31 | #include "pwmprefs.h" |
32 | #endif | 32 | #endif |
33 | 33 | ||
34 | PwMViewStyle::PwMViewStyle(QWidget *parent, const char *name) | 34 | PwMViewStyle::PwMViewStyle(QWidget *parent, const char *name) |
35 | : QWidget(parent, name) | 35 | : QWidget(parent, name) |
36 | { | 36 | { |
37 | curStyle = style_notset; | 37 | curStyle = style_notset; |
38 | s0 = 0; | 38 | s0 = 0; |
39 | s1 = 0; | 39 | s1 = 0; |
40 | } | 40 | } |
41 | 41 | ||
42 | PwMViewStyle::~PwMViewStyle() | 42 | PwMViewStyle::~PwMViewStyle() |
43 | { | 43 | { |
44 | //US ENH : store the size of the listviewcolumns | 44 | //US ENH : store the size of the listviewcolumns |
45 | switch (curStyle) | 45 | switch (curStyle) |
46 | { | 46 | { |
47 | case style_0: | 47 | case style_0: |
48 | s0->saveSettings(PWMPrefs::instance()); | 48 | s0->saveSettings(PWMPrefs::instance()); |
49 | break; | 49 | break; |
50 | case style_1: | 50 | case style_1: |
51 | s1->saveSettings(PWMPrefs::instance()); | 51 | s1->saveSettings(PWMPrefs::instance()); |
52 | break; | 52 | break; |
53 | default: | 53 | default: |
54 | BUG(); | 54 | BUG(); |
55 | } | 55 | } |
56 | 56 | ||
57 | 57 | ||
58 | PWMPrefs::instance()->getConfig()->sync(); | 58 | PWMPrefs::instance()->writeConfig(); |
59 | 59 | ||
60 | delete_ifnot_null(s0); | 60 | delete_ifnot_null(s0); |
61 | delete_ifnot_null(s1); | 61 | delete_ifnot_null(s1); |
62 | } | 62 | } |
63 | 63 | ||
64 | void PwMViewStyle::initStyle(style_t style) | 64 | void PwMViewStyle::initStyle(style_t style) |
65 | { | 65 | { |
66 | printDebug(string("initializing style ") + tostr(style)); | 66 | printDebug(string("initializing style ") + tostr(style)); |
67 | bool wasMaximized = v->isMaximized(); | 67 | bool wasMaximized = v->isMaximized(); |
68 | if (v->isVisible()) | 68 | if (v->isVisible()) |
69 | v->hide(); | 69 | v->hide(); |
70 | switch (style) { | 70 | switch (style) { |
71 | case style_0: | 71 | case style_0: |
72 | delete_ifnot_null(s0); | 72 | delete_ifnot_null(s0); |
73 | delete_ifnot_null(s1); | 73 | delete_ifnot_null(s1); |
74 | s0 = new PwMViewStyle_0(v); | 74 | s0 = new PwMViewStyle_0(v); |
75 | lv = s0->getLv(); | 75 | lv = s0->getLv(); |
76 | commentBox = s0->getCommentBox(); | 76 | commentBox = s0->getCommentBox(); |
77 | break; | 77 | break; |
78 | case style_1: | 78 | case style_1: |
79 | delete_ifnot_null(s0); | 79 | delete_ifnot_null(s0); |
80 | delete_ifnot_null(s1); | 80 | delete_ifnot_null(s1); |
81 | s1 = new PwMViewStyle_1(v); | 81 | s1 = new PwMViewStyle_1(v); |
82 | lv = s1->getLv(); | 82 | lv = s1->getLv(); |
83 | commentBox = s1->getCommentBox(); | 83 | commentBox = s1->getCommentBox(); |
84 | break; | 84 | break; |
85 | default: | 85 | default: |
86 | BUG(); | 86 | BUG(); |
87 | return; | 87 | return; |
88 | } | 88 | } |
89 | curStyle = style; | 89 | curStyle = style; |
90 | connect(lv, SIGNAL(pressed(QListViewItem *)), | 90 | connect(lv, SIGNAL(pressed(QListViewItem *)), |
91 | v, SLOT(handleToggle(QListViewItem *))); | 91 | v, SLOT(handleToggle(QListViewItem *))); |
92 | connect(lv, SIGNAL(rightButtonClicked(QListViewItem *, const QPoint &, int)), | 92 | connect(lv, SIGNAL(rightButtonClicked(QListViewItem *, const QPoint &, int)), |
93 | v, SLOT(handleRightClick(QListViewItem *, const QPoint &, int))); | 93 | v, SLOT(handleRightClick(QListViewItem *, const QPoint &, int))); |
94 | connect(lv, SIGNAL(clicked(QListViewItem *)), | 94 | connect(lv, SIGNAL(clicked(QListViewItem *)), |
95 | v, SLOT(refreshCommentTextEdit(QListViewItem *))); | 95 | v, SLOT(refreshCommentTextEdit(QListViewItem *))); |
96 | lv->addColumn(i18n("Description"), 180); | 96 | lv->addColumn(i18n("Description"), 180); |
97 | lv->addColumn(i18n("Username"), 150); | 97 | lv->addColumn(i18n("Username"), 150); |
98 | lv->addColumn(i18n("Password"), 150); | 98 | lv->addColumn(i18n("Password"), 150); |
99 | lv->addColumn(i18n("URL"), 180); | 99 | lv->addColumn(i18n("URL"), 180); |
100 | lv->addColumn(i18n("Launcher"), 120); | 100 | lv->addColumn(i18n("Launcher"), 120); |
101 | v->tmpReEnableSort(); | 101 | v->tmpReEnableSort(); |
102 | 102 | ||
103 | //US ENH : load the size of the listviewcolumns | 103 | //US ENH : load the size of the listviewcolumns |
104 | switch (style) | 104 | switch (curStyle) |
105 | { | 105 | { |
106 | case style_0: | 106 | case style_0: |
107 | s0->restoreSettings(PWMPrefs::instance()); | 107 | s0->restoreSettings(PWMPrefs::instance()); |
108 | break; | 108 | break; |
109 | case style_1: | 109 | case style_1: |
110 | s1->restoreSettings(PWMPrefs::instance()); | 110 | s1->restoreSettings(PWMPrefs::instance()); |
111 | break; | 111 | break; |
112 | default: | 112 | default: |
113 | BUG(); | 113 | BUG(); |
114 | } | 114 | } |
115 | 115 | ||
116 | resizeView(v->size()); | 116 | resizeView(v->size()); |
117 | v->updateView(); | 117 | v->updateView(); |
118 | if (wasMaximized) { | 118 | if (wasMaximized) { |
119 | v->showMaximized(); | 119 | v->showMaximized(); |
120 | } else { | 120 | } else { |
121 | v->show(); | 121 | v->show(); |
122 | } | 122 | } |
123 | connect(lv, SIGNAL(layoutChanged()), | 123 | connect(lv, SIGNAL(layoutChanged()), |
124 | v, SLOT(reorgLp())); | 124 | v, SLOT(reorgLp())); |
125 | } | 125 | } |
126 | 126 | ||
127 | void PwMViewStyle::resizeView(const QSize &size) | 127 | void PwMViewStyle::resizeView(const QSize &size) |
128 | { | 128 | { |
129 | switch (curStyle) { | 129 | switch (curStyle) { |
130 | case style_0: | 130 | case style_0: |
131 | PWM_ASSERT(s0); | 131 | PWM_ASSERT(s0); |
132 | s0->resize(size); | 132 | s0->resize(size); |
133 | return; | 133 | return; |
134 | case style_1: | 134 | case style_1: |
135 | PWM_ASSERT(s1); | 135 | PWM_ASSERT(s1); |
136 | s1->resize(size); | 136 | s1->resize(size); |
137 | return; | 137 | return; |
138 | default: | 138 | default: |
139 | BUG(); | 139 | BUG(); |
140 | } | 140 | } |
141 | } | 141 | } |
142 | 142 | ||
143 | QString PwMViewStyle::getCurrentCategory() | 143 | QString PwMViewStyle::getCurrentCategory() |
144 | { | 144 | { |
145 | switch (curStyle) { | 145 | switch (curStyle) { |
146 | case style_0: | 146 | case style_0: |
147 | PWM_ASSERT(s0); | 147 | PWM_ASSERT(s0); |
148 | return s0->getCurrentCategory(); | 148 | return s0->getCurrentCategory(); |
149 | case style_1: | 149 | case style_1: |
150 | PWM_ASSERT(s1); | 150 | PWM_ASSERT(s1); |
151 | return s1->getCurrentCategory(); | 151 | return s1->getCurrentCategory(); |
152 | default: | 152 | default: |
153 | BUG(); | 153 | BUG(); |
154 | } | 154 | } |
155 | return ""; | 155 | return ""; |
156 | } | 156 | } |
157 | 157 | ||
158 | void PwMViewStyle::addCategory(const QString &cat) | 158 | void PwMViewStyle::addCategory(const QString &cat) |
159 | { | 159 | { |
160 | switch (curStyle) { | 160 | switch (curStyle) { |
161 | case style_0: | 161 | case style_0: |
162 | PWM_ASSERT(s0); | 162 | PWM_ASSERT(s0); |
163 | s0->addCategory(cat); | 163 | s0->addCategory(cat); |
164 | return; | 164 | return; |
165 | case style_1: | 165 | case style_1: |
166 | PWM_ASSERT(s1); | 166 | PWM_ASSERT(s1); |
167 | s1->addCategory(cat); | 167 | s1->addCategory(cat); |
168 | return; | 168 | return; |
169 | default: | 169 | default: |
170 | BUG(); | 170 | BUG(); |
171 | } | 171 | } |
172 | } | 172 | } |
173 | 173 | ||
174 | void PwMViewStyle::delCategory(const QString &cat) | 174 | void PwMViewStyle::delCategory(const QString &cat) |
175 | { | 175 | { |
176 | switch (curStyle) { | 176 | switch (curStyle) { |
177 | case style_0: | 177 | case style_0: |
178 | PWM_ASSERT(s0); | 178 | PWM_ASSERT(s0); |
179 | s0->delCategory(cat); | 179 | s0->delCategory(cat); |
180 | return; | 180 | return; |
181 | case style_1: | 181 | case style_1: |
182 | PWM_ASSERT(s1); | 182 | PWM_ASSERT(s1); |
183 | s1->delCategory(cat); | 183 | s1->delCategory(cat); |
184 | return; | 184 | return; |
185 | default: | 185 | default: |
186 | BUG(); | 186 | BUG(); |
187 | } | 187 | } |
188 | } | 188 | } |
189 | 189 | ||
190 | void PwMViewStyle::delAllCategories() | 190 | void PwMViewStyle::delAllCategories() |
191 | { | 191 | { |
192 | switch (curStyle) { | 192 | switch (curStyle) { |
193 | case style_0: | 193 | case style_0: |
194 | PWM_ASSERT(s0); | 194 | PWM_ASSERT(s0); |
195 | s0->delAllCategories(); | 195 | s0->delAllCategories(); |
196 | return; | 196 | return; |
197 | case style_1: | 197 | case style_1: |
198 | PWM_ASSERT(s1); | 198 | PWM_ASSERT(s1); |
199 | s1->delAllCategories(); | 199 | s1->delAllCategories(); |
200 | return; | 200 | return; |
201 | default: | 201 | default: |
202 | BUG(); | 202 | BUG(); |
203 | } | 203 | } |
204 | } | 204 | } |
205 | 205 | ||
206 | void PwMViewStyle::selectCategory(const QString &cat) | 206 | void PwMViewStyle::selectCategory(const QString &cat) |
207 | { | 207 | { |
208 | switch (curStyle) { | 208 | switch (curStyle) { |
209 | case style_0: | 209 | case style_0: |
210 | PWM_ASSERT(s0); | 210 | PWM_ASSERT(s0); |
211 | s0->selectCategory(cat); | 211 | s0->selectCategory(cat); |
212 | return; | 212 | return; |
213 | case style_1: | 213 | case style_1: |
214 | PWM_ASSERT(s1); | 214 | PWM_ASSERT(s1); |
215 | s1->selectCategory(cat); | 215 | s1->selectCategory(cat); |
216 | return; | 216 | return; |
217 | default: | 217 | default: |
218 | BUG(); | 218 | BUG(); |
219 | } | 219 | } |
220 | } | 220 | } |
221 | 221 | ||
222 | int PwMViewStyle::numCategories() | 222 | int PwMViewStyle::numCategories() |
223 | { | 223 | { |
224 | switch (curStyle) { | 224 | switch (curStyle) { |
225 | case style_0: | 225 | case style_0: |
226 | PWM_ASSERT(s0); | 226 | PWM_ASSERT(s0); |
227 | return s0->numCategories(); | 227 | return s0->numCategories(); |
228 | case style_1: | 228 | case style_1: |
229 | PWM_ASSERT(s1); | 229 | PWM_ASSERT(s1); |
230 | return s1->numCategories(); | 230 | return s1->numCategories(); |
231 | default: | 231 | default: |
232 | BUG(); | 232 | BUG(); |
diff --git a/pwmanager/pwmanager/pwmviewstyle_1.cpp b/pwmanager/pwmanager/pwmviewstyle_1.cpp index 8b2d6d3..374c698 100644 --- a/pwmanager/pwmanager/pwmviewstyle_1.cpp +++ b/pwmanager/pwmanager/pwmviewstyle_1.cpp | |||
@@ -1,150 +1,152 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | * * | 2 | * * |
3 | * copyright (C) 2004 by Michael Buesch * | 3 | * copyright (C) 2004 by Michael Buesch * |
4 | * email: mbuesch@freenet.de * | 4 | * email: mbuesch@freenet.de * |
5 | * * | 5 | * * |
6 | * This program is free software; you can redistribute it and/or modify * | 6 | * This program is free software; you can redistribute it and/or modify * |
7 | * it under the terms of the GNU General Public License version 2 * | 7 | * it under the terms of the GNU General Public License version 2 * |
8 | * as published by the Free Software Foundation. * | 8 | * as published by the Free Software Foundation. * |
9 | * * | 9 | * * |
10 | ***************************************************************************/ | 10 | ***************************************************************************/ |
11 | 11 | ||
12 | /*************************************************************************** | 12 | /*************************************************************************** |
13 | * copyright (C) 2004 by Ulf Schenk | 13 | * copyright (C) 2004 by Ulf Schenk |
14 | * This file is originaly based on version 1.0.1 of pwmanager | 14 | * This file is originaly based on version 1.0.1 of pwmanager |
15 | * and was modified to run on embedded devices that run microkde | 15 | * and was modified to run on embedded devices that run microkde |
16 | * | 16 | * |
17 | * $Id$ | 17 | * $Id$ |
18 | **************************************************************************/ | 18 | **************************************************************************/ |
19 | 19 | ||
20 | #include "pwmviewstyle_1.h" | 20 | #include "pwmviewstyle_1.h" |
21 | #include "pwmview.h" | 21 | #include "pwmview.h" |
22 | #include "listviewpwm.h" | 22 | #include "listviewpwm.h" |
23 | #include "commentbox.h" | 23 | #include "commentbox.h" |
24 | 24 | ||
25 | #include <klocale.h> | 25 | #include <klocale.h> |
26 | #include "pwmprefs.h" | 26 | #include "pwmprefs.h" |
27 | 27 | ||
28 | #define INITIAL_CATEGORIES_WIDTH100 | 28 | #define INITIAL_CATEGORIES_WIDTH100 |
29 | 29 | ||
30 | PwMViewStyle_1::PwMViewStyle_1(PwMView *view) | 30 | PwMViewStyle_1::PwMViewStyle_1(PwMView *view) |
31 | : QObject() | 31 | : QObject() |
32 | { | 32 | { |
33 | #ifndef PWM_EMBEDDED | 33 | #ifndef PWM_EMBEDDED |
34 | splitter = new QSplitter(view); | 34 | splitter = new QSplitter(view); |
35 | #else | 35 | #else |
36 | splitter = new KDGanttMinimizeSplitter( Qt::Horizontal, view); | 36 | splitter = new KDGanttMinimizeSplitter( Qt::Horizontal, view); |
37 | splitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); | 37 | splitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); |
38 | 38 | ||
39 | //US topLayout->addWidget(mMiniSplitter ); | 39 | //US topLayout->addWidget(mMiniSplitter ); |
40 | #endif | 40 | #endif |
41 | 41 | ||
42 | vbox1 = new QVBox(splitter); | 42 | vbox1 = new QVBox(splitter); |
43 | categoriesTitle = new QLabel(vbox1); | 43 | categoriesTitle = new QLabel(vbox1); |
44 | categoriesList = new QListBox(vbox1); | 44 | categoriesList = new QListBox(vbox1); |
45 | #ifndef PWM_EMBEDDED | 45 | #ifndef PWM_EMBEDDED |
46 | splitter2 = new QSplitter(splitter); | 46 | splitter2 = new QSplitter(splitter); |
47 | splitter2->setOrientation(Qt::Vertical); | 47 | splitter2->setOrientation(Qt::Vertical); |
48 | #else | 48 | #else |
49 | splitter2 = new KDGanttMinimizeSplitter( Qt::Vertical, splitter); | 49 | splitter2 = new KDGanttMinimizeSplitter( Qt::Vertical, splitter); |
50 | splitter2->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); | 50 | splitter2->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); |
51 | 51 | ||
52 | //US topLayout->addWidget(mMiniSplitter ); | 52 | //US topLayout->addWidget(mMiniSplitter ); |
53 | #endif | 53 | #endif |
54 | lv = new ListViewPwM(splitter2); | 54 | lv = new ListViewPwM(splitter2); |
55 | commentBox = new CommentBox(splitter2); | 55 | commentBox = new CommentBox(splitter2); |
56 | // set sizes and styles | 56 | // set sizes and styles |
57 | commentBox->resize(commentBox->size().width(), 60); | 57 | //UScommentBox->resize(commentBox->size().width(), 60); |
58 | QValueList<int> sizes; | 58 | QValueList<int> sizes; |
59 | #ifndef PWM_EMBEDDED | 59 | #ifndef PWM_EMBEDDED |
60 | sizes.push_back(INITIAL_CATEGORIES_WIDTH); | 60 | sizes.push_back(INITIAL_CATEGORIES_WIDTH); |
61 | sizes.push_back(view->height() - INITIAL_CATEGORIES_WIDTH); | 61 | sizes.push_back(view->height() - INITIAL_CATEGORIES_WIDTH); |
62 | #else | 62 | #else |
63 | sizes.append(INITIAL_CATEGORIES_WIDTH); | 63 | sizes.append(INITIAL_CATEGORIES_WIDTH); |
64 | sizes.append(view->height() - INITIAL_CATEGORIES_WIDTH); | 64 | sizes.append(view->height() - INITIAL_CATEGORIES_WIDTH); |
65 | #endif | 65 | #endif |
66 | splitter->setSizes(sizes); | 66 | //USsplitter->setSizes(sizes); |
67 | categoriesTitle->setAlignment(Qt::AlignHCenter); | 67 | categoriesTitle->setAlignment(Qt::AlignHCenter); |
68 | #ifndef PWM_EMBEDDED | 68 | #ifndef PWM_EMBEDDED |
69 | categoriesTitle->setFrameShape(QFrame::MenuBarPanel); | 69 | categoriesTitle->setFrameShape(QFrame::MenuBarPanel); |
70 | #else | 70 | #else |
71 | categoriesTitle->setFrameShape(QFrame::StyledPanel); | 71 | categoriesTitle->setFrameShape(QFrame::StyledPanel); |
72 | #endif | 72 | #endif |
73 | categoriesTitle->setText(i18n("Categories:")); | 73 | categoriesTitle->setText(i18n("Categories:")); |
74 | catCtxMenu = new QPopupMenu(view); | 74 | catCtxMenu = new QPopupMenu(view); |
75 | catCtxMenu->insertItem(i18n("&Rename"), | 75 | catCtxMenu->insertItem(i18n("&Rename"), |
76 | view, SLOT(renCatButton_slot())); | 76 | view, SLOT(renCatButton_slot())); |
77 | catCtxMenu->insertItem(i18n("&Delete"), | 77 | catCtxMenu->insertItem(i18n("&Delete"), |
78 | view, SLOT(delCatButton_slot())); | 78 | view, SLOT(delCatButton_slot())); |
79 | // connections | 79 | // connections |
80 | connect(categoriesList, SIGNAL(highlighted(int)), | 80 | connect(categoriesList, SIGNAL(highlighted(int)), |
81 | view, SLOT(shiftToView())); | 81 | view, SLOT(shiftToView())); |
82 | connect(categoriesList, | 82 | connect(categoriesList, |
83 | SIGNAL(rightButtonClicked(QListBoxItem *, const QPoint &)), | 83 | SIGNAL(rightButtonClicked(QListBoxItem *, const QPoint &)), |
84 | this, | 84 | this, |
85 | SLOT(catRightClick(QListBoxItem *, const QPoint &))); | 85 | SLOT(catRightClick(QListBoxItem *, const QPoint &))); |
86 | } | 86 | } |
87 | 87 | ||
88 | PwMViewStyle_1::~PwMViewStyle_1() | 88 | PwMViewStyle_1::~PwMViewStyle_1() |
89 | { | 89 | { |
90 | delete catCtxMenu; | 90 | delete catCtxMenu; |
91 | delete splitter; | 91 | delete splitter; |
92 | } | 92 | } |
93 | 93 | ||
94 | void PwMViewStyle_1::catRightClick(QListBoxItem *item, const QPoint &point) | 94 | void PwMViewStyle_1::catRightClick(QListBoxItem *item, const QPoint &point) |
95 | { | 95 | { |
96 | if (!item) | 96 | if (!item) |
97 | return; | 97 | return; |
98 | catCtxMenu->move(point); | 98 | catCtxMenu->move(point); |
99 | catCtxMenu->show(); | 99 | catCtxMenu->show(); |
100 | } | 100 | } |
101 | 101 | ||
102 | void PwMViewStyle_1::delCategory(const QString &cat) | 102 | void PwMViewStyle_1::delCategory(const QString &cat) |
103 | { | 103 | { |
104 | PWM_ASSERT(categoriesList); | 104 | PWM_ASSERT(categoriesList); |
105 | int i, count = categoriesList->count(); | 105 | int i, count = categoriesList->count(); |
106 | for (i = 0; i < count; ++i) { | 106 | for (i = 0; i < count; ++i) { |
107 | if (categoriesList->text(i) == cat) { | 107 | if (categoriesList->text(i) == cat) { |
108 | categoriesList->removeItem(i); | 108 | categoriesList->removeItem(i); |
109 | return; | 109 | return; |
110 | } | 110 | } |
111 | } | 111 | } |
112 | BUG(); | 112 | BUG(); |
113 | } | 113 | } |
114 | 114 | ||
115 | void PwMViewStyle_1::selectCategory(const QString &cat) | 115 | void PwMViewStyle_1::selectCategory(const QString &cat) |
116 | { | 116 | { |
117 | PWM_ASSERT(categoriesList); | 117 | PWM_ASSERT(categoriesList); |
118 | int i, count = categoriesList->count(); | 118 | int i, count = categoriesList->count(); |
119 | for (i = 0; i < count; ++i) { | 119 | for (i = 0; i < count; ++i) { |
120 | if (categoriesList->text(i) == cat) { | 120 | if (categoriesList->text(i) == cat) { |
121 | categoriesList->setCurrentItem(i); | 121 | categoriesList->setCurrentItem(i); |
122 | return; | 122 | return; |
123 | } | 123 | } |
124 | } | 124 | } |
125 | // fall back to 0 | 125 | // fall back to 0 |
126 | categoriesList->setCurrentItem(0); | 126 | categoriesList->setCurrentItem(0); |
127 | } | 127 | } |
128 | 128 | ||
129 | //US ENH: I need a place to load the view dependend settings. Eg. splittersize | 129 | //US ENH: I need a place to load the view dependend settings. Eg. splittersize |
130 | void PwMViewStyle_1::restoreSettings(PWMPrefs* prefs) | 130 | void PwMViewStyle_1::restoreSettings(PWMPrefs* prefs) |
131 | { | 131 | { |
132 | //load and store the size of the listviewcolumns | 132 | //load and store the size of the listviewcolumns |
133 | lv->restoreLayout(prefs->getConfig(), "listview"); | 133 | lv->restoreLayout(prefs->getConfig(), "listview"); |
134 | splitter->setSizes( prefs->mCategorySplitter ); | ||
134 | splitter2->setSizes( prefs->mCommentSplitter ); | 135 | splitter2->setSizes( prefs->mCommentSplitter ); |
135 | 136 | ||
136 | } | 137 | } |
137 | 138 | ||
138 | //US ENH: I need a place to load the view dependend settings. Eg. splittersize | 139 | //US ENH: I need a place to load the view dependend settings. Eg. splittersize |
139 | void PwMViewStyle_1::saveSettings(PWMPrefs* prefs) | 140 | void PwMViewStyle_1::saveSettings(PWMPrefs* prefs) |
140 | { | 141 | { |
141 | //store the size of the listviewcolumns | 142 | //store the size of the listviewcolumns |
142 | lv->saveLayout(prefs->getConfig(), "listview"); | 143 | lv->saveLayout(prefs->getConfig(), "listview"); |
144 | prefs->mCategorySplitter = splitter->sizes(); | ||
143 | prefs->mCommentSplitter = splitter2->sizes(); | 145 | prefs->mCommentSplitter = splitter2->sizes(); |
144 | 146 | ||
145 | } | 147 | } |
146 | 148 | ||
147 | 149 | ||
148 | #ifndef PWM_EMBEDDED | 150 | #ifndef PWM_EMBEDDED |
149 | #include "pwmviewstyle_1.moc" | 151 | #include "pwmviewstyle_1.moc" |
150 | #endif | 152 | #endif |