2015-01-11 17:22:45 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2023-01-08 18:15:20 +00:00
|
|
|
// C++ code generated with wxFormBuilder (version 3.10.1-0-g8feb16b)
|
2015-01-11 17:22:45 +00:00
|
|
|
// http://www.wxformbuilder.org/
|
|
|
|
//
|
2017-12-26 14:38:45 +00:00
|
|
|
// PLEASE DO *NOT* EDIT THIS FILE!
|
2015-01-11 17:22:45 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "dialog_config_equfiles_base.h"
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DIALOG_CONFIG_EQUFILES_BASE::DIALOG_CONFIG_EQUFILES_BASE( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : DIALOG_SHIM( parent, id, title, pos, size, style )
|
|
|
|
{
|
|
|
|
this->SetSizeHints( wxDefaultSize, wxDefaultSize );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
wxBoxSizer* bMainSizer;
|
|
|
|
bMainSizer = new wxBoxSizer( wxVERTICAL );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
wxStaticBoxSizer* sbEquivChoiceSizer;
|
2017-12-26 14:38:45 +00:00
|
|
|
sbEquivChoiceSizer = new wxStaticBoxSizer( new wxStaticBox( this, wxID_ANY, _("Symbol Footprint Association Files (.equ)") ), wxHORIZONTAL );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
wxBoxSizer* bSizerFlist;
|
|
|
|
bSizerFlist = new wxBoxSizer( wxVERTICAL );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
|
|
|
m_ListEquiv = new wxListBox( sbEquivChoiceSizer->GetStaticBox(), wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, NULL, wxLB_EXTENDED|wxLB_HSCROLL|wxLB_NEEDED_SB|wxLB_SINGLE );
|
2015-01-11 17:22:45 +00:00
|
|
|
m_ListEquiv->SetMinSize( wxSize( 350,-1 ) );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2017-12-26 14:38:45 +00:00
|
|
|
bSizerFlist->Add( m_ListEquiv, 1, wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
sbEquivChoiceSizer->Add( bSizerFlist, 1, wxEXPAND, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
wxBoxSizer* bSizerButtons;
|
|
|
|
bSizerButtons = new wxBoxSizer( wxVERTICAL );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2016-02-25 13:57:59 +00:00
|
|
|
m_buttonAddEqu = new wxButton( sbEquivChoiceSizer->GetStaticBox(), ID_ADD_EQU, _("Add"), wxDefaultPosition, wxDefaultSize, 0 );
|
2018-08-01 19:08:12 +00:00
|
|
|
bSizerButtons->Add( m_buttonAddEqu, 0, wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2016-02-25 13:57:59 +00:00
|
|
|
m_buttonRemoveEqu = new wxButton( sbEquivChoiceSizer->GetStaticBox(), ID_REMOVE_EQU, _("Remove"), wxDefaultPosition, wxDefaultSize, 0 );
|
2018-08-01 19:08:12 +00:00
|
|
|
bSizerButtons->Add( m_buttonRemoveEqu, 0, wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2016-02-25 13:57:59 +00:00
|
|
|
m_buttonMoveUp = new wxButton( sbEquivChoiceSizer->GetStaticBox(), ID_EQU_UP, _("Move Up"), wxDefaultPosition, wxDefaultSize, 0 );
|
2018-08-01 19:08:12 +00:00
|
|
|
bSizerButtons->Add( m_buttonMoveUp, 0, wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2016-02-25 13:57:59 +00:00
|
|
|
m_buttonMoveDown = new wxButton( sbEquivChoiceSizer->GetStaticBox(), ID_EQU_DOWN, _("Move Down"), wxDefaultPosition, wxDefaultSize, 0 );
|
2018-08-01 19:08:12 +00:00
|
|
|
bSizerButtons->Add( m_buttonMoveDown, 0, wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2017-12-26 14:38:45 +00:00
|
|
|
m_buttonEdit = new wxButton( sbEquivChoiceSizer->GetStaticBox(), wxID_ANY, _("Edit File"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
bSizerButtons->Add( m_buttonEdit, 0, wxBOTTOM|wxEXPAND|wxLEFT|wxRIGHT, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
sbEquivChoiceSizer->Add( bSizerButtons, 0, wxALIGN_CENTER_VERTICAL, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
bMainSizer->Add( sbEquivChoiceSizer, 1, wxEXPAND|wxTOP|wxRIGHT|wxLEFT, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
wxBoxSizer* bSizerLower;
|
|
|
|
bSizerLower = new wxBoxSizer( wxHORIZONTAL );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
wxBoxSizer* bSizerEnvVar;
|
|
|
|
bSizerEnvVar = new wxBoxSizer( wxVERTICAL );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
m_staticText2 = new wxStaticText( this, wxID_ANY, _("Available environment variables for relative paths:"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
m_staticText2->Wrap( -1 );
|
|
|
|
bSizerEnvVar->Add( m_staticText2, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
m_gridEnvVars = new wxGrid( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
// Grid
|
|
|
|
m_gridEnvVars->CreateGrid( 2, 2 );
|
|
|
|
m_gridEnvVars->EnableEditing( true );
|
|
|
|
m_gridEnvVars->EnableGridLines( true );
|
|
|
|
m_gridEnvVars->EnableDragGridSize( false );
|
|
|
|
m_gridEnvVars->SetMargins( 0, 0 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
// Columns
|
|
|
|
m_gridEnvVars->EnableDragColMove( false );
|
|
|
|
m_gridEnvVars->EnableDragColSize( true );
|
2015-01-15 20:01:53 +00:00
|
|
|
m_gridEnvVars->SetColLabelValue( 0, _("Name") );
|
|
|
|
m_gridEnvVars->SetColLabelValue( 1, _("Value") );
|
2023-01-08 18:15:20 +00:00
|
|
|
m_gridEnvVars->SetColLabelSize( 25 );
|
2020-11-16 12:29:07 +00:00
|
|
|
m_gridEnvVars->SetColLabelAlignment( wxALIGN_CENTER, wxALIGN_CENTER );
|
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
// Rows
|
|
|
|
m_gridEnvVars->AutoSizeRows();
|
|
|
|
m_gridEnvVars->EnableDragRowSize( true );
|
|
|
|
m_gridEnvVars->SetRowLabelSize( 30 );
|
2020-11-16 12:29:07 +00:00
|
|
|
m_gridEnvVars->SetRowLabelAlignment( wxALIGN_CENTER, wxALIGN_CENTER );
|
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
// Label Appearance
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
// Cell Defaults
|
2023-09-18 14:15:22 +00:00
|
|
|
m_gridEnvVars->SetDefaultCellAlignment( wxALIGN_LEFT, wxALIGN_CENTER );
|
2015-01-11 17:22:45 +00:00
|
|
|
bSizerEnvVar->Add( m_gridEnvVars, 0, wxEXPAND|wxBOTTOM|wxRIGHT|wxLEFT, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
bSizerLower->Add( bSizerEnvVar, 1, wxEXPAND, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2017-12-27 21:10:01 +00:00
|
|
|
wxString m_rbPathOptionChoiceChoices[] = { _("Absolute"), _("Relative") };
|
2015-01-11 17:22:45 +00:00
|
|
|
int m_rbPathOptionChoiceNChoices = sizeof( m_rbPathOptionChoiceChoices ) / sizeof( wxString );
|
2020-11-16 12:29:07 +00:00
|
|
|
m_rbPathOptionChoice = new wxRadioBox( this, wxID_ANY, _("Path Type"), wxDefaultPosition, wxDefaultSize, m_rbPathOptionChoiceNChoices, m_rbPathOptionChoiceChoices, 1, wxRA_SPECIFY_COLS );
|
2015-01-11 17:22:45 +00:00
|
|
|
m_rbPathOptionChoice->SetSelection( 1 );
|
|
|
|
bSizerLower->Add( m_rbPathOptionChoice, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
bMainSizer->Add( bSizerLower, 0, wxEXPAND, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
m_sdbSizer = new wxStdDialogButtonSizer();
|
|
|
|
m_sdbSizerOK = new wxButton( this, wxID_OK );
|
|
|
|
m_sdbSizer->AddButton( m_sdbSizerOK );
|
|
|
|
m_sdbSizerCancel = new wxButton( this, wxID_CANCEL );
|
|
|
|
m_sdbSizer->AddButton( m_sdbSizerCancel );
|
|
|
|
m_sdbSizer->Realize();
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2023-01-08 18:15:20 +00:00
|
|
|
bMainSizer->Add( m_sdbSizer, 0, wxALL|wxEXPAND, 5 );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
this->SetSizer( bMainSizer );
|
|
|
|
this->Layout();
|
2017-12-26 14:38:45 +00:00
|
|
|
bMainSizer->Fit( this );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
this->Centre( wxBOTH );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
// Connect Events
|
|
|
|
this->Connect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnCloseWindow ) );
|
|
|
|
m_buttonAddEqu->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnAddFiles ), NULL, this );
|
|
|
|
m_buttonRemoveEqu->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnRemoveFiles ), NULL, this );
|
|
|
|
m_buttonMoveUp->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnButtonMoveUp ), NULL, this );
|
|
|
|
m_buttonMoveDown->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnButtonMoveDown ), NULL, this );
|
2015-01-15 20:01:53 +00:00
|
|
|
m_buttonEdit->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnEditEquFile ), NULL, this );
|
2015-01-11 17:22:45 +00:00
|
|
|
m_sdbSizerOK->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnOkClick ), NULL, this );
|
|
|
|
}
|
|
|
|
|
|
|
|
DIALOG_CONFIG_EQUFILES_BASE::~DIALOG_CONFIG_EQUFILES_BASE()
|
|
|
|
{
|
|
|
|
// Disconnect Events
|
|
|
|
this->Disconnect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnCloseWindow ) );
|
|
|
|
m_buttonAddEqu->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnAddFiles ), NULL, this );
|
|
|
|
m_buttonRemoveEqu->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnRemoveFiles ), NULL, this );
|
|
|
|
m_buttonMoveUp->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnButtonMoveUp ), NULL, this );
|
|
|
|
m_buttonMoveDown->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnButtonMoveDown ), NULL, this );
|
2015-01-15 20:01:53 +00:00
|
|
|
m_buttonEdit->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnEditEquFile ), NULL, this );
|
2015-01-11 17:22:45 +00:00
|
|
|
m_sdbSizerOK->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( DIALOG_CONFIG_EQUFILES_BASE::OnOkClick ), NULL, this );
|
2020-11-16 12:29:07 +00:00
|
|
|
|
2015-01-11 17:22:45 +00:00
|
|
|
}
|