152 lines
3.4 KiB
C++
152 lines
3.4 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: essai.cpp
|
|
// Purpose:
|
|
// Author: jean-pierre Charras
|
|
// Modified by:
|
|
// Created: 28/02/2006 07:46:42
|
|
// RCS-ID:
|
|
// Copyright: License GNU
|
|
// Licence:
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Generated by DialogBlocks (unregistered), 28/02/2006 07:46:42
|
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
|
#pragma implementation "essai.h"
|
|
#endif
|
|
|
|
// For compilers that support precompilation, includes "wx/wx.h".
|
|
#include "wx/wxprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/wx.h"
|
|
#endif
|
|
|
|
////@begin includes
|
|
////@end includes
|
|
|
|
#include "essai.h"
|
|
|
|
////@begin XPM images
|
|
////@end XPM images
|
|
|
|
/*!
|
|
* essai type definition
|
|
*/
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( essai, wxDialog )
|
|
|
|
/*!
|
|
* essai event table definition
|
|
*/
|
|
|
|
BEGIN_EVENT_TABLE( essai, wxDialog )
|
|
|
|
////@begin essai event table entries
|
|
////@end essai event table entries
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
/*!
|
|
* essai constructors
|
|
*/
|
|
|
|
essai::essai( )
|
|
{
|
|
}
|
|
|
|
essai::essai( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style )
|
|
{
|
|
Create(parent, id, caption, pos, size, style);
|
|
}
|
|
|
|
/*!
|
|
* essai creator
|
|
*/
|
|
|
|
bool essai::Create( wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style )
|
|
{
|
|
////@begin essai member initialisation
|
|
GridSizer = NULL;
|
|
////@end essai member initialisation
|
|
|
|
////@begin essai creation
|
|
SetExtraStyle(GetExtraStyle()|wxWS_EX_BLOCK_EVENTS);
|
|
wxDialog::Create( parent, id, caption, pos, size, style );
|
|
|
|
CreateControls();
|
|
GetSizer()->Fit(this);
|
|
GetSizer()->SetSizeHints(this);
|
|
Centre();
|
|
////@end essai creation
|
|
return true;
|
|
}
|
|
|
|
/*!
|
|
* Control creation for essai
|
|
*/
|
|
|
|
void essai::CreateControls()
|
|
{
|
|
////@begin essai content construction
|
|
// Generated by DialogBlocks, 28/02/2006 07:48:35 (unregistered)
|
|
|
|
essai* itemDialog1 = this;
|
|
|
|
wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL);
|
|
itemDialog1->SetSizer(itemBoxSizer2);
|
|
|
|
wxStaticText* itemStaticText3 = new wxStaticText( itemDialog1, wxID_STATIC, _("Static text"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
itemBoxSizer2->Add(itemStaticText3, 0, wxGROW|wxALL|wxADJUST_MINSIZE, 5);
|
|
|
|
GridSizer = new wxFlexGridSizer(3, 2, 0, 0);
|
|
itemBoxSizer2->Add(GridSizer, 0, wxGROW|wxALL, 5);
|
|
|
|
wxStaticText* itemStaticText5 = new wxStaticText( itemDialog1, wxID_STATIC, _("X:"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
GridSizer->Add(itemStaticText5, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT|wxADJUST_MINSIZE, 5);
|
|
|
|
wxTextCtrl* itemTextCtrl6 = new wxTextCtrl( itemDialog1, ID_TEXTCTRL, _T(""), wxDefaultPosition, wxDefaultSize, 0 );
|
|
GridSizer->Add(itemTextCtrl6, 0, wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 5);
|
|
|
|
////@end essai content construction
|
|
}
|
|
|
|
/*!
|
|
* Should we show tooltips?
|
|
*/
|
|
|
|
bool essai::ShowToolTips()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/*!
|
|
* Get bitmap resources
|
|
*/
|
|
|
|
wxBitmap essai::GetBitmapResource( const wxString& name )
|
|
{
|
|
// Bitmap retrieval
|
|
////@begin essai bitmap retrieval
|
|
wxUnusedVar(name);
|
|
return wxNullBitmap;
|
|
////@end essai bitmap retrieval
|
|
}
|
|
|
|
/*!
|
|
* Get icon resources
|
|
*/
|
|
|
|
wxIcon essai::GetIconResource( const wxString& name )
|
|
{
|
|
// Icon retrieval
|
|
////@begin essai icon retrieval
|
|
wxUnusedVar(name);
|
|
return wxNullIcon;
|
|
////@end essai icon retrieval
|
|
}
|