2013-05-26 04:36:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2023-01-08 19:26:10 +00:00
|
|
|
// C++ code generated with wxFormBuilder (version 3.10.1-0-g8feb16b)
|
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-05-21 02:52:39 +00:00
|
|
|
#pragma once
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2015-03-15 11:41:06 +00:00
|
|
|
#include <wx/artprov.h>
|
|
|
|
#include <wx/xrc/xmlres.h>
|
2013-05-26 04:36:44 +00:00
|
|
|
#include <wx/intl.h>
|
2022-04-01 18:25:51 +00:00
|
|
|
class BITMAP_BUTTON;
|
|
|
|
class COLOR_SWATCH;
|
|
|
|
class FONT_CHOICE;
|
|
|
|
|
2015-03-15 11:41:06 +00:00
|
|
|
#include "dialog_shim.h"
|
2013-05-26 04:36:44 +00:00
|
|
|
#include <wx/string.h>
|
|
|
|
#include <wx/stattext.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#include <wx/font.h>
|
|
|
|
#include <wx/colour.h>
|
|
|
|
#include <wx/settings.h>
|
2020-05-20 17:31:19 +00:00
|
|
|
#include <wx/combobox.h>
|
2020-05-09 20:27:06 +00:00
|
|
|
#include <wx/hyperlink.h>
|
2013-05-26 04:36:44 +00:00
|
|
|
#include <wx/sizer.h>
|
2022-04-01 18:25:51 +00:00
|
|
|
#include <wx/radiobut.h>
|
|
|
|
#include <wx/statbox.h>
|
2020-05-09 20:27:06 +00:00
|
|
|
#include <wx/choice.h>
|
2022-04-01 18:25:51 +00:00
|
|
|
#include <wx/bmpbuttn.h>
|
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/image.h>
|
|
|
|
#include <wx/icon.h>
|
2013-05-26 04:36:44 +00:00
|
|
|
#include <wx/button.h>
|
2022-04-01 18:25:51 +00:00
|
|
|
#include <wx/textctrl.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/gbsizer.h>
|
2013-05-26 04:36:44 +00:00
|
|
|
#include <wx/dialog.h>
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2020-10-29 22:46:33 +00:00
|
|
|
/// Class DIALOG_SHEET_PIN_PROPERTIES_BASE
|
2013-05-26 04:36:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2020-10-29 22:46:33 +00:00
|
|
|
class DIALOG_SHEET_PIN_PROPERTIES_BASE : public DIALOG_SHIM
|
2013-05-26 04:36:44 +00:00
|
|
|
{
|
|
|
|
private:
|
2019-05-21 02:52:39 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
protected:
|
|
|
|
wxStaticText* m_staticText1;
|
2020-05-20 17:31:19 +00:00
|
|
|
wxComboBox* m_comboName;
|
2020-05-09 20:27:06 +00:00
|
|
|
wxHyperlinkCtrl* m_hyperlink1;
|
2022-04-01 18:25:51 +00:00
|
|
|
wxStaticBoxSizer* m_shapeSizer;
|
|
|
|
wxRadioButton* m_input;
|
|
|
|
wxRadioButton* m_output;
|
|
|
|
wxRadioButton* m_bidirectional;
|
|
|
|
wxRadioButton* m_triState;
|
|
|
|
wxRadioButton* m_passive;
|
|
|
|
wxStaticText* m_fontLabel;
|
|
|
|
FONT_CHOICE* m_fontCtrl;
|
|
|
|
BITMAP_BUTTON* m_separator1;
|
|
|
|
BITMAP_BUTTON* m_bold;
|
|
|
|
BITMAP_BUTTON* m_italic;
|
|
|
|
BITMAP_BUTTON* m_separator2;
|
2020-04-30 08:33:02 +00:00
|
|
|
wxStaticText* m_textSizeLabel;
|
|
|
|
wxTextCtrl* m_textSizeCtrl;
|
|
|
|
wxStaticText* m_textSizeUnits;
|
2022-04-01 18:25:51 +00:00
|
|
|
wxStaticText* m_textColorLabel;
|
|
|
|
wxPanel* m_panelBorderColor1;
|
|
|
|
COLOR_SWATCH* m_textColorSwatch;
|
2015-03-15 11:41:06 +00:00
|
|
|
wxStdDialogButtonSizer* m_sdbSizer;
|
|
|
|
wxButton* m_sdbSizerOK;
|
|
|
|
wxButton* m_sdbSizerCancel;
|
2019-05-21 02:52:39 +00:00
|
|
|
|
2023-01-08 19:26:10 +00:00
|
|
|
// Virtual event handlers, override them in your derived class
|
2020-05-20 17:31:19 +00:00
|
|
|
virtual void onComboBox( wxCommandEvent& event ) { event.Skip(); }
|
2020-05-09 20:27:06 +00:00
|
|
|
virtual void OnSyntaxHelp( wxHyperlinkEvent& event ) { event.Skip(); }
|
2018-02-19 17:07:57 +00:00
|
|
|
virtual void onOKButton( wxCommandEvent& event ) { event.Skip(); }
|
2019-05-21 02:52:39 +00:00
|
|
|
|
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
public:
|
2019-05-21 02:52:39 +00:00
|
|
|
|
2020-10-29 22:46:33 +00:00
|
|
|
DIALOG_SHEET_PIN_PROPERTIES_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Sheet Pin Properties"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1,-1 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
|
2023-01-08 19:26:10 +00:00
|
|
|
|
2020-10-29 22:46:33 +00:00
|
|
|
~DIALOG_SHEET_PIN_PROPERTIES_BASE();
|
2019-05-21 02:52:39 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
};
|
|
|
|
|