2015-07-09 11:35:51 +00:00
///////////////////////////////////////////////////////////////////////////
2021-10-21 12:59:55 +00:00
// C++ code generated with wxFormBuilder (version 3.10.0-4761b0c5)
2015-07-09 11:35:51 +00:00
// http://www.wxformbuilder.org/
//
2018-02-18 00:53:19 +00:00
// PLEASE DO *NOT* EDIT THIS FILE!
2015-07-09 11:35:51 +00:00
///////////////////////////////////////////////////////////////////////////
2019-08-25 10:06:01 +00:00
# pragma once
2015-07-09 11:35:51 +00:00
# include <wx/artprov.h>
# include <wx/xrc/xmlres.h>
# include <wx/intl.h>
class PCB_LAYER_BOX_SELECTOR ;
2016-07-14 14:25:35 +00:00
# include "dialog_shim.h"
2015-07-09 11:35:51 +00:00
# include <wx/string.h>
2017-04-22 15:45:32 +00:00
# include <wx/stattext.h>
2015-07-09 11:35:51 +00:00
# include <wx/gdicmn.h>
# include <wx/font.h>
# include <wx/colour.h>
# include <wx/settings.h>
2018-08-19 16:11:58 +00:00
# include <widgets/net_selector.h>
2018-08-19 20:44:06 +00:00
# include <wx/checkbox.h>
2021-01-06 15:35:25 +00:00
# include <wx/sizer.h>
# include <wx/statline.h>
2016-08-15 15:16:48 +00:00
# include <wx/statbox.h>
# include <wx/textctrl.h>
2017-04-22 15:45:32 +00:00
# include <wx/choice.h>
2018-08-16 19:58:24 +00:00
# include <wx/bmpcbox.h>
2015-07-09 11:35:51 +00:00
# include <wx/button.h>
# include <wx/dialog.h>
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
/// Class DIALOG_TRACK_VIA_PROPERTIES_BASE
///////////////////////////////////////////////////////////////////////////////
2016-07-14 14:25:35 +00:00
class DIALOG_TRACK_VIA_PROPERTIES_BASE : public DIALOG_SHIM
2015-07-09 11:35:51 +00:00
{
private :
2019-08-25 10:06:01 +00:00
2015-07-09 11:35:51 +00:00
protected :
2015-08-18 16:15:57 +00:00
wxBoxSizer * m_MainSizer ;
2016-08-15 15:16:48 +00:00
wxStaticBoxSizer * m_sbCommonSizer ;
2018-08-19 16:11:58 +00:00
wxStaticText * m_netSelectorLabel ;
2019-08-25 10:06:01 +00:00
NET_SELECTOR * m_netSelector ;
2021-01-06 15:35:25 +00:00
wxCheckBox * m_viaNotFree ;
wxStaticLine * m_staticline1 ;
2016-08-15 15:16:48 +00:00
wxCheckBox * m_lockedCbox ;
2015-08-18 16:15:57 +00:00
wxStaticBoxSizer * m_sbTrackSizer ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_TrackStartXLabel ;
2018-02-03 09:09:53 +00:00
wxTextCtrl * m_TrackStartXCtrl ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_TrackStartXUnit ;
wxStaticText * m_TrackStartYLabel ;
2018-02-03 09:09:53 +00:00
wxTextCtrl * m_TrackStartYCtrl ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_TrackStartYUnit ;
wxStaticText * m_TrackEndXLabel ;
2018-02-03 09:09:53 +00:00
wxTextCtrl * m_TrackEndXCtrl ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_TrackEndXUnit ;
wxStaticText * m_TrackEndYLabel ;
2018-02-03 09:09:53 +00:00
wxTextCtrl * m_TrackEndYCtrl ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_TrackEndYUnit ;
2018-08-16 19:58:24 +00:00
wxStaticText * m_DesignRuleWidths ;
wxChoice * m_DesignRuleWidthsCtrl ;
wxStaticText * m_DesignRuleWidthsUnits ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_TrackWidthLabel ;
2018-08-16 19:58:24 +00:00
wxTextCtrl * m_TrackWidthCtrl ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_TrackWidthUnit ;
wxCheckBox * m_trackNetclass ;
wxStaticText * m_TrackLayerLabel ;
PCB_LAYER_BOX_SELECTOR * m_TrackLayerCtrl ;
2015-08-18 16:15:57 +00:00
wxStaticBoxSizer * m_sbViaSizer ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_ViaXLabel ;
2018-02-03 09:09:53 +00:00
wxTextCtrl * m_ViaXCtrl ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_ViaXUnit ;
wxStaticText * m_ViaYLabel ;
2018-02-03 09:09:53 +00:00
wxTextCtrl * m_ViaYCtrl ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_ViaYUnit ;
2018-02-03 09:09:53 +00:00
wxStaticText * m_DesignRuleVias ;
wxChoice * m_DesignRuleViasCtrl ;
wxStaticText * m_DesignRuleViasUnit ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_ViaDiameterLabel ;
2018-02-03 09:09:53 +00:00
wxTextCtrl * m_ViaDiameterCtrl ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_ViaDiameterUnit ;
wxStaticText * m_ViaDrillLabel ;
2018-02-03 09:09:53 +00:00
wxTextCtrl * m_ViaDrillCtrl ;
2015-07-09 11:35:51 +00:00
wxStaticText * m_ViaDrillUnit ;
2018-02-03 09:09:53 +00:00
wxCheckBox * m_viaNetclass ;
2017-04-22 15:45:32 +00:00
wxStaticText * m_ViaTypeLabel ;
wxChoice * m_ViaTypeChoice ;
wxStaticText * m_ViaStartLayerLabel ;
PCB_LAYER_BOX_SELECTOR * m_ViaStartLayer ;
wxStaticText * m_ViaEndLayerLabel1 ;
PCB_LAYER_BOX_SELECTOR * m_ViaEndLayer ;
2021-08-14 00:44:23 +00:00
wxStaticText * m_annularRingsLabel ;
wxChoice * m_annularRingsCtrl ;
2015-07-09 11:35:51 +00:00
wxStdDialogButtonSizer * m_StdButtons ;
wxButton * m_StdButtonsOK ;
wxButton * m_StdButtonsCancel ;
2019-08-25 10:06:01 +00:00
2021-10-21 12:59:55 +00:00
// Virtual event handlers, override them in your derived class
2021-01-06 15:35:25 +00:00
virtual void onViaNotFreeClicked ( wxCommandEvent & event ) { event . Skip ( ) ; }
2019-08-25 10:06:01 +00:00
virtual void onWidthSelect ( wxCommandEvent & event ) { event . Skip ( ) ; }
virtual void onWidthEdit ( wxCommandEvent & event ) { event . Skip ( ) ; }
2015-07-09 11:35:51 +00:00
virtual void onTrackNetclassCheck ( wxCommandEvent & event ) { event . Skip ( ) ; }
2019-08-25 10:06:01 +00:00
virtual void onViaSelect ( wxCommandEvent & event ) { event . Skip ( ) ; }
virtual void onViaEdit ( wxCommandEvent & event ) { event . Skip ( ) ; }
2015-07-09 11:35:51 +00:00
virtual void onViaNetclassCheck ( wxCommandEvent & event ) { event . Skip ( ) ; }
2019-08-25 10:06:01 +00:00
2015-07-09 11:35:51 +00:00
public :
2019-08-25 10:06:01 +00:00
2021-01-06 15:35:25 +00:00
DIALOG_TRACK_VIA_PROPERTIES_BASE ( wxWindow * parent , wxWindowID id = wxID_ANY , const wxString & title = _ ( " Track & Via Properties " ) , const wxPoint & pos = wxDefaultPosition , const wxSize & size = wxSize ( - 1 , - 1 ) , long style = wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxSYSTEM_MENU ) ;
2021-10-21 12:59:55 +00:00
2015-07-09 11:35:51 +00:00
~ DIALOG_TRACK_VIA_PROPERTIES_BASE ( ) ;
2019-08-25 10:06:01 +00:00
2015-07-09 11:35:51 +00:00
} ;