2012-05-04 17:44:42 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2016-06-17 18:00:29 +00:00
|
|
|
* Copyright (C) 1992-2016 Jean-Pierre Charras <jp.charras at wanadoo.fr>
|
2012-05-04 17:44:42 +00:00
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2024-05-23 02:09:35 +00:00
|
|
|
* Copyright (C) 1992-2024 KiCad Developers, see change_log.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 <gerbview_frame.h>
|
2018-01-29 12:26:58 +00:00
|
|
|
#include <gerber_file_image_list.h>
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2023-02-22 05:15:14 +00:00
|
|
|
#ifdef __WXMSW__
|
2023-09-23 03:17:53 +00:00
|
|
|
#include <dpi_scaling_common.h>
|
2023-02-22 05:15:14 +00:00
|
|
|
#endif
|
|
|
|
|
2020-11-16 12:13:08 +00:00
|
|
|
#include "gbr_layer_box_selector.h"
|
2012-05-04 17:44:42 +00:00
|
|
|
|
|
|
|
void GBR_LAYER_BOX_SELECTOR::Resync()
|
|
|
|
{
|
2014-11-22 11:52:57 +00:00
|
|
|
Freeze();
|
2012-05-04 17:44:42 +00:00
|
|
|
Clear();
|
|
|
|
|
2023-02-22 05:15:14 +00:00
|
|
|
const int size = 14;
|
|
|
|
|
2016-06-17 18:00:29 +00:00
|
|
|
GERBER_FILE_IMAGE_LIST& images = GERBER_FILE_IMAGE_LIST::GetImagesList();
|
|
|
|
|
|
|
|
for( unsigned layerid = 0; layerid < images.ImagesMaxCount(); ++layerid )
|
2012-05-04 17:44:42 +00:00
|
|
|
{
|
2020-05-05 15:40:18 +00:00
|
|
|
if( !isLayerEnabled( layerid ) )
|
2012-05-04 17:44:42 +00:00
|
|
|
continue;
|
|
|
|
|
2021-08-04 17:44:26 +00:00
|
|
|
// Don't show unused layers
|
2022-03-24 14:10:47 +00:00
|
|
|
if ( images.GetGbrImage( layerid ) == nullptr )
|
2021-08-04 17:44:26 +00:00
|
|
|
continue;
|
|
|
|
|
2024-05-23 02:09:35 +00:00
|
|
|
// Prepare Bitmaps
|
|
|
|
wxVector<wxBitmap> bitmaps;
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2024-05-23 02:09:35 +00:00
|
|
|
for( int scale = 1; scale <= 3; scale++ )
|
|
|
|
{
|
|
|
|
wxBitmap bmp( size * scale, size * scale );
|
|
|
|
|
|
|
|
DrawColorSwatch( bmp, getLayerColor( LAYER_PCB_BACKGROUND ), getLayerColor( layerid ) );
|
|
|
|
|
2024-05-28 15:51:28 +00:00
|
|
|
bmp.SetScaleFactor( scale );
|
2024-05-23 02:09:35 +00:00
|
|
|
bitmaps.push_back( bmp );
|
|
|
|
}
|
|
|
|
|
|
|
|
Append( getLayerName( layerid ), wxBitmapBundle::FromBitmaps( bitmaps ),
|
|
|
|
(void*) (intptr_t) layerid );
|
2012-05-04 17:44:42 +00:00
|
|
|
}
|
2014-11-22 11:52:57 +00:00
|
|
|
|
2021-04-02 20:33:31 +00:00
|
|
|
// Ensure the size of the widget is enough to show the text and the icon
|
|
|
|
// We have to have a selected item when doing this, because otherwise GTK
|
|
|
|
// will just choose a random size that might not fit the actual data
|
|
|
|
// (such as in cases where the font size is very large). So we select
|
|
|
|
// the first item, get the size of the control and make that the minimum size,
|
|
|
|
// then remove the selection (which was the initial state).
|
2022-03-24 14:10:47 +00:00
|
|
|
if( GetCount() )
|
|
|
|
{
|
|
|
|
SetSelection( 0 );
|
|
|
|
|
|
|
|
SetMinSize( wxSize( -1, -1 ) );
|
|
|
|
wxSize bestSize = GetBestSize();
|
2021-04-02 20:33:31 +00:00
|
|
|
|
2023-02-22 05:15:14 +00:00
|
|
|
bestSize.x = GetBestSize().x + size + 10;
|
2022-03-24 14:10:47 +00:00
|
|
|
SetMinSize( bestSize );
|
2021-04-02 20:33:31 +00:00
|
|
|
|
2022-03-24 14:10:47 +00:00
|
|
|
SetSelection( wxNOT_FOUND );
|
|
|
|
}
|
2016-05-23 15:47:16 +00:00
|
|
|
|
2014-11-22 11:52:57 +00:00
|
|
|
Thaw();
|
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 a color index from the layer id
|
2020-05-05 15:40:18 +00:00
|
|
|
COLOR4D GBR_LAYER_BOX_SELECTOR::getLayerColor( int aLayer ) const
|
2012-05-04 17:44:42 +00:00
|
|
|
{
|
|
|
|
GERBVIEW_FRAME* frame = (GERBVIEW_FRAME*) GetParent()->GetParent();
|
|
|
|
|
2017-09-17 22:43:20 +00:00
|
|
|
return frame->GetLayerColor( GERBER_DRAW_LAYER( 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
|
2020-05-05 15:40:18 +00:00
|
|
|
wxString GBR_LAYER_BOX_SELECTOR::getLayerName( int aLayer ) const
|
2012-05-04 17:44:42 +00:00
|
|
|
{
|
2016-06-17 18:00:29 +00:00
|
|
|
GERBER_FILE_IMAGE_LIST& images = GERBER_FILE_IMAGE_LIST::GetImagesList();
|
|
|
|
wxString name = images.GetDisplayName( aLayer );
|
2014-11-22 11:52:57 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
return name;
|
|
|
|
}
|