2011-10-19 20:32:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-12-19 14:07:07 +00:00
|
|
|
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2021-03-25 21:13:01 +00:00
|
|
|
* Copyright (C) 2004-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-19 20:32:21 +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
|
|
|
|
*/
|
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#ifndef TYPE_SCH_MARKER_H_
|
|
|
|
#define TYPE_SCH_MARKER_H_
|
2009-07-07 17:50:02 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
#include <erc_item.h>
|
2019-05-10 19:57:24 +00:00
|
|
|
#include <sch_item.h>
|
2018-01-28 21:02:31 +00:00
|
|
|
#include <marker_base.h>
|
2009-07-07 17:50:02 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
|
2010-09-05 17:01:48 +00:00
|
|
|
class SCH_MARKER : public SCH_ITEM, public MARKER_BASE
|
2009-07-07 17:50:02 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-08-11 13:33:16 +00:00
|
|
|
SCH_MARKER( std::shared_ptr<ERC_ITEM> aItem, const wxPoint& aPos );
|
2012-01-09 20:26:55 +00:00
|
|
|
|
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
|
2019-08-29 14:59:36 +00:00
|
|
|
static inline bool ClassOf( const EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
return aItem && SCH_MARKER_T == aItem->Type();
|
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
wxString GetClass() const override
|
2009-07-07 17:50:02 +00:00
|
|
|
{
|
2009-12-02 21:44:03 +00:00
|
|
|
return wxT( "SCH_MARKER" );
|
2009-07-07 17:50:02 +00:00
|
|
|
}
|
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
const KIID GetUUID() const override { return m_Uuid; }
|
|
|
|
|
2019-04-29 21:17:26 +00:00
|
|
|
void SwapData( SCH_ITEM* aItem ) override;
|
|
|
|
|
2020-11-18 22:55:38 +00:00
|
|
|
wxString Serialize() const;
|
|
|
|
static SCH_MARKER* Deserialize( const wxString& data );
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
void ViewGetLayers( int aLayers[], int& aCount ) const override;
|
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
SCH_LAYER_ID GetColorLayer() const;
|
|
|
|
|
2020-12-20 18:18:54 +00:00
|
|
|
void Print( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset ) override;
|
2009-07-07 17:50:02 +00:00
|
|
|
|
2021-03-06 09:27:41 +00:00
|
|
|
void Plot( PLOTTER* /* aPlotter */ ) const override
|
2015-05-18 06:23:41 +00:00
|
|
|
{
|
|
|
|
// SCH_MARKERs should not be plotted. However, SCH_ITEM will fail an
|
|
|
|
// assertion if we do not confirm this by locally implementing a no-op
|
|
|
|
// Plot().
|
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
EDA_RECT const GetBoundingBox() const override;
|
2009-07-08 15:42:45 +00:00
|
|
|
|
2009-07-27 14:32:40 +00:00
|
|
|
// Geometric transforms (used in block operations):
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void Move( const wxPoint& aMoveVector ) override
|
2009-07-27 14:32:40 +00:00
|
|
|
{
|
|
|
|
m_Pos += aMoveVector;
|
|
|
|
}
|
|
|
|
|
2021-02-16 20:45:25 +00:00
|
|
|
void MirrorHorizontally( int aCenter ) override;
|
|
|
|
void MirrorVertically( int aCenter ) override;
|
2021-06-08 14:09:24 +00:00
|
|
|
void Rotate( const wxPoint& aCenter ) override;
|
2009-07-27 14:32:40 +00:00
|
|
|
|
2010-03-16 18:22:59 +00:00
|
|
|
/**
|
2010-04-06 14:09:52 +00:00
|
|
|
* Compare DRC marker main and auxiliary text against search string.
|
2010-03-16 18:22:59 +00:00
|
|
|
*
|
2021-03-25 21:13:01 +00:00
|
|
|
* @param[in] aSearchData is the criteria to search against.
|
|
|
|
* @param[in] aAuxData is the optional data required for the search or NULL if not used.
|
2010-03-16 18:22:59 +00:00
|
|
|
* @return True if the DRC main or auxiliary text matches the search criteria.
|
|
|
|
*/
|
2020-12-20 18:27:51 +00:00
|
|
|
bool Matches( const wxFindReplaceData& aSearchData, void* aAuxDat ) const override;
|
2010-03-16 18:22:59 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
|
2010-04-06 14:09:52 +00:00
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
wxString GetSelectMenuText( EDA_UNITS aUnits ) const override
|
2018-04-10 10:52:12 +00:00
|
|
|
{
|
|
|
|
return wxString( _( "ERC Marker" ) );
|
|
|
|
}
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS GetMenuImage() const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2020-05-27 14:01:07 +00:00
|
|
|
wxPoint GetPosition() const override { return m_Pos; }
|
2016-09-25 17:06:49 +00:00
|
|
|
void SetPosition( const wxPoint& aPosition ) override { m_Pos = aPosition; }
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
bool HitTest( const wxPoint& aPosition, int aAccuracy = 0 ) const override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
EDA_ITEM* Clone() const override;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2009-07-07 17:50:02 +00:00
|
|
|
#if defined(DEBUG)
|
2016-09-25 17:06:49 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const override;
|
2009-07-07 17:50:02 +00:00
|
|
|
#endif
|
2020-02-28 00:05:40 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
KIGFX::COLOR4D getColor() const override;
|
2009-07-07 17:50:02 +00:00
|
|
|
};
|
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#endif // TYPE_SCH_MARKER_H_
|