10#include <wx/artprov.h>
11#include <wx/xrc/xmlres.h>
18#include <wx/settings.h>
23#include <wx/bmpbuttn.h>
29#include <wx/statbox.h>
30#include <wx/stattext.h>
31#include <wx/textctrl.h>
32#include <wx/combobox.h>
34#include <wx/checkbox.h>
36#include <wx/gbsizer.h>
37#include <wx/notebook.h>
42#define ID_NOTEBOOK 1000
107 virtual void OnInitDlg( wxInitDialogEvent& event ) {
event.Skip(); }
108 virtual void OnUpdateUI( wxUpdateUIEvent& event ) {
event.Skip(); }
110 virtual void OnGridSize( wxSizeEvent& event ) {
event.Skip(); }
111 virtual void OnAddField( wxCommandEvent& event ) {
event.Skip(); }
113 virtual void OnText( wxCommandEvent& event ) {
event.Skip(); }
114 virtual void OnCombobox( wxCommandEvent& event ) {
event.Skip(); }
115 virtual void OnChoice( wxCommandEvent& event ) {
event.Skip(); }
116 virtual void OnCheckBox( wxCommandEvent& event ) {
event.Skip(); }
126 DIALOG_FOOTPRINT_PROPERTIES_BASE( wxWindow* parent, wxWindowID
id = wxID_ANY,
const wxString& title =
_(
"Footprint Properties"),
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxSize( -1,-1 ),
long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...