summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/pwgenwndimpl.cpp
blob: 5313060de5b05676e87f680c5492a29224c18d32 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/***************************************************************************
 *                                                                         *
 *   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>


#ifndef PWM_EMBEDDED
PwGenWndImpl::PwGenWndImpl(QWidget *parent,
			   const char *name,
			   bool modal,
			   WFlags fl)
 : pwGenWnd(parent, name, modal, fl)
{
}

#else
PwGenWndImpl::PwGenWndImpl( QWidget* parent, const char* name)
  : pwGenWnd( parent, name)
{
}
#endif

PwGenWndImpl::~PwGenWndImpl()
{
}

#ifdef PWM_EMBEDDED
void PwGenWndImpl::slotOk()
{
  // internal generator
  if (!optionsSanityIntGen())
	return;
  if (!startIntGen())
	return;
 
  KDialogBase::slotOk();
}
#endif

void PwGenWndImpl::genButton_slot()
{
#ifndef PWM_EMBEDDED
	// internal generator
	if (!optionsSanityIntGen())
		return;
	if (startIntGen())
		goto exit_success;
	done(0);
exit_success:
	done(1);
#endif
}

void PwGenWndImpl::cancelButton_slot()
{
#ifndef PWM_EMBEDDED
	done(0);
#endif
}

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;
}