2011-10-31 20:49:48 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-02-28 16:56:09 +00:00
|
|
|
* Copyright (C) 2015 Jean-Pierre Charras, jaen-pierre.charras at wanadoo.fr
|
2017-11-27 15:18:30 +00:00
|
|
|
* Copyright (C) 2015 Wayne Stambaugh <stambaughw@gmail.com>
|
2020-02-13 13:39:52 +00:00
|
|
|
* Copyright (C) 2004-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-31 20:49:48 +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
|
|
|
|
*/
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
#ifndef _LIB_ITEM_H_
|
|
|
|
#define _LIB_ITEM_H_
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2020-10-14 01:06:53 +00:00
|
|
|
#include <eda_item.h>
|
2018-01-29 10:37:29 +00:00
|
|
|
#include <eda_rect.h>
|
2020-10-15 01:45:20 +00:00
|
|
|
#include <fill_type.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <transform.h>
|
2013-09-25 19:09:57 +00:00
|
|
|
#include <gr_basic.h>
|
2020-04-14 12:25:00 +00:00
|
|
|
#include <render_settings.h>
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
class LINE_READER;
|
2011-11-01 15:06:26 +00:00
|
|
|
class OUTPUTFORMATTER;
|
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
|
|
|
class LIB_PART;
|
2010-10-08 20:40:57 +00:00
|
|
|
class PLOTTER;
|
|
|
|
class LIB_PIN;
|
2013-01-12 17:32:24 +00:00
|
|
|
class MSG_PANEL_ITEM;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
using KIGFX::RENDER_SETTINGS;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2020-10-15 08:48:02 +00:00
|
|
|
extern const int fill_tab[];
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
|
2011-05-25 10:42:56 +00:00
|
|
|
#define MINIMUM_SELECTION_DISTANCE 2 // Minimum selection distance in internal units
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper for defining a list of pin object pointers. The list does not
|
2011-10-31 20:49:48 +00:00
|
|
|
* use a Boost pointer class so the object pointers do not accidentally get
|
2010-10-08 20:40:57 +00:00
|
|
|
* deleted when the container is deleted.
|
|
|
|
*/
|
2011-04-27 19:44:32 +00:00
|
|
|
typedef std::vector< LIB_PIN* > LIB_PINS;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-12-01 16:49:19 +00:00
|
|
|
* The base class for drawable items used by schematic library components.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2011-04-27 19:44:32 +00:00
|
|
|
class LIB_ITEM : public EDA_ITEM
|
2010-10-08 20:40:57 +00:00
|
|
|
{
|
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
|
|
|
friend class LIB_PART;
|
2010-10-25 15:43:42 +00:00
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
public:
|
2019-07-02 20:09:23 +00:00
|
|
|
LIB_ITEM( KICAD_T aType, LIB_PART* aComponent = NULL, int aUnit = 0, int aConvert = 0,
|
2020-10-15 01:45:20 +00:00
|
|
|
FILL_TYPE aFillType = FILL_TYPE::NO_FILL );
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2012-01-09 20:26:55 +00:00
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
virtual ~LIB_ITEM() { }
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2019-04-15 13:59:36 +00:00
|
|
|
// Define the enums for basic
|
|
|
|
enum LIB_CONVERT : int { BASE = 1, DEMORGAN = 2 };
|
|
|
|
|
2020-02-13 13:39:52 +00:00
|
|
|
/**
|
|
|
|
* The list of flags used by the #compare function.
|
|
|
|
*
|
|
|
|
* - NORMAL This compares everthing between two #LIB_ITEM objects.
|
|
|
|
* - UNIT This compare flag ignores unit and convert and pin number information when
|
|
|
|
* comparing #LIB_ITEM objects for unit comparison.
|
|
|
|
*/
|
|
|
|
enum COMPARE_FLAGS : int { NORMAL = 0x00, UNIT = 0x01 };
|
|
|
|
|
2018-01-25 23:49:04 +00:00
|
|
|
/**
|
|
|
|
* Provide a user-consumable name of the object type. Perform localization when
|
|
|
|
* called so that run-time language selection works.
|
|
|
|
*/
|
2020-10-27 11:03:35 +00:00
|
|
|
virtual wxString GetTypeName() const = 0;
|
2010-10-25 15:43:42 +00:00
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
/**
|
2019-05-20 10:23:32 +00:00
|
|
|
* Begin drawing a component library draw item at \a aPosition.
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
|
|
|
* It typically would be called on a left click when a draw tool is selected in
|
2019-05-20 10:23:32 +00:00
|
|
|
* the component library editor and one of the graphics tools is selected.
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
2019-05-20 10:23:32 +00:00
|
|
|
* @param aPosition The position in drawing coordinates where the drawing was started.
|
|
|
|
* May or may not be required depending on the item being drawn.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2019-05-20 10:23:32 +00:00
|
|
|
virtual void BeginEdit( const wxPoint aPosition ) {}
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
2010-10-20 20:24:26 +00:00
|
|
|
* Continue an edit in progress at \a aPosition.
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
2019-05-20 10:23:32 +00:00
|
|
|
* This is used to perform the next action while drawing an item. This would be
|
2010-10-08 20:40:57 +00:00
|
|
|
* called for each additional left click when the mouse is captured while the item
|
2019-05-20 10:23:32 +00:00
|
|
|
* is being drawn.
|
2010-10-20 20:24:26 +00:00
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aPosition The position of the mouse left click in drawing coordinates.
|
2010-10-20 20:24:26 +00:00
|
|
|
* @return True if additional mouse clicks are required to complete the edit in progress.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2019-05-20 10:23:32 +00:00
|
|
|
virtual bool ContinueEdit( const wxPoint aPosition ) { return false; }
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* End an object editing action.
|
|
|
|
*
|
2010-10-20 20:24:26 +00:00
|
|
|
* This is used to end or abort an edit action in progress initiated by BeginEdit().
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2019-05-20 10:23:32 +00:00
|
|
|
virtual void EndEdit() {}
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
/**
|
|
|
|
* Calculates the attributes of an item at \a aPosition when it is being edited.
|
|
|
|
*
|
|
|
|
* This method gets called by the Draw() method when the item is being edited. This
|
|
|
|
* probably should be a pure virtual method but bezier curves are not yet editable in
|
|
|
|
* the component library editor. Therefore, the default method does nothing.
|
|
|
|
*
|
|
|
|
* @param aPosition The current mouse position in drawing coordinates.
|
|
|
|
*/
|
|
|
|
virtual void CalcEdit( const wxPoint& aPosition ) {}
|
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
/**
|
2010-10-20 20:24:26 +00:00
|
|
|
* Draw an item
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aDC Device Context (can be null)
|
|
|
|
* @param aOffset Offset to draw
|
|
|
|
* @param aData Value or pointer used to pass others parameters, depending on body items.
|
|
|
|
* Used for some items to force to force no fill mode ( has meaning only for
|
|
|
|
* items what can be filled ). used in printing or moving objects mode or to
|
|
|
|
* pass reference to the lib component for pins.
|
|
|
|
* @param aTransform Transform Matrix (rotation, mirror ..)
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2020-12-20 18:18:54 +00:00
|
|
|
virtual void Print( const RENDER_SETTINGS* aSettings, const wxPoint &aOffset,
|
|
|
|
void* aData, const TRANSFORM& aTransform );
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
virtual int GetPenWidth() const = 0;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
LIB_PART* GetParent() const
|
2010-10-08 20:40:57 +00:00
|
|
|
{
|
2020-11-14 18:11:28 +00:00
|
|
|
return (LIB_PART*) m_parent;
|
2010-10-08 20:40:57 +00:00
|
|
|
}
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
void ViewGetLayers( int aLayers[], int& aCount ) const override;
|
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
bool HitTest( const wxPoint& aPosition, int aAccuracy = 0 ) const override
|
2010-10-08 20:40:57 +00:00
|
|
|
{
|
2019-05-05 10:33:34 +00:00
|
|
|
// This is just here to prevent annoying compiler warnings about hidden overloaded
|
|
|
|
// virtual functions
|
|
|
|
return EDA_ITEM::HitTest( aPosition, aAccuracy );
|
2010-10-08 20:40:57 +00:00
|
|
|
}
|
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
bool HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy = 0 ) const override;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2019-05-07 23:51:37 +00:00
|
|
|
/**
|
2010-10-08 20:40:57 +00:00
|
|
|
* @return the boundary box for this, in library coordinates
|
|
|
|
*/
|
2019-05-07 23:51:37 +00:00
|
|
|
const EDA_RECT GetBoundingBox() const override { return EDA_ITEM::GetBoundingBox(); }
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2010-11-17 18:41:20 +00:00
|
|
|
/**
|
2017-12-01 16:49:19 +00:00
|
|
|
* Display basic info (type, part and convert) about the current item in message panel.
|
2011-10-31 20:49:48 +00:00
|
|
|
* <p>
|
|
|
|
* This base function is used to display the information common to the
|
|
|
|
* all library items. Call the base class from the derived class or the
|
|
|
|
* common information will not be updated in the message panel.
|
|
|
|
* </p>
|
2013-01-12 17:32:24 +00:00
|
|
|
* @param aList is the list to populate.
|
2010-11-17 18:41:20 +00:00
|
|
|
*/
|
2020-04-24 13:36:10 +00:00
|
|
|
void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
2011-04-27 19:44:32 +00:00
|
|
|
* Test LIB_ITEM objects for equivalence.
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aOther Object to test against.
|
|
|
|
* @return True if object is identical to this object.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2011-04-27 19:44:32 +00:00
|
|
|
bool operator==( const LIB_ITEM& aOther ) const;
|
|
|
|
bool operator==( const LIB_ITEM* aOther ) const
|
2010-10-08 20:40:57 +00:00
|
|
|
{
|
|
|
|
return *this == *aOther;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if another draw item is less than this draw object.
|
|
|
|
*
|
|
|
|
* @param aOther - Draw item to compare against.
|
|
|
|
* @return - True if object is less than this object.
|
|
|
|
*/
|
2011-04-27 19:44:32 +00:00
|
|
|
bool operator<( const LIB_ITEM& aOther) const;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
2017-12-01 16:49:19 +00:00
|
|
|
* Set the drawing object by \a aOffset from the current position.
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
2012-02-27 23:02:08 +00:00
|
|
|
* @param aOffset Coordinates to offset the item position.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2019-05-09 07:57:07 +00:00
|
|
|
virtual void Offset( const wxPoint& aOffset ) = 0;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
2017-12-01 16:49:19 +00:00
|
|
|
* Move a draw object to \a aPosition.
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
2012-02-27 23:02:08 +00:00
|
|
|
* @param aPosition Position to move draw item to.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2019-05-09 07:57:07 +00:00
|
|
|
virtual void MoveTo( const wxPoint& aPosition ) = 0;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2020-09-09 02:54:17 +00:00
|
|
|
void SetPosition( const wxPoint& aPosition ) override { MoveTo( aPosition ); }
|
2010-12-07 16:10:42 +00:00
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
/**
|
2017-12-01 16:49:19 +00:00
|
|
|
* Mirror the draw object along the horizontal (X) axis about \a aCenter point.
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
2012-02-27 23:02:08 +00:00
|
|
|
* @param aCenter Point to mirror around.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2012-02-27 23:02:08 +00:00
|
|
|
virtual void MirrorHorizontal( const wxPoint& aCenter ) = 0;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2011-05-20 18:29:35 +00:00
|
|
|
/**
|
2017-12-01 16:49:19 +00:00
|
|
|
* Mirror the draw object along the MirrorVertical (Y) axis about \a aCenter point.
|
2011-05-20 18:29:35 +00:00
|
|
|
*
|
2012-02-27 23:02:08 +00:00
|
|
|
* @param aCenter Point to mirror around.
|
2011-05-20 18:29:35 +00:00
|
|
|
*/
|
2012-02-27 23:02:08 +00:00
|
|
|
virtual void MirrorVertical( const wxPoint& aCenter ) = 0;
|
2011-05-20 18:29:35 +00:00
|
|
|
|
|
|
|
/**
|
2017-12-01 16:49:19 +00:00
|
|
|
* Rotate the object about \a aCenter point.
|
2011-05-20 18:29:35 +00:00
|
|
|
*
|
2012-02-27 23:02:08 +00:00
|
|
|
* @param aCenter Point to rotate around.
|
|
|
|
* @param aRotateCCW True to rotate counter clockwise. False to rotate clockwise.
|
2011-05-20 18:29:35 +00:00
|
|
|
*/
|
2012-02-27 23:02:08 +00:00
|
|
|
virtual void Rotate( const wxPoint& aCenter, bool aRotateCCW = true ) = 0;
|
2011-05-20 18:29:35 +00:00
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
/**
|
|
|
|
* Plot the draw item using the plot object.
|
|
|
|
*
|
2012-02-27 23:02:08 +00:00
|
|
|
* @param aPlotter The plot object to plot to.
|
|
|
|
* @param aOffset Plot offset position.
|
|
|
|
* @param aFill Flag to indicate whether or not the object is filled.
|
|
|
|
* @param aTransform The plot transform.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2012-02-27 23:02:08 +00:00
|
|
|
virtual void Plot( PLOTTER* aPlotter, const wxPoint& aOffset, bool aFill,
|
|
|
|
const TRANSFORM& aTransform ) = 0;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
virtual int GetWidth() const = 0;
|
|
|
|
virtual void SetWidth( int aWidth ) = 0;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if draw object can be filled.
|
|
|
|
*
|
2019-07-02 20:09:23 +00:00
|
|
|
* The default setting is false. If the derived object support filling, set the
|
|
|
|
* m_isFillable member to true.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2010-10-25 15:43:42 +00:00
|
|
|
bool IsFillable() const { return m_isFillable; }
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
void SetUnit( int aUnit ) { m_unit = aUnit; }
|
|
|
|
int GetUnit() const { return m_unit; }
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
void SetConvert( int aConvert ) { m_convert = aConvert; }
|
|
|
|
int GetConvert() const { return m_convert; }
|
2010-10-25 15:43:42 +00:00
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
void SetFillMode( FILL_TYPE aFillMode ) { m_fill = aFillMode; }
|
|
|
|
FILL_TYPE GetFillMode() const { return m_fill; }
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#if defined(DEBUG)
|
2016-09-25 17:06:49 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
|
2011-12-14 17:25:42 +00:00
|
|
|
#endif
|
|
|
|
|
2020-02-13 13:39:52 +00:00
|
|
|
protected:
|
2010-10-08 20:40:57 +00:00
|
|
|
/**
|
2017-12-01 16:49:19 +00:00
|
|
|
* Provide the draw object specific comparison called by the == and < operators.
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* The base object sort order which always proceeds the derived object sort order
|
|
|
|
* is as follows:
|
2010-10-08 20:40:57 +00:00
|
|
|
* - Component alternate part (DeMorgan) number.
|
|
|
|
* - Component part number.
|
|
|
|
* - KICAD_T enum value.
|
|
|
|
* - Result of derived classes comparison.
|
2012-03-26 23:47:08 +00:00
|
|
|
*
|
2020-02-13 13:39:52 +00:00
|
|
|
* @note Make sure you call down to #LIB_ITEM::compare before doing any derived object
|
|
|
|
* comparisons or you will break the sorting using the symbol library file format.
|
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aOther A reference to the other #LIB_ITEM to compare the arc against.
|
2020-02-13 13:39:52 +00:00
|
|
|
* @param aCompareFlags The flags used to perform the comparison.
|
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @return An integer value less than 0 if the object is less than \a aOther ojbect,
|
|
|
|
* zero if the object is equal to \a aOther object, or greater than 0 if the
|
|
|
|
* object is greater than \a aOther object.
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2020-02-13 13:39:52 +00:00
|
|
|
virtual int compare( const LIB_ITEM& aOther,
|
|
|
|
LIB_ITEM::COMPARE_FLAGS aCompareFlags = LIB_ITEM::COMPARE_FLAGS::NORMAL ) const;
|
2021-01-26 22:54:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Print the item to \a aDC.
|
|
|
|
*
|
|
|
|
* @param aOffset A reference to a wxPoint object containing the offset where to draw
|
|
|
|
* from the object's current position.
|
|
|
|
* @param aData A pointer to any object specific data required to perform the draw.
|
|
|
|
* @param aTransform A reference to a #TRANSFORM object containing drawing transform.
|
|
|
|
*/
|
|
|
|
virtual void print( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset, void* aData,
|
|
|
|
const TRANSFORM& aTransform ) = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* Unit identification for multiple parts per package. Set to 0 if the item is common
|
|
|
|
* to all units.
|
|
|
|
*/
|
|
|
|
int m_unit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shape identification for alternate body styles. Set 0 if the item is common to all
|
|
|
|
* body styles. This is typially used for representing DeMorgan variants in KiCad.
|
|
|
|
*/
|
|
|
|
int m_convert;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The body fill type. This has meaning only for some items. For a list of fill types
|
|
|
|
* see #FILL_TYPE.
|
|
|
|
*/
|
|
|
|
FILL_TYPE m_fill;
|
|
|
|
bool m_isFillable;
|
2010-10-08 20:40:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
#endif // _LIB_ITEM_H_
|