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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
//////////////////////////////////////////////////////////////////////
// This file was auto-generated by codelite's wxCrafter Plugin
// wxCrafter project file: WSImporterDlgs.wxcp
// Do not modify this file by hand!
//////////////////////////////////////////////////////////////////////
#include "WSImporterDlgs.h"
// Declare the bitmap loading function
extern void wxC55BDInitBitmapResources();
static bool bBitmapLoaded = false;
EnvVarImporterDlgBase::EnvVarImporterDlgBase(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos,
const wxSize& size, long style)
: wxDialog(parent, id, title, pos, size, style)
{
if(!bBitmapLoaded) {
// We need to initialise the default bitmap handler
wxXmlResource::Get()->AddHandler(new wxBitmapXmlHandler);
wxC55BDInitBitmapResources();
bBitmapLoaded = true;
}
boxSizer4 = new wxBoxSizer(wxVERTICAL);
this->SetSizer(boxSizer4);
boxSizer18 = new wxBoxSizer(wxHORIZONTAL);
boxSizer4->Add(boxSizer18, 1, wxALL | wxEXPAND, 5);
m_staticText26 = new wxStaticText(this, wxID_ANY, _("Project Name:"), wxDefaultPosition, wxSize(-1, -1), 0);
boxSizer18->Add(m_staticText26, 0, wxALL, 5);
m_projectName = new wxStaticText(this, wxID_ANY, _("Static Text Label"), wxDefaultPosition, wxSize(-1, -1), 0);
m_projectName->SetForegroundColour(wxColour(wxT("rgb(255,0,0)")));
boxSizer18->Add(m_projectName, 0, wxALL, 5);
boxSizer18->Add(0, 0, 1, wxALL, 5);
m_staticText20 = new wxStaticText(this, wxID_ANY, _("Configuration Name:"), wxDefaultPosition, wxSize(-1, -1), 0);
boxSizer18->Add(m_staticText20, 0, wxALL, 5);
m_confName = new wxStaticText(this, wxID_ANY, _("Static Text Label"), wxDefaultPosition, wxSize(-1, -1), 0);
m_confName->SetForegroundColour(wxColour(wxT("rgb(255,0,0)")));
boxSizer18->Add(m_confName, 0, wxALL, 5);
boxSizer18->Add(0, 0, 1, wxALL, 5);
boxSizer22 = new wxBoxSizer(wxVERTICAL);
boxSizer4->Add(boxSizer22, 1, wxALL | wxEXPAND, 5);
m_staticText6 = new wxStaticText(this, wxID_ANY, _("Please define the value of the following variables:"),
wxDefaultPosition, wxSize(-1, -1), 0);
boxSizer22->Add(m_staticText6, 0, wxALL, 5);
m_envVars = new wxTextCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(-1, -1), wxTE_MULTILINE);
boxSizer4->Add(m_envVars, 0, wxALL | wxEXPAND, 5);
m_envVars->SetMinSize(wxSize(600, 200));
boxSizer16 = new wxBoxSizer(wxHORIZONTAL);
boxSizer4->Add(boxSizer16, 1, wxALL | wxEXPAND, 0);
m_btnImport = new wxButton(this, wxID_ANY, _("Import"), wxDefaultPosition, wxSize(-1, -1), 0);
boxSizer16->Add(m_btnImport, 0, wxALL, 5);
m_btnContinue = new wxButton(this, wxID_ANY, _("Continue"), wxDefaultPosition, wxSize(-1, -1), 0);
boxSizer16->Add(m_btnContinue, 0, wxALL, 5);
m_btnNotImport = new wxButton(this, wxID_ANY, _("Skip"), wxDefaultPosition, wxSize(-1, -1), 0);
boxSizer16->Add(m_btnNotImport, 0, wxALL, 5);
SetName(wxT("EnvVarImporterDlgBase"));
SetSizeHints(600, 360);
if(GetSizer()) {
GetSizer()->Fit(this);
}
CentreOnParent(wxBOTH);
#if wxVERSION_NUMBER >= 2900
if(!wxPersistenceManager::Get().Find(this)) {
wxPersistenceManager::Get().RegisterAndRestore(this);
} else {
wxPersistenceManager::Get().Restore(this);
}
#endif
// Connect events
m_btnImport->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(EnvVarImporterDlgBase::OnImport), NULL,
this);
m_btnContinue->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(EnvVarImporterDlgBase::OnContinue), NULL,
this);
m_btnNotImport->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(EnvVarImporterDlgBase::OnSkip), NULL,
this);
}
EnvVarImporterDlgBase::~EnvVarImporterDlgBase()
{
m_btnImport->Disconnect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(EnvVarImporterDlgBase::OnImport), NULL,
this);
m_btnContinue->Disconnect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(EnvVarImporterDlgBase::OnContinue),
NULL, this);
m_btnNotImport->Disconnect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(EnvVarImporterDlgBase::OnSkip), NULL,
this);
}
|