2020-01-13 01:44:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2024-01-23 03:03:42 +00:00
|
|
|
// C++ code generated with wxFormBuilder (version 4.0.0-0-g0efcecf)
|
2020-01-13 01:44:19 +00:00
|
|
|
// http://www.wxformbuilder.org/
|
|
|
|
//
|
|
|
|
// PLEASE DO *NOT* EDIT THIS FILE!
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <wx/artprov.h>
|
|
|
|
#include <wx/xrc/xmlres.h>
|
2021-01-04 12:28:05 +00:00
|
|
|
#include <wx/intl.h>
|
2022-12-13 20:47:28 +00:00
|
|
|
class STD_BITMAP_BUTTON;
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
#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/radiobut.h>
|
|
|
|
#include <wx/combobox.h>
|
|
|
|
#include <wx/bmpbuttn.h>
|
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/image.h>
|
|
|
|
#include <wx/icon.h>
|
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/sizer.h>
|
2020-09-25 00:54:31 +00:00
|
|
|
#include <wx/checkbox.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <wx/dialog.h>
|
|
|
|
|
2024-03-20 01:53:21 +00:00
|
|
|
#include "kicommon.h"
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Class DIALOG_MIGRATE_SETTINGS_BASE
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2024-03-20 01:53:21 +00:00
|
|
|
class KICOMMON_API DIALOG_MIGRATE_SETTINGS_BASE : public DIALOG_SHIM
|
2020-01-13 01:44:19 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
protected:
|
|
|
|
wxBoxSizer* m_sizer;
|
|
|
|
wxStaticText* m_lblWelcome;
|
|
|
|
wxStaticText* m_staticText2;
|
|
|
|
wxRadioButton* m_btnPrevVer;
|
|
|
|
wxComboBox* m_cbPath;
|
2022-12-13 20:47:28 +00:00
|
|
|
STD_BITMAP_BUTTON* m_btnCustomPath;
|
2020-01-13 01:44:19 +00:00
|
|
|
wxStaticText* m_lblPathError;
|
2020-09-25 00:54:31 +00:00
|
|
|
wxCheckBox* m_cbCopyLibraryTables;
|
2020-01-13 01:44:19 +00:00
|
|
|
wxRadioButton* m_btnUseDefaults;
|
|
|
|
wxStdDialogButtonSizer* m_standardButtons;
|
|
|
|
wxButton* m_standardButtonsOK;
|
|
|
|
wxButton* m_standardButtonsCancel;
|
|
|
|
|
Fix various typos
Found via `codespell -q 3 -S *.po,./thirdparty,./Documentation/changelogs -L aactual,acount,aline,alocation,alog,anormal,anumber,aother,apoints,aparent,aray,ba,busses,dout,einstance,leaded,modul,ontext,ot,overide,serie,te,,tesselate,tesselator,tht`
2022-07-03 04:20:05 +00:00
|
|
|
// Virtual event handlers, override them in your derived class
|
2020-01-13 01:44:19 +00:00
|
|
|
virtual void OnPrevVerSelected( wxCommandEvent& event ) { event.Skip(); }
|
|
|
|
virtual void OnPathChanged( wxCommandEvent& event ) { event.Skip(); }
|
|
|
|
virtual void OnPathDefocused( wxFocusEvent& event ) { event.Skip(); }
|
|
|
|
virtual void OnChoosePath( wxCommandEvent& event ) { event.Skip(); }
|
|
|
|
virtual void OnDefaultSelected( wxCommandEvent& event ) { event.Skip(); }
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2021-01-04 12:28:05 +00:00
|
|
|
DIALOG_MIGRATE_SETTINGS_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Configure KiCad Settings Path"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxCAPTION );
|
2022-12-13 20:47:28 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
~DIALOG_MIGRATE_SETTINGS_BASE();
|
|
|
|
|
|
|
|
};
|
|
|
|
|