12PANEL_SYM_DISPLAY_OPTIONS_BASE::PANEL_SYM_DISPLAY_OPTIONS_BASE( wxWindow* parent, wxWindowID 
id, 
const wxPoint& pos, 
const wxSize& size, 
long style, 
const wxString& 
name ) : 
RESETTABLE_PANEL( parent, id, pos, size, style, 
name )
 
   14    wxBoxSizer* bPanelSizer;
 
   15    bPanelSizer = 
new wxBoxSizer( wxHORIZONTAL );
 
   22    wxBoxSizer* bRightColumn;
 
   23    bRightColumn = 
new wxBoxSizer( wxVERTICAL );
 
   25    m_appearanceLabel = 
new wxStaticText( 
this, wxID_ANY, 
_(
"Appearance"), wxDefaultPosition, wxDefaultSize, 0 );
 
   29    m_staticline1 = 
new wxStaticLine( 
this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
 
   30    bRightColumn->Add( 
m_staticline1, 0, wxEXPAND|wxTOP|wxBOTTOM, 2 );
 
   32    wxBoxSizer* bAppearanceSizer;
 
   33    bAppearanceSizer = 
new wxBoxSizer( wxVERTICAL );
 
   35    m_checkShowHiddenPins = 
new wxCheckBox( 
this, wxID_ANY, 
_(
"S&how hidden pins"), wxDefaultPosition, wxDefaultSize, 0 );
 
   38    m_checkShowHiddenFields = 
new wxCheckBox( 
this, wxID_ANY, 
_(
"Show hidden fields"), wxDefaultPosition, wxDefaultSize, 0 );
 
   41    m_showPinElectricalTypes = 
new wxCheckBox( 
this, wxID_ANY, 
_(
"Show pin &electrical type"), wxDefaultPosition, wxDefaultSize, 0 );
 
   45    m_checkShowPinAltModeIcons = 
new wxCheckBox( 
this, wxID_ANY, 
_(
"Show pin &alternate mode indicator icons"), wxDefaultPosition, wxDefaultSize, 0 );
 
   50    bRightColumn->Add( bAppearanceSizer, 0, wxEXPAND|wxTOP|wxLEFT, 5 );
 
   53    bPanelSizer->Add( bRightColumn, 0, wxEXPAND|wxBOTTOM|wxLEFT, 10 );
 
   56    this->SetSizer( bPanelSizer );
 
   58    bPanelSizer->Fit( 
this );
 
 
PANEL_SYM_DISPLAY_OPTIONS_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxTAB_TRAVERSAL, const wxString &name=wxEmptyString)
 
RESETTABLE_PANEL(wxWindow *aParent, wxWindowID aId=wxID_ANY, const wxPoint &aPos=wxDefaultPosition, const wxSize &aSize=wxSize(-1,-1), long aStyle=wxTAB_TRAVERSAL, const wxString &aName=wxEmptyString)