diff options
author | saurabhb17 | 2020-02-26 16:00:53 +0530 |
---|---|---|
committer | GitHub | 2020-02-26 16:00:53 +0530 |
commit | 886d9cb772e81d2e5262284bc3082664f084337f (patch) | |
tree | 6acee185a4dc19113fcbf0f9a3d6941085dedaf7 /eeschema/sch_field.h | |
parent | 0db48f6533517ecebfd9f0693f89deca28408b76 (diff) | |
parent | aa35045840b78d3f48212db45da59a2e5c69b223 (diff) | |
download | KiCad-eSim-886d9cb772e81d2e5262284bc3082664f084337f.tar.gz KiCad-eSim-886d9cb772e81d2e5262284bc3082664f084337f.tar.bz2 KiCad-eSim-886d9cb772e81d2e5262284bc3082664f084337f.zip |
Merge pull request #1 from saurabhb17/develop
Added main functions
Diffstat (limited to 'eeschema/sch_field.h')
-rw-r--r-- | eeschema/sch_field.h | 202 |
1 files changed, 202 insertions, 0 deletions
diff --git a/eeschema/sch_field.h b/eeschema/sch_field.h new file mode 100644 index 0000000..8b458bc --- /dev/null +++ b/eeschema/sch_field.h @@ -0,0 +1,202 @@ +/* + * This program source code file is part of KiCad, a free EDA CAD application. + * + * Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr + * Copyright (C) 2004-2015 KiCad Developers, see change_log.txt for contributors. + * + * 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 + */ + +/** + * @file sch_field.h + * @brief Definition of the SCH_FIELD class for Eeschema. + */ + +#ifndef CLASS_SCH_FIELD_H +#define CLASS_SCH_FIELD_H + + +#include <eda_text.h> +#include <sch_item_struct.h> +#include <general.h> + + +class SCH_EDIT_FRAME; +class SCH_COMPONENT; +class LIB_FIELD; + + +/** + * Class SCH_FIELD + * instances are attached to a component and provide a place for the component's value, + * reference designator, footprint, and user definable name-value pairs of arbitrary purpose. + * + * <ul> <li>Field 0 is reserved for the component reference.</li> + * <li>Field 1 is reserved for the component value.</li> + * <li>Field 2 is reserved for the component footprint.</li> + * <li>Field 3 is reserved for the component data sheet file.</li> + * <li>Field 4 and higher are user defineable.</li></ul> + */ + +class SCH_FIELD : public SCH_ITEM, public EDA_TEXT +{ + int m_id; ///< Field index, @see enum NumFieldType + + wxString m_name; + +public: + SCH_FIELD( const wxPoint& aPos, int aFieldId, SCH_COMPONENT* aParent, + wxString aName = wxEmptyString ); + + // Do not create a copy constructor. The one generated by the compiler is adequate. + + ~SCH_FIELD(); + + wxString GetClass() const + { + return wxT( "SCH_FIELD" ); + } + + /** + * Function GetName + * returns the field name. + * + * @param aUseDefaultName When true return the default field name if the field name is + * empty. Otherwise the default field name is returned. + * @return A wxString object containing the name of the field. + */ + wxString GetName( bool aUseDefaultName = true ) const; + + void SetName( const wxString& aName ) { m_name = aName; } + + int GetId() const { return m_id; } + + void SetId( int aId ) { m_id = aId; } + + /** + * Function GetFullyQualifiedText + * returns the fully qualified field text by allowing for the part suffix to be added + * to the reference designator field if the component has multiple parts. For all other + * fields this is the equivalent of EDA_TEXT::GetText(). + * + * @return a const wxString object containing the field's string. + */ + const wxString GetFullyQualifiedText() const; + + void Place( SCH_EDIT_FRAME* frame, wxDC* DC ); + + const EDA_RECT GetBoundingBox() const; // Virtual + + /** + * Function IsVoid + * returns true if the field is either empty or holds "~". + */ + bool IsVoid() const + { + size_t len = m_Text.Len(); + + return len == 0 || ( len == 1 && m_Text[0] == wxChar( '~' ) ); + } + + void SwapData( SCH_ITEM* aItem ); + + /** + * Function ImportValues + * copy parameters from a source. + * Pointers and specific values (position) are not copied + * @param aSource = the LIB_FIELD to read + */ + void ImportValues( const LIB_FIELD& aSource ); + + int GetPenSize() const; + + /** + * Function IsVisible + * @return true is this field is visible, false if flagged invisible + */ + bool IsVisible() const + { + return (m_Attributs & TEXT_NO_VISIBLE) == 0 ? true : false; + } + + void Draw( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aOffset, + GR_DRAWMODE aDrawMode, EDA_COLOR_T aColor = UNSPECIFIED_COLOR ); + + bool Save( FILE* aFile ) const; + + // Geometric transforms (used in block operations): + + void Move( const wxPoint& aMoveVector ) + { + m_Pos += aMoveVector; + } + + + void Rotate( wxPoint aPosition ); + + /** + * @copydoc SCH_ITEM::MirrorX() + * + * This overload does nothing. Fields are never mirrored alone. They are moved + * when the parent component is mirrored. This function is only needed by the + * pure function of the master class. + */ + void MirrorX( int aXaxis_position ) + { + } + + /** + * @copydoc SCH_ITEM::MirrorY() + * + * This overload does nothing. Fields are never mirrored alone. They are moved + * when the parent component is mirrored. This function is only needed by the + * pure function of the master class. + */ + void MirrorY( int aYaxis_position ) + { + } + + bool Matches( wxFindReplaceData& aSearchData, void* aAuxData, wxPoint* aFindLocation ); + + bool Replace( wxFindReplaceData& aSearchData, void* aAuxData = NULL ); + + wxString GetSelectMenuText() const; + + BITMAP_DEF GetMenuImage() const; + + bool IsReplaceable() const { return true; } + + wxPoint GetPosition() const; + + void SetPosition( const wxPoint& aPosition ); + + bool HitTest( const wxPoint& aPosition, int aAccuracy ) const; + + bool HitTest( const EDA_RECT& aRect, bool aContained = false, int aAccuracy = 0 ) const; + + void Plot( PLOTTER* aPlotter ); + + EDA_ITEM* Clone() const; + +#if defined(DEBUG) + void Show( int nestLevel, std::ostream& os ) const { ShowDummy( os ); } // override +#endif +}; + + +#endif /* CLASS_SCH_FIELD_H */ |