2012-01-14 19:50:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
|
|
* Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.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
|
|
|
|
*/
|
|
|
|
|
2011-09-20 15:07:52 +00:00
|
|
|
/**
|
|
|
|
* @file class_dimension.h
|
|
|
|
* @brief DIMENSION class definition.
|
|
|
|
*/
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
#ifndef DIMENSION_H_
|
|
|
|
#define DIMENSION_H_
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board_item.h>
|
2011-09-20 15:07:52 +00:00
|
|
|
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
class LINE_READER;
|
2011-09-20 15:07:52 +00:00
|
|
|
class EDA_DRAW_PANEL;
|
2011-09-23 13:57:12 +00:00
|
|
|
class TEXTE_PCB;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2010-04-23 09:54:40 +00:00
|
|
|
class DIMENSION : public BOARD_ITEM
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-08 20:51:08 +00:00
|
|
|
public:
|
|
|
|
int m_Width;
|
|
|
|
wxPoint m_Pos;
|
2012-04-01 20:51:56 +00:00
|
|
|
int m_Shape; /// Current always 0.
|
2011-12-14 04:29:25 +00:00
|
|
|
int m_Unit; /// 0 = inches, 1 = mm
|
2012-04-01 20:51:56 +00:00
|
|
|
int m_Value; /// value of PCB dimensions.
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
TEXTE_PCB m_Text;
|
2011-09-20 15:07:52 +00:00
|
|
|
int m_crossBarOx, m_crossBarOy, m_crossBarFx, m_crossBarFy;
|
|
|
|
int m_featureLineGOx, m_featureLineGOy, m_featureLineGFx, m_featureLineGFy;
|
|
|
|
int m_featureLineDOx, m_featureLineDOy, m_featureLineDFx, m_featureLineDFy;
|
|
|
|
int m_arrowD1Ox, m_arrowD1Oy, m_arrowD1Fx, m_arrowD1Fy;
|
|
|
|
int m_arrowD2Ox, m_arrowD2Oy, m_arrowD2Fx, m_arrowD2Fy;
|
|
|
|
int m_arrowG1Ox, m_arrowG1Oy, m_arrowG1Fx, m_arrowG1Fy;
|
|
|
|
int m_arrowG2Ox, m_arrowG2Oy, m_arrowG2Fx, m_arrowG2Fy;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
public:
|
2010-04-23 09:54:40 +00:00
|
|
|
DIMENSION( BOARD_ITEM* aParent );
|
2012-01-14 19:50:32 +00:00
|
|
|
|
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
|
2010-04-23 09:54:40 +00:00
|
|
|
~DIMENSION();
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-02-20 04:33:54 +00:00
|
|
|
const wxPoint& GetPosition() const { return m_Pos; }
|
2011-11-30 21:15:56 +00:00
|
|
|
|
|
|
|
void SetPosition( const wxPoint& aPos ); // override, sets m_Text's position too
|
|
|
|
|
|
|
|
void SetTextSize( const wxSize& aTextSize )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2011-12-14 04:29:25 +00:00
|
|
|
m_Text.SetSize( aTextSize );
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
void SetLayer( int aLayer );
|
2009-08-03 07:55:08 +00:00
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
void SetShape( int aShape ) { m_Shape = aShape; }
|
|
|
|
int GetShape() const { return m_Shape; }
|
|
|
|
|
|
|
|
int GetWidth() const { return m_Width; }
|
|
|
|
void SetWidth( int aWidth ) { m_Width = aWidth; }
|
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function AdjustDimensionDetails
|
2010-04-23 09:54:40 +00:00
|
|
|
* Calculate coordinates of segments used to draw the dimension.
|
|
|
|
* @param aDoNotChangeText (bool) if false, the dimension text is initialized
|
|
|
|
*/
|
2011-08-01 15:29:27 +00:00
|
|
|
void AdjustDimensionDetails( bool aDoNotChangeText = false );
|
2010-04-23 09:54:40 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
void SetText( const wxString& NewText );
|
2011-11-30 21:15:56 +00:00
|
|
|
const wxString GetText() const;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
void Copy( DIMENSION* source );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC,
|
|
|
|
int aColorMode, const wxPoint& offset = ZeroOffset );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Move
|
|
|
|
* @param offset : moving vector
|
|
|
|
*/
|
2011-11-30 21:15:56 +00:00
|
|
|
void Move( const wxPoint& offset );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Rotate( const wxPoint& aRotCentre, double aAngle );
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Flip( const wxPoint& aCentre );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Mirror
|
|
|
|
* Mirror the Dimension , relative to a given horizontal axis
|
|
|
|
* the text is not mirrored. only its position (and angle) is mirrored
|
|
|
|
* the layer is not changed
|
|
|
|
* @param axis_pos : vertical axis position
|
|
|
|
*/
|
2011-08-01 15:29:27 +00:00
|
|
|
void Mirror( const wxPoint& axis_pos );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
void DisplayInfo( EDA_DRAW_FRAME* frame );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool HitTest( const wxPoint& aPosition );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool HitTest( const EDA_RECT& aRect ) const;
|
2008-01-06 12:43:57 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
wxString GetClass() const
|
|
|
|
{
|
|
|
|
return wxT( "DIMENSION" );
|
|
|
|
}
|
2011-02-25 16:23:24 +00:00
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT GetBoundingBox() const;
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxString GetSelectMenuText() const;
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const { return add_dimension_xpm; }
|
2011-12-14 17:25:42 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
EDA_ITEM* Clone() const;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#if defined(DEBUG)
|
|
|
|
void Show( int nestLevel, std::ostream& os ) const { ShowDummy( os ); } // override
|
|
|
|
#endif
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
2011-12-14 04:29:25 +00:00
|
|
|
#endif // DIMENSION_H_
|