2012-01-14 19:50:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-07-22 12:50:35 +00:00
|
|
|
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2013-05-01 19:01:14 +00:00
|
|
|
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@verizon.net>
|
2018-07-22 12:50:35 +00:00
|
|
|
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-01-14 19:50:32 +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-09-17 15:31:21 +00:00
|
|
|
/**
|
2011-09-20 13:57:40 +00:00
|
|
|
* @file class_edge_mod.h
|
2011-09-17 15:31:21 +00:00
|
|
|
* @brief EDGE_MODULE class definition.
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
#ifndef CLASS_EDGE_MOD_H_
|
|
|
|
#define CLASS_EDGE_MOD_H_
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2013-11-19 18:58:12 +00:00
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_drawsegment.h>
|
2011-01-14 17:43:30 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
|
|
|
class LINE_READER;
|
2013-01-12 17:32:24 +00:00
|
|
|
class MSG_PANEL_ITEM;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2011-08-08 23:50:55 +00:00
|
|
|
class EDGE_MODULE : public DRAWSEGMENT
|
2007-08-06 20:26:59 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-12-01 22:50:41 +00:00
|
|
|
EDGE_MODULE( MODULE* parent, STROKE_T aShape = S_SEGMENT );
|
2012-01-14 19:50:32 +00:00
|
|
|
|
2016-05-30 08:44:48 +00:00
|
|
|
// Do not create a copy constructor & operator=.
|
|
|
|
// The ones generated by the compiler are adequate.
|
2012-01-14 19:50:32 +00:00
|
|
|
|
2007-08-06 20:26:59 +00:00
|
|
|
~EDGE_MODULE();
|
|
|
|
|
2014-06-06 09:44:21 +00:00
|
|
|
static inline bool ClassOf( const EDA_ITEM* aItem )
|
|
|
|
{
|
2014-06-12 20:03:57 +00:00
|
|
|
return aItem && PCB_MODULE_EDGE_T == aItem->Type();
|
2014-06-06 09:44:21 +00:00
|
|
|
}
|
|
|
|
|
2015-07-31 19:04:30 +00:00
|
|
|
/**
|
|
|
|
* Move an edge of the footprint.
|
|
|
|
* This is a footprint shape modification.
|
|
|
|
* (should be only called by a footprint editing function)
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
void Move( const wxPoint& aMoveVector ) override;
|
2015-07-31 19:04:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mirror an edge of the footprint.
|
|
|
|
* Do not change the layer
|
|
|
|
* This is a footprint shape modification.
|
|
|
|
* (should be only called by a footprint editing function)
|
|
|
|
*/
|
|
|
|
void Mirror( const wxPoint aCentre, bool aMirrorAroundXAxis );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Rotate an edge of the footprint.
|
|
|
|
* This is a footprint shape modification.
|
|
|
|
* (should be only called by a footprint editing function )
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
void Rotate( const wxPoint& aRotCentre, double aAngle ) override;
|
2015-07-31 19:04:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Flip entity relative to aCentre.
|
|
|
|
* The item is mirrored, and layer changed to the paired corresponding layer
|
|
|
|
* if it is on a paired layer
|
|
|
|
* This function should be called only from MODULE::Flip because there is
|
|
|
|
* not usual to flip an item alone, without flipping the parent footprint.
|
|
|
|
* (consider Mirror for a mirror transform).
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
void Flip( const wxPoint& aCentre ) override;
|
2014-09-24 16:42:56 +00:00
|
|
|
|
2018-02-17 18:03:22 +00:00
|
|
|
bool IsParentFlipped() const;
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
void SetStart0( const wxPoint& aPoint ) { m_Start0 = aPoint; }
|
|
|
|
const wxPoint& GetStart0() const { return m_Start0; }
|
|
|
|
|
|
|
|
void SetEnd0( const wxPoint& aPoint ) { m_End0 = aPoint; }
|
|
|
|
const wxPoint& GetEnd0() const { return m_End0; }
|
2007-08-06 20:26:59 +00:00
|
|
|
|
2018-07-07 11:04:01 +00:00
|
|
|
void SetBezier0_C1( const wxPoint& aPoint ) { m_Bezier0_C1 = aPoint; }
|
|
|
|
const wxPoint& GetBezier0_C1() const { return m_Bezier0_C1; }
|
|
|
|
|
|
|
|
void SetBezier0_C2( const wxPoint& aPoint ) { m_Bezier0_C2 = aPoint; }
|
|
|
|
const wxPoint& GetBezier0_C2() const { return m_Bezier0_C2; }
|
|
|
|
|
2015-07-31 19:04:30 +00:00
|
|
|
/**
|
|
|
|
* Set relative coordinates from draw coordinates.
|
|
|
|
* Call in only when the geometry ov the footprint is modified
|
|
|
|
* and therefore the relative coordinates have to be updated from
|
|
|
|
* the draw coordinates
|
|
|
|
*/
|
2014-07-09 09:59:24 +00:00
|
|
|
void SetLocalCoord();
|
|
|
|
|
2015-07-31 19:04:30 +00:00
|
|
|
/**
|
|
|
|
* Set draw coordinates (absolute values ) from relative coordinates.
|
|
|
|
* Must be called when a relative coordinate has changed, in order
|
|
|
|
* to see the changes on screen
|
|
|
|
*/
|
2011-09-17 15:31:21 +00:00
|
|
|
void SetDrawCoord();
|
2007-08-06 20:26:59 +00:00
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
void Print( PCB_BASE_FRAME* aFrame, wxDC* DC, const wxPoint& offset = ZeroOffset ) override;
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
void GetMsgPanelInfo( EDA_UNITS_T aUnits, std::vector< MSG_PANEL_ITEM >& aList ) override;
|
2008-02-22 17:34:11 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
wxString GetClass() const override
|
2007-08-07 06:21:19 +00:00
|
|
|
{
|
2007-08-08 20:51:08 +00:00
|
|
|
return wxT( "MGRAPHIC" );
|
2007-08-07 06:21:19 +00:00
|
|
|
}
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
wxString GetSelectMenuText( EDA_UNITS_T aUnits ) const override;
|
2008-05-05 19:53:31 +00:00
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const override;
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
EDA_ITEM* Clone() const override;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2018-02-17 18:03:22 +00:00
|
|
|
virtual unsigned int ViewGetLOD( int aLayer, KIGFX::VIEW* aView ) const override;
|
2015-02-28 17:39:05 +00:00
|
|
|
|
2007-09-13 11:28:58 +00:00
|
|
|
#if defined(DEBUG)
|
2016-09-25 17:06:49 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
|
2007-08-06 20:26:59 +00:00
|
|
|
#endif
|
2012-05-30 21:40:32 +00:00
|
|
|
|
2018-07-07 11:04:01 +00:00
|
|
|
wxPoint m_Start0; ///< Start point or center, relative to module origin, orient 0.
|
|
|
|
wxPoint m_End0; ///< End point, relative to module origin, orient 0.
|
|
|
|
wxPoint m_Bezier0_C1; ///< Bezier Control Point 1, relative to module origin, orient 0.
|
|
|
|
wxPoint m_Bezier0_C2; ///< Bezier Control Point 2, relative to module origin, orient 0.
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
#endif // CLASS_EDGE_MOD_H_
|