mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 10:35:35 -04:00
9203fab207
git-svn-id: svn://localhost@6 8062f311-0dae-4547-b526-b8ab9ac864a5
70 lines
1.5 KiB
C++
70 lines
1.5 KiB
C++
#ifndef GENERATEPASSWORD_H
|
|
#define GENERATEPASSWORD_H
|
|
|
|
//(*Headers(GeneratePassword)
|
|
#include <wx/sizer.h>
|
|
#include <wx/stattext.h>
|
|
#include <wx/textctrl.h>
|
|
#include <wx/statline.h>
|
|
#include <wx/panel.h>
|
|
#include <wx/statbmp.h>
|
|
#include <wx/button.h>
|
|
#include <wx/dialog.h>
|
|
//*)
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
class GeneratePassword: public wxDialog
|
|
{
|
|
public:
|
|
|
|
GeneratePassword(wxWindow* parent);
|
|
virtual ~GeneratePassword();
|
|
string mdp; //Le mot de passe final
|
|
|
|
//(*Declarations(GeneratePassword)
|
|
wxButton* CreerBt;
|
|
wxButton* OkBt;
|
|
wxStaticText* StaticText2;
|
|
wxPanel* Panel1;
|
|
wxStaticText* StaticText1;
|
|
wxTextCtrl* longEdit;
|
|
wxStaticText* StaticText3;
|
|
wxStaticLine* StaticLine2;
|
|
wxTextCtrl* mdpEdit;
|
|
wxStaticLine* StaticLine1;
|
|
wxButton* AnnulerBt;
|
|
wxStaticBitmap* StaticBitmap3;
|
|
//*)
|
|
|
|
protected:
|
|
|
|
//(*Identifiers(GeneratePassword)
|
|
static const long ID_STATICBITMAP3;
|
|
static const long ID_STATICTEXT3;
|
|
static const long ID_PANEL1;
|
|
static const long ID_STATICLINE2;
|
|
static const long ID_STATICTEXT1;
|
|
static const long ID_TEXTCTRL1;
|
|
static const long ID_STATICTEXT2;
|
|
static const long ID_BUTTON1;
|
|
static const long ID_TEXTCTRL2;
|
|
static const long ID_STATICLINE1;
|
|
static const long ID_BUTTON2;
|
|
static const long ID_BUTTON3;
|
|
//*)
|
|
|
|
private:
|
|
|
|
//(*Handlers(GeneratePassword)
|
|
void OnCreerBtClick(wxCommandEvent& event);
|
|
void OnAnnulerBtClick(wxCommandEvent& event);
|
|
void OnOkBtClick(wxCommandEvent& event);
|
|
//*)
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|