69 lines
2.1 KiB
C++
69 lines
2.1 KiB
C++
/*
|
|
* This program source code file is part of KICAD, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2020 CERN
|
|
* Copyright (C) 2023 KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
*
|
|
* 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 3
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef PCB_PROPERTIES_PANEL_H
|
|
#define PCB_PROPERTIES_PANEL_H
|
|
|
|
#include <widgets/properties_panel.h>
|
|
|
|
class SELECTION;
|
|
class BOARD;
|
|
class PCB_BASE_EDIT_FRAME;
|
|
class PROPERTY_MANAGER;
|
|
class PG_UNIT_EDITOR;
|
|
class PG_CHECKBOX_EDITOR;
|
|
class PG_RATIO_EDITOR;
|
|
|
|
class PCB_PROPERTIES_PANEL : public PROPERTIES_PANEL
|
|
{
|
|
public:
|
|
PCB_PROPERTIES_PANEL( wxWindow* aParent, PCB_BASE_EDIT_FRAME* aFrame );
|
|
|
|
virtual ~PCB_PROPERTIES_PANEL();
|
|
|
|
void UpdateData() override;
|
|
|
|
void AfterCommit() override;
|
|
|
|
protected:
|
|
wxPGProperty* createPGProperty( const PROPERTY_BASE* aProperty ) const override;
|
|
|
|
PROPERTY_BASE* getPropertyFromEvent( const wxPropertyGridEvent& aEvent ) const;
|
|
|
|
void valueChanging( wxPropertyGridEvent& aEvent ) override;
|
|
void valueChanged( wxPropertyGridEvent& aEvent ) override;
|
|
|
|
///< Regenerates caches storing layer and net names
|
|
void updateLists( const BOARD* aBoard );
|
|
|
|
protected:
|
|
PCB_BASE_EDIT_FRAME* m_frame;
|
|
PROPERTY_MANAGER& m_propMgr;
|
|
PG_UNIT_EDITOR* m_unitEditorInstance;
|
|
PG_CHECKBOX_EDITOR* m_checkboxEditorInstance;
|
|
PG_RATIO_EDITOR* m_ratioEditorInstance;
|
|
|
|
wxPGChoices m_nets;
|
|
};
|
|
|
|
#endif /* PCB_PROPERTIES_PANEL_H */
|