2023-11-22 20:03:34 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2025-08-11 20:26:14 +01:00
|
|
|
// C++ code generated with wxFormBuilder (version 4.2.1-0-g80c4cb6)
|
2023-11-22 20:03:34 -05:00
|
|
|
// http://www.wxformbuilder.org/
|
|
|
|
//
|
|
|
|
// PLEASE DO *NOT* EDIT THIS FILE!
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "dialog_update_check_prompt_base.h"
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DIALOG_UPDATE_CHECK_PROMPT_BASE::DIALOG_UPDATE_CHECK_PROMPT_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 );
|
|
|
|
|
|
|
|
wxBoxSizer* bSizerMain;
|
|
|
|
bSizerMain = new wxBoxSizer( wxVERTICAL );
|
|
|
|
|
|
|
|
wxFlexGridSizer* fgSizer4;
|
|
|
|
fgSizer4 = new wxFlexGridSizer( 0, 2, 10, 0 );
|
|
|
|
fgSizer4->SetFlexibleDirection( wxBOTH );
|
|
|
|
fgSizer4->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
|
|
|
|
|
|
|
|
wxBoxSizer* bSizer4;
|
|
|
|
bSizer4 = new wxBoxSizer( wxVERTICAL );
|
|
|
|
|
|
|
|
m_messageLine1 = new wxStaticText( this, wxID_ANY, _("Would you like to automatically check for updates on startup?"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
m_messageLine1->Wrap( -1 );
|
|
|
|
bSizer4->Add( m_messageLine1, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
m_cbKiCadUpdates = new wxCheckBox( this, wxID_ANY, _("KiCad"), wxDefaultPosition, wxDefaultSize, 0 );
|
2025-08-11 20:26:14 +01:00
|
|
|
m_cbKiCadUpdates->SetValue(true);
|
2023-11-22 20:03:34 -05:00
|
|
|
bSizer4->Add( m_cbKiCadUpdates, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
m_cbPCMUpdates = new wxCheckBox( this, wxID_ANY, _("Plugin and Content Manager"), wxDefaultPosition, wxDefaultSize, 0 );
|
2025-08-11 20:26:14 +01:00
|
|
|
m_cbPCMUpdates->SetValue(true);
|
2023-11-22 20:03:34 -05:00
|
|
|
bSizer4->Add( m_cbPCMUpdates, 0, wxALL, 5 );
|
|
|
|
|
|
|
|
|
|
|
|
fgSizer4->Add( bSizer4, 1, wxEXPAND|wxRIGHT, 5 );
|
|
|
|
|
|
|
|
|
|
|
|
fgSizer4->Add( 0, 0, 1, wxEXPAND, 5 );
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
fgSizer4->Add( m_sdbSizer, 1, wxEXPAND, 5 );
|
|
|
|
|
|
|
|
|
|
|
|
bSizerMain->Add( fgSizer4, 1, wxEXPAND|wxALL, 5 );
|
|
|
|
|
|
|
|
|
|
|
|
this->SetSizer( bSizerMain );
|
|
|
|
this->Layout();
|
|
|
|
bSizerMain->Fit( this );
|
|
|
|
|
|
|
|
this->Centre( wxBOTH );
|
|
|
|
}
|
|
|
|
|
|
|
|
DIALOG_UPDATE_CHECK_PROMPT_BASE::~DIALOG_UPDATE_CHECK_PROMPT_BASE()
|
|
|
|
{
|
|
|
|
}
|