2013-05-26 04:36:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2020-03-05 12:20:38 +00:00
|
|
|
// C++ code generated with wxFormBuilder (version Jul 10 2019)
|
2013-05-26 04:36:44 +00:00
|
|
|
// http://www.wxformbuilder.org/
|
|
|
|
//
|
2018-02-02 15:56:09 +00:00
|
|
|
// PLEASE DO *NOT* EDIT THIS FILE!
|
2013-05-26 04:36:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-08-25 23:45:10 +00:00
|
|
|
#pragma once
|
2013-05-26 04:36:44 +00:00
|
|
|
|
|
|
|
#include <wx/artprov.h>
|
|
|
|
#include <wx/xrc/xmlres.h>
|
|
|
|
#include <wx/intl.h>
|
|
|
|
#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/textctrl.h>
|
2019-08-25 23:45:10 +00:00
|
|
|
#include <wx/bmpbuttn.h>
|
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/image.h>
|
|
|
|
#include <wx/icon.h>
|
|
|
|
#include <wx/button.h>
|
2013-12-14 19:03:38 +00:00
|
|
|
#include <wx/sizer.h>
|
2020-02-20 21:29:21 +00:00
|
|
|
#include <wx/checkbox.h>
|
2018-02-02 15:56:09 +00:00
|
|
|
#include <wx/statline.h>
|
2013-05-26 04:36:44 +00:00
|
|
|
#include <wx/dialog.h>
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Class DIALOG_SCH_SHEET_PROPS_BASE
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
class DIALOG_SCH_SHEET_PROPS_BASE : public DIALOG_SHIM
|
|
|
|
{
|
2019-08-25 23:45:10 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2013-05-26 04:36:44 +00:00
|
|
|
private:
|
2019-08-25 23:45:10 +00:00
|
|
|
|
|
|
|
// Private event handlers
|
|
|
|
void _wxFB_OnBrowseClicked( wxCommandEvent& event ){ OnBrowseClicked( event ); }
|
|
|
|
|
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
protected:
|
2019-08-25 23:45:10 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ID_BUTTON_BROWSE_SHEET = 1000
|
|
|
|
};
|
|
|
|
|
2018-02-02 15:56:09 +00:00
|
|
|
wxStaticText* m_filenameLabel;
|
2013-05-26 04:36:44 +00:00
|
|
|
wxTextCtrl* m_textFileName;
|
2019-08-25 23:45:10 +00:00
|
|
|
wxBitmapButton* m_browseButton;
|
2020-02-20 21:29:21 +00:00
|
|
|
wxCheckBox* m_filenameVisible;
|
2018-02-02 15:56:09 +00:00
|
|
|
wxStaticText* m_filenameSizeLabel;
|
|
|
|
wxTextCtrl* m_filenameSizeCtrl;
|
|
|
|
wxStaticText* m_filenameSizeUnits;
|
|
|
|
wxStaticText* m_sheetnameLabel;
|
2013-05-26 04:36:44 +00:00
|
|
|
wxTextCtrl* m_textSheetName;
|
2020-02-20 21:29:21 +00:00
|
|
|
wxCheckBox* m_sheetnameVisible;
|
2018-02-02 15:56:09 +00:00
|
|
|
wxStaticText* m_sheetnameSizeLabel;
|
|
|
|
wxTextCtrl* m_sheetnameSizeCtrl;
|
|
|
|
wxStaticText* m_sheetnameSizeUnits;
|
2020-03-05 12:20:38 +00:00
|
|
|
wxStaticLine* m_staticline2;
|
|
|
|
wxStaticText* m_staticTextUuid;
|
|
|
|
wxTextCtrl* m_textCtrlUuid;
|
|
|
|
wxStaticText* m_staticTextHpath;
|
|
|
|
wxTextCtrl* m_textCtrlHpath;
|
2013-05-26 04:36:44 +00:00
|
|
|
wxStaticLine* m_staticline1;
|
|
|
|
wxStdDialogButtonSizer* m_sdbSizer1;
|
|
|
|
wxButton* m_sdbSizer1OK;
|
|
|
|
wxButton* m_sdbSizer1Cancel;
|
2019-08-25 23:45:10 +00:00
|
|
|
|
|
|
|
// Virtual event handlers, overide them in your derived class
|
|
|
|
virtual void OnBrowseClicked( wxCommandEvent& event ) { event.Skip(); }
|
|
|
|
|
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
public:
|
2019-08-25 23:45:10 +00:00
|
|
|
|
|
|
|
DIALOG_SCH_SHEET_PROPS_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Schematic Sheet Properties"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
|
2013-05-26 04:36:44 +00:00
|
|
|
~DIALOG_SCH_SHEET_PROPS_BASE();
|
2019-08-25 23:45:10 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
};
|
|
|
|
|