-rw-r--r-- | pwmanager/pwmanager/csv.cpp | 428 | ||||
-rw-r--r-- | pwmanager/pwmanager/csv.h | 91 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwm.cpp | 85 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwm.h | 4 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwmanagerE.pro | 2 |
5 files changed, 608 insertions, 2 deletions
diff --git a/pwmanager/pwmanager/csv.cpp b/pwmanager/pwmanager/csv.cpp new file mode 100644 index 0000000..194edf2 --- a/dev/null +++ b/pwmanager/pwmanager/csv.cpp | |||
@@ -0,0 +1,428 @@ | |||
1 | /*************************************************************************** | ||
2 | * * | ||
3 | * copyright (C) 2004 by Michael Buesch * | ||
4 | * email: mbuesch@freenet.de * | ||
5 | * * | ||
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 * | ||
8 | * as published by the Free Software Foundation. * | ||
9 | * * | ||
10 | ***************************************************************************/ | ||
11 | |||
12 | /*************************************************************************** | ||
13 | * copyright (C) 2004 by Ulf Schenk | ||
14 | * This file is originaly based on version 1.1 of pwmanager | ||
15 | * and was modified to run on embedded devices that run microkde | ||
16 | * The original file version was 1.2 | ||
17 | * $Id$ | ||
18 | **************************************************************************/ | ||
19 | |||
20 | #include "csv.h" | ||
21 | #include "pwmdoc.h" | ||
22 | #include "pwmexception.h" | ||
23 | |||
24 | #include <kmessagebox.h> | ||
25 | #include <klocale.h> | ||
26 | |||
27 | #define MAX_CSV_FILE_SIZE(50 * 1024 * 1024) // bytes | ||
28 | |||
29 | |||
30 | Csv::Csv(QWidget *_parent) | ||
31 | : parent (_parent) | ||
32 | { | ||
33 | } | ||
34 | |||
35 | Csv::~Csv() | ||
36 | { | ||
37 | } | ||
38 | |||
39 | bool Csv::importData(const QString &filepath, | ||
40 | PwMDoc *doc) | ||
41 | { | ||
42 | bool ret = true; | ||
43 | QByteArray d; | ||
44 | QFile f(filepath); | ||
45 | if (!f.open(IO_ReadOnly)) { | ||
46 | KMessageBox::error(parent, | ||
47 | i18n("Could not open file.\n" | ||
48 | "Does the file exist?"), | ||
49 | i18n("Open error.")); | ||
50 | ret = false; | ||
51 | goto out; | ||
52 | } | ||
53 | if (f.size() > MAX_CSV_FILE_SIZE) { | ||
54 | KMessageBox::error(parent, | ||
55 | i18n("File too big.\nMaximum file size is 1 Byte.", "File too big.\nMaximum file size is %n Bytes.", MAX_CSV_FILE_SIZE), | ||
56 | i18n("File too big.")); | ||
57 | ret = false; | ||
58 | goto out_close; | ||
59 | } | ||
60 | d = f.readAll(); | ||
61 | if (d.isEmpty()) { | ||
62 | KMessageBox::error(parent, | ||
63 | i18n("Could not read file or file empty."), | ||
64 | i18n("Reading failed.")); | ||
65 | ret = false; | ||
66 | goto out_close; | ||
67 | } | ||
68 | if (!doImport(d, doc)) { | ||
69 | KMessageBox::error(parent, | ||
70 | i18n("Import failed.\n" | ||
71 | "Corrupt CSV data format."), | ||
72 | i18n("File corrupt.")); | ||
73 | ret = false; | ||
74 | goto out_close; | ||
75 | } | ||
76 | |||
77 | out_close: | ||
78 | f.close(); | ||
79 | out: | ||
80 | return ret; | ||
81 | } | ||
82 | |||
83 | bool Csv::doImport(const QByteArray &d, | ||
84 | PwMDoc *doc) | ||
85 | { | ||
86 | PwMDataItem di; | ||
87 | //US ENH: initialize all members: | ||
88 | di.clear(); | ||
89 | |||
90 | int refIndex = 0; | ||
91 | int ret; | ||
92 | QCString s, curCat; | ||
93 | int fieldIndex = 0; | ||
94 | bool inRecord = false; | ||
95 | /* fieldIndex is a reference count to see which | ||
96 | * value we are attaching to di. | ||
97 | * Valid counts are: | ||
98 | * 0 -> category | ||
99 | * 1 -> desc | ||
100 | * 2 -> name | ||
101 | * 3 -> pw | ||
102 | * 4 -> url | ||
103 | * 5 -> launcher | ||
104 | * 6 -> comment | ||
105 | */ | ||
106 | |||
107 | while (1) { | ||
108 | ret = nextField(&s, d, inRecord, &refIndex); | ||
109 | switch (ret) { | ||
110 | case 0: | ||
111 | // successfully got next field. | ||
112 | inRecord = true; | ||
113 | switch (fieldIndex) { | ||
114 | case 0: // category | ||
115 | if (s.isEmpty()) { | ||
116 | /* This is special case. It's the category | ||
117 | * list terminating empty field. | ||
118 | */ | ||
119 | ++fieldIndex; | ||
120 | } else | ||
121 | curCat = s; | ||
122 | break; | ||
123 | case 1:// desc | ||
124 | di.desc = s; | ||
125 | ++fieldIndex; | ||
126 | break; | ||
127 | case 2: // name | ||
128 | di.name = s; | ||
129 | ++fieldIndex; | ||
130 | break; | ||
131 | case 3: // pw | ||
132 | di.pw = s; | ||
133 | ++fieldIndex; | ||
134 | break; | ||
135 | case 4: // url | ||
136 | di.url = s; | ||
137 | ++fieldIndex; | ||
138 | break; | ||
139 | case 5: // launcher | ||
140 | di.launcher = s; | ||
141 | ++fieldIndex; | ||
142 | break; | ||
143 | case 6: // comment | ||
144 | di.comment = s; | ||
145 | ++fieldIndex; | ||
146 | break; | ||
147 | default: | ||
148 | /* Too many fields in a record. | ||
149 | * We simply throw it away. | ||
150 | */ | ||
151 | break; | ||
152 | } | ||
153 | break; | ||
154 | case 1: | ||
155 | // record complete. | ||
156 | if (fieldIndex == 6) | ||
157 | di.comment = s; | ||
158 | inRecord = false; | ||
159 | fieldIndex = 0; | ||
160 | doc->addEntry(curCat, &di, true); | ||
161 | //US ENH: clear di for the next row | ||
162 | di.clear(); | ||
163 | break; | ||
164 | case 2: | ||
165 | // data completely parsed. | ||
166 | doc->flagDirty(); | ||
167 | return true; | ||
168 | case -1: | ||
169 | // parse error | ||
170 | doc->flagDirty(); | ||
171 | return false; | ||
172 | } | ||
173 | } | ||
174 | BUG(); | ||
175 | return false; | ||
176 | } | ||
177 | |||
178 | int Csv::nextField(QCString *ret, | ||
179 | const QByteArray &in, | ||
180 | bool inRecord, | ||
181 | int *_refIndex) | ||
182 | { | ||
183 | int rv = -2; | ||
184 | char c; | ||
185 | bool inField = false; | ||
186 | bool isQuoted = false; | ||
187 | bool searchingTerminator = false; | ||
188 | int refIndex; | ||
189 | int inSize = static_cast<int>(in.size()); | ||
190 | ret->truncate(0); | ||
191 | |||
192 | for (refIndex = *_refIndex; refIndex < inSize; ++refIndex) { | ||
193 | c = in.at(refIndex); | ||
194 | if (!inField) { | ||
195 | // we have to search the field beginning, now. | ||
196 | switch (c) { | ||
197 | case ' ': // space | ||
198 | case '': // tab | ||
199 | // hm, still not the beginning. Go on.. | ||
200 | break; | ||
201 | case '\r': | ||
202 | case '\n': | ||
203 | if (inRecord) { | ||
204 | /* This is the end of the last field in | ||
205 | * the record. | ||
206 | */ | ||
207 | PWM_ASSERT(ret->isEmpty()); | ||
208 | rv = 1; // record end | ||
209 | goto out; | ||
210 | } else { | ||
211 | // hm, still not the beginning. Go on.. | ||
212 | break; | ||
213 | } | ||
214 | case ',': | ||
215 | // Oh, an empty field. How sad. | ||
216 | PWM_ASSERT(ret->isEmpty()); | ||
217 | rv = 0; // field end | ||
218 | goto out; | ||
219 | case '\"': | ||
220 | // this is the quoted beginning. | ||
221 | inField = true; | ||
222 | isQuoted = true; | ||
223 | if (refIndex + 1 >= inSize) | ||
224 | goto unexp_eof; | ||
225 | break; | ||
226 | default: | ||
227 | // this is the unquoted beginning. | ||
228 | inField = true; | ||
229 | isQuoted = false; | ||
230 | *ret += c; | ||
231 | break; | ||
232 | } | ||
233 | } else { | ||
234 | // we are in the field now. Search the end. | ||
235 | if (isQuoted) { | ||
236 | if (searchingTerminator) { | ||
237 | switch (c) { | ||
238 | case '\r': | ||
239 | case '\n': | ||
240 | rv = 1; // record end | ||
241 | goto out; | ||
242 | case ',': | ||
243 | // found it. | ||
244 | rv = 0; // field end | ||
245 | goto out; | ||
246 | default: | ||
247 | // go on. | ||
248 | continue; | ||
249 | } | ||
250 | } | ||
251 | switch (c) { | ||
252 | case '\"': | ||
253 | /* check if this is the end of the | ||
254 | * entry, or just an inline escaped quote. | ||
255 | */ | ||
256 | char next; | ||
257 | if (refIndex + 1 >= inSize) { | ||
258 | // This is the last char, so it's the end. | ||
259 | rv = 2; // data end | ||
260 | goto out; | ||
261 | } | ||
262 | next = in.at(refIndex + 1); | ||
263 | switch (next) { | ||
264 | case '\"': | ||
265 | // This is an escaped double quote. | ||
266 | // So skip next iteration. | ||
267 | refIndex += 1; | ||
268 | *ret += c; | ||
269 | break; | ||
270 | default: | ||
271 | /* end of field. | ||
272 | * We have to search the comma (or newline...), | ||
273 | * which officially terminates the entry. | ||
274 | */ | ||
275 | searchingTerminator = true; | ||
276 | break; | ||
277 | } | ||
278 | break; | ||
279 | default: | ||
280 | // nothing special about the char. Go on! | ||
281 | *ret += c; | ||
282 | break; | ||
283 | } | ||
284 | } else { | ||
285 | switch (c) { | ||
286 | case '\"': | ||
287 | // This is not allowed here. | ||
288 | return -1; // parser error | ||
289 | case '\r': | ||
290 | case '\n': | ||
291 | rv = 1; // record end | ||
292 | goto out; | ||
293 | case ',': | ||
294 | rv = 0; // field end | ||
295 | goto out; | ||
296 | default: | ||
297 | // nothing special about the char. Go on! | ||
298 | *ret += c; | ||
299 | break; | ||
300 | } | ||
301 | } | ||
302 | } | ||
303 | } | ||
304 | // we are at the end of the stream, now! | ||
305 | if (searchingTerminator) { | ||
306 | /* Ok, there's no terminating comma (or newline...), | ||
307 | * because we are at the end. That's perfectly fine. | ||
308 | */ | ||
309 | PWM_ASSERT(inField); | ||
310 | rv = 2; // data end | ||
311 | goto out; | ||
312 | } | ||
313 | if (!isQuoted && inField) { | ||
314 | // That's the end of the last unquoted field. | ||
315 | rv = 2; // data end | ||
316 | goto out; | ||
317 | } | ||
318 | if (!inField) { | ||
319 | // This is expected EOF | ||
320 | rv = 2; // data end | ||
321 | goto out; | ||
322 | } | ||
323 | |||
324 | unexp_eof: | ||
325 | printDebug("unexpected EOF :("); | ||
326 | return -1; // parser error | ||
327 | |||
328 | out: | ||
329 | if (!isQuoted) | ||
330 | *ret = ret->stripWhiteSpace(); | ||
331 | *_refIndex = refIndex + 1; | ||
332 | return rv; | ||
333 | } | ||
334 | |||
335 | bool Csv::exportData(const QString &filepath, | ||
336 | PwMDoc *doc) | ||
337 | { | ||
338 | PWM_ASSERT(!doc->isDocEmpty()); | ||
339 | bool ret = true; | ||
340 | if (QFile::exists(filepath)) { | ||
341 | int ret; | ||
342 | ret = KMessageBox::questionYesNo(parent, | ||
343 | i18n("This file does already exist.\n" | ||
344 | "Do you want to overwrite it?"), | ||
345 | i18n("Overwrite file?")); | ||
346 | if (ret == KMessageBox::No) | ||
347 | return false; | ||
348 | if (!QFile::remove(filepath)) { | ||
349 | KMessageBox::error(parent, | ||
350 | i18n("Could not delete the old file."), | ||
351 | i18n("Delete error.")); | ||
352 | return false; | ||
353 | } | ||
354 | } | ||
355 | QFile f(filepath); | ||
356 | if (!f.open(IO_ReadWrite)) { | ||
357 | KMessageBox::error(parent, | ||
358 | i18n("Could not open file for writing."), | ||
359 | i18n("Open error.")); | ||
360 | ret = false; | ||
361 | goto out; | ||
362 | } | ||
363 | doc->unlockAll_tempoary(); | ||
364 | if (!doExport(f, doc)) | ||
365 | ret = false; | ||
366 | doc->unlockAll_tempoary(true); | ||
367 | f.close(); | ||
368 | out: | ||
369 | return ret; | ||
370 | } | ||
371 | |||
372 | bool Csv::doExport(QFile &f, | ||
373 | PwMDoc *doc) | ||
374 | { | ||
375 | unsigned int numCat = doc->numCategories(); | ||
376 | unsigned int numEntr; | ||
377 | unsigned int i, j; | ||
378 | PwMDataItem d; | ||
379 | QCString s, catName; | ||
380 | QByteArray b; | ||
381 | |||
382 | for (i = 0; i < numCat; ++i) { | ||
383 | numEntr = doc->numEntries(i); | ||
384 | catName = newField(doc->getCategory(i)->c_str()); | ||
385 | for (j = 0; j < numEntr; ++j) { | ||
386 | doc->getEntry(i, j, &d); | ||
387 | s = catName; | ||
388 | s += ",,"; | ||
389 | s += newField(d.desc.c_str()); | ||
390 | s += ","; | ||
391 | s += newField(d.name.c_str()); | ||
392 | s += ","; | ||
393 | s += newField(d.pw.c_str()); | ||
394 | s += ","; | ||
395 | s += newField(d.url.c_str()); | ||
396 | s += ","; | ||
397 | s += newField(d.launcher.c_str()); | ||
398 | s += ","; | ||
399 | s += newField(d.comment.c_str()); | ||
400 | s += "\r\n"; | ||
401 | b = s; | ||
402 | // remove \0 termination | ||
403 | #ifndef PWM_EMBEDDED | ||
404 | b.resize(b.size() - 1, QGArray::SpeedOptim); | ||
405 | #else | ||
406 | b.resize(b.size() - 1); | ||
407 | #endif | ||
408 | if (!f.writeBlock(b)) | ||
409 | return false; | ||
410 | } | ||
411 | } | ||
412 | return true; | ||
413 | } | ||
414 | |||
415 | QCString Csv::newField(QCString s) | ||
416 | { | ||
417 | if (s.isEmpty()) | ||
418 | return QCString(); | ||
419 | QCString ret("\""); | ||
420 | #ifndef PWM_EMBEDDED | ||
421 | s.replace('\"', "\"\""); | ||
422 | #else | ||
423 | s.replace(QRegExp("\""), "\"\""); | ||
424 | #endif | ||
425 | ret += s; | ||
426 | ret += "\""; | ||
427 | return ret; | ||
428 | } | ||
diff --git a/pwmanager/pwmanager/csv.h b/pwmanager/pwmanager/csv.h new file mode 100644 index 0000000..6f3c1e1 --- a/dev/null +++ b/pwmanager/pwmanager/csv.h | |||
@@ -0,0 +1,91 @@ | |||
1 | /*************************************************************************** | ||
2 | * * | ||
3 | * copyright (C) 2004 by Michael Buesch * | ||
4 | * email: mbuesch@freenet.de * | ||
5 | * * | ||
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 * | ||
8 | * as published by the Free Software Foundation. * | ||
9 | * * | ||
10 | ***************************************************************************/ | ||
11 | |||
12 | /*************************************************************************** | ||
13 | * copyright (C) 2004 by Ulf Schenk | ||
14 | * This file is originaly based on version 1.1 of pwmanager | ||
15 | * and was modified to run on embedded devices that run microkde | ||
16 | * The original file version was 1.2 | ||
17 | * $Id$ | ||
18 | **************************************************************************/ | ||
19 | |||
20 | |||
21 | #ifndef __PWMANAGER_CSV_H | ||
22 | #define __PWMANAGER_CSV_H | ||
23 | |||
24 | #include <qcstring.h> | ||
25 | #include <qfile.h> | ||
26 | |||
27 | |||
28 | class PwMDoc; | ||
29 | class QString; | ||
30 | class QWidget; | ||
31 | |||
32 | /** class for CSV (Comma Separated Value) export and import. | ||
33 | * | ||
34 | * http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm | ||
35 | * http://en.wikipedia.org/wiki/Comma-separated_values | ||
36 | * | ||
37 | * There are two types of CSV output we can produce. | ||
38 | * One with Category support (recommended): | ||
39 | * "Category 1",, "Desc 1", "Username 1", "Password 1", "URL 1", "Launcher 1", "Comment 1" | ||
40 | * "Category 1",, "Desc 2", "Username 2", "Password 2", "URL 2", "Launcher 2", "Comment 2" | ||
41 | * ... | ||
42 | * The empty "" is neccessary, because in future versions we will | ||
43 | * support nested Categories. We want to be future compatible, now. | ||
44 | * | ||
45 | * And one without Category support: | ||
46 | *FIXME: it's not implemented, yet. ;) | ||
47 | * "Desc 1", "Username 1", "Password 1", "URL 1", "Launcher 1", "Comment 1" | ||
48 | * "Desc 2", "Username 2", "Password 2", "URL 2", "Launcher 2", "Comment 2" | ||
49 | * ... | ||
50 | * | ||
51 | */ | ||
52 | class Csv | ||
53 | { | ||
54 | public: | ||
55 | Csv(QWidget *_parent); | ||
56 | ~Csv(); | ||
57 | |||
58 | /** import data from "filepath" into "doc" */ | ||
59 | bool importData(const QString &filepath, | ||
60 | PwMDoc *doc); | ||
61 | /** export data from "doc" to "filepath" */ | ||
62 | bool exportData(const QString &filepath, | ||
63 | PwMDoc *doc); | ||
64 | |||
65 | protected: | ||
66 | /** do the import process. */ | ||
67 | bool doImport(const QByteArray &d, | ||
68 | PwMDoc *doc); | ||
69 | /** parse for the next field. | ||
70 | * @return Return values are: | ||
71 | * 0 -> successfully got the next field. | ||
72 | * 1 -> record end. | ||
73 | * 2 -> data end. | ||
74 | * -1 -> parser error. | ||
75 | */ | ||
76 | int nextField(QCString *ret, | ||
77 | const QByteArray &in, | ||
78 | bool inRecord, | ||
79 | int *_refIndex); | ||
80 | /** do the export process. */ | ||
81 | bool doExport(QFile &f, | ||
82 | PwMDoc *doc); | ||
83 | /** generate a new data field string. */ | ||
84 | QCString newField(QCString s); | ||
85 | |||
86 | protected: | ||
87 | /** current parent widget. */ | ||
88 | QWidget *parent; | ||
89 | }; | ||
90 | |||
91 | #endif // __PWMANAGER_CSV_H | ||
diff --git a/pwmanager/pwmanager/pwm.cpp b/pwmanager/pwmanager/pwm.cpp index 66d26d6..ac0c978 100644 --- a/pwmanager/pwmanager/pwm.cpp +++ b/pwmanager/pwmanager/pwm.cpp | |||
@@ -11,293 +11,302 @@ | |||
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 <klocale.h> | 20 | #include <klocale.h> |
21 | #include <klistview.h> | 21 | #include <klistview.h> |
22 | #include <ktoolbar.h> | 22 | #include <ktoolbar.h> |
23 | #include <kfiledialog.h> | 23 | #include <kfiledialog.h> |
24 | #include <kiconloader.h> | 24 | #include <kiconloader.h> |
25 | #include <kmessagebox.h> | 25 | #include <kmessagebox.h> |
26 | 26 | ||
27 | #ifndef PWM_EMBEDDED | 27 | #ifndef PWM_EMBEDDED |
28 | #include <kmenubar.h> | 28 | #include <kmenubar.h> |
29 | #include <kstatusbar.h> | 29 | #include <kstatusbar.h> |
30 | #include <dcopclient.h> | 30 | #include <dcopclient.h> |
31 | #include "configwndimpl.h" | 31 | #include "configwndimpl.h" |
32 | #include "configuration.h" | 32 | #include "configuration.h" |
33 | #else | 33 | #else |
34 | #include <qmenubar.h> | 34 | #include <qmenubar.h> |
35 | #include <qmessagebox.h> | 35 | #include <qmessagebox.h> |
36 | #include <pwmprefs.h> | 36 | #include <pwmprefs.h> |
37 | #include <kpimglobalprefs.h> | 37 | #include <kpimglobalprefs.h> |
38 | #include <kcmconfigs/kcmpwmconfig.h> | 38 | #include <kcmconfigs/kcmpwmconfig.h> |
39 | #include <kcmconfigs/kcmkdepimconfig.h> | 39 | #include <kcmconfigs/kcmkdepimconfig.h> |
40 | #include <kcmultidialog.h> | 40 | #include <kcmultidialog.h> |
41 | #endif | 41 | #endif |
42 | 42 | ||
43 | #include <qpixmap.h> | 43 | #include <qpixmap.h> |
44 | #include <qcheckbox.h> | 44 | #include <qcheckbox.h> |
45 | #include <qspinbox.h> | 45 | #include <qspinbox.h> |
46 | #include <qlineedit.h> | 46 | #include <qlineedit.h> |
47 | #include <qfileinfo.h> | 47 | #include <qfileinfo.h> |
48 | #include <qclipboard.h> | 48 | #include <qclipboard.h> |
49 | 49 | ||
50 | 50 | ||
51 | #include <stdio.h> | 51 | #include <stdio.h> |
52 | 52 | ||
53 | #include "pwm.h" | 53 | #include "pwm.h" |
54 | #include "pwminit.h" | 54 | #include "pwminit.h" |
55 | #include "pwmprint.h" | 55 | #include "pwmprint.h" |
56 | #include "addentrywndimpl.h" | 56 | #include "addentrywndimpl.h" |
57 | #include "globalstuff.h" | 57 | #include "globalstuff.h" |
58 | #include "findwndimpl.h" | 58 | #include "findwndimpl.h" |
59 | #include "csv.h" | ||
59 | 60 | ||
60 | #ifdef CONFIG_KWALLETIF | 61 | #ifdef CONFIG_KWALLETIF |
61 | # include "kwalletif.h" | 62 | # include "kwalletif.h" |
62 | # include "kwalletemu.h" | 63 | # include "kwalletemu.h" |
63 | #endif | 64 | #endif |
64 | #ifdef CONFIG_KEYCARD | 65 | #ifdef CONFIG_KEYCARD |
65 | # include "pwmkeycard.h" | 66 | # include "pwmkeycard.h" |
66 | #endif | 67 | #endif |
67 | 68 | ||
68 | 69 | ||
69 | #define DEFAULT_SIZE (QSize(700, 400)) | 70 | #define DEFAULT_SIZE (QSize(700, 400)) |
70 | 71 | ||
71 | // Button IDs for "file" popup menu | 72 | // Button IDs for "file" popup menu |
72 | enum { | 73 | enum { |
73 | BUTTON_POPUP_FILE_NEW = 0, | 74 | BUTTON_POPUP_FILE_NEW = 0, |
74 | BUTTON_POPUP_FILE_OPEN, | 75 | BUTTON_POPUP_FILE_OPEN, |
75 | BUTTON_POPUP_FILE_CLOSE, | 76 | BUTTON_POPUP_FILE_CLOSE, |
76 | BUTTON_POPUP_FILE_SAVE, | 77 | BUTTON_POPUP_FILE_SAVE, |
77 | BUTTON_POPUP_FILE_SAVEAS, | 78 | BUTTON_POPUP_FILE_SAVEAS, |
78 | BUTTON_POPUP_FILE_EXPORT, | 79 | BUTTON_POPUP_FILE_EXPORT, |
79 | BUTTON_POPUP_FILE_IMPORT, | 80 | BUTTON_POPUP_FILE_IMPORT, |
80 | BUTTON_POPUP_FILE_PRINT, | 81 | BUTTON_POPUP_FILE_PRINT, |
81 | BUTTON_POPUP_FILE_QUIT | 82 | BUTTON_POPUP_FILE_QUIT |
82 | }; | 83 | }; |
83 | // Button IDs for "manage" popup menu | 84 | // Button IDs for "manage" popup menu |
84 | enum { | 85 | enum { |
85 | BUTTON_POPUP_MANAGE_ADD = 0, | 86 | BUTTON_POPUP_MANAGE_ADD = 0, |
86 | BUTTON_POPUP_MANAGE_EDIT, | 87 | BUTTON_POPUP_MANAGE_EDIT, |
87 | BUTTON_POPUP_MANAGE_DEL, | 88 | BUTTON_POPUP_MANAGE_DEL, |
88 | BUTTON_POPUP_MANAGE_CHANGEMP | 89 | BUTTON_POPUP_MANAGE_CHANGEMP |
89 | }; | 90 | }; |
90 | // Button IDs for chipcard popup menu | 91 | // Button IDs for chipcard popup menu |
91 | enum { | 92 | enum { |
92 | #ifdef CONFIG_KEYCARD | 93 | #ifdef CONFIG_KEYCARD |
93 | BUTTON_POPUP_CHIPCARD_GENNEW = 0, | 94 | BUTTON_POPUP_CHIPCARD_GENNEW = 0, |
94 | BUTTON_POPUP_CHIPCARD_DEL, | 95 | BUTTON_POPUP_CHIPCARD_DEL, |
95 | BUTTON_POPUP_CHIPCARD_READID, | 96 | BUTTON_POPUP_CHIPCARD_READID, |
96 | BUTTON_POPUP_CHIPCARD_SAVEBACKUP, | 97 | BUTTON_POPUP_CHIPCARD_SAVEBACKUP, |
97 | BUTTON_POPUP_CHIPCARD_REPLAYBACKUP | 98 | BUTTON_POPUP_CHIPCARD_REPLAYBACKUP |
98 | #else // CONFIG_KEYCARD | 99 | #else // CONFIG_KEYCARD |
99 | BUTTON_POPUP_CHIPCARD_NO = 0 | 100 | BUTTON_POPUP_CHIPCARD_NO = 0 |
100 | #endif // CONFIG_KEYCARD | 101 | #endif // CONFIG_KEYCARD |
101 | }; | 102 | }; |
102 | // Button IDs for "view" popup menu | 103 | // Button IDs for "view" popup menu |
103 | enum { | 104 | enum { |
104 | BUTTON_POPUP_VIEW_FIND = 0, | 105 | BUTTON_POPUP_VIEW_FIND = 0, |
105 | BUTTON_POPUP_VIEW_LOCK, | 106 | BUTTON_POPUP_VIEW_LOCK, |
106 | BUTTON_POPUP_VIEW_DEEPLOCK, | 107 | BUTTON_POPUP_VIEW_DEEPLOCK, |
107 | BUTTON_POPUP_VIEW_UNLOCK | 108 | BUTTON_POPUP_VIEW_UNLOCK |
108 | }; | 109 | }; |
109 | // Button IDs for "options" popup menu | 110 | // Button IDs for "options" popup menu |
110 | enum { | 111 | enum { |
111 | BUTTON_POPUP_OPTIONS_CONFIG = 0 | 112 | BUTTON_POPUP_OPTIONS_CONFIG = 0 |
112 | }; | 113 | }; |
113 | // Button IDs for "export" popup menu (in "file" popup menu) | 114 | // Button IDs for "export" popup menu (in "file" popup menu) |
114 | enum { | 115 | enum { |
115 | BUTTON_POPUP_EXPORT_TEXT = 0, | 116 | BUTTON_POPUP_EXPORT_TEXT = 0, |
116 | BUTTON_POPUP_EXPORT_GPASMAN | 117 | BUTTON_POPUP_EXPORT_GPASMAN, |
118 | BUTTON_POPUP_EXPORT_CSV | ||
117 | #ifdef CONFIG_KWALLETIF | 119 | #ifdef CONFIG_KWALLETIF |
118 | ,BUTTON_POPUP_EXPORT_KWALLET | 120 | ,BUTTON_POPUP_EXPORT_KWALLET |
119 | #endif | 121 | #endif |
120 | }; | 122 | }; |
121 | // Button IDs for "import" popup menu (in "file" popup menu) | 123 | // Button IDs for "import" popup menu (in "file" popup menu) |
122 | enum { | 124 | enum { |
123 | BUTTON_POPUP_IMPORT_TEXT = 0, | 125 | BUTTON_POPUP_IMPORT_TEXT = 0, |
124 | BUTTON_POPUP_IMPORT_GPASMAN | 126 | BUTTON_POPUP_IMPORT_GPASMAN, |
127 | BUTTON_POPUP_IMPORT_CSV | ||
125 | #ifdef CONFIG_KWALLETIF | 128 | #ifdef CONFIG_KWALLETIF |
126 | ,BUTTON_POPUP_IMPORT_KWALLET | 129 | ,BUTTON_POPUP_IMPORT_KWALLET |
127 | #endif | 130 | #endif |
128 | }; | 131 | }; |
129 | 132 | ||
130 | #ifdef PWM_EMBEDDED | 133 | #ifdef PWM_EMBEDDED |
131 | // Button IDs for "help" popup menu | 134 | // Button IDs for "help" popup menu |
132 | enum { | 135 | enum { |
133 | BUTTON_POPUP_HELP_LICENSE = 0, | 136 | BUTTON_POPUP_HELP_LICENSE = 0, |
134 | BUTTON_POPUP_HELP_FAQ, | 137 | BUTTON_POPUP_HELP_FAQ, |
135 | BUTTON_POPUP_HELP_ABOUT, | 138 | BUTTON_POPUP_HELP_ABOUT, |
136 | BUTTON_POPUP_HELP_SYNC, | 139 | BUTTON_POPUP_HELP_SYNC, |
137 | BUTTON_POPUP_HELP_WHATSNEW | 140 | BUTTON_POPUP_HELP_WHATSNEW |
138 | }; | 141 | }; |
139 | #endif | 142 | #endif |
140 | 143 | ||
141 | // Button IDs for toolbar | 144 | // Button IDs for toolbar |
142 | enum { | 145 | enum { |
143 | BUTTON_TOOL_NEW = 0, | 146 | BUTTON_TOOL_NEW = 0, |
144 | BUTTON_TOOL_OPEN, | 147 | BUTTON_TOOL_OPEN, |
145 | BUTTON_TOOL_SAVE, | 148 | BUTTON_TOOL_SAVE, |
146 | BUTTON_TOOL_SAVEAS, | 149 | BUTTON_TOOL_SAVEAS, |
147 | BUTTON_TOOL_PRINT, | 150 | BUTTON_TOOL_PRINT, |
148 | BUTTON_TOOL_ADD, | 151 | BUTTON_TOOL_ADD, |
149 | BUTTON_TOOL_EDIT, | 152 | BUTTON_TOOL_EDIT, |
150 | BUTTON_TOOL_DEL, | 153 | BUTTON_TOOL_DEL, |
151 | BUTTON_TOOL_FIND, | 154 | BUTTON_TOOL_FIND, |
152 | BUTTON_TOOL_LOCK, | 155 | BUTTON_TOOL_LOCK, |
153 | BUTTON_TOOL_DEEPLOCK, | 156 | BUTTON_TOOL_DEEPLOCK, |
154 | BUTTON_TOOL_UNLOCK | 157 | BUTTON_TOOL_UNLOCK |
155 | }; | 158 | }; |
156 | 159 | ||
157 | 160 | ||
158 | PwM::PwM(PwMInit *_init, PwMDoc *doc, | 161 | PwM::PwM(PwMInit *_init, PwMDoc *doc, |
159 | bool virginity, | 162 | bool virginity, |
160 | QWidget *parent, const char *name) | 163 | QWidget *parent, const char *name) |
161 | : KMainWindow(parent, "HALLO") | 164 | : KMainWindow(parent, "HALLO") |
162 | , forceQuit (false) | 165 | , forceQuit (false) |
163 | , forceMinimizeToTray (false) | 166 | , forceMinimizeToTray (false) |
164 | { | 167 | { |
165 | init = _init; | 168 | init = _init; |
166 | connect(doc, SIGNAL(docClosed(PwMDoc *)), | 169 | connect(doc, SIGNAL(docClosed(PwMDoc *)), |
167 | this, SLOT(docClosed(PwMDoc *))); | 170 | this, SLOT(docClosed(PwMDoc *))); |
168 | initMenubar(); | 171 | initMenubar(); |
169 | initToolbar(); | 172 | initToolbar(); |
170 | initMetrics(); | 173 | initMetrics(); |
171 | setVirgin(virginity); | 174 | setVirgin(virginity); |
172 | setFocusPolicy(QWidget::WheelFocus); | 175 | setFocusPolicy(QWidget::WheelFocus); |
173 | #ifndef PWM_EMBEDDED | 176 | #ifndef PWM_EMBEDDED |
174 | statusBar()->show(); | 177 | statusBar()->show(); |
175 | #endif | 178 | #endif |
176 | view = makeNewListView(doc); | 179 | view = makeNewListView(doc); |
177 | setCentralWidget(view); | 180 | setCentralWidget(view); |
178 | updateCaption(); | 181 | updateCaption(); |
179 | showStatMsg(i18n("Ready.")); | 182 | showStatMsg(i18n("Ready.")); |
180 | } | 183 | } |
181 | 184 | ||
182 | PwM::~PwM() | 185 | PwM::~PwM() |
183 | { | 186 | { |
187 | //qDebug("PwM::~PwM()"); | ||
184 | disconnect(curDoc(), SIGNAL(docClosed(PwMDoc *)), | 188 | disconnect(curDoc(), SIGNAL(docClosed(PwMDoc *)), |
185 | this, SLOT(docClosed(PwMDoc *))); | 189 | this, SLOT(docClosed(PwMDoc *))); |
186 | conf()->confWndMainWndSize(size()); | 190 | conf()->confWndMainWndSize(size()); |
187 | emit closed(this); | 191 | emit closed(this); |
192 | //qDebug("PwM::~PwM() emited closed(this)"); | ||
188 | delete view; | 193 | delete view; |
189 | } | 194 | } |
190 | 195 | ||
191 | void PwM::initMenubar() | 196 | void PwM::initMenubar() |
192 | { | 197 | { |
193 | KIconLoader* picons; | 198 | KIconLoader* picons; |
194 | #ifndef PWM_EMBEDDED | 199 | #ifndef PWM_EMBEDDED |
195 | KIconLoader icons; | 200 | KIconLoader icons; |
196 | picons = &icons; | 201 | picons = &icons; |
197 | #else | 202 | #else |
198 | picons = KGlobal::iconLoader(); | 203 | picons = KGlobal::iconLoader(); |
199 | 204 | ||
200 | 205 | ||
201 | syncPopup = new KPopupMenu(this); | 206 | syncPopup = new KPopupMenu(this); |
202 | 207 | ||
203 | syncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)this, KSyncManager::PWMPI, PWMPrefs::instance(), syncPopup); | 208 | syncManager = new KSyncManager((QWidget*)this, (KSyncInterface*)this, KSyncManager::PWMPI, PWMPrefs::instance(), syncPopup); |
204 | syncManager->setBlockSave(false); | 209 | syncManager->setBlockSave(false); |
205 | 210 | ||
206 | connect ( syncPopup, SIGNAL( activated ( int ) ), syncManager, SLOT (slotSyncMenu( int ) ) ); | 211 | connect ( syncPopup, SIGNAL( activated ( int ) ), syncManager, SLOT (slotSyncMenu( int ) ) ); |
207 | syncManager->fillSyncMenu(); | 212 | syncManager->fillSyncMenu(); |
208 | 213 | ||
209 | #endif | 214 | #endif |
210 | filePopup = new KPopupMenu(this); | 215 | filePopup = new KPopupMenu(this); |
211 | importPopup = new KPopupMenu(filePopup); | 216 | importPopup = new KPopupMenu(filePopup); |
212 | exportPopup = new KPopupMenu(filePopup); | 217 | exportPopup = new KPopupMenu(filePopup); |
213 | managePopup = new KPopupMenu(this); | 218 | managePopup = new KPopupMenu(this); |
214 | #ifdef CONFIG_KEYCARD | 219 | #ifdef CONFIG_KEYCARD |
215 | chipcardPopup = new KPopupMenu(this); | 220 | chipcardPopup = new KPopupMenu(this); |
216 | #endif // CONFIG_KEYCARD | 221 | #endif // CONFIG_KEYCARD |
217 | viewPopup = new KPopupMenu(this); | 222 | viewPopup = new KPopupMenu(this); |
218 | optionsPopup = new KPopupMenu(this); | 223 | optionsPopup = new KPopupMenu(this); |
219 | 224 | ||
220 | // "file" popup menu | 225 | // "file" popup menu |
221 | filePopup->insertItem(QIconSet(picons->loadIcon("filenew", KIcon::Small)), | 226 | filePopup->insertItem(QIconSet(picons->loadIcon("filenew", KIcon::Small)), |
222 | i18n("&New"), this, | 227 | i18n("&New"), this, |
223 | SLOT(new_slot()), 0, BUTTON_POPUP_FILE_NEW); | 228 | SLOT(new_slot()), 0, BUTTON_POPUP_FILE_NEW); |
224 | filePopup->insertItem(QIconSet(picons->loadIcon("fileopen", KIcon::Small)), | 229 | filePopup->insertItem(QIconSet(picons->loadIcon("fileopen", KIcon::Small)), |
225 | i18n("&Open"), this, | 230 | i18n("&Open"), this, |
226 | SLOT(open_slot()), 0, BUTTON_POPUP_FILE_OPEN); | 231 | SLOT(open_slot()), 0, BUTTON_POPUP_FILE_OPEN); |
227 | filePopup->insertItem(QIconSet(picons->loadIcon("fileclose", KIcon::Small)), | 232 | filePopup->insertItem(QIconSet(picons->loadIcon("fileclose", KIcon::Small)), |
228 | i18n("&Close"), this, | 233 | i18n("&Close"), this, |
229 | SLOT(close_slot()), 0, BUTTON_POPUP_FILE_CLOSE); | 234 | SLOT(close_slot()), 0, BUTTON_POPUP_FILE_CLOSE); |
230 | filePopup->insertSeparator(); | 235 | filePopup->insertSeparator(); |
231 | filePopup->insertItem(QIconSet(picons->loadIcon("filesave", KIcon::Small)), | 236 | filePopup->insertItem(QIconSet(picons->loadIcon("filesave", KIcon::Small)), |
232 | i18n("&Save"), this, | 237 | i18n("&Save"), this, |
233 | SLOT(save_slot()), 0, BUTTON_POPUP_FILE_SAVE); | 238 | SLOT(save_slot()), 0, BUTTON_POPUP_FILE_SAVE); |
234 | filePopup->insertItem(QIconSet(picons->loadIcon("filesaveas", KIcon::Small)), | 239 | filePopup->insertItem(QIconSet(picons->loadIcon("filesaveas", KIcon::Small)), |
235 | i18n("Save &as..."), | 240 | i18n("Save &as..."), |
236 | this, SLOT(saveAs_slot()), 0, | 241 | this, SLOT(saveAs_slot()), 0, |
237 | BUTTON_POPUP_FILE_SAVEAS); | 242 | BUTTON_POPUP_FILE_SAVEAS); |
238 | filePopup->insertSeparator(); | 243 | filePopup->insertSeparator(); |
239 | // "file/export" popup menu | 244 | // "file/export" popup menu |
240 | exportPopup->insertItem(i18n("&Text-file..."), this, | 245 | exportPopup->insertItem(i18n("&Text-file..."), this, |
241 | SLOT(exportToText()), 0, BUTTON_POPUP_EXPORT_TEXT); | 246 | SLOT(exportToText()), 0, BUTTON_POPUP_EXPORT_TEXT); |
242 | exportPopup->insertItem(i18n("&Gpasman / Kpasman ..."), this, | 247 | exportPopup->insertItem(i18n("&Gpasman / Kpasman ..."), this, |
243 | SLOT(exportToGpasman()), 0, BUTTON_POPUP_EXPORT_GPASMAN); | 248 | SLOT(exportToGpasman()), 0, BUTTON_POPUP_EXPORT_GPASMAN); |
249 | exportPopup->insertItem(i18n("&CSV (Comma Separated Value) ..."), this, | ||
250 | SLOT(exportToCsv()), 0, BUTTON_POPUP_EXPORT_CSV); | ||
244 | #ifdef CONFIG_KWALLETIF | 251 | #ifdef CONFIG_KWALLETIF |
245 | exportPopup->insertItem(i18n("&KWallet..."), this, | 252 | exportPopup->insertItem(i18n("&KWallet..."), this, |
246 | SLOT(exportToKWallet()), 0, BUTTON_POPUP_EXPORT_KWALLET); | 253 | SLOT(exportToKWallet()), 0, BUTTON_POPUP_EXPORT_KWALLET); |
247 | #endif | 254 | #endif |
248 | filePopup->insertItem(QIconSet(picons->loadIcon("fileexport", KIcon::Small)), | 255 | filePopup->insertItem(QIconSet(picons->loadIcon("fileexport", KIcon::Small)), |
249 | i18n("E&xport"), exportPopup, | 256 | i18n("E&xport"), exportPopup, |
250 | BUTTON_POPUP_FILE_EXPORT); | 257 | BUTTON_POPUP_FILE_EXPORT); |
251 | // "file/import" popup menu | 258 | // "file/import" popup menu |
252 | importPopup->insertItem(i18n("&Text-file..."), this, | 259 | importPopup->insertItem(i18n("&Text-file..."), this, |
253 | SLOT(importFromText()), 0, BUTTON_POPUP_IMPORT_TEXT); | 260 | SLOT(importFromText()), 0, BUTTON_POPUP_IMPORT_TEXT); |
254 | importPopup->insertItem(i18n("&Gpasman / Kpasman ..."), this, | 261 | importPopup->insertItem(i18n("&Gpasman / Kpasman ..."), this, |
255 | SLOT(importFromGpasman()), 0, BUTTON_POPUP_IMPORT_GPASMAN); | 262 | SLOT(importFromGpasman()), 0, BUTTON_POPUP_IMPORT_GPASMAN); |
263 | importPopup->insertItem(i18n("&CSV (Comma Separated Value) ..."), this, | ||
264 | SLOT(importCsv()), 0, BUTTON_POPUP_IMPORT_CSV); | ||
256 | #ifdef CONFIG_KWALLETIF | 265 | #ifdef CONFIG_KWALLETIF |
257 | importPopup->insertItem(i18n("&KWallet..."), this, | 266 | importPopup->insertItem(i18n("&KWallet..."), this, |
258 | SLOT(importKWallet()), 0, BUTTON_POPUP_IMPORT_KWALLET); | 267 | SLOT(importKWallet()), 0, BUTTON_POPUP_IMPORT_KWALLET); |
259 | #endif | 268 | #endif |
260 | filePopup->insertItem(QIconSet(picons->loadIcon("fileimport", KIcon::Small)), | 269 | filePopup->insertItem(QIconSet(picons->loadIcon("fileimport", KIcon::Small)), |
261 | i18n("I&mport"), importPopup, | 270 | i18n("I&mport"), importPopup, |
262 | BUTTON_POPUP_FILE_IMPORT); | 271 | BUTTON_POPUP_FILE_IMPORT); |
263 | filePopup->insertSeparator(); | 272 | filePopup->insertSeparator(); |
264 | filePopup->insertItem(QIconSet(picons->loadIcon("fileprint", KIcon::Small)), | 273 | filePopup->insertItem(QIconSet(picons->loadIcon("fileprint", KIcon::Small)), |
265 | i18n("&Print..."), this, | 274 | i18n("&Print..."), this, |
266 | SLOT(print_slot()), 0, BUTTON_POPUP_FILE_PRINT); | 275 | SLOT(print_slot()), 0, BUTTON_POPUP_FILE_PRINT); |
267 | filePopup->insertSeparator(); | 276 | filePopup->insertSeparator(); |
268 | filePopup->insertItem(QIconSet(picons->loadIcon("exit", KIcon::Small)), | 277 | filePopup->insertItem(QIconSet(picons->loadIcon("exit", KIcon::Small)), |
269 | i18n("&Quit"), this, | 278 | i18n("&Quit"), this, |
270 | SLOT(quitButton_slot()), 0, BUTTON_POPUP_FILE_QUIT); | 279 | SLOT(quitButton_slot()), 0, BUTTON_POPUP_FILE_QUIT); |
271 | menuBar()->insertItem(i18n("&File"), filePopup); | 280 | menuBar()->insertItem(i18n("&File"), filePopup); |
272 | // "manage" popup menu | 281 | // "manage" popup menu |
273 | managePopup->insertItem(QIconSet(picons->loadIcon("pencil", KIcon::Small)), | 282 | managePopup->insertItem(QIconSet(picons->loadIcon("pencil", KIcon::Small)), |
274 | i18n("&Add password"), this, | 283 | i18n("&Add password"), this, |
275 | SLOT(addPwd_slot()), 0, | 284 | SLOT(addPwd_slot()), 0, |
276 | BUTTON_POPUP_MANAGE_ADD); | 285 | BUTTON_POPUP_MANAGE_ADD); |
277 | managePopup->insertItem(QIconSet(picons->loadIcon("edit", KIcon::Small)), | 286 | managePopup->insertItem(QIconSet(picons->loadIcon("edit", KIcon::Small)), |
278 | i18n("&Edit"), this, SLOT(editPwd_slot()), 0, | 287 | i18n("&Edit"), this, SLOT(editPwd_slot()), 0, |
279 | BUTTON_POPUP_MANAGE_EDIT); | 288 | BUTTON_POPUP_MANAGE_EDIT); |
280 | managePopup->insertItem(QIconSet(picons->loadIcon("editdelete", KIcon::Small)), | 289 | managePopup->insertItem(QIconSet(picons->loadIcon("editdelete", KIcon::Small)), |
281 | i18n("&Delete"), this, SLOT(deletePwd_slot()), | 290 | i18n("&Delete"), this, SLOT(deletePwd_slot()), |
282 | 0, BUTTON_POPUP_MANAGE_DEL); | 291 | 0, BUTTON_POPUP_MANAGE_DEL); |
283 | managePopup->insertSeparator(); | 292 | managePopup->insertSeparator(); |
284 | managePopup->insertItem(QIconSet(picons->loadIcon("rotate", KIcon::Small)), | 293 | managePopup->insertItem(QIconSet(picons->loadIcon("rotate", KIcon::Small)), |
285 | i18n("Change &Master Password"), this, | 294 | i18n("Change &Master Password"), this, |
286 | SLOT(changeMasterPwd_slot()), 0, | 295 | SLOT(changeMasterPwd_slot()), 0, |
287 | BUTTON_POPUP_MANAGE_CHANGEMP); | 296 | BUTTON_POPUP_MANAGE_CHANGEMP); |
288 | menuBar()->insertItem(i18n("&Manage"), managePopup); | 297 | menuBar()->insertItem(i18n("&Manage"), managePopup); |
289 | // "chipcard" popup menu | 298 | // "chipcard" popup menu |
290 | #ifdef CONFIG_KEYCARD | 299 | #ifdef CONFIG_KEYCARD |
291 | chipcardPopup->insertItem(QIconSet(picons->loadIcon("filenew", KIcon::Small)), | 300 | chipcardPopup->insertItem(QIconSet(picons->loadIcon("filenew", KIcon::Small)), |
292 | i18n("&Generate new key-card"), this, | 301 | i18n("&Generate new key-card"), this, |
293 | SLOT(genNewCard_slot()), 0, | 302 | SLOT(genNewCard_slot()), 0, |
294 | BUTTON_POPUP_CHIPCARD_GENNEW); | 303 | BUTTON_POPUP_CHIPCARD_GENNEW); |
295 | chipcardPopup->insertItem(QIconSet(picons->loadIcon("editdelete", KIcon::Small)), | 304 | chipcardPopup->insertItem(QIconSet(picons->loadIcon("editdelete", KIcon::Small)), |
296 | i18n("&Erase key-card"), this, | 305 | i18n("&Erase key-card"), this, |
297 | SLOT(eraseCard_slot()), 0, | 306 | SLOT(eraseCard_slot()), 0, |
298 | BUTTON_POPUP_CHIPCARD_DEL); | 307 | BUTTON_POPUP_CHIPCARD_DEL); |
299 | chipcardPopup->insertItem(QIconSet(picons->loadIcon("", KIcon::Small)), | 308 | chipcardPopup->insertItem(QIconSet(picons->loadIcon("", KIcon::Small)), |
300 | i18n("Read card-&ID"), this, | 309 | i18n("Read card-&ID"), this, |
301 | SLOT(readCardId_slot()), 0, | 310 | SLOT(readCardId_slot()), 0, |
302 | BUTTON_POPUP_CHIPCARD_READID); | 311 | BUTTON_POPUP_CHIPCARD_READID); |
303 | chipcardPopup->insertSeparator(); | 312 | chipcardPopup->insertSeparator(); |
@@ -971,96 +980,168 @@ bool PwM::importFromText() | |||
971 | i18n("import failed")); | 980 | i18n("import failed")); |
972 | goto cancelImport; | 981 | goto cancelImport; |
973 | } | 982 | } |
974 | setVirgin(false); | 983 | setVirgin(false); |
975 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | 984 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); |
976 | return true; | 985 | return true; |
977 | 986 | ||
978 | cancelImport: | 987 | cancelImport: |
979 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | 988 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); |
980 | return false; | 989 | return false; |
981 | } | 990 | } |
982 | 991 | ||
983 | void PwM::exportToGpasman() | 992 | void PwM::exportToGpasman() |
984 | { | 993 | { |
985 | PWM_ASSERT(curDoc()); | 994 | PWM_ASSERT(curDoc()); |
986 | if (curDoc()->isDocEmpty()) { | 995 | if (curDoc()->isDocEmpty()) { |
987 | KMessageBox::information(this, | 996 | KMessageBox::information(this, |
988 | i18n | 997 | i18n |
989 | ("Sorry, there's nothing to export.\n" | 998 | ("Sorry, there's nothing to export.\n" |
990 | "Please first add some passwords."), | 999 | "Please first add some passwords."), |
991 | i18n("nothing to do")); | 1000 | i18n("nothing to do")); |
992 | return; | 1001 | return; |
993 | } | 1002 | } |
994 | curDoc()->timer()->getLock(DocTimer::id_autoLockTimer); | 1003 | curDoc()->timer()->getLock(DocTimer::id_autoLockTimer); |
995 | QString fn(KFileDialog::getSaveFileName(QString::null, | 1004 | QString fn(KFileDialog::getSaveFileName(QString::null, |
996 | i18n("*|Gpasman or Kpasman file"), | 1005 | i18n("*|Gpasman or Kpasman file"), |
997 | this)); | 1006 | this)); |
998 | if (fn == "") { | 1007 | if (fn == "") { |
999 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | 1008 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); |
1000 | return; | 1009 | return; |
1001 | } | 1010 | } |
1002 | 1011 | ||
1003 | PwMerror ret = curDoc()->exportToGpasman(&fn); | 1012 | PwMerror ret = curDoc()->exportToGpasman(&fn); |
1004 | if (ret != e_success) { | 1013 | if (ret != e_success) { |
1005 | if (ret == e_noPw) { | 1014 | if (ret == e_noPw) { |
1006 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | 1015 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); |
1007 | return; | 1016 | return; |
1008 | } | 1017 | } |
1009 | KMessageBox::error(this, | 1018 | KMessageBox::error(this, |
1010 | i18n("Error: Couldn't write to file.\n" | 1019 | i18n("Error: Couldn't write to file.\n" |
1011 | "Please check if you have permission to write " | 1020 | "Please check if you have permission to write " |
1012 | "to the file in that directory."), | 1021 | "to the file in that directory."), |
1013 | i18n("error while writing")); | 1022 | i18n("error while writing")); |
1014 | } else | 1023 | } else |
1015 | showStatMsg(i18n("Successfully exported data.")); | 1024 | showStatMsg(i18n("Successfully exported data.")); |
1016 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | 1025 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); |
1017 | } | 1026 | } |
1018 | 1027 | ||
1028 | |||
1029 | |||
1030 | void PwM::exportToCsv() | ||
1031 | { | ||
1032 | PWM_ASSERT(curDoc()); | ||
1033 | if (curDoc()->isDocEmpty()) { | ||
1034 | KMessageBox::information(this, | ||
1035 | i18n | ||
1036 | ("Sorry, there is nothing to export;\n" | ||
1037 | "please add some passwords first."), | ||
1038 | i18n("Nothing to Do")); | ||
1039 | return; | ||
1040 | } | ||
1041 | |||
1042 | curDoc()->timer()->getLock(DocTimer::id_autoLockTimer); | ||
1043 | QString fn(KFileDialog::getSaveFileName("*.csv", i18n("*|CSV Text File"), this)); | ||
1044 | if (fn.isEmpty()) { | ||
1045 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | ||
1046 | return; | ||
1047 | } | ||
1048 | |||
1049 | Csv csv(this); | ||
1050 | if (!csv.exportData(fn, curDoc())) { | ||
1051 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | ||
1052 | showStatMsg(i18n("CSV file export failed.")); | ||
1053 | return; | ||
1054 | } | ||
1055 | showStatMsg(i18n("Successfully exported data.")); | ||
1056 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | ||
1057 | } | ||
1058 | |||
1059 | bool PwM::importCsv() | ||
1060 | { | ||
1061 | Csv csv(this); | ||
1062 | if (!isVirgin()) { | ||
1063 | if (KMessageBox::questionYesNo(this, | ||
1064 | i18n("Do you want to import the data\n" | ||
1065 | "into the current document? (If you\n" | ||
1066 | "select \"no\", a new document will be\n" | ||
1067 | "opened.)"), | ||
1068 | i18n("Import into This Document?")) | ||
1069 | == KMessageBox::No) { | ||
1070 | // import the data to a new window. | ||
1071 | PwM *newInstance = init->createMainWnd(); | ||
1072 | bool ok = newInstance->importCsv(); | ||
1073 | if (!ok) { | ||
1074 | newInstance->setForceQuit(true); | ||
1075 | delete_and_null(newInstance); | ||
1076 | } | ||
1077 | return ok; | ||
1078 | } | ||
1079 | } | ||
1080 | |||
1081 | QString filename = KFileDialog::getOpenFileName("*.csv", i18n("*|CSV Text File"), this); | ||
1082 | if (filename.isEmpty()) | ||
1083 | return false; | ||
1084 | curDoc()->timer()->getLock(DocTimer::id_autoLockTimer); | ||
1085 | if (!csv.importData(filename, curDoc())) { | ||
1086 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | ||
1087 | showStatMsg(i18n("CSV file import failed.")); | ||
1088 | return false; | ||
1089 | } | ||
1090 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | ||
1091 | KMessageBox::information(this, | ||
1092 | i18n("Successfully imported the CSV data\n" | ||
1093 | "into the current document."), i18n("Successfully Imported")); | ||
1094 | showStatMsg(i18n("Successfully imported")); | ||
1095 | setVirgin(false); | ||
1096 | return true; | ||
1097 | } | ||
1098 | |||
1099 | |||
1019 | void PwM::exportToKWallet() | 1100 | void PwM::exportToKWallet() |
1020 | { | 1101 | { |
1021 | #ifdef CONFIG_KWALLETIF | 1102 | #ifdef CONFIG_KWALLETIF |
1022 | if (!checkAndAskForKWalletEmu()) | 1103 | if (!checkAndAskForKWalletEmu()) |
1023 | return; | 1104 | return; |
1024 | PWM_ASSERT(curDoc()); | 1105 | PWM_ASSERT(curDoc()); |
1025 | if (curDoc()->isDocEmpty()) { | 1106 | if (curDoc()->isDocEmpty()) { |
1026 | KMessageBox::information(this, | 1107 | KMessageBox::information(this, |
1027 | i18n | 1108 | i18n |
1028 | ("Sorry, there's nothing to export.\n" | 1109 | ("Sorry, there's nothing to export.\n" |
1029 | "Please first add some passwords."), | 1110 | "Please first add some passwords."), |
1030 | i18n("nothing to do")); | 1111 | i18n("nothing to do")); |
1031 | init->initKWalletEmu(); | 1112 | init->initKWalletEmu(); |
1032 | return; | 1113 | return; |
1033 | } | 1114 | } |
1034 | curDoc()->timer()->getLock(DocTimer::id_autoLockTimer); | 1115 | curDoc()->timer()->getLock(DocTimer::id_autoLockTimer); |
1035 | KWalletIf walletIf(this); | 1116 | KWalletIf walletIf(this); |
1036 | if (walletIf.kwalletExport(curDoc())) { | 1117 | if (walletIf.kwalletExport(curDoc())) { |
1037 | KMessageBox::information(this, | 1118 | KMessageBox::information(this, |
1038 | i18n("Successfully exported the data of the current " | 1119 | i18n("Successfully exported the data of the current " |
1039 | "document to KWallet."), | 1120 | "document to KWallet."), |
1040 | i18n("Successfully exported data.")); | 1121 | i18n("Successfully exported data.")); |
1041 | showStatMsg(i18n("Successfully exported data.")); | 1122 | showStatMsg(i18n("Successfully exported data.")); |
1042 | } | 1123 | } |
1043 | init->initKWalletEmu(); | 1124 | init->initKWalletEmu(); |
1044 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); | 1125 | curDoc()->timer()->putLock(DocTimer::id_autoLockTimer); |
1045 | #endif // CONFIG_KWALLETIF | 1126 | #endif // CONFIG_KWALLETIF |
1046 | } | 1127 | } |
1047 | 1128 | ||
1048 | bool PwM::importFromGpasman() | 1129 | bool PwM::importFromGpasman() |
1049 | { | 1130 | { |
1050 | if (!isVirgin()) { | 1131 | if (!isVirgin()) { |
1051 | if (KMessageBox::questionYesNo(this, | 1132 | if (KMessageBox::questionYesNo(this, |
1052 | i18n("Do you want to import the data\n" | 1133 | i18n("Do you want to import the data\n" |
1053 | "into the current document? (If you\n" | 1134 | "into the current document? (If you\n" |
1054 | "select \"no\", a new document will be\n" | 1135 | "select \"no\", a new document will be\n" |
1055 | "opened.)"), | 1136 | "opened.)"), |
1056 | i18n("import into this document?")) | 1137 | i18n("import into this document?")) |
1057 | == KMessageBox::No) { | 1138 | == KMessageBox::No) { |
1058 | // import the data to a new window. | 1139 | // import the data to a new window. |
1059 | PwM *newInstance = init->createMainWnd(); | 1140 | PwM *newInstance = init->createMainWnd(); |
1060 | bool ok = newInstance->importFromGpasman(); | 1141 | bool ok = newInstance->importFromGpasman(); |
1061 | if (!ok) { | 1142 | if (!ok) { |
1062 | newInstance->setForceQuit(true); | 1143 | newInstance->setForceQuit(true); |
1063 | delete_and_null(newInstance); | 1144 | delete_and_null(newInstance); |
1064 | } | 1145 | } |
1065 | return ok; | 1146 | return ok; |
1066 | } | 1147 | } |
diff --git a/pwmanager/pwmanager/pwm.h b/pwmanager/pwmanager/pwm.h index 6ab9d6b..5822d59 100644 --- a/pwmanager/pwmanager/pwm.h +++ b/pwmanager/pwmanager/pwm.h | |||
@@ -79,102 +79,106 @@ public: | |||
79 | /** open a new doc with the given filename */ | 79 | /** open a new doc with the given filename */ |
80 | PwMDoc * openDoc(QString filename, bool openDeepLocked = false); | 80 | PwMDoc * openDoc(QString filename, bool openDeepLocked = false); |
81 | /** show a message on the global status bar. | 81 | /** show a message on the global status bar. |
82 | * The message times out after some seconds. | 82 | * The message times out after some seconds. |
83 | */ | 83 | */ |
84 | void showStatMsg(const QString &msg); | 84 | void showStatMsg(const QString &msg); |
85 | /** ask the user where to save the doc (if it has not been saved, yet) | 85 | /** ask the user where to save the doc (if it has not been saved, yet) |
86 | * and write the data to disk. | 86 | * and write the data to disk. |
87 | */ | 87 | */ |
88 | bool save(); | 88 | bool save(); |
89 | /** ask the user where to save the doc | 89 | /** ask the user where to save the doc |
90 | * and write the data to disk. | 90 | * and write the data to disk. |
91 | */ | 91 | */ |
92 | bool saveAs(); | 92 | bool saveAs(); |
93 | /** force quit. Quit this window, always! Don't minimize it */ | 93 | /** force quit. Quit this window, always! Don't minimize it */ |
94 | bool isForceQuit() | 94 | bool isForceQuit() |
95 | { return forceQuit; } | 95 | { return forceQuit; } |
96 | /** set forceQuit */ | 96 | /** set forceQuit */ |
97 | void setForceQuit(bool force) | 97 | void setForceQuit(bool force) |
98 | { forceQuit = force; } | 98 | { forceQuit = force; } |
99 | /** force minimize this window */ | 99 | /** force minimize this window */ |
100 | bool isForceMinimizeToTray() | 100 | bool isForceMinimizeToTray() |
101 | { return forceMinimizeToTray; } | 101 | { return forceMinimizeToTray; } |
102 | /** set forceMinimizeToTray */ | 102 | /** set forceMinimizeToTray */ |
103 | void setForceMinimizeToTray(bool force) | 103 | void setForceMinimizeToTray(bool force) |
104 | { forceMinimizeToTray = force; } | 104 | { forceMinimizeToTray = force; } |
105 | 105 | ||
106 | public slots: | 106 | public slots: |
107 | /** file/new triggered */ | 107 | /** file/new triggered */ |
108 | void new_slot(); | 108 | void new_slot(); |
109 | /** file/open triggered */ | 109 | /** file/open triggered */ |
110 | //US ENH | 110 | //US ENH |
111 | void open_slot(); | 111 | void open_slot(); |
112 | void open_slot(QString fn); | 112 | void open_slot(QString fn); |
113 | /** file/close triggered */ | 113 | /** file/close triggered */ |
114 | void close_slot(); | 114 | void close_slot(); |
115 | /** file/quit triggered */ | 115 | /** file/quit triggered */ |
116 | void quitButton_slot(); | 116 | void quitButton_slot(); |
117 | /** file/save triggered */ | 117 | /** file/save triggered */ |
118 | void save_slot(); | 118 | void save_slot(); |
119 | /** file/saveAs triggered */ | 119 | /** file/saveAs triggered */ |
120 | void saveAs_slot(); | 120 | void saveAs_slot(); |
121 | /** file/export/text triggered */ | 121 | /** file/export/text triggered */ |
122 | void exportToText(); | 122 | void exportToText(); |
123 | /** file/export/gpasman triggered */ | 123 | /** file/export/gpasman triggered */ |
124 | void exportToGpasman(); | 124 | void exportToGpasman(); |
125 | /** file/export/kwallet triggered */ | 125 | /** file/export/kwallet triggered */ |
126 | void exportToKWallet(); | 126 | void exportToKWallet(); |
127 | /** file/export/csv triggered */ | ||
128 | void exportToCsv(); | ||
127 | /** file/import/text triggered */ | 129 | /** file/import/text triggered */ |
128 | bool importFromText(); | 130 | bool importFromText(); |
129 | /** file/import/gpasman triggered */ | 131 | /** file/import/gpasman triggered */ |
130 | bool importFromGpasman(); | 132 | bool importFromGpasman(); |
131 | /** file/import/kwallet triggered */ | 133 | /** file/import/kwallet triggered */ |
132 | bool importKWallet(); | 134 | bool importKWallet(); |
135 | /** file/import/csv triggered */ | ||
136 | bool importCsv(); | ||
133 | /** file/print triggered */ | 137 | /** file/print triggered */ |
134 | void print_slot(); | 138 | void print_slot(); |
135 | /** manage/add triggered */ | 139 | /** manage/add triggered */ |
136 | //US ENH : changed code to run with older MOC | 140 | //US ENH : changed code to run with older MOC |
137 | 141 | ||
138 | void addPwd_slot(); | 142 | void addPwd_slot(); |
139 | void addPwd_slot1(QString *pw, PwMDoc *_doc); | 143 | void addPwd_slot1(QString *pw, PwMDoc *_doc); |
140 | /** manage/edit triggered */ | 144 | /** manage/edit triggered */ |
141 | //US ENH : changed code to run with older MOC | 145 | //US ENH : changed code to run with older MOC |
142 | void editPwd_slot(); | 146 | void editPwd_slot(); |
143 | void editPwd_slot1(const QString *category); | 147 | void editPwd_slot1(const QString *category); |
144 | void editPwd_slot3(const QString *category, const int *index ,PwMDoc *_doc ); | 148 | void editPwd_slot3(const QString *category, const int *index ,PwMDoc *_doc ); |
145 | 149 | ||
146 | /** manage/delete triggered */ | 150 | /** manage/delete triggered */ |
147 | void deletePwd_slot(); | 151 | void deletePwd_slot(); |
148 | /** execute the "Launcher" entry */ | 152 | /** execute the "Launcher" entry */ |
149 | void execLauncher_slot(); | 153 | void execLauncher_slot(); |
150 | /** open browser with URL entry */ | 154 | /** open browser with URL entry */ |
151 | void goToURL_slot(); | 155 | void goToURL_slot(); |
152 | /** manage/changeMasterPwd triggered */ | 156 | /** manage/changeMasterPwd triggered */ |
153 | void changeMasterPwd_slot(); | 157 | void changeMasterPwd_slot(); |
154 | /** lock current document */ | 158 | /** lock current document */ |
155 | void lockWnd_slot(); | 159 | void lockWnd_slot(); |
156 | /** deeplock current document */ | 160 | /** deeplock current document */ |
157 | void deepLockWnd_slot(); | 161 | void deepLockWnd_slot(); |
158 | /** window/unlock triggered */ | 162 | /** window/unlock triggered */ |
159 | void unlockWnd_slot(); | 163 | void unlockWnd_slot(); |
160 | /** find item */ | 164 | /** find item */ |
161 | void find_slot(); | 165 | void find_slot(); |
162 | /** configure clicked */ | 166 | /** configure clicked */ |
163 | void config_slot(); | 167 | void config_slot(); |
164 | /** (de)activate the "change master pw" button in the menu-bar */ | 168 | /** (de)activate the "change master pw" button in the menu-bar */ |
165 | void activateMpButton(bool activate = true); | 169 | void activateMpButton(bool activate = true); |
166 | /** generate a new chipcard */ | 170 | /** generate a new chipcard */ |
167 | void genNewCard_slot(); | 171 | void genNewCard_slot(); |
168 | /** completely erase the current card */ | 172 | /** completely erase the current card */ |
169 | void eraseCard_slot(); | 173 | void eraseCard_slot(); |
170 | /** returns the ID number of the current card */ | 174 | /** returns the ID number of the current card */ |
171 | void readCardId_slot(); | 175 | void readCardId_slot(); |
172 | /** make backup image of the current card */ | 176 | /** make backup image of the current card */ |
173 | void makeCardBackup_slot(); | 177 | void makeCardBackup_slot(); |
174 | /** write backup image to current card */ | 178 | /** write backup image to current card */ |
175 | void replayCardBackup_slot(); | 179 | void replayCardBackup_slot(); |
176 | 180 | ||
177 | #ifdef PWM_EMBEDDED | 181 | #ifdef PWM_EMBEDDED |
178 | void whatsnew_slot(); | 182 | void whatsnew_slot(); |
179 | void showLicense_slot(); | 183 | void showLicense_slot(); |
180 | void faq_slot(); | 184 | void faq_slot(); |
diff --git a/pwmanager/pwmanager/pwmanagerE.pro b/pwmanager/pwmanager/pwmanagerE.pro index 1445bcf..c46e937 100644 --- a/pwmanager/pwmanager/pwmanagerE.pro +++ b/pwmanager/pwmanager/pwmanagerE.pro | |||
@@ -17,153 +17,155 @@ LIBS += -L../libcrypt/$(PLATFORM) | |||
17 | LIBS += -lmicrokde | 17 | LIBS += -lmicrokde |
18 | LIBS += -lmicroqtcompat | 18 | LIBS += -lmicroqtcompat |
19 | LIBS += -lmicrokdepim | 19 | LIBS += -lmicrokdepim |
20 | LIBS += -L$(QPEDIR)/lib | 20 | LIBS += -L$(QPEDIR)/lib |
21 | LIBS += -lqpe | 21 | LIBS += -lqpe |
22 | LIBS += -lzlib | 22 | LIBS += -lzlib |
23 | #LIBS += -lbz2 | 23 | #LIBS += -lbz2 |
24 | #LIBS += -lkpmicrogcrypt | 24 | #LIBS += -lkpmicrogcrypt |
25 | LIBS += -ljpeg | 25 | LIBS += -ljpeg |
26 | LIBS += $(QTOPIALIB) | 26 | LIBS += $(QTOPIALIB) |
27 | LIBS += -lkpmicrocipher | 27 | LIBS += -lkpmicrocipher |
28 | LIBS += -lkpmicroerror | 28 | LIBS += -lkpmicroerror |
29 | LIBS += -lkpmicrompi | 29 | LIBS += -lkpmicrompi |
30 | LIBS += -lstdc++ | 30 | LIBS += -lstdc++ |
31 | 31 | ||
32 | #INTERFACES = \ | 32 | #INTERFACES = \ |
33 | #addentrywnd.ui \ | 33 | #addentrywnd.ui \ |
34 | #configwnd.ui \ | 34 | #configwnd.ui \ |
35 | #findwnd.ui \ | 35 | #findwnd.ui \ |
36 | #getmasterpwwnd.ui \ | 36 | #getmasterpwwnd.ui \ |
37 | #pwgenwnd.ui \ | 37 | #pwgenwnd.ui \ |
38 | #setmasterpwwnd.ui \ | 38 | #setmasterpwwnd.ui \ |
39 | #subtbledit.ui | 39 | #subtbledit.ui |
40 | 40 | ||
41 | #INTERFACES = \ | 41 | #INTERFACES = \ |
42 | #subtbledit.ui \ | 42 | #subtbledit.ui \ |
43 | 43 | ||
44 | 44 | ||
45 | 45 | ||
46 | #HEADERS = \ | 46 | #HEADERS = \ |
47 | #configuration_31compat.h \ | 47 | #configuration_31compat.h \ |
48 | #configuration.h \ | 48 | #configuration.h \ |
49 | #configwnd.h \ | 49 | #configwnd.h \ |
50 | #configwndimpl.h \ | 50 | #configwndimpl.h \ |
51 | #selftest.h | 51 | #selftest.h |
52 | #subtbledit.h \ | 52 | #subtbledit.h \ |
53 | #subtbleditimpl.h \ | 53 | #subtbleditimpl.h \ |
54 | #compressbzip2.h \ | 54 | #compressbzip2.h \ |
55 | 55 | ||
56 | HEADERS = \ | 56 | HEADERS = \ |
57 | addentrywnd_emb.h \ | 57 | addentrywnd_emb.h \ |
58 | addentrywndimpl.h \ | 58 | addentrywndimpl.h \ |
59 | base64.h \ | 59 | base64.h \ |
60 | binentrygen.h \ | 60 | binentrygen.h \ |
61 | blowfish.h \ | 61 | blowfish.h \ |
62 | commentbox.h \ | 62 | commentbox.h \ |
63 | compiler.h \ | 63 | compiler.h \ |
64 | compressgzip.h \ | 64 | compressgzip.h \ |
65 | csv.h \ | ||
65 | findwnd_emb.h \ | 66 | findwnd_emb.h \ |
66 | findwndimpl.h \ | 67 | findwndimpl.h \ |
67 | genpasswd.h \ | 68 | genpasswd.h \ |
68 | getkeycardwnd.h \ | 69 | getkeycardwnd.h \ |
69 | getmasterpwwnd_emb.h \ | 70 | getmasterpwwnd_emb.h \ |
70 | getmasterpwwndimpl.h \ | 71 | getmasterpwwndimpl.h \ |
71 | globalstuff.h \ | 72 | globalstuff.h \ |
72 | gpasmanfile.h \ | 73 | gpasmanfile.h \ |
73 | htmlgen.h \ | 74 | htmlgen.h \ |
74 | htmlparse.h \ | 75 | htmlparse.h \ |
75 | ipc.h \ | 76 | ipc.h \ |
76 | libgcryptif.h \ | 77 | libgcryptif.h \ |
77 | listobjselectwnd.h \ | 78 | listobjselectwnd.h \ |
78 | listviewpwm.h \ | 79 | listviewpwm.h \ |
79 | printtext.h \ | 80 | printtext.h \ |
80 | pwgenwnd_emb.h \ | 81 | pwgenwnd_emb.h \ |
81 | pwgenwndimpl.h \ | 82 | pwgenwndimpl.h \ |
82 | pwmdoc.h \ | 83 | pwmdoc.h \ |
83 | pwmdocui.h \ | 84 | pwmdocui.h \ |
84 | pwmexception.h \ | 85 | pwmexception.h \ |
85 | pwm.h \ | 86 | pwm.h \ |
86 | pwminit.h \ | 87 | pwminit.h \ |
87 | pwmprefs.h \ | 88 | pwmprefs.h \ |
88 | pwmprint.h \ | 89 | pwmprint.h \ |
89 | pwmtray.h \ | 90 | pwmtray.h \ |
90 | pwmview.h \ | 91 | pwmview.h \ |
91 | pwmviewstyle_0.h \ | 92 | pwmviewstyle_0.h \ |
92 | pwmviewstyle_1.h \ | 93 | pwmviewstyle_1.h \ |
93 | pwmviewstyle.h \ | 94 | pwmviewstyle.h \ |
94 | randomizer.h \ | 95 | randomizer.h \ |
95 | rc2.h \ | 96 | rc2.h \ |
96 | rencatwnd.h \ | 97 | rencatwnd.h \ |
97 | serializer.h \ | 98 | serializer.h \ |
98 | setmasterpwwnd_emb.h \ | 99 | setmasterpwwnd_emb.h \ |
99 | setmasterpwwndimpl.h \ | 100 | setmasterpwwndimpl.h \ |
100 | sha1.h \ | 101 | sha1.h \ |
101 | waitwnd.h \ | 102 | waitwnd.h \ |
102 | kcmconfigs/kcmpwmconfig.h \ | 103 | kcmconfigs/kcmpwmconfig.h \ |
103 | kcmconfigs/pwmconfigwidget.h | 104 | kcmconfigs/pwmconfigwidget.h |
104 | 105 | ||
105 | #sources that need not be build | 106 | #sources that need not be build |
106 | #SOURCES = \ | 107 | #SOURCES = \ |
107 | #advcommeditimpl.cpp \ | 108 | #advcommeditimpl.cpp \ |
108 | #configuration.cpp \ | 109 | #configuration.cpp \ |
109 | #configwnd.cpp \ | 110 | #configwnd.cpp \ |
110 | #configwndimpl.cpp \ | 111 | #configwndimpl.cpp \ |
111 | #configuration_31compat.cpp \ | 112 | #configuration_31compat.cpp \ |
112 | #htmlparse.cpp \ | 113 | #htmlparse.cpp \ |
113 | #printtext.cpp \ | 114 | #printtext.cpp \ |
114 | #selftest.cpp \ | 115 | #selftest.cpp \ |
115 | #pwmprint.cpp \ | 116 | #pwmprint.cpp \ |
116 | #spinforsignal.cpp | 117 | #spinforsignal.cpp |
117 | #subtbledit.cpp \ | 118 | #subtbledit.cpp \ |
118 | #subtbleditimpl.cpp \ | 119 | #subtbleditimpl.cpp \ |
119 | #compressbzip2.cpp | 120 | #compressbzip2.cpp |
120 | 121 | ||
121 | 122 | ||
122 | SOURCES = \ | 123 | SOURCES = \ |
123 | addentrywnd_emb.cpp \ | 124 | addentrywnd_emb.cpp \ |
124 | addentrywndimpl.cpp \ | 125 | addentrywndimpl.cpp \ |
125 | base64.cpp \ | 126 | base64.cpp \ |
126 | binentrygen.cpp \ | 127 | binentrygen.cpp \ |
127 | blowfish.cpp \ | 128 | blowfish.cpp \ |
128 | commentbox.cpp \ | 129 | commentbox.cpp \ |
129 | compressgzip.cpp \ | 130 | compressgzip.cpp \ |
131 | csv.cpp \ | ||
130 | findwnd_emb.cpp \ | 132 | findwnd_emb.cpp \ |
131 | findwndimpl.cpp \ | 133 | findwndimpl.cpp \ |
132 | genpasswd.cpp \ | 134 | genpasswd.cpp \ |
133 | getkeycardwnd.cpp \ | 135 | getkeycardwnd.cpp \ |
134 | getmasterpwwnd_emb.cpp \ | 136 | getmasterpwwnd_emb.cpp \ |
135 | getmasterpwwndimpl.cpp \ | 137 | getmasterpwwndimpl.cpp \ |
136 | globalstuff.cpp \ | 138 | globalstuff.cpp \ |
137 | gpasmanfile.cpp \ | 139 | gpasmanfile.cpp \ |
138 | htmlgen.cpp \ | 140 | htmlgen.cpp \ |
139 | ipc.cpp \ | 141 | ipc.cpp \ |
140 | libgcryptif.cpp \ | 142 | libgcryptif.cpp \ |
141 | listobjselectwnd.cpp \ | 143 | listobjselectwnd.cpp \ |
142 | listviewpwm.cpp \ | 144 | listviewpwm.cpp \ |
143 | main.cpp \ | 145 | main.cpp \ |
144 | pwgenwnd_emb.cpp \ | 146 | pwgenwnd_emb.cpp \ |
145 | pwgenwndimpl.cpp \ | 147 | pwgenwndimpl.cpp \ |
146 | pwm.cpp \ | 148 | pwm.cpp \ |
147 | pwmdoc.cpp \ | 149 | pwmdoc.cpp \ |
148 | pwmdocui.cpp \ | 150 | pwmdocui.cpp \ |
149 | pwmexception.cpp \ | 151 | pwmexception.cpp \ |
150 | pwminit.cpp \ | 152 | pwminit.cpp \ |
151 | pwmprefs.cpp \ | 153 | pwmprefs.cpp \ |
152 | pwmtray.cpp \ | 154 | pwmtray.cpp \ |
153 | pwmview.cpp \ | 155 | pwmview.cpp \ |
154 | pwmviewstyle_0.cpp \ | 156 | pwmviewstyle_0.cpp \ |
155 | pwmviewstyle_1.cpp \ | 157 | pwmviewstyle_1.cpp \ |
156 | pwmviewstyle.cpp \ | 158 | pwmviewstyle.cpp \ |
157 | randomizer.cpp \ | 159 | randomizer.cpp \ |
158 | rc2.cpp \ | 160 | rc2.cpp \ |
159 | rencatwnd.cpp \ | 161 | rencatwnd.cpp \ |
160 | serializer.cpp \ | 162 | serializer.cpp \ |
161 | setmasterpwwnd_emb.cpp \ | 163 | setmasterpwwnd_emb.cpp \ |
162 | setmasterpwwndimpl.cpp \ | 164 | setmasterpwwndimpl.cpp \ |
163 | sha1.cpp \ | 165 | sha1.cpp \ |
164 | waitwnd.cpp \ | 166 | waitwnd.cpp \ |
165 | kcmconfigs/kcmpwmconfig.cpp \ | 167 | kcmconfigs/kcmpwmconfig.cpp \ |
166 | kcmconfigs/pwmconfigwidget.cpp | 168 | kcmconfigs/pwmconfigwidget.cpp |
167 | 169 | ||
168 | 170 | ||
169 | 171 | ||