2019-07-27 19:09:43 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2020-08-05 14:49:07 +00:00
|
|
|
// C++ code generated with wxFormBuilder (version Oct 26 2018)
|
2019-07-27 19:09:43 +00:00
|
|
|
// http://www.wxformbuilder.org/
|
|
|
|
//
|
|
|
|
// PLEASE DO *NOT* EDIT THIS FILE!
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <wx/artprov.h>
|
|
|
|
#include <wx/xrc/xmlres.h>
|
|
|
|
#include <wx/intl.h>
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/stattext.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#include <wx/font.h>
|
|
|
|
#include <wx/colour.h>
|
|
|
|
#include <wx/settings.h>
|
|
|
|
#include <wx/textctrl.h>
|
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/image.h>
|
|
|
|
#include <wx/icon.h>
|
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/sizer.h>
|
|
|
|
#include <wx/statline.h>
|
2019-09-05 19:00:14 +00:00
|
|
|
#include <wx/statbmp.h>
|
2019-07-27 19:09:43 +00:00
|
|
|
#include <wx/scrolwin.h>
|
|
|
|
#include <wx/radiobox.h>
|
|
|
|
#include <wx/checkbox.h>
|
|
|
|
#include <wx/choice.h>
|
|
|
|
#include <wx/statbox.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Class PANEL_SETUP_BOARD_STACKUP_BASE
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class PANEL_SETUP_BOARD_STACKUP_BASE : public wxPanel
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxStaticText* m_thicknessLabel;
|
|
|
|
wxTextCtrl* m_thicknessCtrl;
|
|
|
|
wxStaticText* m_staticTextCT;
|
|
|
|
wxTextCtrl* m_tcCTValue;
|
|
|
|
wxButton* m_buttonSetDielectricThickness;
|
|
|
|
wxStaticLine* m_staticline;
|
2019-09-06 18:59:13 +00:00
|
|
|
wxBoxSizer* m_sizerStackup;
|
2019-07-27 19:09:43 +00:00
|
|
|
wxScrolledWindow* m_scGridWin;
|
|
|
|
wxFlexGridSizer* m_fgGridSizer;
|
2019-09-09 18:30:43 +00:00
|
|
|
wxStaticText* m_staticTextLayer;
|
2019-09-25 07:27:36 +00:00
|
|
|
wxStaticText* m_staticTextLayerId;
|
2019-09-09 18:30:43 +00:00
|
|
|
wxStaticText* m_staticTextType;
|
|
|
|
wxStaticText* m_staticTextMaterial;
|
|
|
|
wxStaticText* m_staticTextThickness;
|
2019-09-05 19:00:14 +00:00
|
|
|
wxStaticBitmap* m_bitmapLockThickness;
|
2019-09-09 18:30:43 +00:00
|
|
|
wxStaticText* m_staticTextColor;
|
|
|
|
wxStaticText* m_staticTextEpsilonR;
|
|
|
|
wxStaticText* m_staticTextLossTg;
|
2019-07-27 19:09:43 +00:00
|
|
|
wxRadioBox* m_rbDielectricConstraint;
|
2019-11-11 18:34:48 +00:00
|
|
|
wxButton* m_buttonAddDielectricLayer;
|
|
|
|
wxButton* m_buttonRemoveDielectricLayer;
|
|
|
|
wxStaticLine* m_staticline2;
|
2019-07-27 19:09:43 +00:00
|
|
|
wxCheckBox* m_cbCastellatedPads;
|
|
|
|
wxCheckBox* m_cbEgdesPlated;
|
|
|
|
wxStaticText* m_staticTextFinish;
|
|
|
|
wxChoice* m_choiceFinish;
|
|
|
|
wxStaticText* m_staticTextEdgeConn;
|
|
|
|
wxChoice* m_choiceEdgeConn;
|
2019-09-06 09:26:27 +00:00
|
|
|
wxButton* m_buttonExport;
|
2019-07-27 19:09:43 +00:00
|
|
|
|
|
|
|
// Virtual event handlers, overide them in your derived class
|
2020-08-05 14:49:07 +00:00
|
|
|
virtual void OnUpdateUI( wxUpdateUIEvent& event ) { event.Skip(); }
|
2019-07-27 19:09:43 +00:00
|
|
|
virtual void onUpdateThicknessValue( wxUpdateUIEvent& event ) { event.Skip(); }
|
|
|
|
virtual void onCalculateDielectricThickness( wxCommandEvent& event ) { event.Skip(); }
|
2019-11-11 18:34:48 +00:00
|
|
|
virtual void onAddDielectricLayer( wxCommandEvent& event ) { event.Skip(); }
|
|
|
|
virtual void onRemoveDielectricLayer( wxCommandEvent& event ) { event.Skip(); }
|
|
|
|
virtual void onRemoveDielUI( wxUpdateUIEvent& event ) { event.Skip(); }
|
2019-09-06 09:26:27 +00:00
|
|
|
virtual void onExportToClipboard( wxCommandEvent& event ) { event.Skip(); }
|
2019-07-27 19:09:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2019-11-11 18:34:48 +00:00
|
|
|
PANEL_SETUP_BOARD_STACKUP_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 670,420 ), long style = wxTAB_TRAVERSAL, const wxString& name = wxEmptyString );
|
2019-07-27 19:09:43 +00:00
|
|
|
~PANEL_SETUP_BOARD_STACKUP_BASE();
|
|
|
|
|
|
|
|
};
|
|
|
|
|