//---------------------------------------------------------------------------
//
// Name: Dlga.h
// Author: professeur
// Created: 30/04/2007 23:41:50
// Description: Dlga class declaration
//
//---------------------------------------------------------------------------
#ifndef __DLGA_h__
#define __DLGA_h__
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include <wx/wx.h>
#include <wx/dialog.h>
#else
#include <wx/wxprec.h>
#endif
//Do not add custom headers between
//Header Include Start and Header Include End.
//wxDev-C++ designer will remove them. Add custom headers after the block.
////Header Include Start
#include <wx/textctrl.h>
#include <wx/sizer.h>
////Header Include End
////Dialog Style Start
#undef Dlga_STYLE
#define Dlga_STYLE wxCAPTION | wxRESIZE_BORDER | wxSYSTEM_MENU | wxTHICK_FRAME | wxDIALOG_NO_PARENT | wxMINIMIZE_BOX | wxCLOSE_BOX
////Dialog Style End
class Dlga : public wxDialog
{
private:
DECLARE_EVENT_TABLE();
public:
Dlga(wxWindow *parent, wxWindowID id = 1, const wxString &title = wxT("Aide des options"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = Dlga_STYLE);
virtual ~Dlga();
private:
//Do not add custom control declarations between
//GUI Control Declaration Start and GUI Control Declaration End.
//wxDev-C++ will remove them. Add custom code after the block.
////GUI Control Declaration Start
wxTextCtrl *WxMemo1;
wxBoxSizer *WxBoxSizer1;
////GUI Control Declaration End
private:
//Note: if you receive any error with these enum IDs, then you need to
//change your old form code that are based on the #define control IDs.
//#defines may replace a numeric value for the enum names.
//Try copy and pasting the below block in your old form header files.
enum
{
////GUI Enum Control ID Start
ID_WXMEMO1 = 1002,
////GUI Enum Control ID End
ID_DUMMY_VALUE_ //don't remove this value unless you have other enum values
};
private:
void OnClose(wxCloseEvent& event);
void CreateGUIControls();
};
#endif