mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Footprints can now have a custom stackup. This means that they specify an exact number of copper layers and the layers map 1:1 to board layers. If the board doesn't contain that layer, the element just doesn't show. We could make this a DRC check later on. If there is no stackup, the behavior is the current default: a rule area the In1 layer "expands" to all Inner layers. Fixes: https://gitlab.com/kicad/code/kicad/-/issues/10838
131 lines
4.7 KiB
C++
131 lines
4.7 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2010-2015 Jean-Pierre Charras, jean-pierre.charras at wanadoo.fr
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you may find one here:
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR_H
|
|
#define DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR_H
|
|
|
|
#include <vector>
|
|
#include <pcb_fields_grid_table.h>
|
|
#include <widgets/unit_binder.h>
|
|
#include <footprint.h>
|
|
#include <dialog_footprint_properties_fp_editor_base.h>
|
|
|
|
|
|
class FOOTPRINT_EDIT_FRAME;
|
|
class PANEL_FP_PROPERTIES_3D_MODEL;
|
|
class PANEL_EMBEDDED_FILES;
|
|
class LAYERS_GRID_TABLE;
|
|
|
|
|
|
enum class NOTEBOOK_PAGES
|
|
{
|
|
PAGE_UNKNOWN = -1,
|
|
PAGE_GENERAL = 0,
|
|
PAGE_LAYERS = 1,
|
|
PAGE_CLEARANCES = 2,
|
|
PAGE_3D_MODELS = 3
|
|
};
|
|
|
|
class DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR : public DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR_BASE
|
|
{
|
|
public:
|
|
DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR( FOOTPRINT_EDIT_FRAME* aParent, FOOTPRINT* aFootprint );
|
|
~DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR() override;
|
|
|
|
bool Validate() override;
|
|
|
|
bool TransferDataToWindow() override;
|
|
bool TransferDataFromWindow() override;
|
|
|
|
private:
|
|
// virtual event functions
|
|
void OnGridSize( wxSizeEvent& event ) override;
|
|
void OnAddField( wxCommandEvent& event ) override;
|
|
void OnDeleteField( wxCommandEvent& event ) override;
|
|
void OnAddLayer( wxCommandEvent& event ) override;
|
|
void OnDeleteLayer( wxCommandEvent& event ) override;
|
|
void OnAddNettieGroup( wxCommandEvent& event ) override;
|
|
void OnRemoveNettieGroup( wxCommandEvent& event ) override;
|
|
void OnAddJumperGroup( wxCommandEvent& event ) override;
|
|
void OnRemoveJumperGroup( wxCommandEvent& event ) override;
|
|
void OnUpdateUI( wxUpdateUIEvent& event ) override;
|
|
void OnPageChanging( wxNotebookEvent& event ) override;
|
|
void OnText( wxCommandEvent& event ) override;
|
|
void OnChoice( wxCommandEvent& event ) override;
|
|
void OnCheckBox( wxCommandEvent& event ) override;
|
|
void OnUseCustomLayers( wxCommandEvent& event ) override;
|
|
void OnAddCustomLayer( wxCommandEvent& event ) override;
|
|
void OnDeleteCustomLayer( wxCommandEvent& event ) override;
|
|
|
|
bool checkFootprintName( const wxString& aFootprintName, LIB_ID* doOverwrite );
|
|
void setCustomLayerCtrlEnablement();
|
|
|
|
void onAddGroup( WX_GRID* aGrid );
|
|
void onRemoveGroup( WX_GRID* aGrid );
|
|
|
|
void adjustGridColumns();
|
|
|
|
// Layer grid helper callbacks
|
|
void onLayerGridRowDelete( WX_GRID& aGrid, LAYERS_GRID_TABLE& aLayerTable, int aRow );
|
|
std::pair<int, int> onLayerGridRowAddUserLayer( WX_GRID& aGrid, LAYERS_GRID_TABLE& aLayerTable );
|
|
|
|
/**
|
|
* Get the layers for the footprint from the controls that can be affected by the stackup.
|
|
*/
|
|
LSET getCustomLayersFromControls() const;
|
|
|
|
private:
|
|
FOOTPRINT_EDIT_FRAME* m_frame;
|
|
FOOTPRINT* m_footprint;
|
|
bool m_initialized;
|
|
|
|
static NOTEBOOK_PAGES m_page; // remember the last open page during session
|
|
|
|
PCB_FIELDS_GRID_TABLE* m_fields;
|
|
LAYERS_GRID_TABLE* m_customUserLayers;
|
|
LAYERS_GRID_TABLE* m_privateLayers;
|
|
|
|
UNIT_BINDER m_netClearance;
|
|
UNIT_BINDER m_solderMask;
|
|
UNIT_BINDER m_solderPaste;
|
|
UNIT_BINDER m_solderPasteRatio;
|
|
|
|
wxControl* m_delayedFocusCtrl;
|
|
NOTEBOOK_PAGES m_delayedFocusPage;
|
|
|
|
WX_GRID* m_delayedFocusGrid;
|
|
int m_delayedFocusRow;
|
|
int m_delayedFocusColumn;
|
|
wxString m_delayedErrorMessage;
|
|
|
|
PANEL_FP_PROPERTIES_3D_MODEL* m_3dPanel;
|
|
|
|
wxSize m_gridSize;
|
|
wxSize m_lastRequestedSize;
|
|
PANEL_EMBEDDED_FILES* m_embeddedFiles;
|
|
};
|
|
|
|
|
|
#endif // DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR_H
|