2018-04-28 15:22:25 +00:00
///////////////////////////////////////////////////////////////////////////
2023-03-05 15:18:24 +00:00
// C++ code generated with wxFormBuilder (version 3.10.1-0-g8feb16b)
2018-04-28 15:22:25 +00:00
// http://www.wxformbuilder.org/
//
// PLEASE DO *NOT* EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
2020-03-17 16:08:29 +00:00
# pragma once
2018-04-28 15:22:25 +00:00
# include <wx/artprov.h>
# include <wx/xrc/xmlres.h>
# include <wx/intl.h>
2022-01-11 15:34:24 +00:00
class FONT_CHOICE ;
2018-04-28 15:22:25 +00:00
class PCB_LAYER_BOX_SELECTOR ;
# include "dialog_shim.h"
# include <wx/string.h>
# include <wx/checkbox.h>
# include <wx/gdicmn.h>
# include <wx/font.h>
# include <wx/colour.h>
# include <wx/settings.h>
# include <wx/sizer.h>
# include <wx/statbox.h>
# include <wx/bmpcbox.h>
# include <wx/textctrl.h>
# include <wx/radiobut.h>
# include <wx/stattext.h>
2022-01-11 15:34:24 +00:00
# include <wx/choice.h>
2018-04-28 15:22:25 +00:00
# include <wx/panel.h>
# include <wx/grid.h>
# include <wx/button.h>
# include <wx/dialog.h>
///////////////////////////////////////////////////////////////////////////
# define ID_SPECIFIED_NET_TO_NETCLASS_VALUES 1000
# define ID_ALL_TRACKS_VIAS 1001
///////////////////////////////////////////////////////////////////////////////
/// Class DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS_BASE
///////////////////////////////////////////////////////////////////////////////
class DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS_BASE : public DIALOG_SHIM
{
private :
2020-03-17 16:08:29 +00:00
2018-04-28 15:22:25 +00:00
protected :
wxCheckBox * m_references ;
wxCheckBox * m_values ;
wxCheckBox * m_otherFields ;
wxCheckBox * m_footprintGraphics ;
2023-03-05 15:18:24 +00:00
wxCheckBox * m_footprintDimensions ;
2019-04-11 18:58:47 +00:00
wxCheckBox * m_boardGraphics ;
wxCheckBox * m_boardText ;
2023-03-05 15:18:24 +00:00
wxCheckBox * m_boardDimensions ;
2018-04-28 15:22:25 +00:00
wxCheckBox * m_layerFilterOpt ;
PCB_LAYER_BOX_SELECTOR * m_layerFilter ;
2018-11-11 12:24:34 +00:00
wxCheckBox * m_referenceFilterOpt ;
wxTextCtrl * m_referenceFilter ;
2018-04-28 15:22:25 +00:00
wxCheckBox * m_footprintFilterOpt ;
wxTextCtrl * m_footprintFilter ;
2021-02-16 03:14:28 +00:00
wxCheckBox * m_selectedItemsFilter ;
2018-04-28 15:22:25 +00:00
wxRadioButton * m_setToSpecifiedValues ;
wxPanel * m_specifiedValues ;
wxStaticText * m_LayerLabel ;
PCB_LAYER_BOX_SELECTOR * m_LayerCtrl ;
2022-01-11 15:34:24 +00:00
wxCheckBox * m_visible ;
2018-04-28 15:22:25 +00:00
wxStaticText * m_lineWidthLabel ;
wxTextCtrl * m_LineWidthCtrl ;
wxStaticText * m_lineWidthUnits ;
2022-01-11 15:34:24 +00:00
wxStaticText * m_fontLabel ;
FONT_CHOICE * m_fontCtrl ;
wxCheckBox * m_bold ;
2018-04-28 15:22:25 +00:00
wxStaticText * m_SizeXlabel ;
wxTextCtrl * m_SizeXCtrl ;
wxStaticText * m_SizeXunit ;
2022-01-11 15:34:24 +00:00
wxCheckBox * m_italic ;
2018-04-28 15:22:25 +00:00
wxStaticText * m_SizeYlabel ;
wxTextCtrl * m_SizeYCtrl ;
wxStaticText * m_SizeYunit ;
wxCheckBox * m_keepUpright ;
wxStaticText * m_ThicknessLabel ;
wxTextCtrl * m_ThicknessCtrl ;
wxStaticText * m_ThicknessUnit ;
wxRadioButton * m_setToLayerDefaults ;
wxGrid * m_grid ;
wxStdDialogButtonSizer * m_sdbSizerButtons ;
wxButton * m_sdbSizerButtonsOK ;
2022-07-13 23:43:33 +00:00
wxButton * m_sdbSizerButtonsApply ;
2018-04-28 15:22:25 +00:00
wxButton * m_sdbSizerButtonsCancel ;
2020-03-17 16:08:29 +00:00
2022-07-13 23:43:33 +00:00
// Virtual event handlers, override them in your derived class
2023-03-05 15:18:24 +00:00
virtual void onDimensionItemCheckbox ( wxCommandEvent & event ) { event . Skip ( ) ; }
2018-04-28 15:22:25 +00:00
virtual void OnLayerFilterSelect ( wxCommandEvent & event ) { event . Skip ( ) ; }
2018-11-11 12:24:34 +00:00
virtual void OnReferenceFilterText ( wxCommandEvent & event ) { event . Skip ( ) ; }
2018-04-28 15:22:25 +00:00
virtual void OnFootprintFilterText ( wxCommandEvent & event ) { event . Skip ( ) ; }
2021-04-07 16:38:07 +00:00
virtual void onActionButtonChange ( wxCommandEvent & event ) { event . Skip ( ) ; }
virtual void onSpecifiedValueUpdateUI ( wxUpdateUIEvent & event ) { event . Skip ( ) ; }
2022-01-11 15:34:24 +00:00
virtual void onFontSelected ( wxCommandEvent & event ) { event . Skip ( ) ; }
2018-04-28 15:22:25 +00:00
virtual void OnSizeNetclassGrid ( wxSizeEvent & event ) { event . Skip ( ) ; }
2020-03-17 16:08:29 +00:00
2018-04-28 15:22:25 +00:00
public :
2020-03-17 16:08:29 +00:00
DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS_BASE ( wxWindow * parent , wxWindowID id = wxID_ANY , const wxString & title = _ ( " Edit Text and Graphic Properties " ) , const wxPoint & pos = wxDefaultPosition , const wxSize & size = wxSize ( - 1 , - 1 ) , long style = wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ) ;
2022-07-13 23:43:33 +00:00
2018-04-28 15:22:25 +00:00
~ DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS_BASE ( ) ;
2020-03-17 16:08:29 +00:00
2018-04-28 15:22:25 +00:00
} ;