2008-10-09 19:13:25 +00:00
///////////////////////////////////////////////////////////////////////////
// C++ code generated with wxFormBuilder (version Apr 16 2008)
// http://www.wxformbuilder.org/
//
// PLEASE DO "NOT" EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
# include "dialog_copper_zones_frame.h"
///////////////////////////////////////////////////////////////////////////
BEGIN_EVENT_TABLE ( dialog_copper_zone_frame , wxDialog )
EVT_INIT_DIALOG ( dialog_copper_zone_frame : : _wxFB_OnInitDialog )
EVT_BUTTON ( wxID_OK , dialog_copper_zone_frame : : _wxFB_OnButtonOkClick )
EVT_BUTTON ( wxID_CANCEL , dialog_copper_zone_frame : : _wxFB_OnButtonCancelClick )
2008-10-10 11:31:46 +00:00
EVT_BUTTON ( wxID_ANY , dialog_copper_zone_frame : : _wxFB_OnRemoveFillZoneButtonClick )
2008-10-09 19:13:25 +00:00
EVT_RADIOBOX ( ID_NET_SORTING_OPTION , dialog_copper_zone_frame : : _wxFB_OnNetSortingOptionSelected )
END_EVENT_TABLE ( )
dialog_copper_zone_frame : : dialog_copper_zone_frame ( 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 * m_MainBoxSize ;
m_MainBoxSize = new wxBoxSizer ( wxVERTICAL ) ;
wxBoxSizer * m_OptionsBoxSizer ;
m_OptionsBoxSizer = new wxBoxSizer ( wxHORIZONTAL ) ;
wxBoxSizer * m_LeftBoxSizer ;
m_LeftBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
wxStaticBoxSizer * m_FillOptionsBox ;
m_FillOptionsBox = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Zone Fill Options: " ) ) , wxVERTICAL ) ;
wxString m_GridCtrlChoices [ ] = { _ ( " 0.00000 " ) , _ ( " 0.00000 " ) , _ ( " 0.00000 " ) , _ ( " 0.00000 " ) , _ ( " No Grid (For tests only!) " ) } ;
int m_GridCtrlNChoices = sizeof ( m_GridCtrlChoices ) / sizeof ( wxString ) ;
m_GridCtrl = new wxRadioBox ( this , ID_RADIOBOX_GRID_SELECTION , _ ( " Grid Size for Filling: " ) , wxDefaultPosition , wxDefaultSize , m_GridCtrlNChoices , m_GridCtrlChoices , 1 , wxRA_SPECIFY_COLS ) ;
2008-10-10 11:31:46 +00:00
m_GridCtrl - > SetSelection ( 1 ) ;
2008-10-09 19:13:25 +00:00
m_FillOptionsBox - > Add ( m_GridCtrl , 0 , wxALL , 5 ) ;
m_ClearanceValueTitle = new wxStaticText ( this , wxID_ANY , _ ( " Zone clearance value (mm): " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_ClearanceValueTitle - > Wrap ( - 1 ) ;
m_FillOptionsBox - > Add ( m_ClearanceValueTitle , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
m_ZoneClearanceCtrl = new wxTextCtrl ( this , wxID_ANY , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_FillOptionsBox - > Add ( m_ZoneClearanceCtrl , 0 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
wxString m_FillOptChoices [ ] = { _ ( " Include Pads " ) , _ ( " Thermal Relief " ) , _ ( " Exclude Pads " ) } ;
int m_FillOptNChoices = sizeof ( m_FillOptChoices ) / sizeof ( wxString ) ;
m_FillOpt = new wxRadioBox ( this , wxID_ANY , _ ( " Pad in Zone: " ) , wxDefaultPosition , wxDefaultSize , m_FillOptNChoices , m_FillOptChoices , 1 , wxRA_SPECIFY_COLS ) ;
m_FillOpt - > SetSelection ( 1 ) ;
m_FillOptionsBox - > Add ( m_FillOpt , 0 , wxALL | wxEXPAND , 5 ) ;
m_LeftBoxSizer - > Add ( m_FillOptionsBox , 1 , wxEXPAND , 5 ) ;
m_OptionsBoxSizer - > Add ( m_LeftBoxSizer , 0 , wxEXPAND | wxALIGN_CENTER_VERTICAL , 5 ) ;
m_OptionsBoxSizer - > Add ( 5 , 5 , 0 , wxEXPAND , 5 ) ;
wxBoxSizer * m_MiddleBoxSizer ;
m_MiddleBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
wxStaticBoxSizer * m_OutilinesBoxOpt ;
m_OutilinesBoxOpt = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Outlines Options: " ) ) , wxVERTICAL ) ;
2008-10-10 11:31:46 +00:00
wxString m_OrientEdgesOptChoices [ ] = { _ ( " Any " ) , _ ( " H , V and 45 deg " ) } ;
int m_OrientEdgesOptNChoices = sizeof ( m_OrientEdgesOptChoices ) / sizeof ( wxString ) ;
m_OrientEdgesOpt = new wxRadioBox ( this , wxID_ANY , _ ( " Zone edges orient: " ) , wxDefaultPosition , wxDefaultSize , m_OrientEdgesOptNChoices , m_OrientEdgesOptChoices , 1 , wxRA_SPECIFY_COLS ) ;
m_OrientEdgesOpt - > SetSelection ( 0 ) ;
m_OutilinesBoxOpt - > Add ( m_OrientEdgesOpt , 0 , wxALL | wxEXPAND , 5 ) ;
m_OutilinesBoxOpt - > Add ( 5 , 5 , 0 , 0 , 5 ) ;
2008-10-09 19:13:25 +00:00
wxString m_OutlineAppearanceCtrlChoices [ ] = { _ ( " Line " ) , _ ( " Hatched Outline " ) , _ ( " Full Hatched " ) } ;
int m_OutlineAppearanceCtrlNChoices = sizeof ( m_OutlineAppearanceCtrlChoices ) / sizeof ( wxString ) ;
m_OutlineAppearanceCtrl = new wxRadioBox ( this , ID_RADIOBOX_OUTLINES_OPTION , _ ( " Outlines Appearance " ) , wxDefaultPosition , wxDefaultSize , m_OutlineAppearanceCtrlNChoices , m_OutlineAppearanceCtrlChoices , 1 , wxRA_SPECIFY_COLS ) ;
2008-10-10 11:31:46 +00:00
m_OutlineAppearanceCtrl - > SetSelection ( 1 ) ;
m_OutlineAppearanceCtrl - > SetToolTip ( _ ( " How a zone outline is shoved: \n Single line \n Short hatching \n Full area hatched " ) ) ;
2008-10-09 19:13:25 +00:00
2008-10-10 11:31:46 +00:00
m_OutilinesBoxOpt - > Add ( m_OutlineAppearanceCtrl , 0 , wxALL | wxEXPAND , 5 ) ;
2008-10-09 19:13:25 +00:00
2008-10-10 11:31:46 +00:00
wxString m_ArcApproximationOptChoices [ ] = { _ ( " 16 segments / 360 deg " ) , _ ( " 32 segments / 360 deg " ) } ;
int m_ArcApproximationOptNChoices = sizeof ( m_ArcApproximationOptChoices ) / sizeof ( wxString ) ;
m_ArcApproximationOpt = new wxRadioBox ( this , wxID_ARC_APPROX , _ ( " Arcs Approximation: " ) , wxDefaultPosition , wxDefaultSize , m_ArcApproximationOptNChoices , m_ArcApproximationOptChoices , 1 , wxRA_SPECIFY_COLS ) ;
m_ArcApproximationOpt - > SetSelection ( 1 ) ;
m_ArcApproximationOpt - > SetToolTip ( _ ( " Number of segments to approximate a circle in filling calculations. \n 16 segment is faster to calculate and when redraw screen. \n 32 segment give a better quality " ) ) ;
2008-10-09 19:13:25 +00:00
2008-10-10 11:31:46 +00:00
m_OutilinesBoxOpt - > Add ( m_ArcApproximationOpt , 0 , wxALL | wxEXPAND , 5 ) ;
2008-10-09 19:13:25 +00:00
m_MiddleBoxSizer - > Add ( m_OutilinesBoxOpt , 1 , wxEXPAND , 5 ) ;
m_OptionsBoxSizer - > Add ( m_MiddleBoxSizer , 0 , 0 , 5 ) ;
m_OptionsBoxSizer - > Add ( 0 , 0 , 0 , wxEXPAND , 5 ) ;
wxBoxSizer * m_RightBoxSizer ;
m_RightBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
m_OkButton = new wxButton ( this , wxID_OK , _ ( " Ok " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
2008-10-10 11:31:46 +00:00
m_OkButton - > SetDefault ( ) ;
2008-10-09 19:13:25 +00:00
m_RightBoxSizer - > Add ( m_OkButton , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
m_ButtonCancel = new wxButton ( this , wxID_CANCEL , _ ( " Cancel " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_RightBoxSizer - > Add ( m_ButtonCancel , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
2008-10-10 11:31:46 +00:00
m_UnFillZoneButton = new wxButton ( this , wxID_ANY , _ ( " UnFill Zone " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_RightBoxSizer - > Add ( m_UnFillZoneButton , 0 , wxALL | wxALIGN_CENTER_HORIZONTAL , 5 ) ;
2008-10-09 19:13:25 +00:00
m_RightBoxSizer - > Add ( 5 , 20 , 0 , wxEXPAND , 5 ) ;
wxStaticBoxSizer * m_NetSortOptSizer ;
m_NetSortOptSizer = new wxStaticBoxSizer ( new wxStaticBox ( this , wxID_ANY , _ ( " Nets Display Options: " ) ) , wxVERTICAL ) ;
wxString m_NetSortingOptionChoices [ ] = { _ ( " Alphabetic " ) , _ ( " Advanced " ) } ;
int m_NetSortingOptionNChoices = sizeof ( m_NetSortingOptionChoices ) / sizeof ( wxString ) ;
m_NetSortingOption = new wxRadioBox ( this , ID_NET_SORTING_OPTION , _ ( " Net sorting: " ) , wxDefaultPosition , wxDefaultSize , m_NetSortingOptionNChoices , m_NetSortingOptionChoices , 1 , wxRA_SPECIFY_COLS ) ;
2008-10-10 11:31:46 +00:00
m_NetSortingOption - > SetSelection ( 1 ) ;
m_NetSortingOption - > SetToolTip ( _ ( " Nets can be sorted: \n By alphabetic order \n By number of pads in the net (advanced) " ) ) ;
2008-10-09 19:13:25 +00:00
m_NetSortOptSizer - > Add ( m_NetSortingOption , 0 , wxALL | wxEXPAND , 5 ) ;
m_staticText5 = new wxStaticText ( this , wxID_ANY , _ ( " Filter " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticText5 - > Wrap ( - 1 ) ;
m_NetSortOptSizer - > Add ( m_staticText5 , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
m_NetNameFilter = new wxTextCtrl ( this , ID_TEXTCTRL_NETNAMES_FILTER , wxEmptyString , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_NetSortOptSizer - > Add ( m_NetNameFilter , 0 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
m_RightBoxSizer - > Add ( m_NetSortOptSizer , 1 , wxEXPAND , 5 ) ;
m_OptionsBoxSizer - > Add ( m_RightBoxSizer , 0 , wxALIGN_CENTER_VERTICAL , 5 ) ;
m_MainBoxSize - > Add ( m_OptionsBoxSizer , 0 , 0 , 5 ) ;
wxBoxSizer * m_NetAndLayersLiastBoxSizer ;
m_NetAndLayersLiastBoxSizer = new wxBoxSizer ( wxVERTICAL ) ;
m_staticText2 = new wxStaticText ( this , wxID_ANY , _ ( " Net: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticText2 - > Wrap ( - 1 ) ;
m_NetAndLayersLiastBoxSizer - > Add ( m_staticText2 , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
m_ListNetNameSelection = new wxListBox ( this , ID_NETNAME_SELECTION , wxDefaultPosition , wxDefaultSize , 0 , NULL , 0 ) ;
m_NetAndLayersLiastBoxSizer - > Add ( m_ListNetNameSelection , 0 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
m_staticText3 = new wxStaticText ( this , wxID_ANY , _ ( " Layer: " ) , wxDefaultPosition , wxDefaultSize , 0 ) ;
m_staticText3 - > Wrap ( - 1 ) ;
m_NetAndLayersLiastBoxSizer - > Add ( m_staticText3 , 0 , wxTOP | wxRIGHT | wxLEFT , 5 ) ;
m_LayerSelectionCtrl = new wxListBox ( this , ID_LAYER_CHOICE , wxDefaultPosition , wxDefaultSize , 0 , NULL , 0 ) ;
m_NetAndLayersLiastBoxSizer - > Add ( m_LayerSelectionCtrl , 0 , wxEXPAND | wxBOTTOM | wxRIGHT | wxLEFT , 5 ) ;
m_MainBoxSize - > Add ( m_NetAndLayersLiastBoxSizer , 0 , wxEXPAND , 5 ) ;
this - > SetSizer ( m_MainBoxSize ) ;
this - > Layout ( ) ;
}
dialog_copper_zone_frame : : ~ dialog_copper_zone_frame ( )
{
}