From d3925ba5bd25224bc4a60d3d6a107c464994a1ea Mon Sep 17 00:00:00 2001 From: ulf69 Date: Wed, 15 Sep 2004 17:53:22 +0000 Subject: initial revision --- (limited to 'pwmanager/pwmanager/pwgenwndimpl.h') diff --git a/pwmanager/pwmanager/pwgenwndimpl.h b/pwmanager/pwmanager/pwgenwndimpl.h new file mode 100644 index 0000000..5c25643 --- a/dev/null +++ b/pwmanager/pwmanager/pwgenwndimpl.h @@ -0,0 +1,54 @@ +/*************************************************************************** + * * + * 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$ + **************************************************************************/ + +#ifndef __PWGENWNDIMPL_H +#define __PWGENWNDIMPL_H + +#include "pwgenwnd.h" + +class PwGenWndImpl : public pwGenWnd +{ +public: + PwGenWndImpl(QWidget *parent = 0, + const char *name = 0, + bool modal = FALSE, + WFlags fl = 0); + ~PwGenWndImpl(); + + /** returns the generated password */ + QString getPassword(); + +protected slots: + /** generate button pressed */ + void genButton_slot(); + /** cancel button pressed */ + void cancelButton_slot(); + +protected: + /** start the internal generator */ + bool startIntGen(); + /** check all options of the internal generator */ + bool optionsSanityIntGen(); + +protected: + /** the generated password */ + QString password; +}; + +#endif // __PWGENWNDIMPL_H -- cgit v0.9.0.2