]>
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 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>
38 * Graphical User Interface for the PswGen application.
40 * This module adds a GUI window to the pswGen application using the SdiWindow module.
42 class Module
: public Plugins::iPlugin
52 virtual bool init(const QString
& args
);
56 virtual bool isReady() const { return mReady
; }
61 /// Master password or name changed
62 void textChanged(QString
const &);
64 /// 'Generate' button clicked
65 void generateClicked();
67 /// 'Copy' button clicked
73 /// Flag indicating that the module is ready
76 /// The iGenerator interface
77 eVaf::PswGen::iGenerator
* mGenerator
;
79 /// Widgets on the screen
81 QLineEdit
* wMasterPassword
;
83 QLineEdit
* wPassword
;
84 QPushButton
* wGenerate
;
89 } // namespace eVaf::PswGen::GUI
90 } // namespace eVaf::PswGen