2017-11-23 13:05:26 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2023-04-13 14:30:31 +00:00
|
|
|
// C++ code generated with wxFormBuilder (version 3.10.1-0-g8feb16b3)
|
2017-11-23 13:05:26 +00:00
|
|
|
// http://www.wxformbuilder.org/
|
|
|
|
//
|
2019-01-29 06:15:38 +00:00
|
|
|
// PLEASE DO *NOT* EDIT THIS FILE!
|
2017-11-23 13:05:26 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-01-29 06:15:38 +00:00
|
|
|
#pragma once
|
2017-11-23 13:05:26 +00:00
|
|
|
|
|
|
|
#include <wx/artprov.h>
|
|
|
|
#include <wx/xrc/xmlres.h>
|
|
|
|
#include <wx/intl.h>
|
|
|
|
class TEXT_CTRL_EVAL;
|
|
|
|
|
|
|
|
#include "dialog_shim.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/filepicker.h>
|
|
|
|
#include <wx/sizer.h>
|
2021-07-01 12:16:28 +00:00
|
|
|
#include <wx/radiobut.h>
|
|
|
|
#include <wx/statbox.h>
|
2017-11-23 13:05:26 +00:00
|
|
|
#include <wx/choice.h>
|
|
|
|
#include <wx/textctrl.h>
|
|
|
|
#include <wx/valtext.h>
|
2018-02-18 00:02:45 +00:00
|
|
|
#include <wx/checkbox.h>
|
2017-11-23 13:05:26 +00:00
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/dialog.h>
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Class DIALOG_EXPORT_STEP_BASE
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class DIALOG_EXPORT_STEP_BASE : public DIALOG_SHIM
|
|
|
|
{
|
|
|
|
private:
|
2019-01-29 06:15:38 +00:00
|
|
|
|
2017-11-23 13:05:26 +00:00
|
|
|
protected:
|
2021-08-20 21:07:00 +00:00
|
|
|
wxBoxSizer* bSizerSTEPFile;
|
|
|
|
wxBoxSizer* bSizerTop;
|
2017-11-23 13:05:26 +00:00
|
|
|
wxStaticText* m_txtBrdFile;
|
|
|
|
wxFilePickerCtrl* m_filePickerSTEP;
|
2018-02-18 00:02:45 +00:00
|
|
|
wxRadioButton* m_rbDrillAndPlotOrigin;
|
|
|
|
wxRadioButton* m_rbGridOrigin;
|
|
|
|
wxRadioButton* m_rbUserDefinedOrigin;
|
|
|
|
wxRadioButton* m_rbBoardCenterOrigin;
|
2018-10-02 06:34:07 +00:00
|
|
|
wxStaticText* m_staticTextUnits;
|
2017-11-23 13:05:26 +00:00
|
|
|
wxChoice* m_STEP_OrgUnitChoice;
|
2018-10-02 06:34:07 +00:00
|
|
|
wxStaticText* m_staticTextXpos;
|
2017-11-23 13:05:26 +00:00
|
|
|
TEXT_CTRL_EVAL* m_STEP_Xorg;
|
2018-10-02 06:34:07 +00:00
|
|
|
wxStaticText* m_staticTextYpos;
|
2017-11-23 13:05:26 +00:00
|
|
|
TEXT_CTRL_EVAL* m_STEP_Yorg;
|
2023-04-13 14:30:31 +00:00
|
|
|
wxCheckBox* m_cbRemoveDNP;
|
|
|
|
wxCheckBox* m_cbRemoveUnspecified;
|
2021-06-08 22:46:37 +00:00
|
|
|
wxCheckBox* m_cbSubstModels;
|
2018-10-02 06:34:07 +00:00
|
|
|
wxCheckBox* m_cbOverwriteFile;
|
2023-03-02 18:38:19 +00:00
|
|
|
wxCheckBox* m_cbExportTracks;
|
2018-10-02 06:34:07 +00:00
|
|
|
wxStaticText* m_staticTextTolerance;
|
2023-03-02 18:38:19 +00:00
|
|
|
wxChoice* m_choiceTolerance;
|
2018-05-09 11:24:42 +00:00
|
|
|
wxStdDialogButtonSizer* m_sdbSizer;
|
|
|
|
wxButton* m_sdbSizerOK;
|
|
|
|
wxButton* m_sdbSizerCancel;
|
2019-01-29 06:15:38 +00:00
|
|
|
|
2021-08-20 21:07:00 +00:00
|
|
|
// Virtual event handlers, override them in your derived class
|
2018-02-18 00:02:45 +00:00
|
|
|
virtual void onUpdateUnits( wxUpdateUIEvent& event ) { event.Skip(); }
|
|
|
|
virtual void onUpdateXPos( wxUpdateUIEvent& event ) { event.Skip(); }
|
|
|
|
virtual void onUpdateYPos( wxUpdateUIEvent& event ) { event.Skip(); }
|
2018-03-19 14:36:21 +00:00
|
|
|
virtual void onExportButton( wxCommandEvent& event ) { event.Skip(); }
|
2019-01-29 06:15:38 +00:00
|
|
|
|
|
|
|
|
2017-11-23 13:05:26 +00:00
|
|
|
public:
|
2019-01-29 06:15:38 +00:00
|
|
|
|
2023-08-19 23:01:05 +00:00
|
|
|
DIALOG_EXPORT_STEP_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Export STEP / GLTF"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
|
2022-10-05 18:51:38 +00:00
|
|
|
|
2017-11-23 13:05:26 +00:00
|
|
|
~DIALOG_EXPORT_STEP_BASE();
|
2019-01-29 06:15:38 +00:00
|
|
|
|
2017-11-23 13:05:26 +00:00
|
|
|
};
|
|
|
|
|