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 115 116 117 118 119 120 121 122 123 124 125
|
//////////////////////////////////////////////////////////////////////
// This file was auto-generated by codelite's wxCrafter Plugin
// wxCrafter project file: depend_dlg_page.wxcp
// Do not modify this file by hand!
//////////////////////////////////////////////////////////////////////
#include "buildorderbasepage.h"
// Declare the bitmap loading function
extern void wxC312EInitBitmapResources();
static bool bBitmapLoaded = false;
DependenciesPageBase::DependenciesPageBase(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style)
: wxPanel(parent, id, pos, size, style)
{
if ( !bBitmapLoaded ) {
// We need to initialise the default bitmap handler
wxXmlResource::Get()->AddHandler(new wxBitmapXmlHandler);
wxC312EInitBitmapResources();
bBitmapLoaded = true;
}
wxBoxSizer* boxSizer1 = new wxBoxSizer(wxVERTICAL);
this->SetSizer(boxSizer1);
m_staticText3 = new wxStaticText(this, wxID_ANY, _("Select build order for configuration:"), wxDefaultPosition, wxSize(-1, -1), 0);
boxSizer1->Add(m_staticText3, 0, wxALL, 5);
wxArrayString m_choiceProjectConfigArr;
m_choiceProjectConfig = new wxChoice(this, wxID_ANY, wxDefaultPosition, wxSize(-1, -1), m_choiceProjectConfigArr, 0);
boxSizer1->Add(m_choiceProjectConfig, 0, wxALL|wxEXPAND, 5);
wxBoxSizer* bSizer3 = new wxBoxSizer(wxHORIZONTAL);
boxSizer1->Add(bSizer3, 1, wxEXPAND, 5);
wxBoxSizer* bSizer31 = new wxBoxSizer(wxVERTICAL);
bSizer3->Add(bSizer31, 5, wxEXPAND, 5);
m_staticText1 = new wxStaticText(this, wxID_ANY, _("Projects:"), wxDefaultPosition, wxSize(-1, -1), 0);
bSizer31->Add(m_staticText1, 0, wxLEFT|wxRIGHT|wxTOP, 5);
wxArrayString m_checkListProjectListArr;
m_checkListProjectList = new wxCheckListBox(this, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), m_checkListProjectListArr, wxLB_SINGLE);
bSizer31->Add(m_checkListProjectList, 1, wxALL|wxEXPAND, 5);
wxBoxSizer* bSizer4 = new wxBoxSizer(wxVERTICAL);
bSizer3->Add(bSizer4, 6, wxEXPAND, 5);
m_staticText2 = new wxStaticText(this, wxID_ANY, _("Build Order:"), wxDefaultPosition, wxSize(-1, -1), 0);
bSizer4->Add(m_staticText2, 0, wxLEFT|wxRIGHT|wxTOP, 5);
wxBoxSizer* bSizer11 = new wxBoxSizer(wxHORIZONTAL);
bSizer4->Add(bSizer11, 1, wxEXPAND, 5);
wxBoxSizer* bSizer5 = new wxBoxSizer(wxVERTICAL);
bSizer11->Add(bSizer5, 1, wxEXPAND, 5);
wxArrayString m_listBoxBuildOrderArr;
m_listBoxBuildOrder = new wxListBox(this, wxID_ANY, wxDefaultPosition, wxSize(-1, -1), m_listBoxBuildOrderArr, 0);
bSizer5->Add(m_listBoxBuildOrder, 1, wxALL|wxEXPAND, 5);
wxBoxSizer* bSizer6 = new wxBoxSizer(wxVERTICAL);
bSizer11->Add(bSizer6, 0, wxEXPAND, 5);
wxBoxSizer* bSizer8 = new wxBoxSizer(wxVERTICAL);
bSizer6->Add(bSizer8, 1, wxEXPAND, 5);
m_buttonUp = new wxButton(this, wxID_UP, _("Up"), wxDefaultPosition, wxSize(-1, -1), 0);
bSizer8->Add(m_buttonUp, 0, wxALL|wxEXPAND, 5);
m_buttonDown = new wxButton(this, wxID_DOWN, _("Down"), wxDefaultPosition, wxSize(-1, -1), 0);
bSizer8->Add(m_buttonDown, 0, wxALL|wxEXPAND, 5);
wxBoxSizer* bSizer7 = new wxBoxSizer(wxVERTICAL);
bSizer6->Add(bSizer7, 0, 0, 5);
m_buttonApply = new wxButton(this, wxID_APPLY, _("Apply"), wxDefaultPosition, wxSize(-1, -1), 0);
bSizer7->Add(m_buttonApply, 0, wxALL|wxEXPAND, 5);
SetName(wxT("DependenciesPageBase"));
SetSizeHints(-1,-1);
if ( GetSizer() ) {
GetSizer()->Fit(this);
}
CentreOnParent(wxBOTH);
// Connect events
m_choiceProjectConfig->Connect(wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler(DependenciesPageBase::OnConfigChanged), NULL, this);
m_checkListProjectList->Connect(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, wxCommandEventHandler(DependenciesPageBase::OnCheckListItemToggled), NULL, this);
m_buttonUp->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(DependenciesPageBase::OnMoveUp), NULL, this);
m_buttonDown->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(DependenciesPageBase::OnMoveDown), NULL, this);
m_buttonApply->Connect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(DependenciesPageBase::OnApplyButton), NULL, this);
m_buttonApply->Connect(wxEVT_UPDATE_UI, wxUpdateUIEventHandler(DependenciesPageBase::OnApplyButtonUI), NULL, this);
}
DependenciesPageBase::~DependenciesPageBase()
{
m_choiceProjectConfig->Disconnect(wxEVT_COMMAND_CHOICE_SELECTED, wxCommandEventHandler(DependenciesPageBase::OnConfigChanged), NULL, this);
m_checkListProjectList->Disconnect(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, wxCommandEventHandler(DependenciesPageBase::OnCheckListItemToggled), NULL, this);
m_buttonUp->Disconnect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(DependenciesPageBase::OnMoveUp), NULL, this);
m_buttonDown->Disconnect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(DependenciesPageBase::OnMoveDown), NULL, this);
m_buttonApply->Disconnect(wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(DependenciesPageBase::OnApplyButton), NULL, this);
m_buttonApply->Disconnect(wxEVT_UPDATE_UI, wxUpdateUIEventHandler(DependenciesPageBase::OnApplyButtonUI), NULL, this);
}
|