2012-05-04 17:44:42 +00:00
|
|
|
/**
|
|
|
|
* @file class_pcb_layer_box_selector.cpp
|
|
|
|
* @brief a derived class of LAYER_BOX_SELECTOR to handle the layer box selector
|
|
|
|
* in Pcbnew
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-04-17 10:24:35 +00:00
|
|
|
* Copyright (C) 1992-2015 Jean-Pierre Charras <jean-pierre.charras@ujf-grenoble.fr>
|
2012-05-04 17:44:42 +00:00
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2018-01-08 04:05:03 +00:00
|
|
|
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-05-04 17:44:42 +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
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <pcbnew.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2018-02-02 20:57:12 +00:00
|
|
|
#include <board_design_settings.h>
|
2012-05-04 17:44:42 +00:00
|
|
|
#include <layers_id_colors_and_visibility.h>
|
|
|
|
|
|
|
|
#include <class_board.h>
|
2018-01-31 08:23:20 +00:00
|
|
|
#include <pcb_layer_box_selector.h>
|
2019-06-09 21:57:23 +00:00
|
|
|
#include <tools/pcb_actions.h>
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2014-06-29 13:05:51 +00:00
|
|
|
// translate aLayer to its hotkey
|
2019-06-09 21:57:23 +00:00
|
|
|
static TOOL_ACTION* layer2action( PCB_LAYER_ID aLayer )
|
2014-06-29 13:05:51 +00:00
|
|
|
{
|
|
|
|
switch( aLayer )
|
|
|
|
{
|
2019-06-09 21:57:23 +00:00
|
|
|
case F_Cu: return &PCB_ACTIONS::layerTop;
|
|
|
|
|
|
|
|
case B_Cu: return &PCB_ACTIONS::layerBottom;
|
|
|
|
|
|
|
|
case In1_Cu: return &PCB_ACTIONS::layerInner1;
|
|
|
|
case In2_Cu: return &PCB_ACTIONS::layerInner2;
|
|
|
|
case In3_Cu: return &PCB_ACTIONS::layerInner3;
|
|
|
|
case In4_Cu: return &PCB_ACTIONS::layerInner4;
|
|
|
|
case In5_Cu: return &PCB_ACTIONS::layerInner5;
|
|
|
|
case In6_Cu: return &PCB_ACTIONS::layerInner6;
|
2014-06-29 13:05:51 +00:00
|
|
|
|
|
|
|
default:
|
2019-06-09 21:57:23 +00:00
|
|
|
return nullptr;
|
2014-06-29 13:05:51 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-24 16:17:18 +00:00
|
|
|
|
|
|
|
|
2013-09-02 09:06:17 +00:00
|
|
|
// class to display a layer list in a wxBitmapComboBox.
|
2012-05-04 17:44:42 +00:00
|
|
|
|
|
|
|
// Reload the Layers
|
|
|
|
void PCB_LAYER_BOX_SELECTOR::Resync()
|
|
|
|
{
|
|
|
|
Clear();
|
|
|
|
|
2013-09-02 09:06:17 +00:00
|
|
|
// Tray to fix a minimum width fot the BitmapComboBox
|
2014-06-29 13:05:51 +00:00
|
|
|
int minwidth = 80;
|
2014-06-24 16:17:18 +00:00
|
|
|
|
2013-09-02 09:06:17 +00:00
|
|
|
wxClientDC dc( GetParent() ); // The DC for "this" is not always initialized
|
|
|
|
|
2014-06-29 13:05:51 +00:00
|
|
|
const int BM_SIZE = 14;
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2015-04-17 10:24:35 +00:00
|
|
|
LSET show = LSET::AllLayersMask() & ~m_layerMaskDisable;
|
|
|
|
LSET activated = getEnabledLayers() & ~m_layerMaskDisable;
|
|
|
|
wxString layerstatus;
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
for( LSEQ seq = show.UIOrder(); seq; ++seq )
|
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
PCB_LAYER_ID layerid = *seq;
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2015-04-17 10:24:35 +00:00
|
|
|
if( !m_showNotEnabledBrdlayers && !activated[layerid] )
|
|
|
|
continue;
|
|
|
|
else if( !activated[layerid] )
|
|
|
|
layerstatus = wxT( " " ) + _( "(not activated)" );
|
|
|
|
else
|
|
|
|
layerstatus.Empty();
|
2013-09-01 18:38:11 +00:00
|
|
|
|
2018-03-28 17:14:04 +00:00
|
|
|
wxBitmap bmp( BM_SIZE, BM_SIZE );
|
|
|
|
DrawColorSwatch( bmp, GetLayerColor( LAYER_PCB_BACKGROUND ), GetLayerColor( layerid ) );
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2015-04-17 10:24:35 +00:00
|
|
|
wxString layername = GetLayerName( layerid ) + layerstatus;
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2019-06-09 21:57:23 +00:00
|
|
|
if( m_layerhotkeys )
|
2014-06-24 16:17:18 +00:00
|
|
|
{
|
2019-06-09 21:57:23 +00:00
|
|
|
TOOL_ACTION* action = layer2action( layerid );
|
2014-06-29 13:05:51 +00:00
|
|
|
|
2019-06-09 21:57:23 +00:00
|
|
|
if( action )
|
|
|
|
layername = AddHotkeyName( layername, action->GetHotKey(), IS_COMMENT );
|
2014-06-24 16:17:18 +00:00
|
|
|
}
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2018-03-28 17:14:04 +00:00
|
|
|
Append( layername, bmp, (void*)(intptr_t) layerid );
|
2014-06-24 16:17:18 +00:00
|
|
|
|
2014-06-29 13:05:51 +00:00
|
|
|
int w, h;
|
2013-09-02 09:06:17 +00:00
|
|
|
dc.GetTextExtent ( layername, &w, &h );
|
|
|
|
minwidth = std::max( minwidth, w );
|
2013-09-02 15:26:52 +00:00
|
|
|
}
|
2013-09-02 09:06:17 +00:00
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
// Approximate bitmap size and margins
|
|
|
|
minwidth += BM_SIZE + 32 + ConvertDialogToPixels( wxSize( 8, 0 ) ).x;
|
2013-09-03 19:37:52 +00:00
|
|
|
SetMinSize( wxSize( minwidth, -1 ) );
|
2012-05-04 17:44:42 +00:00
|
|
|
}
|
|
|
|
|
2013-01-23 16:13:42 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
// Returns true if the layer id is enabled (i.e. is it should be displayed)
|
2013-04-09 16:00:46 +00:00
|
|
|
bool PCB_LAYER_BOX_SELECTOR::IsLayerEnabled( LAYER_NUM aLayer ) const
|
2012-05-04 17:44:42 +00:00
|
|
|
{
|
2013-09-01 18:38:11 +00:00
|
|
|
wxASSERT( m_boardFrame != NULL );
|
|
|
|
BOARD* board = m_boardFrame->GetBoard();
|
2012-05-04 17:44:42 +00:00
|
|
|
wxASSERT( board != NULL );
|
|
|
|
|
2014-06-29 13:05:51 +00:00
|
|
|
return board->IsLayerEnabled( ToLAYER_ID( aLayer ) );
|
2012-05-04 17:44:42 +00:00
|
|
|
}
|
|
|
|
|
2013-01-23 16:13:42 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
LSET PCB_LAYER_BOX_SELECTOR::getEnabledLayers() const
|
2012-05-04 17:44:42 +00:00
|
|
|
{
|
2013-09-01 18:38:11 +00:00
|
|
|
wxASSERT( m_boardFrame != NULL );
|
|
|
|
BOARD* board = m_boardFrame->GetBoard();
|
2012-05-04 17:44:42 +00:00
|
|
|
wxASSERT( board != NULL );
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
return board->GetEnabledLayers();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns a color index from the layer id
|
2017-02-20 16:57:41 +00:00
|
|
|
COLOR4D PCB_LAYER_BOX_SELECTOR::GetLayerColor( LAYER_NUM aLayer ) const
|
2014-06-24 16:17:18 +00:00
|
|
|
{
|
|
|
|
wxASSERT( m_boardFrame );
|
|
|
|
|
2018-05-30 20:51:20 +00:00
|
|
|
return m_boardFrame->Settings().Colors().GetLayerColor( aLayer );
|
2012-05-04 17:44:42 +00:00
|
|
|
}
|
|
|
|
|
2013-01-23 16:13:42 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
// Returns the name of the layer id
|
2013-04-09 16:00:46 +00:00
|
|
|
wxString PCB_LAYER_BOX_SELECTOR::GetLayerName( LAYER_NUM aLayer ) const
|
2012-05-04 17:44:42 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
wxASSERT( m_boardFrame );
|
2013-09-01 18:38:11 +00:00
|
|
|
BOARD* board = m_boardFrame->GetBoard();
|
2014-06-24 16:17:18 +00:00
|
|
|
wxASSERT( board );
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2014-06-29 13:05:51 +00:00
|
|
|
return board->GetLayerName( ToLAYER_ID( aLayer ) );
|
2012-05-04 17:44:42 +00:00
|
|
|
}
|