KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_job_config_base.cpp
Go to the documentation of this file.
1
2// C++ code generated with wxFormBuilder (version 4.2.1-0-g80c4cb6)
3// http://www.wxformbuilder.org/
4//
5// PLEASE DO *NOT* EDIT THIS FILE!
7
9
11
12DIALOG_JOB_CONFIG_BASE::DIALOG_JOB_CONFIG_BASE( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : DIALOG_SHIM( parent, id, title, pos, size, style )
13{
14 this->SetSizeHints( wxDefaultSize, wxDefaultSize );
15
16 m_mainSizer = new wxBoxSizer( wxVERTICAL );
17
18 m_staticText1 = new wxStaticText( this, wxID_ANY, wxT("Options"), wxDefaultPosition, wxDefaultSize, 0 );
19 m_staticText1->Wrap( -1 );
20 m_mainSizer->Add( m_staticText1, 0, wxALL, 5 );
21
22 m_jobOptionsPanel = new wxPanel( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
23 m_jobOptionsSizer = new wxFlexGridSizer( 0, 2, 0, 0 );
24 m_jobOptionsSizer->SetFlexibleDirection( wxBOTH );
25 m_jobOptionsSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
26
27
29 m_jobOptionsPanel->Layout();
31 m_mainSizer->Add( m_jobOptionsPanel, 1, wxEXPAND | wxALL, 5 );
32
33 m_sdbSizer1 = new wxStdDialogButtonSizer();
34 m_sdbSizer1Save = new wxButton( this, wxID_SAVE );
35 m_sdbSizer1->AddButton( m_sdbSizer1Save );
36 m_sdbSizer1Cancel = new wxButton( this, wxID_CANCEL );
37 m_sdbSizer1->AddButton( m_sdbSizer1Cancel );
38 m_sdbSizer1->Realize();
39
40 m_mainSizer->Add( m_sdbSizer1, 0, wxEXPAND, 5 );
41
42
43 this->SetSizer( m_mainSizer );
44 this->Layout();
45 m_mainSizer->Fit( this );
46
47 this->Centre( wxBOTH );
48}
49
51{
52}
wxStdDialogButtonSizer * m_sdbSizer1
wxFlexGridSizer * m_jobOptionsSizer
DIALOG_JOB_CONFIG_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=wxEmptyString, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxDEFAULT_DIALOG_STYLE)
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
Definition: dialog_shim.h:88