2014-10-21 18:36:45 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-01-05 10:45:50 +00:00
|
|
|
* Copyright (C) 2011-2018 Jean-Pierre Charras jp.charras at wanadoo.fr
|
2021-06-03 18:32:24 +00:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-21 18:36:45 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2011-04-26 08:30:16 +00:00
|
|
|
/**
|
2023-04-19 11:51:26 +00:00
|
|
|
* @file dialog_layers_select_to_pcb.h
|
2011-04-26 08:30:16 +00:00
|
|
|
*/
|
|
|
|
|
2020-10-08 22:59:16 +00:00
|
|
|
#ifndef DIALOG_LAYERS_SELECT_TO_PCB_H_
|
|
|
|
#define DIALOG_LAYERS_SELECT_TO_PCB_H_
|
2011-04-26 08:30:16 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialogs/dialog_layers_select_to_pcb_base.h>
|
2011-04-26 08:30:16 +00:00
|
|
|
|
2020-10-08 22:59:16 +00:00
|
|
|
class GERBVIEW_FRAME;
|
|
|
|
|
2021-07-21 21:37:49 +00:00
|
|
|
/**
|
|
|
|
* Show the Gerber files loaded and allow the user to choose between Gerber layers and pcb layers.
|
2011-04-26 08:30:16 +00:00
|
|
|
*/
|
|
|
|
class LAYERS_MAP_DIALOG : public LAYERS_MAP_DIALOG_BASE
|
|
|
|
{
|
|
|
|
public: LAYERS_MAP_DIALOG( GERBVIEW_FRAME* parent );
|
|
|
|
~LAYERS_MAP_DIALOG() {};
|
|
|
|
|
2021-07-21 23:14:56 +00:00
|
|
|
int* GetLayersLookUpTable() { return m_layersLookUpTable; }
|
2013-04-10 07:03:19 +00:00
|
|
|
static int GetCopperLayersCount() { return m_exportBoardCopperLayersCount; }
|
2011-04-26 08:30:16 +00:00
|
|
|
|
2021-07-21 21:37:49 +00:00
|
|
|
protected:
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
|
2011-04-26 08:30:16 +00:00
|
|
|
private:
|
|
|
|
void initDialog();
|
|
|
|
void normalizeBrdLayersCount();
|
2016-09-24 18:53:15 +00:00
|
|
|
void OnBrdLayersCountSelection( wxCommandEvent& event ) override;
|
2011-04-26 08:30:16 +00:00
|
|
|
void OnSelectLayer( wxCommandEvent& event );
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void OnStoreSetup( wxCommandEvent& event ) override;
|
|
|
|
void OnGetSetup( wxCommandEvent& event ) override;
|
|
|
|
void OnResetClick( wxCommandEvent& event ) override;
|
2011-04-26 08:30:16 +00:00
|
|
|
|
2020-07-29 03:05:06 +00:00
|
|
|
/**
|
2021-07-21 21:37:49 +00:00
|
|
|
* Find number of loaded Gerbers where the matching KiCad layer can be identified.
|
2020-07-29 03:05:06 +00:00
|
|
|
*
|
|
|
|
* The passed vector<int> will be returned with the same number of elements
|
|
|
|
* as there are Gerber files. The indices into it are 1:1 with the loaded Gerber
|
Fix source comment/doc typos (follow-up)
Found via `codespell -q 3 -S *.po,./thirdparty -L aactual,acount,aline,alocation,alog,anormal,anumber,aother,apoints,aparent,aray,dout,einstance,modul,ot,overide,serie,te,,tesselate,tesselator,tht`
2021-07-03 22:37:31 +00:00
|
|
|
* files. Any Gerber that maps will have its entry set to the KiCad PCB layer
|
2020-07-29 03:05:06 +00:00
|
|
|
* number. Gerbers that can be identified or which don't map to an
|
|
|
|
* equivalent KiCad PCB layer will be set to UNSELECTED_LAYER.
|
|
|
|
*
|
2021-06-03 18:32:24 +00:00
|
|
|
* @param aGerber2KicadMapping passed to return KiCad PCB layer number for each Gerber.
|
2020-07-29 03:05:06 +00:00
|
|
|
*
|
2021-06-03 18:32:24 +00:00
|
|
|
* @return The number of loaded Gerbers that have Altium extensions.
|
2020-07-29 03:05:06 +00:00
|
|
|
*/
|
|
|
|
int findKnownGerbersLoaded( std::vector<int>& aGerber2KicadMapping );
|
|
|
|
|
2020-07-04 22:12:49 +00:00
|
|
|
/**
|
2021-07-21 21:37:49 +00:00
|
|
|
* Find number of loaded Gerbers using Altium file extensions.
|
2020-07-04 22:12:49 +00:00
|
|
|
*
|
|
|
|
* The passed vector<int> will be returned with the same number of elements
|
|
|
|
* as there are Gerber files. The indices into it are 1:1 with the loaded Gerber
|
Fix source comment/doc typos (follow-up)
Found via `codespell -q 3 -S *.po,./thirdparty -L aactual,acount,aline,alocation,alog,anormal,anumber,aother,apoints,aparent,aray,dout,einstance,modul,ot,overide,serie,te,,tesselate,tesselator,tht`
2021-07-03 22:37:31 +00:00
|
|
|
* files. Any Gerber that maps will have its entry set to the KiCad PCB layer
|
2020-07-04 22:12:49 +00:00
|
|
|
* number. Gerbers that aren't using Altium extensions or which don't map to an
|
|
|
|
* equivalent KiCad PCB layer will be set to UNSELECTED_LAYER.
|
|
|
|
*
|
2021-06-03 18:32:24 +00:00
|
|
|
* @param aGerber2KicadMapping passed to return KiCad PCB layer number for each Gerber.
|
2020-07-04 22:12:49 +00:00
|
|
|
*
|
2021-06-03 18:32:24 +00:00
|
|
|
* @return The number of loaded Gerbers that have Altium extensions.
|
2020-07-04 22:12:49 +00:00
|
|
|
*/
|
|
|
|
int findNumAltiumGerbersLoaded( std::vector<int>& aGerber2KicadMapping );
|
|
|
|
|
2020-07-29 03:05:06 +00:00
|
|
|
/**
|
2021-07-21 21:37:49 +00:00
|
|
|
* Find number of loaded Gerbers using KiCad naming convention.
|
2020-07-29 03:05:06 +00:00
|
|
|
*
|
|
|
|
* The passed vector<int> will be returned with the same number of elements
|
|
|
|
* as there are Gerber files. The indices into it are 1:1 with the loaded Gerber
|
Fix source comment/doc typos (follow-up)
Found via `codespell -q 3 -S *.po,./thirdparty -L aactual,acount,aline,alocation,alog,anormal,anumber,aother,apoints,aparent,aray,dout,einstance,modul,ot,overide,serie,te,,tesselate,tesselator,tht`
2021-07-03 22:37:31 +00:00
|
|
|
* files. Any Gerber that maps will have its entry set to the KiCad PCB layer
|
2020-07-29 03:05:06 +00:00
|
|
|
* number. Gerbers that aren't using KiCad naming or which don't map to an
|
|
|
|
* equivalent KiCad PCB layer will be set to UNSELECTED_LAYER.
|
|
|
|
*
|
2021-06-03 18:32:24 +00:00
|
|
|
* @param aGerber2KicadMapping passed to return KiCad PCB layer number for each Gerber.
|
2020-07-29 03:05:06 +00:00
|
|
|
*
|
2021-06-03 18:32:24 +00:00
|
|
|
* @return The number of loaded Gerbers using KiCad naming conventions.
|
2020-07-29 03:05:06 +00:00
|
|
|
*/
|
|
|
|
int findNumKiCadGerbersLoaded( std::vector<int>& aGerber2KicadMapping );
|
|
|
|
|
|
|
|
/**
|
2021-07-21 21:37:49 +00:00
|
|
|
* Find number of loaded Gerbers using X2 File Functions to define layers.
|
2020-07-29 03:05:06 +00:00
|
|
|
*
|
|
|
|
* The passed vector<int> will be returned with the same number of elements
|
|
|
|
* as there are Gerber files. The indices into it are 1:1 with the loaded Gerber
|
Fix source comment/doc typos (follow-up)
Found via `codespell -q 3 -S *.po,./thirdparty -L aactual,acount,aline,alocation,alog,anormal,anumber,aother,apoints,aparent,aray,dout,einstance,modul,ot,overide,serie,te,,tesselate,tesselator,tht`
2021-07-03 22:37:31 +00:00
|
|
|
* files. Any Gerber that maps will have its entry set to the KiCad PCB layer
|
2020-07-29 03:05:06 +00:00
|
|
|
* number. Gerbers that aren't using X2 File functions or which don't map to an
|
|
|
|
* equivalent KiCad PCB layer will be set to UNSELECTED_LAYER.
|
|
|
|
*
|
2021-06-03 18:32:24 +00:00
|
|
|
* @param aGerber2KicadMapping passed to return KiCad PCB layer number for each Gerber.
|
2020-07-29 03:05:06 +00:00
|
|
|
*
|
2021-06-03 18:32:24 +00:00
|
|
|
* @return The number of loaded Gerbers with X2 File Functions.
|
2020-07-29 03:05:06 +00:00
|
|
|
*/
|
|
|
|
int findNumX2GerbersLoaded( std::vector<int>& aGerber2KicadMapping );
|
|
|
|
|
2011-04-26 08:30:16 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2021-06-03 18:32:24 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
GERBVIEW_FRAME* m_Parent;
|
2021-07-21 23:14:56 +00:00
|
|
|
int m_gerberActiveLayersCount; // Number of initialized Gerber layers
|
|
|
|
static int m_exportBoardCopperLayersCount;
|
2021-06-03 18:32:24 +00:00
|
|
|
|
2021-07-21 23:14:56 +00:00
|
|
|
// Indexes Gerber layers to PCB file layers; the last value in table is the number of
|
2021-06-03 18:32:24 +00:00
|
|
|
// copper layers.
|
2021-07-21 23:14:56 +00:00
|
|
|
int m_layersLookUpTable[ GERBER_DRAWLAYERS_COUNT ];
|
|
|
|
int m_buttonTable[ int(GERBER_DRAWLAYERS_COUNT) + 1 ];
|
|
|
|
wxStaticText* m_layersList[ int(GERBER_DRAWLAYERS_COUNT) + 1 ];
|
2011-04-26 08:30:16 +00:00
|
|
|
};
|
|
|
|
|
2020-10-08 22:59:16 +00:00
|
|
|
#endif // DIALOG_LAYERS_SELECT_TO_PCB_H_
|