kicad/pcbnew/class_dimension.h

153 lines
4.6 KiB
C
Raw Normal View History

/*
* 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
*/
/**
* @file class_dimension.h
* @brief DIMENSION class definition.
*/
2011-12-14 04:29:25 +00:00
#ifndef DIMENSION_H_
#define DIMENSION_H_
#include <class_board_item.h>
#include <class_pcb_text.h>
class LINE_READER;
class EDA_DRAW_PANEL;
class TEXTE_PCB;
class MSG_PANEL_ITEM;
class DIMENSION : public BOARD_ITEM
{
2012-12-19 19:31:36 +00:00
int m_Width;
int m_Shape; // / Currently always 0.
int m_Unit; // / 0 = inches, 1 = mm
int m_Value; // / value of PCB dimensions.
TEXTE_PCB m_Text;
public:
2012-12-19 19:31:36 +00:00
// private: These member should be private. they are public only due to legacy code
wxPoint m_crossBarO, m_crossBarF;
wxPoint m_featureLineGO, m_featureLineGF;
wxPoint m_featureLineDO, m_featureLineDF;
wxPoint m_arrowD1O, m_arrowD1F;
wxPoint m_arrowD2O, m_arrowD2F;
wxPoint m_arrowG1O, m_arrowG1F;
wxPoint m_arrowG2O, m_arrowG2F;
DIMENSION( BOARD_ITEM* aParent );
// Do not create a copy constructor. The one generated by the compiler is adequate.
~DIMENSION();
void SetValue( int aValue ) { m_Value = aValue; }
int GetValue() const { return m_Value; }
2012-12-19 19:31:36 +00:00
const wxPoint& GetPosition() const;
2012-12-19 19:31:36 +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
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; }
2012-12-19 19:31:36 +00:00
int GetShape() const { return m_Shape; }
2011-12-14 04:29:25 +00:00
2012-12-19 19:31:36 +00:00
int GetWidth() const { return m_Width; }
2011-12-14 04:29:25 +00:00
void SetWidth( int aWidth ) { m_Width = aWidth; }
2010-11-12 15:17:10 +00:00
/**
* Function AdjustDimensionDetails
* Calculate coordinates of segments used to draw the dimension.
* @param aDoNotChangeText (bool) if false, the dimension text is initialized
*/
2012-12-19 19:31:36 +00:00
void AdjustDimensionDetails( bool aDoNotChangeText = false );
2012-12-19 19:31:36 +00:00
void SetText( const wxString& NewText );
const wxString GetText() const;
TEXTE_PCB& Text() { return m_Text; }
TEXTE_PCB& Text() const { return *(const_cast<TEXTE_PCB*> (&m_Text)); }
2012-12-19 19:31:36 +00:00
void Copy( DIMENSION* source );
2012-12-19 19:31:36 +00:00
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC,
GR_DRAWMODE aColorMode, const wxPoint& offset = ZeroOffset );
2008-04-01 05:21:50 +00:00
/**
* Function Move
* @param offset : moving vector
*/
2012-12-19 19:31:36 +00:00
void Move( const wxPoint& offset );
2008-04-01 05:21:50 +00:00
2012-12-19 19:31:36 +00:00
void Rotate( const wxPoint& aRotCentre, double aAngle );
2009-08-01 19:26:05 +00:00
2012-12-19 19:31:36 +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
*/
2012-12-19 19:31:36 +00:00
void Mirror( const wxPoint& axis_pos );
void GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList );
2008-04-01 05:21:50 +00:00
2012-12-19 19:31:36 +00:00
bool HitTest( const wxPoint& aPosition );
2008-04-01 05:21:50 +00:00
2012-12-19 19:31:36 +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" );
}
2012-12-19 19:31:36 +00:00
EDA_RECT GetBoundingBox() const;
2012-12-19 19:31:36 +00:00
wxString GetSelectMenuText() const;
2012-12-19 19:31:36 +00:00
BITMAP_DEF GetMenuImage() const { return add_dimension_xpm; }
2012-12-19 19:31:36 +00:00
EDA_ITEM* Clone() const;
#if defined(DEBUG)
2012-12-19 19:31:36 +00:00
void Show( int nestLevel, std::ostream& os ) const { ShowDummy( os ); } // override
#endif
};
2012-12-19 19:31:36 +00:00
#endif // DIMENSION_H_