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
|
|
|
|
* Copyright (C) 2004-2018 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
|
|
|
|
*/
|
|
|
|
|
2018-12-19 18:53:27 +00:00
|
|
|
/**
|
2011-10-19 20:32:21 +00:00
|
|
|
* @file sch_marker.h
|
|
|
|
* @brief SCH_MARKER class definition.
|
|
|
|
*/
|
2009-07-07 17:50:02 +00:00
|
|
|
|
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
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <sch_item_struct.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:
|
2010-09-05 17:01:48 +00:00
|
|
|
SCH_MARKER();
|
2012-01-09 20:26:55 +00:00
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
SCH_MARKER( const wxPoint& aPos, const wxString& aText );
|
2012-01-09 20:26:55 +00:00
|
|
|
|
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
void ViewGetLayers( int aLayers[], int& aCount ) const override;
|
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Draw( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aOffset,
|
2017-02-20 17:48:27 +00:00
|
|
|
GR_DRAWMODE aDraw_mode, COLOR4D aColor = COLOR4D::UNSPECIFIED ) override;
|
2009-07-07 17:50:02 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
void Plot( PLOTTER* aPlotter ) 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().
|
|
|
|
(void) aPlotter;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void MirrorY( int aYaxis_position ) override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void MirrorX( int aXaxis_position ) override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void Rotate( wxPoint aPosition ) 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
|
|
|
*
|
|
|
|
* @param aSearchData - Criteria to search against.
|
2015-01-20 12:06:44 +00:00
|
|
|
* @param aAuxData A pointer to optional data required for the search or NULL
|
|
|
|
* if not used.
|
2010-10-20 19:43:58 +00:00
|
|
|
* @param aFindLocation - a wxPoint where to put the location of matched item. can be NULL.
|
2010-03-16 18:22:59 +00:00
|
|
|
* @return True if the DRC main or auxiliary text matches the search criteria.
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
bool Matches( wxFindReplaceData& aSearchData, void* aAuxData, wxPoint* aFindLocation ) override;
|
2010-03-16 18:22:59 +00:00
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
void GetMsgPanelInfo( EDA_UNITS_T aUnits, std::vector< MSG_PANEL_ITEM >& aList ) override;
|
2010-04-06 14:09:52 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
bool IsSelectStateChanged( const wxRect& aRect ) override;
|
2010-11-03 14:13:15 +00:00
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
wxString GetSelectMenuText( EDA_UNITS_T aUnits ) const override
|
|
|
|
{
|
|
|
|
return wxString( _( "ERC Marker" ) );
|
|
|
|
}
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
wxPoint GetPosition() const override { return m_Pos; }
|
2012-03-15 14:31:16 +00:00
|
|
|
|
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
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
bool HitTest( const wxPoint& aPosition, int aAccuracy ) 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
|
|
|
|
};
|
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#endif // TYPE_SCH_MARKER_H_
|