1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/***************************************************************************
* *
* copyright (C) 2004 by Michael Buesch *
* email: mbuesch@freenet.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License version 2 *
* as published by the Free Software Foundation. *
* *
***************************************************************************/
/***************************************************************************
* copyright (C) 2004 by Ulf Schenk
* This file is originaly based on version 1.0.1 of pwmanager
* and was modified to run on embedded devices that run microkde
*
* $Id$
**************************************************************************/
#include "pwgenwndimpl.h"
#include "pwmexception.h"
#include "genpasswd.h"
#include <qtabwidget.h>
#include <qspinbox.h>
#include <qcheckbox.h>
#include <qlineedit.h>
#include <klocale.h>
#include <kmessagebox.h>
PwGenWndImpl::PwGenWndImpl(QWidget *parent,
const char *name,
bool modal,
WFlags fl)
: pwGenWnd(parent, name, modal, fl)
{
}
PwGenWndImpl::~PwGenWndImpl()
{
}
void PwGenWndImpl::genButton_slot()
{
// internal generator
if (!optionsSanityIntGen())
return;
if (startIntGen())
goto exit_success;
done(0);
exit_success:
done(1);
}
void PwGenWndImpl::cancelButton_slot()
{
done(0);
}
bool PwGenWndImpl::optionsSanityIntGen()
{
if (int_charLowerCheckBox->isChecked())
return true;
if (int_charUpperCheckBox->isChecked())
return true;
if (int_charNumCheckBox->isChecked())
return true;
if (int_charSpecCheckBox->isChecked())
return true;
if (int_charUserCheckBox->isChecked()) {
if (int_userDefLineEdit->text().length() >= 2)
return true;
if (int_charBlankCheckBox->isChecked())
return true;
}
KMessageBox::error(this,
i18n("Incorrect Charset selection!\n"
"It's impossible to generate a sane "
"password with the selected charset(s).\n"
"Please select more charsets."),
i18n("Incorrect Charset selection"));
return false;
}
bool PwGenWndImpl::startIntGen()
{
GenPasswd gen;
gen.setLen(int_lenSpinBox->value());
gen.setUseFilter(int_filterCheckBox->isChecked());
gen.setCharset(int_charLowerCheckBox->isChecked(),
int_charUpperCheckBox->isChecked(),
int_charNumCheckBox->isChecked(),
int_charSpecCheckBox->isChecked(),
int_charBlankCheckBox->isChecked(),
int_charUserCheckBox->isChecked() ?
int_userDefLineEdit->text() :
QString::null);
QString pw(gen.gen());
if (pw.isEmpty())
return false;
password = pw;
return true;
}
QString PwGenWndImpl::getPassword()
{
QString ret(password);
password = QString::null;
return ret;
}
|