119 lines
3.6 KiB
C++
119 lines
3.6 KiB
C++
/*
|
|
* 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) 2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
* 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_edge_mod.h
|
|
* @brief EDGE_MODULE class definition.
|
|
*/
|
|
|
|
#ifndef CLASS_EDGE_MOD_H_
|
|
#define CLASS_EDGE_MOD_H_
|
|
|
|
|
|
#include <class_drawsegment.h>
|
|
|
|
|
|
class LINE_READER;
|
|
class EDA_3D_CANVAS;
|
|
class EDA_DRAW_FRAME;
|
|
|
|
|
|
class EDGE_MODULE : public DRAWSEGMENT
|
|
{
|
|
public:
|
|
wxPoint m_Start0; // Start point or center, relative to module origin, orient 0.
|
|
wxPoint m_End0; // End point, relative to module origin, orient 0.
|
|
|
|
public:
|
|
EDGE_MODULE( MODULE* parent, STROKE_T aShape = S_SEGMENT );
|
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
~EDGE_MODULE();
|
|
|
|
EDGE_MODULE* Next() const { return (EDGE_MODULE*) Pnext; }
|
|
EDGE_MODULE* Back() const { return (EDGE_MODULE*) Pback; }
|
|
|
|
void Copy( EDGE_MODULE* source ); // copy structure
|
|
|
|
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; }
|
|
|
|
/**
|
|
* Function Save
|
|
* writes the data structures for this object out to a FILE in "*.brd" format.
|
|
* @param aFile The FILE to write to.
|
|
* @return bool - true if success writing else false.
|
|
*/
|
|
bool Save( FILE* aFile ) const;
|
|
|
|
int ReadDescr( LINE_READER* aReader );
|
|
|
|
void SetDrawCoord();
|
|
|
|
/* drawing functions */
|
|
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC,
|
|
int aDrawMode, const wxPoint& offset = ZeroOffset );
|
|
|
|
void Draw3D( EDA_3D_CANVAS* glcanvas );
|
|
|
|
/**
|
|
* Function DisplayInfo
|
|
* has knowledge about the frame and how and where to put status information
|
|
* about this object into the frame's message panel.
|
|
* Is virtual from EDA_ITEM.
|
|
* @param frame A EDA_DRAW_FRAME in which to print status information.
|
|
*/
|
|
void DisplayInfo( EDA_DRAW_FRAME* frame );
|
|
|
|
/**
|
|
* Function GetClass
|
|
* returns the class name.
|
|
* @return wxString
|
|
*/
|
|
virtual wxString GetClass() const
|
|
{
|
|
return wxT( "MGRAPHIC" );
|
|
|
|
// return wxT( "EDGE" ); ?
|
|
}
|
|
|
|
virtual wxString GetSelectMenuText() const;
|
|
|
|
virtual BITMAP_DEF GetMenuImage() const { return show_mod_edge_xpm; }
|
|
|
|
#if defined(DEBUG)
|
|
void Show( int nestLevel, std::ostream& os ) const; // overload
|
|
#endif
|
|
|
|
private:
|
|
virtual EDA_ITEM* doClone() const;
|
|
};
|
|
|
|
#endif // CLASS_EDGE_MOD_H_
|