kicad/pcbnew/dialogs/dialog_footprint_properties...

99 lines
3.5 KiB
C
Raw Normal View History

2014-10-27 14:14:39 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2010-2015 Jean-Pierre Charras, jean-pierre.charras at wanadoo.fr
* Copyright (C) 1992-2015 KiCad Developers, see AUTHORS.txt for contributors.
2014-10-27 14:14:39 +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
*/
2009-08-11 10:27:21 +00:00
2021-04-04 09:41:48 +00:00
#ifndef DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR_H
#define DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR_H
2009-08-11 10:27:21 +00:00
#include <vector>
#include <fp_text_grid_table.h>
#include <widgets/unit_binder.h>
#include <footprint.h>
2021-04-04 09:41:48 +00:00
#include <dialog_footprint_properties_fp_editor_base.h>
2021-06-19 17:28:45 +00:00
class PANEL_PREVIEW_3D_MODEL;
class FOOTPRINT_EDIT_FRAME;
2009-08-11 10:27:21 +00:00
2021-04-04 09:41:48 +00:00
class DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR : public DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR_BASE
2009-08-11 10:27:21 +00:00
{
public:
2021-04-04 09:41:48 +00:00
DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR( FOOTPRINT_EDIT_FRAME* aParent, FOOTPRINT* aFootprint );
~DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR() override;
2009-08-11 10:27:21 +00:00
bool Validate() override;
bool TransferDataToWindow() override;
bool TransferDataFromWindow() override;
private:
// virtual event functions
void On3DModelSelected( wxGridEvent& ) override;
void On3DModelCellChanged( wxGridEvent& aEvent ) override;
void OnRemove3DModel( wxCommandEvent& event ) override;
void OnAdd3DModel( wxCommandEvent& event ) override;
void OnAdd3DRow( wxCommandEvent& event ) override;
2016-09-24 18:53:15 +00:00
void Cfg3DPath( wxCommandEvent& event ) override;
void OnGridSize( wxSizeEvent& event ) override;
void OnFootprintNameText( wxCommandEvent& event ) override;
void OnGridCellChanging( wxGridEvent& event );
void OnAddField( wxCommandEvent& event ) override;
void OnDeleteField( wxCommandEvent& event ) override;
void OnUpdateUI( wxUpdateUIEvent& event ) override;
bool checkFootprintName( const wxString& aFootprintName );
void select3DModel( int aModelIdx );
void adjustGridColumns( int aWidth );
2021-06-04 16:21:48 +00:00
2021-06-19 17:28:45 +00:00
private:
2021-06-04 16:21:48 +00:00
FOOTPRINT_EDIT_FRAME* m_frame;
FOOTPRINT* m_footprint;
static int m_page; // remember the last open page during session
2021-06-19 17:28:45 +00:00
FP_TEXT_GRID_TABLE* m_texts;
2021-06-04 16:21:48 +00:00
UNIT_BINDER m_netClearance;
UNIT_BINDER m_solderMask;
UNIT_BINDER m_solderPaste;
std::vector<FP_3DMODEL> m_shapes3D_list;
2021-06-19 17:28:45 +00:00
PANEL_PREVIEW_3D_MODEL* m_previewPane;
2021-06-04 16:21:48 +00:00
wxControl* m_delayedFocusCtrl;
int m_delayedFocusPage;
WX_GRID* m_delayedFocusGrid;
int m_delayedFocusRow;
int m_delayedFocusColumn;
wxString m_delayedErrorMessage;
bool m_inSelect;
2009-08-11 10:27:21 +00:00
};
2021-04-04 09:41:48 +00:00
#endif // DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR_H