X-Git-Url: https://vaikene.ee/gitweb/pswgen11.html?a=blobdiff_plain;f=src%2Fapps%2FPswGen%2FGUI%2Fgui.cpp;h=6f94ce9ce5f66afe5880520d6dbe1ce505620f5b;hb=a81a943bee20df3c7eb34bafb3e3fe878facfe4e;hp=34bd2f0028d89e69de8a8f51337257d492c70466;hpb=473db85d79d6d89b7b8fe617346efa3e94c66cd9;p=evaf diff --git a/src/apps/PswGen/GUI/gui.cpp b/src/apps/PswGen/GUI/gui.cpp index 34bd2f0..6f94ce9 100644 --- a/src/apps/PswGen/GUI/gui.cpp +++ b/src/apps/PswGen/GUI/gui.cpp @@ -3,7 +3,7 @@ * @brief GUI for the PswGen application * @author Enar Vaikene * - * Copyright (c) 2011 Enar Vaikene + * Copyright (c) 2011-2012 Enar Vaikene * * This file is part of the eVaf C++ cross-platform application development framework. * @@ -18,32 +18,34 @@ */ #include "gui.h" -#include "version.h" #include "Generator/iGenerator" +#include "Storage/iStorage" #include #include #include #include +#include -#include +#include -using namespace eVaf; - VER_EXPORT_VERSION_INFO() -Q_EXPORT_PLUGIN2(VER_MODULE_NAME_STR, PswGen::GUI::Module) //------------------------------------------------------------------- +using namespace eVaf; using namespace eVaf::PswGen::GUI; +int const Module::DefaultPasswordLength = 16; + Module::Module() : Plugins::iPlugin() , mReady(false) , mGenerator(0) + , mStorage(0) { setObjectName(QString("%1.%2").arg(VER_MODULE_NAME_STR).arg(__FUNCTION__)); @@ -62,55 +64,80 @@ bool Module::init(QString const & args) // Get the iGenerator interface EVAF_TEST_X((mGenerator = evafQueryInterface("iGenerator")), "No iGenerator interface"); + // Get the iStorage interface (can be null) + mStorage = evafQueryInterface("iStorage"); + if (!mStorage) + EVAF_WARNING("No iStorage interface"); + // Get the main window interface and fill it with the widgets SdiWindow::iSdiWindow * win = evafQueryInterface("iSdiWindow"); EVAF_TEST_X(win, "No iSdiWindow interface"); + Gui::Panel * panel = new Gui::Panel; + win->addPanel("PswGen", panel); + QVBoxLayout * v = new QVBoxLayout; - win->widget()->setLayout(v); + panel->setLayout(v); QGridLayout * g = new QGridLayout; v->addLayout(g); g->setColumnStretch(2, 2); - QLabel * l = new QLabel(tr("Web site or application &name:", VER_MODULE_NAME_STR)); + QLabel * l = new QLabel(tr("Master &password:", VER_MODULE_NAME_STR)); l->setAlignment(Qt::AlignRight); g->addWidget(l, 0, 0); + wMasterPassword = new QLineEdit; + l->setBuddy(wMasterPassword); + connect(wMasterPassword, SIGNAL(textChanged(QString)), this, SLOT(textChanged(QString))); + wMasterPassword->setEchoMode(QLineEdit::Password); + g->addWidget(wMasterPassword, 0, 1, 1, 2); + + l = new QLabel(tr("Web site or application &name:", VER_MODULE_NAME_STR)); + l->setAlignment(Qt::AlignRight); + g->addWidget(l, 1, 0); + wName = new QLineEdit; l->setBuddy(wName); + if (mStorage) { + QCompleter * completer = new QCompleter(wName); + completer->setModel(mStorage->autoCompletionModel()); + completer->setCompletionMode(QCompleter::InlineCompletion); + wName->setCompleter(completer); + } connect(wName, SIGNAL(textChanged(QString)), this, SLOT(textChanged(QString))); - g->addWidget(wName, 0, 1, 1, 2); - win->widget()->setFocusProxy(wName); + g->addWidget(wName, 1, 1, 1, 2); + panel->setFocusProxy(wName); - l = new QLabel(tr("Master &password:", VER_MODULE_NAME_STR)); + l = new QLabel(tr("&Suffix:", VER_MODULE_NAME_STR)); l->setAlignment(Qt::AlignRight); - g->addWidget(l, 1, 0); + g->addWidget(l, 2, 0); - wMasterPassword = new QLineEdit; - l->setBuddy(wMasterPassword); - connect(wMasterPassword, SIGNAL(textChanged(QString)), this, SLOT(textChanged(QString))); - wMasterPassword->setEchoMode(QLineEdit::Password); - g->addWidget(wMasterPassword, 1, 1, 1, 2); + wSuffix = new QLineEdit; + l->setBuddy(wSuffix); + g->addWidget(wSuffix, 2, 1, 1, 2); l = new QLabel(tr("&Length of the password:", VER_MODULE_NAME_STR)); l->setAlignment(Qt::AlignRight); - g->addWidget(l, 2, 0); + g->addWidget(l, 3, 0); wLength = new QSpinBox; l->setBuddy(wLength); wLength->setRange(0, mGenerator->maxLength()); - wLength->setValue(PswGen::iGenerator::DEFAULT_LENGTH); + wLength->setValue(DefaultPasswordLength); wLength->setSpecialValueText(tr("Maximum", VER_MODULE_NAME_STR)); - g->addWidget(wLength, 2, 1); + g->addWidget(wLength, 3, 1); + + wAlNum = new QCheckBox(tr("&Alpha-Numeric only", VER_MODULE_NAME_STR)); + g->addWidget(wAlNum, 3, 2); l = new QLabel(tr("Password:")); l->setAlignment(Qt::AlignRight); - g->addWidget(l, 3, 0); + g->addWidget(l, 4, 0); wPassword = new QLineEdit; wPassword->setReadOnly(true); - g->addWidget(wPassword, 3, 1, 1, 2); + g->addWidget(wPassword, 4, 1, 1, 2); v->addStretch(); @@ -129,15 +156,15 @@ bool Module::init(QString const & args) connect(wCopy, SIGNAL(clicked()), this, SLOT(copyClicked())); h->addWidget(wCopy); - QAction * a = new QAction(win->widget()); + QAction * a = new QAction(panel); a->setShortcut(Qt::Key_Return); connect(a, SIGNAL(triggered()), this, SLOT(generateClicked())); - win->widget()->addAction(a); + panel->addAction(a); - a = new QAction(win->widget()); + a = new QAction(panel); a->setShortcut(Qt::Key_Escape); connect(a, SIGNAL(triggered()), qApp, SLOT(quit())); - win->widget()->addAction(a); + panel->addAction(a); mReady = true; @@ -156,14 +183,43 @@ void Module::done() void Module::textChanged(QString const &) { wGenerate->setDisabled(wMasterPassword->text().isEmpty() || wName->text().isEmpty()); + if (!wName->text().isEmpty() && mStorage) { + QExplicitlySharedDataPointer data = mStorage->query(wName->text()); + if (data) { + wLength->setValue(data->length()); + wSuffix->setText(data->suffix()); + wAlNum->setChecked(data->flags() & uint(iGenerator::ALPHANUMERIC)); + } + } } void Module::generateClicked() { if (wMasterPassword->text().isEmpty() || wName->text().isEmpty()) return; - wPassword->setText(mGenerator->generatePassword(wName->text().toLatin1().constData(), wMasterPassword->text().toLatin1().constData(), wLength->value())); + uint flags = 0; + if (wAlNum->isChecked()) + flags |= iGenerator::ALPHANUMERIC; + wPassword->setText(mGenerator->generatePassword(wName->text() + wSuffix->text(), + wMasterPassword->text(), + wLength->value(), + flags)); wCopy->setEnabled(true); + if (mStorage) { + QExplicitlySharedDataPointer data = mStorage->query(wName->text()); + if (!data) { + data = new Storage::Data(wName->text(), wSuffix->text(), wLength->value()); + } + else { + data->setSuffix(wSuffix->text()); + data->setLength(wLength->value()); + if (wAlNum->isChecked()) + data->setFlags(data->flags() | iGenerator::ALPHANUMERIC); + else + data->setFlags(data->flags() & ~uint(iGenerator::ALPHANUMERIC)); + } + mStorage->save(wName->text(), data); + } } void Module::copyClicked()