]>
vaikene.ee Git - evaf/blob - src/apps/PswGen/GUI/gui.h
2 * @file PswGen/GUI/gui.h
3 * @brief GUI for the PswGen application
6 * Copyright (c) 2011-2012 Enar Vaikene
8 * This file is part of the eVaf C++ cross-platform application development framework.
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
20 #ifndef __PSWGEN_GUI_GUI_H
21 #define __PSWGEN_GUI_GUI_H
23 #include <Plugins/iPlugin>
40 * Graphical User Interface for the PswGen application.
42 * This module adds a GUI window to the pswGen application using the SdiWindow module.
44 class Module
: public Plugins::iPlugin
47 Q_INTERFACES(eVaf::Plugins::iPlugin
)
55 virtual bool init(const QString
& args
);
59 virtual bool isReady() const { return mReady
; }
64 /// Master password or name changed
65 void textChanged(QString
const &);
67 /// 'Generate' button clicked
68 void generateClicked();
70 /// 'Copy' button clicked
76 static int const DefaultPasswordLength
;
78 /// Flag indicating that the module is ready
81 /// The iGenerator interface
82 eVaf::PswGen::iGenerator
* mGenerator
;
84 /// The iStorage interface (can be null)
85 eVaf::PswGen::iStorage
* mStorage
;
87 /// Widgets on the screen
88 QLineEdit
* wMasterPassword
;
93 QLineEdit
* wPassword
;
94 QPushButton
* wGenerate
;
99 } // namespace eVaf::PswGen::GUI
100 } // namespace eVaf::PswGen