kicad-source/include/widgets/layer_box_selector.h

79 lines
2.3 KiB
C
Raw Normal View History

2014-10-22 11:51:34 -04: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
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
2014-10-22 11:51:34 -04: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 09:23:20 +01:00
#ifndef LAYER_BOX_SELECTOR_H
#define LAYER_BOX_SELECTOR_H
#include <wx/bmpcbox.h>
2021-06-03 11:41:26 -04:00
/**
* Base class to build a layer list.
*/
class LAYER_SELECTOR
{
public:
LAYER_SELECTOR();
2023-07-17 22:06:45 +01:00
virtual ~LAYER_SELECTOR() { }
bool SetLayersHotkeys( bool value );
protected:
/// Return true if the layer id is enabled (i.e. is it should be displayed).
2021-07-22 00:14:56 +01:00
virtual bool isLayerEnabled( int aLayer ) const = 0;
2021-06-03 11:41:26 -04:00
bool m_layerhotkeys;
};
/**
2021-06-03 11:41:26 -04:00
* Display a layer list in a wxBitmapComboBox.
*/
class LAYER_BOX_SELECTOR : public wxBitmapComboBox, public LAYER_SELECTOR
{
public:
2021-07-22 00:14:56 +01:00
LAYER_BOX_SELECTOR( wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, int n = 0,
const wxString choices[] = nullptr );
~LAYER_BOX_SELECTOR() override;
2021-07-22 00:14:56 +01:00
int GetLayerSelection() const;
2021-07-22 00:14:56 +01:00
int SetLayerSelection( int layer );
// Reload the Layers
// Virtual pure function because GerbView uses its own functions in a derived class
virtual void Resync() = 0;
private:
2023-07-17 22:05:04 +01:00
#ifdef __WXMAC__
2023-07-17 22:07:36 +01:00
void onKeyDown( wxKeyEvent& aEvent );
void OnDrawBackground( wxDC& dc, const wxRect& rect, int item, int flags) const override;
2023-07-17 22:05:04 +01:00
#endif
};
2018-01-31 09:23:20 +01:00
#endif // LAYER_BOX_SELECTOR_H