mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 02:33:15 +02:00
ADDED Allow for user mapping of layers in Eagle import ADDED Support required and optional layers in the layer mapping dialog ADDED Add base class for plugins supporting remappable layers
81 lines
3.1 KiB
C++
81 lines
3.1 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2020 Roberto Fernandez Bautista <roberto.fer.bau@gmail.com>
|
|
* Copyright (C) 2020 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef DIALOG_IMPORTED_LAYERS_H
|
|
#define DIALOG_IMPORTED_LAYERS_H
|
|
|
|
#include <dialog_imported_layers_base.h>
|
|
#include <plugins/common/plugin_common_layer_mapping.h>
|
|
|
|
|
|
class DIALOG_IMPORTED_LAYERS : public DIALOG_IMPORTED_LAYERS_BASE
|
|
{
|
|
private:
|
|
const int selected = wxLIST_STATE_SELECTED;
|
|
const int allitems = wxLIST_STATE_DONTCARE;
|
|
|
|
std::vector<INPUT_LAYER_DESC> m_input_layers;
|
|
std::vector<wxString> m_unmatched_layer_names;
|
|
std::map<wxString, PCB_LAYER_ID> m_matched_layers_map;
|
|
|
|
//Helper functions
|
|
PCB_LAYER_ID GetSelectedLayerID();
|
|
PCB_LAYER_ID GetAutoMatchLayerID( wxString aInputLayerName );
|
|
|
|
void AddMappings();
|
|
void RemoveMappings( int aStatus );
|
|
void DeleteListItems( const wxArrayInt& aRowsToDelete, wxListCtrl* aListCtrl );
|
|
|
|
const INPUT_LAYER_DESC* GetLayerDescription( const wxString& aLayerName ) const;
|
|
|
|
static wxString WrapRequired( const wxString& aLayerName );
|
|
static wxString UnwrapRequired( const wxString& aLayerName );
|
|
|
|
//Event Handlers
|
|
void OnAutoMatchLayersClicked( wxCommandEvent& event ) override;
|
|
|
|
void OnUnMatchedDoubleClick( wxListEvent& event ) override { AddMappings(); }
|
|
void OnAddClicked( wxCommandEvent& event ) override { AddMappings(); }
|
|
void OnMatchedDoubleClick( wxListEvent& event ) override { RemoveMappings( selected ); }
|
|
void OnRemoveClicked( wxCommandEvent& event ) override { RemoveMappings( selected ); }
|
|
void OnRemoveAllClicked( wxCommandEvent& event ) override { RemoveMappings( allitems ); }
|
|
|
|
public:
|
|
DIALOG_IMPORTED_LAYERS( wxWindow* aParent, const std::vector<INPUT_LAYER_DESC>& aLayerDesc );
|
|
|
|
/**
|
|
* @brief Return a list of layers names that are required, but they are not mapped
|
|
*/
|
|
std::vector<wxString> GetUnmappedRequiredLayers() const;
|
|
|
|
/**
|
|
* @brief Creates and shows a dialog (modal) and returns the data from it
|
|
* after completion. If the dialog is closed or cancel is pressed, returns
|
|
* an empty map
|
|
* @param aParent Parent window for the invoked dialog.
|
|
* @param aLayerDesc
|
|
* @return Mapped layers
|
|
*/
|
|
static std::map<wxString, PCB_LAYER_ID> GetMapModal( wxWindow* aParent,
|
|
const std::vector<INPUT_LAYER_DESC>& aLayerDesc );
|
|
};
|
|
|
|
#endif // DIALOG_IMPORTED_LAYERS_H
|