KiCad PCB EDA Suite
|
#include <panel_setup_layers.h>
Public Member Functions | |
PANEL_SETUP_LAYERS (wxWindow *aParentWindow, PCB_EDIT_FRAME *aFrame) | |
void | ImportSettingsFrom (BOARD *aBoard) |
bool | CheckCopperLayerCount (BOARD *aWorkingBoard, BOARD *aImportedBoard) |
Check and warn if inner copper layers will be deleted. | |
LSET | GetUILayerMask () |
void | SyncCopperLayers (int aNumCopperLayers) |
Called when switching to this tab to make sure that any changes to the copper layer count made on the physical stackup page are reflected here. | |
void | SetPhysicalStackupPanel (PANEL_SETUP_BOARD_STACKUP *aPanel) |
bool | IsInitialized () const |
Protected Attributes | |
wxButton * | m_addUserDefinedLayerButton |
wxStaticLine * | m_staticline2 |
wxScrolledWindow * | m_LayersListPanel |
wxFlexGridSizer * | m_LayersSizer |
Private Member Functions | |
void | setLayerCheckBox (PCB_LAYER_ID layer, bool isChecked) |
void | setCopperLayerCheckBoxes (int copperCount) |
void | setUserDefinedLayerCheckBoxes () |
void | showBoardLayerNames () |
void | showSelectedLayerCheckBoxes (const LSET &enableLayerMask) |
void | showLayerTypes () |
bool | transferDataFromWindow () |
bool | TransferDataToWindow () override |
bool | TransferDataFromWindow () override |
virtual void | addUserDefinedLayer (wxCommandEvent &aEvent) override |
bool | testLayerNames () |
LSEQ | getRemovedLayersWithItems () |
Return a list of layers removed from the board that contain items. | |
LSEQ | getNonRemovableLayers () |
Return a list of layers in use in footprints, and therefore not removable. | |
wxTextCtrl * | getName (PCB_LAYER_ID aLayer) |
wxCheckBox * | getCheckBox (PCB_LAYER_ID aLayer) |
wxChoice * | getChoice (PCB_LAYER_ID aLayer) |
void | initialize_front_tech_layers () |
void | initialize_layers_controls () |
void | initialize_back_tech_layers () |
void | append_user_layer (PCB_LAYER_ID aLayer) |
Definition at line 57 of file panel_setup_layers.h.
PANEL_SETUP_LAYERS::PANEL_SETUP_LAYERS | ( | wxWindow * | aParentWindow, |
PCB_EDIT_FRAME * | aFrame ) |
Definition at line 62 of file panel_setup_layers.cpp.
References PCB_BASE_FRAME::GetBoard(), m_AdhesBackCheckBox, m_AdhesBackName, m_AdhesBackStaticText, m_AdhesFrontCheckBox, m_AdhesFrontName, m_AdhesFrontStaticText, m_CommentsCheckBox, m_CommentsName, m_CommentsStaticText, m_CrtYdBackCheckBox, m_CrtYdBackName, m_CrtYdBackStaticText, m_CrtYdFrontCheckBox, m_CrtYdFrontName, m_CrtYdFrontStaticText, m_DrawingsCheckBox, m_DrawingsName, m_DrawingsStaticText, m_Eco1CheckBox, m_Eco1Name, m_Eco1StaticText, m_Eco2CheckBox, m_Eco2Name, m_Eco2StaticText, m_FabBackCheckBox, m_FabBackName, m_FabBackStaticText, m_FabFrontCheckBox, m_FabFrontName, m_FabFrontStaticText, m_frame, m_initialized, m_MarginCheckBox, m_MarginName, m_MarginStaticText, m_MaskBackCheckBox, m_MaskBackName, m_MaskBackStaticText, m_MaskFrontCheckBox, m_MaskFrontName, m_MaskFrontStaticText, m_pcb, m_PCBEdgesCheckBox, m_PCBEdgesName, m_PCBEdgesStaticText, m_physicalStackup, m_SilkSBackCheckBox, m_SilkSBackName, m_SilkSBackStaticText, m_SilkSFrontCheckBox, m_SilkSFrontName, m_SilkSFrontStaticText, m_SoldPBackCheckBox, m_SoldPBackName, m_SoldPBackStaticText, m_SoldPFrontCheckBox, m_SoldPFrontName, m_SoldPFrontStaticText, and PANEL_SETUP_LAYERS_BASE::PANEL_SETUP_LAYERS_BASE().
|
overrideprivatevirtual |
Reimplemented from PANEL_SETUP_LAYERS_BASE.
Definition at line 1080 of file panel_setup_layers.cpp.
References _, append_user_layer(), PANEL_SETUP_LAYERS_CTLs::checkbox, PANEL_SETUP_LAYERS_CTLs::choice, DisplayErrorMessage(), getCheckBox(), PAGED_DIALOG::GetDialog(), EDA_LIST_DIALOG::GetTextSelection(), EDA_LIST_DIALOG::HideFilter(), LayerName(), m_enabledLayers, m_layersControls, PANEL_SETUP_LAYERS_BASE::m_LayersListPanel, LSET::Name(), PANEL_SETUP_LAYERS_CTLs::name, EDA_LIST_DIALOG::SetListLabel(), DIALOG_SHIM::ShowModal(), UNDEFINED_LAYER, User_1, and LSET::UserDefinedLayersMask().
|
private |
Definition at line 524 of file panel_setup_layers.cpp.
References _, LayerName(), m_layersControls, PANEL_SETUP_LAYERS_BASE::m_LayersListPanel, and PANEL_SETUP_LAYERS_BASE::m_LayersSizer.
Referenced by addUserDefinedLayer(), and initialize_layers_controls().
Check and warn if inner copper layers will be deleted.
This function warns users if they are going to delete inner copper layers because they're importing settings from a board with less copper layers than the board already loaded.
aWorkingBoard | is the currently loaded PCB |
aImportedBoard | is the PCB imported to get settings from. |
Definition at line 1044 of file panel_setup_layers.cpp.
References _, and BOARD::GetCopperLayerCount().
|
private |
Definition at line 557 of file panel_setup_layers.cpp.
References m_layersControls.
Referenced by addUserDefinedLayer(), GetUILayerMask(), and setCopperLayerCheckBoxes().
|
private |
Definition at line 563 of file panel_setup_layers.cpp.
References m_layersControls.
Referenced by showLayerTypes(), and transferDataFromWindow().
|
private |
Definition at line 551 of file panel_setup_layers.cpp.
References m_layersControls.
Referenced by showBoardLayerNames(), testLayerNames(), and transferDataFromWindow().
|
private |
Return a list of layers in use in footprints, and therefore not removable.
Definition at line 1002 of file panel_setup_layers.cpp.
References PCB_LAYER_COLLECTOR::Collect(), LSET::Contains(), GENERAL_COLLECTOR::FootprintItems, COLLECTOR::GetCount(), GetUILayerMask(), IsCopperLayer(), m_pcb, and PCB_LAYER_COLLECTOR::SetLayerId().
Referenced by TransferDataFromWindow().
|
private |
Return a list of layers removed from the board that contain items.
Footprints and items owned by footprints are not taken in account
Definition at line 983 of file panel_setup_layers.cpp.
References GetUILayerMask(), and m_pcb.
Referenced by TransferDataFromWindow().
LSET PANEL_SETUP_LAYERS::GetUILayerMask | ( | ) |
Definition at line 695 of file panel_setup_layers.cpp.
References _, getCheckBox(), m_layersControls, and BASE_SET::set().
Referenced by getNonRemovableLayers(), getRemovedLayersWithItems(), and transferDataFromWindow().
void PANEL_SETUP_LAYERS::ImportSettingsFrom | ( | BOARD * | aBoard | ) |
Definition at line 1033 of file panel_setup_layers.cpp.
References m_pcb, and TransferDataToWindow().
|
private |
Definition at line 243 of file panel_setup_layers.cpp.
References _, B_Adhes, B_CrtYd, B_Fab, B_Mask, B_Paste, B_SilkS, Cmts_User, Dwgs_User, Eco1_User, Eco2_User, Edge_Cuts, LayerName(), m_AdhesBackCheckBox, m_AdhesBackName, m_AdhesBackStaticText, m_CommentsCheckBox, m_CommentsName, m_CommentsStaticText, m_CrtYdBackCheckBox, m_CrtYdBackName, m_CrtYdBackStaticText, m_DrawingsCheckBox, m_DrawingsName, m_DrawingsStaticText, m_Eco1CheckBox, m_Eco1Name, m_Eco1StaticText, m_Eco2CheckBox, m_Eco2Name, m_Eco2StaticText, m_FabBackCheckBox, m_FabBackName, m_FabBackStaticText, PANEL_SETUP_LAYERS_BASE::m_LayersListPanel, PANEL_SETUP_LAYERS_BASE::m_LayersSizer, m_MarginCheckBox, m_MarginName, m_MarginStaticText, m_MaskBackCheckBox, m_MaskBackName, m_MaskBackStaticText, m_PCBEdgesCheckBox, m_PCBEdgesName, m_PCBEdgesStaticText, m_SilkSBackCheckBox, m_SilkSBackName, m_SilkSBackStaticText, m_SoldPBackCheckBox, m_SoldPBackName, m_SoldPBackStaticText, mandatoryLayerCbSetup(), and Margin.
Referenced by initialize_layers_controls().
|
private |
Definition at line 126 of file panel_setup_layers.cpp.
References _, F_Adhes, F_CrtYd, F_Fab, F_Mask, F_Paste, F_SilkS, LayerName(), m_AdhesFrontCheckBox, m_AdhesFrontName, m_AdhesFrontStaticText, m_CrtYdFrontCheckBox, m_CrtYdFrontName, m_CrtYdFrontStaticText, m_FabFrontCheckBox, m_FabFrontName, m_FabFrontStaticText, PANEL_SETUP_LAYERS_BASE::m_LayersListPanel, PANEL_SETUP_LAYERS_BASE::m_LayersSizer, m_MaskFrontCheckBox, m_MaskFrontName, m_MaskFrontStaticText, m_SilkSFrontCheckBox, m_SilkSFrontName, m_SilkSFrontStaticText, m_SoldPFrontCheckBox, m_SoldPFrontName, m_SoldPFrontStaticText, and mandatoryLayerCbSetup().
Referenced by initialize_layers_controls().
|
private |
Definition at line 455 of file panel_setup_layers.cpp.
References _, append_user_layer(), B_Adhes, B_CrtYd, B_Fab, B_Mask, B_Paste, B_SilkS, Cmts_User, LSET::copper_layers_begin(), LSET::copper_layers_end(), Dwgs_User, Eco1_User, Eco2_User, Edge_Cuts, F_Adhes, F_CrtYd, F_Fab, F_Mask, F_Paste, F_SilkS, initialize_back_tech_layers(), initialize_front_tech_layers(), LayerName(), m_AdhesBackCheckBox, m_AdhesBackName, m_AdhesBackStaticText, m_AdhesFrontCheckBox, m_AdhesFrontName, m_AdhesFrontStaticText, m_CommentsCheckBox, m_CommentsName, m_CommentsStaticText, m_CrtYdBackCheckBox, m_CrtYdBackName, m_CrtYdBackStaticText, m_CrtYdFrontCheckBox, m_CrtYdFrontName, m_CrtYdFrontStaticText, m_DrawingsCheckBox, m_DrawingsName, m_DrawingsStaticText, m_Eco1CheckBox, m_Eco1Name, m_Eco1StaticText, m_Eco2CheckBox, m_Eco2Name, m_Eco2StaticText, m_enabledLayers, m_FabBackCheckBox, m_FabBackName, m_FabBackStaticText, m_FabFrontCheckBox, m_FabFrontName, m_FabFrontStaticText, m_layersControls, PANEL_SETUP_LAYERS_BASE::m_LayersListPanel, PANEL_SETUP_LAYERS_BASE::m_LayersSizer, m_MarginCheckBox, m_MarginName, m_MarginStaticText, m_MaskBackCheckBox, m_MaskBackName, m_MaskBackStaticText, m_MaskFrontCheckBox, m_MaskFrontName, m_MaskFrontStaticText, m_PCBEdgesCheckBox, m_PCBEdgesName, m_PCBEdgesStaticText, m_SilkSBackCheckBox, m_SilkSBackName, m_SilkSBackStaticText, m_SilkSFrontCheckBox, m_SilkSFrontName, m_SilkSFrontStaticText, m_SoldPBackCheckBox, m_SoldPBackName, m_SoldPBackStaticText, m_SoldPFrontCheckBox, m_SoldPFrontName, m_SoldPFrontStaticText, Margin, LSET::non_copper_layers_begin(), LSET::non_copper_layers_end(), and LSET::UserDefinedLayersMask().
Referenced by SyncCopperLayers(), and TransferDataToWindow().
|
inline |
Definition at line 92 of file panel_setup_layers.h.
References m_initialized.
|
private |
Definition at line 722 of file panel_setup_layers.cpp.
References LSET::AllCuMask(), B_Cu, F_Cu, getCheckBox(), m_enabledLayers, mandatoryLayerCbSetup(), and BASE_SET::reset().
Referenced by SyncCopperLayers(), and TransferDataToWindow().
|
private |
Definition at line 711 of file panel_setup_layers.cpp.
References PANEL_SETUP_LAYERS_CTLs::checkbox, and m_layersControls.
Referenced by setUserDefinedLayerCheckBoxes(), and showSelectedLayerCheckBoxes().
|
inline |
Definition at line 87 of file panel_setup_layers.h.
References m_physicalStackup.
|
private |
Definition at line 621 of file panel_setup_layers.cpp.
References m_enabledLayers, m_pcb, setLayerCheckBox(), and LSET::UserDefinedLayersMask().
Referenced by SyncCopperLayers(), and TransferDataToWindow().
|
private |
Definition at line 630 of file panel_setup_layers.cpp.
References getName(), m_enabledLayers, and m_pcb.
Referenced by SyncCopperLayers(), and TransferDataToWindow().
|
private |
Definition at line 659 of file panel_setup_layers.cpp.
References LSET::AllCuMask(), getChoice(), LT_AUX, LT_BACK, LT_FRONT, LT_JUMPER, LT_MIXED, LT_POWER, LT_SIGNAL, m_enabledLayers, m_pcb, and LSET::UserDefinedLayersMask().
Referenced by SyncCopperLayers(), and TransferDataToWindow().
|
private |
Definition at line 652 of file panel_setup_layers.cpp.
References m_layersControls, and setLayerCheckBox().
Referenced by SyncCopperLayers(), and TransferDataToWindow().
void PANEL_SETUP_LAYERS::SyncCopperLayers | ( | int | aNumCopperLayers | ) |
Called when switching to this tab to make sure that any changes to the copper layer count made on the physical stackup page are reflected here.
aNumCopperLayers | is the number of copper layers in the board |
Definition at line 592 of file panel_setup_layers.cpp.
References LSET::AllCuMask(), initialize_layers_controls(), IsCopperLayer(), m_enabledLayers, m_pcb, setCopperLayerCheckBoxes(), setUserDefinedLayerCheckBoxes(), showBoardLayerNames(), showLayerTypes(), showSelectedLayerCheckBoxes(), and transferDataFromWindow().
Referenced by TransferDataFromWindow().
|
private |
Definition at line 921 of file panel_setup_layers.cpp.
References _, LSET::AllLayersMask(), PAGED_DIALOG::GetDialog(), getName(), m_enabledLayers, name, and PAGED_DIALOG::SetError().
Referenced by TransferDataFromWindow().
|
overrideprivate |
Definition at line 855 of file panel_setup_layers.cpp.
References _, getNonRemovableLayers(), getRemovedLayersWithItems(), IsOK(), m_frame, m_pcb, m_physicalStackup, ACTIONS::selectionClear, SyncCopperLayers(), testLayerNames(), and transferDataFromWindow().
|
private |
Definition at line 749 of file panel_setup_layers.cpp.
References getChoice(), GetCurrentSelection(), getName(), GetUILayerMask(), LSET::InternalCuMask(), IsCopperLayer(), LT_AUX, LT_BACK, LT_FRONT, LT_JUMPER, LT_MIXED, LT_POWER, LT_SIGNAL, LT_UNDEFINED, m_pcb, pad, User_1, and LSET::UserDefinedLayersMask().
Referenced by SyncCopperLayers(), and TransferDataFromWindow().
|
overrideprivate |
Definition at line 569 of file panel_setup_layers.cpp.
References initialize_layers_controls(), m_enabledLayers, m_initialized, m_pcb, Rescue, setCopperLayerCheckBoxes(), setUserDefinedLayerCheckBoxes(), showBoardLayerNames(), showLayerTypes(), and showSelectedLayerCheckBoxes().
Referenced by ImportSettingsFrom().
|
protectedinherited |
Definition at line 37 of file panel_setup_layers_base.h.
Referenced by PANEL_SETUP_LAYERS_BASE(), and ~PANEL_SETUP_LAYERS_BASE().
|
private |
Definition at line 177 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 178 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 179 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 149 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 150 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 151 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 205 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 206 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 207 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 185 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 186 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 187 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 141 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 142 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 143 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 209 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 210 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 211 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 197 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 198 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 199 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 201 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 202 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 203 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 135 of file panel_setup_layers.h.
Referenced by addUserDefinedLayer(), initialize_layers_controls(), setCopperLayerCheckBoxes(), setUserDefinedLayerCheckBoxes(), showBoardLayerNames(), showLayerTypes(), SyncCopperLayers(), testLayerNames(), and TransferDataToWindow().
|
private |
Definition at line 181 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 182 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 183 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 145 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 146 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 147 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 132 of file panel_setup_layers.h.
Referenced by PANEL_SETUP_LAYERS(), and TransferDataFromWindow().
|
private |
Definition at line 136 of file panel_setup_layers.h.
Referenced by IsInitialized(), PANEL_SETUP_LAYERS(), and TransferDataToWindow().
|
private |
Definition at line 138 of file panel_setup_layers.h.
Referenced by addUserDefinedLayer(), append_user_layer(), getCheckBox(), getChoice(), getName(), GetUILayerMask(), initialize_layers_controls(), setLayerCheckBox(), and showSelectedLayerCheckBoxes().
|
protectedinherited |
Definition at line 39 of file panel_setup_layers_base.h.
Referenced by PANEL_SETUP_LAYERS::addUserDefinedLayer(), PANEL_SETUP_LAYERS::append_user_layer(), PANEL_SETUP_LAYERS::initialize_back_tech_layers(), PANEL_SETUP_LAYERS::initialize_front_tech_layers(), PANEL_SETUP_LAYERS::initialize_layers_controls(), and PANEL_SETUP_LAYERS_BASE().
|
protectedinherited |
|
private |
Definition at line 193 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 194 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 195 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 165 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 166 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 167 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 161 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 162 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 163 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 134 of file panel_setup_layers.h.
Referenced by getNonRemovableLayers(), getRemovedLayersWithItems(), ImportSettingsFrom(), PANEL_SETUP_LAYERS(), setUserDefinedLayerCheckBoxes(), showBoardLayerNames(), showLayerTypes(), SyncCopperLayers(), TransferDataFromWindow(), transferDataFromWindow(), and TransferDataToWindow().
|
private |
Definition at line 189 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 190 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 191 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 133 of file panel_setup_layers.h.
Referenced by PANEL_SETUP_LAYERS(), SetPhysicalStackupPanel(), and TransferDataFromWindow().
|
private |
Definition at line 169 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 170 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 171 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 157 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 158 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 159 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 173 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 174 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 175 of file panel_setup_layers.h.
Referenced by initialize_back_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 153 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 154 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
private |
Definition at line 155 of file panel_setup_layers.h.
Referenced by initialize_front_tech_layers(), initialize_layers_controls(), and PANEL_SETUP_LAYERS().
|
protectedinherited |
Definition at line 38 of file panel_setup_layers_base.h.
Referenced by PANEL_SETUP_LAYERS_BASE().