60#define RESOLVE_PAGE( T, pageIndex ) static_cast<T*>( m_treebook->ResolvePage( pageIndex ) )
63 PAGED_DIALOG( aParentWindow ? aParentWindow : aFrame,
_(
"Board Setup" ), false, false,
64 _(
"Import Settings from Another Board..." ), wxSize( 980, 600 ) ),
88 SetEvtHandlerEnabled(
false );
104 [
this]( wxWindow* aParent ) -> wxWindow*
107 },
_(
"Board Editor Layers" ) );
111 [
this]( wxWindow* aParent ) -> wxWindow*
116 },
_(
"Physical Stackup" ) );
120 [
this]( wxWindow* aParent ) -> wxWindow*
123 },
_(
"Board Finish" ) );
127 [
this]( wxWindow* aParent ) -> wxWindow*
130 },
_(
"Solder Mask/Paste" ) );
136 [
this]( wxWindow* aParent ) -> wxWindow*
139 },
_(
"Defaults" ) );
143 [
this]( wxWindow* aParent ) -> wxWindow*
146 },
_(
"Formatting" ) );
149 [
this]( wxWindow* aParent ) -> wxWindow*
152 },
_(
"Text Variables" ) );
158 [
this]( wxWindow* aParent ) -> wxWindow*
161 },
_(
"Constraints" ) );
165 [
this]( wxWindow* aParent ) -> wxWindow*
168 },
_(
"Pre-defined Sizes" ) );
172 [
this]( wxWindow* aParent ) -> wxWindow*
180 [
this]( wxWindow* aParent ) -> wxWindow*
183 },
_(
"Teardrops" ) );
187 [
this]( wxWindow* aParent ) -> wxWindow*
195 },
_(
"Length-tuning Patterns" ) );
199 [
this]( wxWindow* aParent ) -> wxWindow*
203 m_frame->Prj().GetProjectFile().TuningProfileParameters() );
205 _(
"Tuning Profiles" ) );
209 [
this]( wxWindow* aParent ) -> wxWindow*
213 m_frame->Prj().GetProjectFile().NetSettings(),
216 },
_(
"Net Classes" ) );
220 [
this]( wxWindow* aParent ) -> wxWindow*
224 aParent,
m_frame,
m_frame->Prj().GetProjectFile().ComponentClassSettings(),
227 _(
"Component Classes" ) );
231 [
this]( wxWindow* aParent ) -> wxWindow*
235 _(
"Custom Rules" ) );
239 [
this]( wxWindow* aParent ) -> wxWindow*
245 _(
"Violation Severity" ) );
250 [
this]( wxWindow* aParent ) -> wxWindow*
254 std::vector<const EMBEDDED_FILES*> inheritedFiles;
257 inheritedFiles.push_back( fp->GetEmbeddedFiles() );
261 _(
"Embedded Files" ) );
263 for(
size_t i = 0; i <
m_treebook->GetPageCount(); ++i )
266 SetEvtHandlerEnabled(
true );
270 if(
Prj().IsReadOnly() )
272 m_infoBar->ShowMessage(
_(
"Project is missing or read-only. Some settings will not be editable." ),
276 wxBookCtrlEvent evt( wxEVT_TREEBOOK_PAGE_CHANGED, wxID_ANY, 0 );
291 size_t page = aEvent.GetSelection();
331 if(
Prj().IsReadOnly() )
345 if( importDlg.
ShowModal() == wxID_CANCEL )
355 wxFileName projectFn( boardFn );
358 wxString msg = wxString::Format(
_(
"Error importing settings from board:\n"
359 "Associated project file %s could not be loaded" ),
360 projectFn.GetFullPath() );
374 bool okToProceed =
true;
377 std::unique_ptr<BOARD> otherBoard;
383 pi->SetProgressReporter( &progressReporter );
385 otherBoard.reset( pi->LoadBoard( boardFn.GetFullPath(),
nullptr ) );
392 okToProceed =
m_layers->CheckCopperLayerCount( loadedBoard, otherBoard.get() );
402 if( ioe.
Problem() != wxT(
"CANCEL" ) )
404 wxString msg = wxString::Format(
_(
"Error loading board file:\n%s" ), boardFn.GetFullPath() );
418 BOARD* other = otherBoard.get();
425 const bool activeProject = ( otherPrj == &
m_frame->Prj() );
427 struct BOARD_DETACH_GUARD
431 ~BOARD_DETACH_GUARD() {
if( board && !skip ) board->
ClearProject(); }
432 } detachGuard{ other, activeProject };
440 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
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()
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()
virtual const wxString Problem() const
what was the problem?
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)
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.