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|wxCHK_ALLOW_3RD_STATE_FOR_USER );
 
   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 );
 
 
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)
 
DIALOG_SHIM(wxWindow *aParent, wxWindowID id, const wxString &title, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxRESIZE_BORDER, const wxString &name=wxDialogNameStr)