From aa35045840b78d3f48212db45da59a2e5c69b223 Mon Sep 17 00:00:00 2001 From: saurabhb17 Date: Wed, 26 Feb 2020 15:57:49 +0530 Subject: Added main execs --- pcbnew/dialogs/dialog_drc_base.h | 112 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 pcbnew/dialogs/dialog_drc_base.h (limited to 'pcbnew/dialogs/dialog_drc_base.h') diff --git a/pcbnew/dialogs/dialog_drc_base.h b/pcbnew/dialogs/dialog_drc_base.h new file mode 100644 index 0000000..8b24392 --- /dev/null +++ b/pcbnew/dialogs/dialog_drc_base.h @@ -0,0 +1,112 @@ +/////////////////////////////////////////////////////////////////////////// +// C++ code generated with wxFormBuilder (version May 6 2016) +// http://www.wxformbuilder.org/ +// +// PLEASE DO "NOT" EDIT THIS FILE! +/////////////////////////////////////////////////////////////////////////// + +#ifndef __DIALOG_DRC_BASE_H__ +#define __DIALOG_DRC_BASE_H__ + +#include +#include +#include +class DIALOG_SHIM; +class DRCLISTBOX; + +#include "dialog_shim.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/////////////////////////////////////////////////////////////////////////// + +#define ID_CHECKBOX_RPT_FILE 1000 +#define ID_BUTTON_BROWSE_RPT_FILE 1001 +#define ID_STARTDRC 1002 +#define ID_LIST_UNCONNECTED 1003 +#define ID_DELETE_ALL 1004 +#define ID_NOTEBOOK1 1005 +#define ID_CLEARANCE_LIST 1006 +#define ID_UNCONNECTED_LIST 1007 + +/////////////////////////////////////////////////////////////////////////////// +/// Class DIALOG_DRC_CONTROL_BASE +/////////////////////////////////////////////////////////////////////////////// +class DIALOG_DRC_CONTROL_BASE : public DIALOG_SHIM +{ + private: + wxPanel* m_panelUnconnectedBox; + + protected: + wxStaticText* m_ClearanceTitle; + wxStaticText* m_TrackMinWidthTitle; + wxStaticText* m_TrackMinWidthUnit; + wxStaticText* m_ViaMinTitle; + wxStaticText* m_ViaMinUnit; + wxStaticText* m_MicroViaMinTitle; + wxStaticText* m_MicroViaMinUnit; + wxCheckBox* m_CreateRptCtrl; + wxTextCtrl* m_RptFilenameCtrl; + wxButton* m_BrowseButton; + wxStaticText* m_staticText6; + wxTextCtrl* m_Messages; + wxButton* m_buttonRunDRC; + wxButton* m_buttonListUnconnected; + wxButton* m_DeleteAllButton; + wxButton* m_DeleteCurrentMarkerButton; + wxStaticText* m_staticTextErrMsg; + wxNotebook* m_Notebook; + wxPanel* m_panelClearanceListBox; + wxStdDialogButtonSizer* m_sdbSizer1; + wxButton* m_sdbSizer1OK; + wxButton* m_sdbSizer1Cancel; + + // Virtual event handlers, overide them in your derived class + virtual void OnActivateDlg( wxActivateEvent& event ) { event.Skip(); } + virtual void OnReportCheckBoxClicked( wxCommandEvent& event ) { event.Skip(); } + virtual void OnButtonBrowseRptFileClick( wxCommandEvent& event ) { event.Skip(); } + virtual void OnStartdrcClick( wxCommandEvent& event ) { event.Skip(); } + virtual void OnListUnconnectedClick( wxCommandEvent& event ) { event.Skip(); } + virtual void OnDeleteAllClick( wxCommandEvent& event ) { event.Skip(); } + virtual void OnDeleteOneClick( wxCommandEvent& event ) { event.Skip(); } + virtual void OnChangingMarkerList( wxNotebookEvent& event ) { event.Skip(); } + virtual void OnLeftDClickClearance( wxMouseEvent& event ) { event.Skip(); } + virtual void OnMarkerSelectionEvent( wxCommandEvent& event ) { event.Skip(); } + virtual void OnRightUpClearance( wxMouseEvent& event ) { event.Skip(); } + virtual void OnLeftDClickUnconnected( wxMouseEvent& event ) { event.Skip(); } + virtual void OnUnconnectedSelectionEvent( wxCommandEvent& event ) { event.Skip(); } + virtual void OnRightUpUnconnected( wxMouseEvent& event ) { event.Skip(); } + virtual void OnCancelClick( wxCommandEvent& event ) { event.Skip(); } + virtual void OnOkClick( wxCommandEvent& event ) { event.Skip(); } + + + public: + wxTextCtrl* m_SetClearance; + wxTextCtrl* m_SetTrackMinWidthCtrl; + wxTextCtrl* m_SetViaMinSizeCtrl; + wxTextCtrl* m_SetMicroViakMinSizeCtrl; + DRCLISTBOX* m_ClearanceListBox; + DRCLISTBOX* m_UnconnectedListBox; + + DIALOG_DRC_CONTROL_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("DRC Control"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 733,438 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); + ~DIALOG_DRC_CONTROL_BASE(); + +}; + +#endif //__DIALOG_DRC_BASE_H__ -- cgit