2014-10-21 15:48:00 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2020-01-23 20:45:51 +00:00
|
|
|
* Copyright (C) 2009 Wayne Stambaugh <stambaughw@gmail.com>
|
2021-03-21 17:31:23 +00:00
|
|
|
* Copyright (C) 2015-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-21 15:48:00 +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
|
|
|
|
*/
|
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
#ifndef __dialog_lib_new_symbol__
|
|
|
|
#define __dialog_lib_new_symbol__
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2020-01-23 20:45:51 +00:00
|
|
|
#include <widgets/unit_binder.h>
|
2021-07-29 09:56:22 +00:00
|
|
|
#include <string_utils.h>
|
2021-06-14 18:00:08 +00:00
|
|
|
#include <dialog_lib_new_symbol_base.h>
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2020-01-23 20:45:51 +00:00
|
|
|
class EDA_DRAW_FRAME;
|
|
|
|
class wxArrayString;
|
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
class DIALOG_LIB_NEW_SYMBOL : public DIALOG_LIB_NEW_SYMBOL_BASE
|
2013-05-26 04:36:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-06-14 18:00:08 +00:00
|
|
|
DIALOG_LIB_NEW_SYMBOL( EDA_DRAW_FRAME* parent,
|
2023-02-22 01:49:46 +00:00
|
|
|
const wxString& message,
|
|
|
|
const wxArrayString* aRootSymbolNames = nullptr,
|
|
|
|
const wxString& inheritFromSymbolName = wxEmptyString );
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2021-07-28 17:36:13 +00:00
|
|
|
void SetName( const wxString& name ) override
|
|
|
|
{
|
|
|
|
m_textName->SetValue( UnescapeString( name ) );
|
|
|
|
}
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2021-07-28 17:36:13 +00:00
|
|
|
wxString GetName( void ) const override
|
|
|
|
{
|
|
|
|
return EscapeString( m_textName->GetValue(), CTX_LIBID );
|
|
|
|
}
|
2019-11-06 19:15:42 +00:00
|
|
|
|
2021-07-28 17:36:13 +00:00
|
|
|
wxString GetParentSymbolName() const
|
2013-05-26 04:36:44 +00:00
|
|
|
{
|
2021-07-28 17:36:13 +00:00
|
|
|
return EscapeString( m_comboInheritanceSelect->GetValue(), CTX_LIBID );
|
2013-05-26 04:36:44 +00:00
|
|
|
}
|
2021-07-28 17:36:13 +00:00
|
|
|
|
|
|
|
void SetReference( const wxString& reference ) { m_textReference->SetValue( reference ); }
|
2013-05-26 04:36:44 +00:00
|
|
|
wxString GetReference( void ) { return m_textReference->GetValue(); }
|
|
|
|
|
|
|
|
void SetPartCount( int count ) { m_spinPartCount->SetValue( count ); }
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
int GetUnitCount( void ) { return m_spinPartCount->GetValue(); }
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2021-07-28 17:36:13 +00:00
|
|
|
void SetAlternateBodyStyle( bool enable ) { m_checkHasConversion->SetValue( enable ); }
|
|
|
|
bool GetAlternateBodyStyle( void ) { return m_checkHasConversion->GetValue(); }
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2021-07-28 17:36:13 +00:00
|
|
|
void SetPowerSymbol( bool enable ) { m_checkIsPowerSymbol->SetValue( enable ); }
|
2013-05-26 04:36:44 +00:00
|
|
|
bool GetPowerSymbol( void ) { return m_checkIsPowerSymbol->GetValue(); }
|
|
|
|
|
2022-02-06 13:23:08 +00:00
|
|
|
void SetUnitsInterchangeable( bool enable ) { m_checkUnitsInterchangeable->SetValue( enable ); }
|
|
|
|
bool GetUnitsInterchangeable( void ) { return m_checkUnitsInterchangeable->GetValue(); }
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2020-09-09 13:03:37 +00:00
|
|
|
void SetIncludeInBom( bool aInclude ) { m_excludeFromBomCheckBox->SetValue( !aInclude ); }
|
|
|
|
bool GetIncludeInBom() const { return !m_excludeFromBomCheckBox->GetValue(); }
|
|
|
|
|
|
|
|
void SetIncludeOnBoard( bool aInclude ) { m_excludeFromBoardCheckBox->SetValue( !aInclude ); }
|
|
|
|
bool GetIncludeOnBoard() const { return !m_excludeFromBoardCheckBox->GetValue(); }
|
|
|
|
|
2021-07-28 17:36:13 +00:00
|
|
|
void SetPinTextPosition( int position ) { m_pinTextPosition.SetValue( position ); }
|
2020-01-23 20:45:51 +00:00
|
|
|
int GetPinTextPosition( void ) { return m_pinTextPosition.GetValue(); }
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2021-07-28 17:36:13 +00:00
|
|
|
void SetShowPinNumber( bool show ) { m_checkShowPinNumber->SetValue( show ); }
|
2013-05-26 04:36:44 +00:00
|
|
|
bool GetShowPinNumber( void ) { return m_checkShowPinNumber->GetValue(); }
|
|
|
|
|
2021-07-28 17:36:13 +00:00
|
|
|
void SetShowPinName( bool show ) { m_checkShowPinName->SetValue( show ); }
|
2013-05-26 04:36:44 +00:00
|
|
|
bool GetShowPinName( void ) { return m_checkShowPinName->GetValue(); }
|
|
|
|
|
2021-07-28 17:36:13 +00:00
|
|
|
void SetPinNameInside( bool show ) { m_checkShowPinNameInside->SetValue( show ); }
|
2013-05-26 04:36:44 +00:00
|
|
|
bool GetPinNameInside( void ) { return m_checkShowPinNameInside->GetValue(); }
|
2019-11-06 19:15:42 +00:00
|
|
|
|
|
|
|
protected:
|
2020-09-09 13:03:37 +00:00
|
|
|
virtual void OnParentSymbolSelect( wxCommandEvent& aEvent ) override;
|
|
|
|
virtual void onPowerCheckBox( wxCommandEvent& aEvent ) override;
|
2019-11-06 19:15:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void syncControls( bool aIsDerivedPart );
|
2020-01-23 20:45:51 +00:00
|
|
|
|
|
|
|
UNIT_BINDER m_pinTextPosition;
|
2013-05-26 04:36:44 +00:00
|
|
|
};
|
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
#endif // __dialog_lib_new_symbol__
|