2014-10-22 15:51:34 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2023-07-17 21:06:45 +00:00
|
|
|
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-22 15:51:34 +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
|
|
|
|
*/
|
|
|
|
|
2018-01-31 08:23:20 +00:00
|
|
|
#ifndef LAYER_BOX_SELECTOR_H
|
|
|
|
#define LAYER_BOX_SELECTOR_H
|
2010-11-02 23:13:56 +00:00
|
|
|
|
|
|
|
#include <wx/bmpcbox.h>
|
2017-02-20 16:57:41 +00:00
|
|
|
#include <gal/color4d.h>
|
2021-07-29 09:47:43 +00:00
|
|
|
#include <layer_ids.h>
|
2010-11-02 23:13:56 +00:00
|
|
|
|
2017-02-20 16:57:41 +00:00
|
|
|
using KIGFX::COLOR4D;
|
2011-09-16 18:54:04 +00:00
|
|
|
|
2021-06-03 15:41:26 +00:00
|
|
|
/**
|
|
|
|
* Base class to build a layer list.
|
2010-11-02 23:13:56 +00:00
|
|
|
*/
|
2013-08-30 19:28:31 +00:00
|
|
|
class LAYER_SELECTOR
|
2010-11-02 23:13:56 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-08-30 19:28:31 +00:00
|
|
|
LAYER_SELECTOR();
|
2010-11-02 23:13:56 +00:00
|
|
|
|
2023-07-17 21:06:45 +00:00
|
|
|
virtual ~LAYER_SELECTOR() { }
|
2020-02-05 22:19:14 +00:00
|
|
|
|
2020-05-05 15:40:18 +00:00
|
|
|
bool SetLayersHotkeys( bool value );
|
|
|
|
|
2021-06-03 15:41:26 +00:00
|
|
|
// Fill the layer bitmap aLayerbmp with the layer color
|
2021-07-26 17:28:37 +00:00
|
|
|
static void DrawColorSwatch( wxBitmap& aLayerbmp, const COLOR4D& aBackground,
|
|
|
|
const COLOR4D& aColor );
|
2020-05-05 15:40:18 +00:00
|
|
|
|
|
|
|
protected:
|
2021-06-03 15:41:26 +00:00
|
|
|
// Return a color index from the layer id
|
2021-07-21 23:14:56 +00:00
|
|
|
virtual COLOR4D getLayerColor( int aLayer ) const = 0;
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2021-06-03 15:41:26 +00:00
|
|
|
// Return the name of the layer id
|
2021-07-21 23:14:56 +00:00
|
|
|
virtual wxString getLayerName( int aLayer ) const = 0;
|
2012-05-04 17:44:42 +00:00
|
|
|
|
2021-06-03 15:41:26 +00:00
|
|
|
// Return true if the layer id is enabled (i.e. is it should be displayed)
|
2021-07-21 23:14:56 +00:00
|
|
|
virtual bool isLayerEnabled( int aLayer ) const = 0;
|
2021-06-03 15:41:26 +00:00
|
|
|
|
|
|
|
bool m_layerhotkeys;
|
2013-08-30 19:28:31 +00:00
|
|
|
};
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
|
2021-06-03 15:41:26 +00:00
|
|
|
/*
|
|
|
|
* Display a layer list in a wxBitmapComboBox.
|
2013-08-30 19:28:31 +00:00
|
|
|
*/
|
2014-06-24 16:17:18 +00:00
|
|
|
class LAYER_BOX_SELECTOR : public wxBitmapComboBox, public LAYER_SELECTOR
|
2013-08-30 19:28:31 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-07-21 23:14:56 +00:00
|
|
|
LAYER_BOX_SELECTOR( wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, int n = 0,
|
|
|
|
const wxString choices[] = nullptr );
|
2013-08-30 19:28:31 +00:00
|
|
|
|
2018-09-22 10:51:18 +00:00
|
|
|
~LAYER_BOX_SELECTOR() override;
|
|
|
|
|
2021-07-21 23:14:56 +00:00
|
|
|
int GetLayerSelection() const;
|
2010-11-02 23:13:56 +00:00
|
|
|
|
2021-07-21 23:14:56 +00:00
|
|
|
int SetLayerSelection( int layer );
|
2010-11-02 23:13:56 +00:00
|
|
|
|
|
|
|
// Reload the Layers
|
2012-05-04 17:44:42 +00:00
|
|
|
// Virtual pure function because GerbView uses its own functions in a derived class
|
|
|
|
virtual void Resync() = 0;
|
|
|
|
|
2018-09-22 10:51:18 +00:00
|
|
|
private:
|
2023-07-17 21:05:04 +00:00
|
|
|
#ifdef __WXMAC__
|
2023-07-17 21:07:36 +00:00
|
|
|
void onKeyDown( wxKeyEvent& aEvent );
|
2023-07-17 19:30:52 +00:00
|
|
|
void OnDrawBackground( wxDC& dc, const wxRect& rect, int item, int flags) const override;
|
2023-07-17 21:05:04 +00:00
|
|
|
#endif
|
2010-11-02 23:13:56 +00:00
|
|
|
};
|
|
|
|
|
2018-01-31 08:23:20 +00:00
|
|
|
#endif // LAYER_BOX_SELECTOR_H
|