2010-02-03 14:05:17 +00:00
|
|
|
/*
|
2011-09-30 18:15:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2010-02-03 14:05:17 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2004-2010 Jean-Pierre Charras, jean-pierre.charras@gpisa-lab.inpg.fr
|
|
|
|
* Copyright (C) 2010 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2011-09-30 18:15:37 +00:00
|
|
|
* Copyright (C) 2010 KiCad Developers, see change_log.txt for contributors.
|
2010-02-03 14:05:17 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************************/
|
|
|
|
/* class_pcb_layer_widget.h : header for the layers manager */
|
|
|
|
/************************************************************/
|
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
#ifndef CLASS_PCB_LAYER_WIDGET_H_
|
|
|
|
#define CLASS_PCB_LAYER_WIDGET_H_
|
2010-02-03 14:05:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class PCB_LAYER_WIDGET
|
|
|
|
* is here to implement the abtract functions of LAYER_WIDGET so they
|
2011-03-01 19:26:17 +00:00
|
|
|
* may be tied into the PCB_EDIT_FRAME's data and so we can add a popup
|
2010-02-03 14:05:17 +00:00
|
|
|
* menu which is specific to PCBNEW's needs.
|
|
|
|
*/
|
|
|
|
class PCB_LAYER_WIDGET : public LAYER_WIDGET
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
2010-12-29 17:47:32 +00:00
|
|
|
* @param aParent is the parent window
|
|
|
|
* @param aFocusOwner is the window that should be sent the focus after
|
2010-02-03 14:05:17 +00:00
|
|
|
* @param aPointSize is the font point size to use within the widget. This
|
|
|
|
* effectively sets the overal size of the widget via the row height and bitmap
|
|
|
|
* button sizes.
|
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_LAYER_WIDGET( PCB_EDIT_FRAME* aParent, wxWindow* aFocusOwner, int aPointSize = 10 );
|
2010-02-03 14:05:17 +00:00
|
|
|
|
|
|
|
void ReFill();
|
|
|
|
|
2011-04-07 19:17:51 +00:00
|
|
|
/**
|
|
|
|
* Function ReFillRender
|
2012-02-06 05:44:19 +00:00
|
|
|
* rebuilds Render for instance after the config is read
|
2011-04-07 19:17:51 +00:00
|
|
|
*/
|
|
|
|
void ReFillRender();
|
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
/**
|
|
|
|
* Function SyncRenderStates
|
|
|
|
* updates the checkboxes (checked or not) to be consistent with the current state
|
|
|
|
* of the visibility of the visible rendering elements.
|
|
|
|
*/
|
|
|
|
void SyncRenderStates();
|
|
|
|
|
2012-03-12 00:40:48 +00:00
|
|
|
/**
|
|
|
|
* Function SyncLayerVisibilities
|
|
|
|
* updates each "Layer" checkbox in this layer widget according
|
|
|
|
* to each layer's current visibility determined by IsLayerVisible(), and is
|
|
|
|
* helpful immediately after loading a BOARD which may have state information in it.
|
|
|
|
*/
|
|
|
|
void SyncLayerVisibilities();
|
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
/**
|
|
|
|
* Function SetLayersManagerTabsText
|
|
|
|
* Update the layer manager tabs labels
|
|
|
|
* Useful when changing Language or to set labels to a non default value
|
|
|
|
*/
|
|
|
|
void SetLayersManagerTabsText();
|
|
|
|
|
2010-02-03 14:05:17 +00:00
|
|
|
//-----<implement LAYER_WIDGET abstract callback functions>-----------
|
|
|
|
void OnLayerColorChange( int aLayer, int aColor );
|
|
|
|
bool OnLayerSelect( int aLayer );
|
|
|
|
void OnLayerVisible( int aLayer, bool isVisible, bool isFinal );
|
|
|
|
void OnRenderColorChange( int aId, int aColor );
|
|
|
|
void OnRenderEnable( int aId, bool isEnabled );
|
2012-02-06 05:44:19 +00:00
|
|
|
//-----</implement LAYER_WIDGET abstract callback functions>----------
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
static const LAYER_WIDGET::ROW s_render_rows[];
|
|
|
|
|
|
|
|
PCB_EDIT_FRAME* myframe;
|
|
|
|
|
|
|
|
// popup menu ids.
|
2012-02-17 19:43:43 +00:00
|
|
|
#define ID_SHOW_ALL_COPPERS wxID_HIGHEST
|
|
|
|
#define ID_SHOW_NO_COPPERS (wxID_HIGHEST+1)
|
|
|
|
#define ID_SHOW_NO_COPPERS_BUT_ACTIVE (wxID_HIGHEST+2)
|
2012-02-06 05:44:19 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
2012-02-06 05:44:19 +00:00
|
|
|
* Function OnRightDownLayers
|
|
|
|
* puts up a popup menu for the layer panel.
|
2010-02-26 15:39:10 +00:00
|
|
|
*/
|
2012-02-06 05:44:19 +00:00
|
|
|
void onRightDownLayers( wxMouseEvent& event );
|
|
|
|
|
|
|
|
void onPopupSelection( wxCommandEvent& event );
|
|
|
|
|
|
|
|
/// this is for the popup menu, the right click handler has to be installed
|
|
|
|
/// on every child control within the layer panel.
|
|
|
|
void installRightLayerClickHandler();
|
2010-02-03 14:05:17 +00:00
|
|
|
};
|
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
#endif // CLASS_PCB_LAYER_WIDGET_H_
|