mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 10:13:19 +02:00
For the sake of consistency across all dialogs and window that behave like dialogs, remove the static line that separates the main part of the dialog from the standard buttons. This only applies to windows that have the standard button on the bottom of the frame. This covers the 3D viewer, CvPcb, common, GerbView and KiCad dialogs.
73 lines
2.2 KiB
C++
73 lines
2.2 KiB
C++
///////////////////////////////////////////////////////////////////////////
|
|
// C++ code generated with wxFormBuilder (version 3.10.1-0-g8feb16b)
|
|
// http://www.wxformbuilder.org/
|
|
//
|
|
// PLEASE DO *NOT* EDIT THIS FILE!
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include <wx/artprov.h>
|
|
#include <wx/xrc/xmlres.h>
|
|
#include <wx/intl.h>
|
|
class STD_BITMAP_BUTTON;
|
|
|
|
#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>
|
|
#include <wx/checkbox.h>
|
|
#include <wx/dialog.h>
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
/// Class DIALOG_MIGRATE_SETTINGS_BASE
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
class DIALOG_MIGRATE_SETTINGS_BASE : public DIALOG_SHIM
|
|
{
|
|
private:
|
|
|
|
protected:
|
|
wxBoxSizer* m_sizer;
|
|
wxStaticText* m_lblWelcome;
|
|
wxStaticText* m_staticText2;
|
|
wxRadioButton* m_btnPrevVer;
|
|
wxComboBox* m_cbPath;
|
|
STD_BITMAP_BUTTON* m_btnCustomPath;
|
|
wxStaticText* m_lblPathError;
|
|
wxCheckBox* m_cbCopyLibraryTables;
|
|
wxRadioButton* m_btnUseDefaults;
|
|
wxStdDialogButtonSizer* m_standardButtons;
|
|
wxButton* m_standardButtonsOK;
|
|
wxButton* m_standardButtonsCancel;
|
|
|
|
// Virtual event handlers, override them in your derived class
|
|
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:
|
|
|
|
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 );
|
|
|
|
~DIALOG_MIGRATE_SETTINGS_BASE();
|
|
|
|
};
|
|
|