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
|
/***************************************************************************
getpassword.h - description
-------------------
begin : Tue Aug 5 2003
copyright : (C) 2003 by ARRL
author : Jon Bloom
email : jbloom@arrl.org
revision : $Id$
***************************************************************************/
#ifndef __getpassword_h
#define __getpassword_h
#ifdef HAVE_CONFIG_H
#include "sysconfig.h"
#endif
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#include "wx/wxhtml.h"
class GetPasswordDialog : public wxDialog {
public:
GetPasswordDialog(wxWindow *parent, const wxString& title = _("Enter password"),
const wxString& message = _("Enter password"),
wxHtmlHelpController *help = 0, wxString helpfile = wxT(""));
wxString Password() { return _password; }
virtual bool TransferDataFromWindow();
private:
void OnOk(wxCommandEvent&);
void OnCancel(wxCommandEvent&);
void OnHelp(wxCommandEvent&);
wxHtmlHelpController *_help;
wxString _helpfile;
wxString _password;
wxTextCtrl *_pw;
DECLARE_EVENT_TABLE()
};
class GetNewPasswordDialog : public wxDialog {
public:
GetNewPasswordDialog(wxWindow *parent, const wxString& title = _("New password"),
const wxString& message = _("Enter new password"), bool blankok = false,
wxHtmlHelpController *help = 0, wxString helpfile = wxT(""));
wxString Password() { return _password; }
private:
void PWChange(wxCommandEvent&);
void OnOk(wxCommandEvent&);
void OnCancel(wxCommandEvent&);
void OnHelp(wxCommandEvent&);
bool _blankok;
wxHtmlHelpController *_help;
wxString _helpfile;
wxString _password;
wxTextCtrl *_pw1, *_pw2;
wxButton *_okbut;
wxStaticText *_pwstatus;
DECLARE_EVENT_TABLE()
};
#endif // __getpassword_h
|