62#define RESOLVE_PAGE( T, pageIndex ) static_cast<T*>( m_treebook->ResolvePage( pageIndex ) )
65 PAGED_DIALOG( aParentWindow ? aParentWindow : aFrame,
_(
"Board Setup" ), false, false,
66 _(
"Import Settings from Another Board..." ), wxSize( 980, 600 ) ),
91 SetEvtHandlerEnabled(
false );
107 [
this]( wxWindow* aParent ) -> wxWindow*
110 },
_(
"Board Editor Layers" ) );
114 [
this]( wxWindow* aParent ) -> wxWindow*
119 },
_(
"Physical Stackup" ) );
123 [
this]( wxWindow* aParent ) -> wxWindow*
126 },
_(
"Board Finish" ) );
130 [
this]( wxWindow* aParent ) -> wxWindow*
133 },
_(
"Solder Mask/Paste" ) );
137 [
this]( wxWindow* aParent ) -> wxWindow*
140 },
_(
"Drill Chart" ) );
146 [
this]( wxWindow* aParent ) -> wxWindow*
149 },
_(
"Defaults" ) );
153 [
this]( wxWindow* aParent ) -> wxWindow*
156 },
_(
"Formatting" ) );
159 [
this]( wxWindow* aParent ) -> wxWindow*
162 },
_(
"Text Variables" ) );
168 [
this]( wxWindow* aParent ) -> wxWindow*
171 },
_(
"Constraints" ) );
175 [
this]( wxWindow* aParent ) -> wxWindow*
178 },
_(
"Pre-defined Sizes" ) );
182 [
this]( wxWindow* aParent ) -> wxWindow*
186 _(
"Microvia Stacks" ) );
190 [
this]( wxWindow* aParent ) -> wxWindow*
198 [
this]( wxWindow* aParent ) -> wxWindow*
201 },
_(
"Teardrops" ) );
205 [
this]( wxWindow* aParent ) -> wxWindow*
213 },
_(
"Length-tuning Patterns" ) );
217 [
this]( wxWindow* aParent ) -> wxWindow*
221 m_frame->Prj().GetProjectFile().TuningProfileParameters() );
223 _(
"Tuning Profiles" ) );
227 [
this]( wxWindow* aParent ) -> wxWindow*
231 m_frame->Prj().GetProjectFile().NetSettings(),
234 },
_(
"Net Classes" ) );
238 [
this]( wxWindow* aParent ) -> wxWindow*
242 aParent,
m_frame,
m_frame->Prj().GetProjectFile().ComponentClassSettings(),
245 _(
"Component Classes" ) );
249 [
this]( wxWindow* aParent ) -> wxWindow*
253 _(
"Custom Rules" ) );
257 [
this]( wxWindow* aParent ) -> wxWindow*
263 _(
"Violation Severity" ) );
268 [
this]( wxWindow* aParent ) -> wxWindow*
272 std::vector<const EMBEDDED_FILES*> inheritedFiles;
275 inheritedFiles.push_back( fp->GetEmbeddedFiles() );
279 _(
"Embedded Files" ) );
281 for(
size_t i = 0; i <
m_treebook->GetPageCount(); ++i )
284 SetEvtHandlerEnabled(
true );
288 if(
Prj().IsReadOnly() )
290 m_infoBar->ShowMessage(
_(
"Project is missing or read-only. Some settings will not be editable." ),
294 wxBookCtrlEvent evt( wxEVT_TREEBOOK_PAGE_CHANGED, wxID_ANY, 0 );
309 size_t page = aEvent.GetSelection();
349 if(
Prj().IsReadOnly() )
363 if( importDlg.
ShowModal() == wxID_CANCEL )
373 wxFileName projectFn( boardFn );
376 wxString msg = wxString::Format(
_(
"Error importing settings from board:\n"
377 "Associated project file %s could not be loaded" ),
378 projectFn.GetFullPath() );
392 bool okToProceed =
true;
395 std::unique_ptr<BOARD> otherBoard;
401 pi->SetProgressReporter( &progressReporter );
403 otherBoard = pi->LoadBoard( boardFn.GetFullPath() );
410 okToProceed =
m_layers->CheckCopperLayerCount( loadedBoard, otherBoard.get() );
425 wxString msg = wxString::Format(
_(
"Error loading board file:\n%s" ), boardFn.GetFullPath() );
438 BOARD* other = otherBoard.get();
445 const bool activeProject = ( otherPrj == &
m_frame->Prj() );
447 struct BOARD_DETACH_GUARD
451 ~BOARD_DETACH_GUARD() {
if( board && !skip ) board->
ClearProject(); }
452 } detachGuard{ other, activeProject };
460 m_layers->ImportSettingsFrom( other );
Container for design settings for a BOARD object.
std::map< int, SEVERITY > m_DRCSeverities
PNS::MEANDER_SETTINGS m_DiffPairMeanderSettings
PNS::MEANDER_SETTINGS m_SingleTrackMeanderSettings
PNS::MEANDER_SETTINGS m_SkewMeanderSettings
Information pertinent to a Pcbnew printed circuit board.
std::set< wxString > GetNetClassAssignmentCandidates() const
Return the set of netname candidates for netclass assignment.
const FOOTPRINTS & Footprints() const
void SetProject(PROJECT *aProject, bool aReferenceOnly=false)
Link a board to a given project.
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
size_t m_embeddedFilesPage
DIALOG_BOARD_SETUP(PCB_EDIT_FRAME *aFrame, wxWindow *aWindow=nullptr)
size_t m_tracksAndViasPage
size_t m_physicalStackupPage
PANEL_SETUP_TUNING_PROFILES * m_tuningProfiles
void onAuxiliaryAction(wxCommandEvent &aEvent) override
size_t m_tuningPatternsPage
PANEL_SETUP_BOARD_STACKUP * m_physicalStackup
PANEL_SETUP_ZONES * m_zones
PANEL_SETUP_BOARD_FINISH * m_boardFinish
PANEL_SETUP_LAYERS * m_layers
size_t m_tuningProfilesPage
size_t m_componentClassesPage
size_t m_maskAndPastePage
void onPageChanged(wxBookCtrlEvent &aEvent) override
PANEL_SETUP_NETCLASSES * m_netClasses
wxCheckBox * m_CustomRulesOpt
wxCheckBox * m_ZoneHatchingOffsetsOpt
wxCheckBox * m_MaskAndPasteOpt
wxCheckBox * m_ConstraintsOpt
wxCheckBox * m_ComponentClassesOpt
wxCheckBox * m_TuningPatternsOpt
wxCheckBox * m_SeveritiesOpt
wxCheckBox * m_TextAndGraphicsOpt
wxCheckBox * m_TuningProfilesOpt
wxCheckBox * m_FormattingOpt
wxCheckBox * m_TeardropsOpt
wxCheckBox * m_TracksAndViasOpt
wxCheckBox * m_NetclassesOpt
wxString GetFilePath() const
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
static std::vector< std::reference_wrapper< RC_ITEM > > GetItemsWithSeverities()
An exception saying that the user cancelled an interactive part of a load, import,...
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
WX_TREEBOOK * GetTreebook()
PAGED_DIALOG(wxWindow *aParent, const wxString &aTitle, bool aShowReset, bool aShowOpenFolder, const wxString &aAuxiliaryAction=wxEmptyString, const wxSize &aInitialSize=wxDefaultSize)
virtual void onPageChanged(wxBookCtrlEvent &aEvent)
Board-wide drill chart and map setup.
The main frame for Pcbnew.
@ KICAD_SEXP
S-expression Pcbnew file format.
static PCB_IO * FindPlugin(PCB_FILE_T aFileType)
Return a #PLUGIN which the caller can use to import, export, save, or load design documents.
The backing store for a PROJECT, in JSON format.
std::shared_ptr< NET_SETTINGS > m_NetSettings
Net settings for this project (owned here)
std::shared_ptr< TUNING_PROFILES > & TuningProfileParameters()
std::shared_ptr< COMPONENT_CLASS_SETTINGS > m_ComponentClassSettings
Component class settings for the project (owned here)
Container for project specific data.
virtual PROJECT_FILE & GetProjectFile() const
Move-only RAII wrapper for "load a foreign PROJECT non-active and unload it on scope exit.
bool IsValid() const
True iff the project loaded (or was already loaded).
PROJECT * GetProject() const
Multi-thread safe progress reporter dialog, intended for use of tasks that parallel reporting back of...
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
This file is part of the common library.
#define RESOLVE_PAGE(T, pageIndex)
static const std::string ProjectFileExtension
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
KICOMMON_API void Disable(wxWindow *aWindow)
Makes a window read-only.
Definition of file extensions used in Kicad.