2011-08-31 14:59:20 +00:00
|
|
|
/*
|
2011-09-30 18:15:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2011-08-31 14:59:20 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 jean-pierre.charras
|
2011-09-30 18:15:37 +00:00
|
|
|
* Copyright (C) 2011 KiCad Developers, see change_log.txt for contributors.
|
2011-08-31 14:59:20 +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-10-19 20:32:21 +00:00
|
|
|
/**
|
|
|
|
* @file sch_bitmap.cpp
|
|
|
|
*/
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <trigo.h>
|
2015-02-21 09:46:44 +00:00
|
|
|
#include <macros.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <sch_bitmap.h>
|
2011-08-31 14:59:20 +00:00
|
|
|
|
|
|
|
#include <wx/mstream.h>
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* class SCH_BITMAP
|
|
|
|
* This class handle a bitmap image that can be inserted in a schematic.
|
|
|
|
*/
|
|
|
|
|
|
|
|
SCH_BITMAP::SCH_BITMAP( const wxPoint& pos ) :
|
|
|
|
SCH_ITEM( NULL, SCH_BITMAP_T )
|
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
m_pos = pos;
|
2011-08-31 14:59:20 +00:00
|
|
|
m_Layer = LAYER_NOTES; // used only to draw/plot a rectangle,
|
|
|
|
// when a bitmap cannot be drawn or plotted
|
2016-07-11 19:48:46 +00:00
|
|
|
m_image = new BITMAP_BASE();
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SCH_BITMAP::SCH_BITMAP( const SCH_BITMAP& aSchBitmap ) :
|
|
|
|
SCH_ITEM( aSchBitmap )
|
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
m_pos = aSchBitmap.m_pos;
|
2011-08-31 14:59:20 +00:00
|
|
|
m_Layer = aSchBitmap.m_Layer;
|
2016-07-11 19:48:46 +00:00
|
|
|
m_image = new BITMAP_BASE( *aSchBitmap.m_image );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-09 20:26:55 +00:00
|
|
|
SCH_ITEM& SCH_BITMAP::operator=( const SCH_ITEM& aItem )
|
|
|
|
{
|
|
|
|
wxCHECK_MSG( Type() == aItem.Type(), *this,
|
|
|
|
wxT( "Cannot assign object type " ) + aItem.GetClass() + wxT( " to type " ) +
|
|
|
|
GetClass() );
|
|
|
|
|
|
|
|
if( &aItem != this )
|
|
|
|
{
|
|
|
|
SCH_ITEM::operator=( aItem );
|
|
|
|
|
|
|
|
SCH_BITMAP* bitmap = (SCH_BITMAP*) &aItem;
|
|
|
|
|
2016-07-11 19:48:46 +00:00
|
|
|
delete m_image;
|
|
|
|
m_image = new BITMAP_BASE( *bitmap->m_image );
|
|
|
|
m_pos = bitmap->m_pos;
|
2012-01-09 20:26:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-31 14:59:20 +00:00
|
|
|
bool SCH_BITMAP::ReadImageFile( const wxString& aFullFilename )
|
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
return m_image->ReadImageFile( aFullFilename );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SCH_BITMAP::Save( FILE* aFile ) const
|
|
|
|
{
|
|
|
|
if( fprintf( aFile, "$Bitmap\n" ) == EOF )
|
|
|
|
return false;
|
|
|
|
|
2016-07-11 19:48:46 +00:00
|
|
|
if( fprintf( aFile, "Pos %-4d %-4d\n", m_pos.x, m_pos.y ) == EOF )
|
2011-08-31 14:59:20 +00:00
|
|
|
return false;
|
|
|
|
|
2016-07-11 19:48:46 +00:00
|
|
|
if( fprintf( aFile, "Scale %f\n", m_image->GetScale() ) == EOF )
|
2011-08-31 14:59:20 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if( fprintf( aFile, "Data\n" ) == EOF )
|
|
|
|
return false;
|
|
|
|
|
2016-07-11 19:48:46 +00:00
|
|
|
if( !m_image->SaveData( aFile ) )
|
2011-08-31 14:59:20 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if( fprintf( aFile, "\nEndData\n" ) == EOF )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
if( fprintf( aFile, "$EndBitmap\n" ) == EOF )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* SCH_BITMAP::Clone() const
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
|
|
|
return new SCH_BITMAP( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SCH_BITMAP::SwapData( SCH_ITEM* aItem )
|
|
|
|
{
|
|
|
|
wxCHECK_RET( aItem->Type() == SCH_BITMAP_T,
|
2011-10-19 20:32:21 +00:00
|
|
|
wxString::Format( wxT( "SCH_BITMAP object cannot swap data with %s object." ),
|
|
|
|
GetChars( aItem->GetClass() ) ) );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
|
|
|
SCH_BITMAP* item = (SCH_BITMAP*) aItem;
|
2016-07-11 19:48:46 +00:00
|
|
|
std::swap( m_pos, item->m_pos );
|
|
|
|
std::swap( m_image, item->m_image );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SCH_BITMAP::Load( LINE_READER& aLine, wxString& aErrorMsg )
|
|
|
|
{
|
|
|
|
char* line = aLine.Line();
|
|
|
|
|
2016-08-11 12:41:06 +00:00
|
|
|
if( strncasecmp( line, "$Bitmap", 7 ) != 0 )
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2011-09-30 18:15:37 +00:00
|
|
|
aErrorMsg.Printf( wxT( "Eeschema file bitmap image load error at line %d, aborted" ),
|
2011-10-19 20:32:21 +00:00
|
|
|
aLine.LineNumber() );
|
2011-08-31 14:59:20 +00:00
|
|
|
aErrorMsg << wxT( "\n" ) << FROM_UTF8( (char*) aLine );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( ; ; )
|
|
|
|
{
|
|
|
|
if( !aLine.ReadLine() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
line = aLine.Line();
|
|
|
|
|
2016-08-11 12:41:06 +00:00
|
|
|
if( strncasecmp( line, "Pos", 3 ) == 0 )
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
sscanf( line + 3, "%d %d", &m_pos.x, &m_pos.y );
|
2011-08-31 14:59:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-08-11 12:41:06 +00:00
|
|
|
if( strncasecmp( line, "Scale", 5 ) == 0 )
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
double scale = 1.0;
|
|
|
|
sscanf( line + 5, "%lf", &scale );
|
|
|
|
m_image->SetScale( scale );
|
2011-08-31 14:59:20 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-08-11 12:41:06 +00:00
|
|
|
if( strncasecmp( line, "Data", 4 ) == 0 )
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
m_image->LoadData( aLine, aErrorMsg );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
2016-08-11 12:41:06 +00:00
|
|
|
if( strncasecmp( line, "$EndBitmap", 4 ) == 0 )
|
2011-08-31 14:59:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT SCH_BITMAP::GetBoundingBox() const
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
EDA_RECT rect = m_image->GetBoundingBox();
|
2011-08-31 14:59:20 +00:00
|
|
|
|
2016-07-11 19:48:46 +00:00
|
|
|
rect.Move( m_pos );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SCH_BITMAP::Draw( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aOffset,
|
2012-09-02 12:06:47 +00:00
|
|
|
GR_DRAWMODE aDrawMode, EDA_COLOR_T aColor )
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
wxPoint pos = m_pos + aOffset;
|
2011-08-31 14:59:20 +00:00
|
|
|
|
|
|
|
if( aColor < 0 ) // Use normal drawing function
|
|
|
|
{
|
2016-05-17 21:56:20 +00:00
|
|
|
// https://bugs.launchpad.net/kicad/+bug/1529163
|
|
|
|
// "Moving images in eeschema on OS X uses
|
|
|
|
// wrong position and shows image flipped"
|
|
|
|
//
|
|
|
|
// Original fix was to only GRSetDrawMode if aColor >= 0, but this made
|
|
|
|
// moving SCH_BITMAP work poorly on other platforms.
|
|
|
|
#ifndef __WXMAC__
|
|
|
|
GRSetDrawMode( aDC, aDrawMode );
|
|
|
|
#endif
|
|
|
|
|
2016-07-11 19:48:46 +00:00
|
|
|
m_image->DrawBitmap( aPanel, aDC, pos );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
else // draws bounding box only (used to move items)
|
|
|
|
{
|
2016-05-17 21:56:20 +00:00
|
|
|
GRSetDrawMode( aDC, aDrawMode );
|
2011-08-31 14:59:20 +00:00
|
|
|
// To draw the rect, pos is the upper left corner position
|
2016-07-11 19:48:46 +00:00
|
|
|
wxSize size = m_image->GetSize();
|
2011-08-31 14:59:20 +00:00
|
|
|
pos.x -= size.x / 2;
|
|
|
|
pos.y -= size.y / 2;
|
2011-12-29 20:11:42 +00:00
|
|
|
GRRect( aPanel->GetClipBox(), aDC, pos.x, pos.y,
|
2011-08-31 14:59:20 +00:00
|
|
|
pos.x + size.x, pos.y + size.y, 0, aColor );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Function GetSize
|
|
|
|
* returns the actual size (in user units, not in pixels) of the image
|
|
|
|
*/
|
|
|
|
wxSize SCH_BITMAP::GetSize() const
|
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
return m_image->GetSize();
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mirror image relative to a horizontal X axis )
|
|
|
|
*/
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_BITMAP::MirrorX( int aXaxis_position )
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
MIRROR( m_pos.y, aXaxis_position );
|
|
|
|
m_image->Mirror( true );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mirror image relative to a vertical Y axis
|
|
|
|
*/
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_BITMAP::MirrorY( int aYaxis_position )
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
MIRROR( m_pos.x, aYaxis_position );
|
|
|
|
m_image->Mirror( false );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_BITMAP::Rotate( wxPoint aPosition )
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
RotatePoint( &m_pos, aPosition, 900 );
|
|
|
|
m_image->Rotate( false );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SCH_BITMAP::IsSelectStateChanged( const wxRect& aRect )
|
|
|
|
{
|
|
|
|
bool previousState = IsSelected();
|
|
|
|
|
2016-07-11 19:48:46 +00:00
|
|
|
if( aRect.Contains( m_pos ) )
|
2013-03-30 19:55:26 +00:00
|
|
|
SetFlags( SELECTED );
|
2011-08-31 14:59:20 +00:00
|
|
|
else
|
2013-03-30 19:55:26 +00:00
|
|
|
ClearFlags( SELECTED );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
|
|
|
return previousState != IsSelected();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(DEBUG)
|
2011-12-14 17:25:42 +00:00
|
|
|
void SCH_BITMAP::Show( int nestLevel, std::ostream& os ) const
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
|
|
|
// XML output:
|
|
|
|
wxString s = GetClass();
|
|
|
|
|
2016-07-11 19:48:46 +00:00
|
|
|
NestedSpace( nestLevel, os ) << '<' << s.Lower().mb_str() << m_pos << "/>\n";
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool SCH_BITMAP::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
|
|
|
EDA_RECT rect = GetBoundingBox();
|
|
|
|
|
|
|
|
rect.Inflate( aAccuracy );
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
return rect.Contains( aPosition );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool SCH_BITMAP::HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy ) const
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
|
|
|
EDA_RECT rect = aRect;
|
|
|
|
|
|
|
|
rect.Inflate( aAccuracy );
|
|
|
|
|
|
|
|
if( aContained )
|
|
|
|
return rect.Contains( GetBoundingBox() );
|
|
|
|
|
|
|
|
return rect.Intersects( GetBoundingBox() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_BITMAP::Plot( PLOTTER* aPlotter )
|
2011-08-31 14:59:20 +00:00
|
|
|
{
|
2016-07-11 19:48:46 +00:00
|
|
|
m_image->PlotImage( aPlotter, m_pos, GetLayerColor( GetLayer() ), GetPenSize() );
|
2011-08-31 14:59:20 +00:00
|
|
|
}
|