2010-11-26 20:05:31 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2012-01-21 15:02:49 +00:00
|
|
|
// C++ code generated with wxFormBuilder (version Jun 30 2011)
|
2010-11-26 20:05:31 +00:00
|
|
|
// http://www.wxformbuilder.org/
|
|
|
|
//
|
|
|
|
// PLEASE DO "NOT" EDIT THIS FILE!
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "dialog_global_deletion_base.h"
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DIALOG_GLOBAL_DELETION_BASE::DIALOG_GLOBAL_DELETION_BASE( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style )
|
|
|
|
{
|
|
|
|
this->SetSizeHints( wxDefaultSize, wxDefaultSize );
|
|
|
|
|
|
|
|
wxBoxSizer* bSizerMain;
|
2012-01-21 15:02:49 +00:00
|
|
|
bSizerMain = new wxBoxSizer( wxVERTICAL );
|
|
|
|
|
|
|
|
wxBoxSizer* bSizerUpper;
|
|
|
|
bSizerUpper = new wxBoxSizer( wxHORIZONTAL );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
|
|
|
wxStaticBoxSizer* sbSizerLeft;
|
|
|
|
sbSizerLeft = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Items to delete") ), wxVERTICAL );
|
|
|
|
|
|
|
|
m_DelZones = new wxCheckBox( this, wxID_ANY, _("Delete Zones"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
sbSizerLeft->Add( m_DelZones, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
m_DelTexts = new wxCheckBox( this, wxID_ANY, _("Delete Texts"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
sbSizerLeft->Add( m_DelTexts, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
m_DelBoardEdges = new wxCheckBox( this, wxID_ANY, _("Delete Board Outlines"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
sbSizerLeft->Add( m_DelBoardEdges, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
m_DelDrawings = new wxCheckBox( this, wxID_ANY, _("Delete Drawings"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
sbSizerLeft->Add( m_DelDrawings, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
m_DelModules = new wxCheckBox( this, wxID_ANY, _("Delete Modules"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
sbSizerLeft->Add( m_DelModules, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
m_DelTracks = new wxCheckBox( this, wxID_ANY, _("Delete Tracks"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
sbSizerLeft->Add( m_DelTracks, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
m_DelMarkers = new wxCheckBox( this, wxID_ANY, _("Delete Markers"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
sbSizerLeft->Add( m_DelMarkers, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
m_DelAlls = new wxCheckBox( this, wxID_ANY, _("Clear Board"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
sbSizerLeft->Add( m_DelAlls, 0, wxALL, 5 );
|
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
bSizerUpper->Add( sbSizerLeft, 1, wxEXPAND|wxALL, 5 );
|
|
|
|
|
|
|
|
wxBoxSizer* bSizerRight;
|
|
|
|
bSizerRight = new wxBoxSizer( wxVERTICAL );
|
|
|
|
|
|
|
|
sbTrackFilter = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Track Filter") ), wxVERTICAL );
|
|
|
|
|
|
|
|
m_TrackFilterAR = new wxCheckBox( this, wxID_ANY, _("AutoRouted Tracks"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
m_TrackFilterAR->SetValue(true);
|
|
|
|
sbTrackFilter->Add( m_TrackFilterAR, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
|
|
|
|
|
|
|
|
m_TrackFilterLocked = new wxCheckBox( this, wxID_ANY, _("Locked Tracks"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
sbTrackFilter->Add( m_TrackFilterLocked, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
m_TrackFilterNormal = new wxCheckBox( this, wxID_ANY, _("Normal Tracks"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
m_TrackFilterNormal->SetValue(true);
|
|
|
|
sbTrackFilter->Add( m_TrackFilterNormal, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
m_TrackFilterVias = new wxCheckBox( this, wxID_ANY, _("Vias"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
m_TrackFilterVias->SetValue(true);
|
|
|
|
sbTrackFilter->Add( m_TrackFilterVias, 0, wxALL, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
bSizerRight->Add( sbTrackFilter, 0, wxALL|wxEXPAND, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
wxString m_rbLayersOptionChoices[] = { _("All Layers"), _("Current Layer Only") };
|
|
|
|
int m_rbLayersOptionNChoices = sizeof( m_rbLayersOptionChoices ) / sizeof( wxString );
|
|
|
|
m_rbLayersOption = new wxRadioBox( this, wxID_ANY, _("Layers Filter"), wxDefaultPosition, wxDefaultSize, m_rbLayersOptionNChoices, m_rbLayersOptionChoices, 1, wxRA_SPECIFY_COLS );
|
|
|
|
m_rbLayersOption->SetSelection( 0 );
|
|
|
|
bSizerRight->Add( m_rbLayersOption, 0, wxALL|wxEXPAND, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
m_staticText1 = new wxStaticText( this, wxID_ANY, _("Current layer:"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
m_staticText1->Wrap( -1 );
|
|
|
|
bSizerRight->Add( m_staticText1, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
m_textCtrlCurrLayer = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_READONLY );
|
|
|
|
bSizerRight->Add( m_textCtrlCurrLayer, 0, wxEXPAND|wxBOTTOM|wxRIGHT|wxLEFT, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
bSizerUpper->Add( bSizerRight, 1, wxALIGN_CENTER_VERTICAL|wxEXPAND, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
bSizerMain->Add( bSizerUpper, 0, wxEXPAND, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
m_staticline1 = new wxStaticLine( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
|
|
|
|
bSizerMain->Add( m_staticline1, 0, wxEXPAND | wxALL, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
2012-01-21 15:02:49 +00:00
|
|
|
m_sdbSizer1 = new wxStdDialogButtonSizer();
|
|
|
|
m_sdbSizer1OK = new wxButton( this, wxID_OK );
|
|
|
|
m_sdbSizer1->AddButton( m_sdbSizer1OK );
|
|
|
|
m_sdbSizer1Cancel = new wxButton( this, wxID_CANCEL );
|
|
|
|
m_sdbSizer1->AddButton( m_sdbSizer1Cancel );
|
|
|
|
m_sdbSizer1->Realize();
|
|
|
|
bSizerMain->Add( m_sdbSizer1, 0, wxEXPAND, 5 );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
|
|
|
this->SetSizer( bSizerMain );
|
|
|
|
this->Layout();
|
|
|
|
|
|
|
|
this->Centre( wxBOTH );
|
|
|
|
|
|
|
|
// Connect Events
|
2012-01-21 15:02:49 +00:00
|
|
|
m_DelTracks->Connect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_GLOBAL_DELETION_BASE::OnCheckDeleteTracks ), NULL, this );
|
|
|
|
m_sdbSizer1Cancel->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GLOBAL_DELETION_BASE::OnCancelClick ), NULL, this );
|
|
|
|
m_sdbSizer1OK->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GLOBAL_DELETION_BASE::OnOkClick ), NULL, this );
|
2010-11-26 20:05:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DIALOG_GLOBAL_DELETION_BASE::~DIALOG_GLOBAL_DELETION_BASE()
|
|
|
|
{
|
|
|
|
// Disconnect Events
|
2012-01-21 15:02:49 +00:00
|
|
|
m_DelTracks->Disconnect( wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler( DIALOG_GLOBAL_DELETION_BASE::OnCheckDeleteTracks ), NULL, this );
|
|
|
|
m_sdbSizer1Cancel->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GLOBAL_DELETION_BASE::OnCancelClick ), NULL, this );
|
|
|
|
m_sdbSizer1OK->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_GLOBAL_DELETION_BASE::OnOkClick ), NULL, this );
|
2010-11-26 20:05:31 +00:00
|
|
|
|
|
|
|
}
|