2013-06-07 09:49:36 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2021-03-21 17:31:23 +00:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-06-07 09:49:36 +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
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2020-10-22 09:40:54 +00:00
|
|
|
#ifndef DIALOG_LIB_SYMBOL_PROPERTIES_H
|
|
|
|
#define DIALOG_LIB_SYMBOL_PROPERTIES_H
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2018-08-13 17:00:08 +00:00
|
|
|
#include <fields_grid_table.h>
|
|
|
|
#include <widgets/unit_binder.h>
|
2020-10-22 09:40:54 +00:00
|
|
|
#include <dialog_lib_symbol_properties_base.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
class SYMBOL_EDIT_FRAME;
|
2021-06-10 18:51:46 +00:00
|
|
|
class LIB_SYMBOL;
|
2018-08-13 17:00:08 +00:00
|
|
|
class WX_GRID;
|
|
|
|
|
|
|
|
|
2020-10-22 09:40:54 +00:00
|
|
|
class DIALOG_LIB_SYMBOL_PROPERTIES: public DIALOG_LIB_SYMBOL_PROPERTIES_BASE
|
2008-12-31 15:01:29 +00:00
|
|
|
{
|
2009-08-18 11:07:21 +00:00
|
|
|
public:
|
2021-06-10 18:51:46 +00:00
|
|
|
DIALOG_LIB_SYMBOL_PROPERTIES( SYMBOL_EDIT_FRAME* parent, LIB_SYMBOL* aLibEntry );
|
2020-10-22 09:40:54 +00:00
|
|
|
~DIALOG_LIB_SYMBOL_PROPERTIES();
|
|
|
|
|
|
|
|
protected:
|
2018-08-13 17:00:08 +00:00
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
|
|
|
|
bool Validate() override;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2021-10-25 11:34:30 +00:00
|
|
|
void onPowerCheckBox( wxCommandEvent& aEvent ) override;
|
|
|
|
void OnText( wxCommandEvent& event ) override;
|
|
|
|
void OnCombobox( wxCommandEvent& event ) override;
|
|
|
|
void OnCheckBox( wxCommandEvent& event ) override;
|
|
|
|
void OnSpinCtrl( wxSpinEvent& event ) override;
|
|
|
|
void OnSpinCtrlText( wxCommandEvent& event ) override;
|
2020-09-09 13:03:37 +00:00
|
|
|
|
2009-08-18 11:07:21 +00:00
|
|
|
private:
|
2018-08-13 17:00:08 +00:00
|
|
|
void OnAddField( wxCommandEvent& event ) override;
|
|
|
|
void OnDeleteField( wxCommandEvent& event ) override;
|
|
|
|
void OnMoveUp( wxCommandEvent& event ) override;
|
|
|
|
void OnMoveDown( wxCommandEvent& event ) override;
|
2018-09-13 15:39:14 +00:00
|
|
|
void OnSymbolNameKillFocus( wxFocusEvent& event ) override;
|
|
|
|
void OnSymbolNameText( wxCommandEvent& event ) override;
|
2018-08-13 17:00:08 +00:00
|
|
|
void OnAddFootprintFilter( wxCommandEvent& event ) override;
|
|
|
|
void OnDeleteFootprintFilter( wxCommandEvent& event ) override;
|
|
|
|
void OnEditFootprintFilter( wxCommandEvent& event ) override;
|
|
|
|
void OnSizeGrid( wxSizeEvent& event ) override;
|
|
|
|
void OnGridCellChanging( wxGridEvent& event );
|
2019-01-10 05:42:14 +00:00
|
|
|
void OnEditSpiceModel( wxCommandEvent& event ) override;
|
2018-08-13 17:00:08 +00:00
|
|
|
void OnUpdateUI( wxUpdateUIEvent& event ) override;
|
2019-02-16 00:51:16 +00:00
|
|
|
void OnFilterDClick( wxMouseEvent& event ) override;
|
2019-02-20 22:57:39 +00:00
|
|
|
void OnCancelButtonClick( wxCommandEvent& event ) override;
|
2018-08-13 17:00:08 +00:00
|
|
|
|
2021-12-16 14:39:58 +00:00
|
|
|
void adjustGridColumns();
|
2019-11-06 19:15:42 +00:00
|
|
|
void syncControlStates( bool aIsAlias );
|
2021-03-21 17:31:23 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
SYMBOL_EDIT_FRAME* m_Parent;
|
2021-06-10 18:51:46 +00:00
|
|
|
LIB_SYMBOL* m_libEntry;
|
2021-03-21 17:31:23 +00:00
|
|
|
|
2024-04-12 21:00:41 +00:00
|
|
|
FIELDS_GRID_TABLE* m_fields;
|
2021-03-21 17:31:23 +00:00
|
|
|
|
|
|
|
UNIT_BINDER m_pinNameOffset;
|
|
|
|
|
|
|
|
wxControl* m_delayedFocusCtrl;
|
|
|
|
WX_GRID* m_delayedFocusGrid;
|
|
|
|
int m_delayedFocusRow;
|
|
|
|
int m_delayedFocusColumn;
|
|
|
|
int m_delayedFocusPage;
|
|
|
|
wxString m_delayedErrorMessage;
|
|
|
|
|
2023-04-13 12:45:22 +00:00
|
|
|
std::bitset<64> m_shownColumns;
|
2021-12-17 04:00:24 +00:00
|
|
|
wxSize m_size;
|
2021-03-21 17:31:23 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static int m_lastOpenedPage; // To remember the last notebook selection
|
|
|
|
|
2023-11-14 01:13:29 +00:00
|
|
|
enum class LAST_LAYOUT {
|
2021-03-21 17:31:23 +00:00
|
|
|
NONE,
|
|
|
|
ALIAS,
|
|
|
|
PARENT
|
|
|
|
};
|
|
|
|
|
|
|
|
static LAST_LAYOUT m_lastLayout;
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
2020-10-22 09:40:54 +00:00
|
|
|
#endif // DIALOG_LIB_SYMBOL_PROPERTIES_H
|