12DIALOG_FILTER_SELECTION_BASE::DIALOG_FILTER_SELECTION_BASE( wxWindow* parent, wxWindowID
id,
const wxString& title,
const wxPoint& pos,
const wxSize& size,
long style ) :
DIALOG_SHIM( parent, id, title, pos, size, style )
14 this->SetSizeHints( wxDefaultSize, wxDefaultSize );
16 wxBoxSizer* bSizerMain;
17 bSizerMain =
new wxBoxSizer( wxVERTICAL );
20 gSizer1 =
new wxGridSizer( 0, 2, 3, 3 );
22 m_All_Items =
new wxCheckBox(
this, wxID_ANY,
_(
"All items"), wxPoint( -1,-1 ), wxDefaultSize, wxCHK_3STATE );
25 m_Hidden_Spacer =
new wxCheckBox(
this, wxID_ANY, wxEmptyString, wxPoint( -1,-1 ), wxDefaultSize, 0 );
30 m_Include_Modules =
new wxCheckBox(
this, wxID_ANY,
_(
"Include &footprints"), wxDefaultPosition, wxDefaultSize, 0 );
33 m_Include_PcbTexts =
new wxCheckBox(
this, wxID_ANY,
_(
"Include t&ext items"), wxDefaultPosition, wxDefaultSize, 0 );
36 m_IncludeLockedModules =
new wxCheckBox(
this, wxID_ANY,
_(
"Include &locked footprints"), wxDefaultPosition, wxDefaultSize, 0 );
39 m_Include_Draw_Items =
new wxCheckBox(
this, wxID_ANY,
_(
"Include &drawings"), wxDefaultPosition, wxDefaultSize, 0 );
42 m_Include_Tracks =
new wxCheckBox(
this, wxID_ANY,
_(
"Include &tracks"), wxDefaultPosition, wxDefaultSize, 0 );
45 m_Include_Edges_Items =
new wxCheckBox(
this, wxID_ANY,
_(
"Include &board outline layer"), wxDefaultPosition, wxDefaultSize, 0 );
48 m_Include_Vias =
new wxCheckBox(
this, wxID_ANY,
_(
"Include &vias"), wxDefaultPosition, wxDefaultSize, 0 );
51 m_Include_Zones =
new wxCheckBox(
this, wxID_ANY,
_(
"Include &zones"), wxDefaultPosition, wxDefaultSize, 0 );
55 bSizerMain->Add( gSizer1, 1, wxEXPAND|wxALL, 10 );
64 bSizerMain->Add(
m_sdbSizer1, 0, wxALL|wxEXPAND, 5 );
67 this->SetSizer( bSizerMain );
69 bSizerMain->Fit(
this );
71 this->Centre( wxBOTH );
wxCheckBox * m_Include_PcbTexts
wxButton * m_sdbSizer1Cancel
wxCheckBox * m_Include_Zones
wxCheckBox * m_Include_Draw_Items
wxCheckBox * m_IncludeLockedModules
wxCheckBox * m_Include_Modules
wxCheckBox * m_Include_Vias
~DIALOG_FILTER_SELECTION_BASE()
wxStdDialogButtonSizer * m_sdbSizer1
DIALOG_FILTER_SELECTION_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Filter Selected Items"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
virtual void ExecuteCommand(wxCommandEvent &event)
virtual void allItemsClicked(wxCommandEvent &event)
wxCheckBox * m_Include_Edges_Items
wxCheckBox * m_Hidden_Spacer
wxCheckBox * m_Include_Tracks
virtual void checkBoxClicked(wxCommandEvent &event)
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...