kicad/new/sch_canvas.cpp

88 lines
2.2 KiB
C++
Raw Normal View History

2011-10-30 05:02:23 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
2011-10-30 05:02:23 +00:00
*
* Copyright (C) 2011 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2011 KiCad Developers, see change_log.txt for contributors.
2011-10-30 05:02:23 +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
*/
#include "sch_canvas.h"
#include "sch_part.h"
#include <gal/font/newstroke_font.h>
2011-10-30 05:02:23 +00:00
namespace SCH {
CANVAS::CANVAS( wxWindow* aParent ) :
2011-11-01 08:05:56 +00:00
OPENGL_GAL( aParent, NULL, this ) // I am my own PaintListener
2011-10-30 05:02:23 +00:00
{
2011-11-01 08:05:56 +00:00
Connect( EVT_GAL_REDRAW, wxCommandEventHandler( CANVAS::onRedraw ) );
2011-10-30 05:02:23 +00:00
// Set the world unit length
SetWorldUnitLength( 0.01 );
SetScreenDPI( 100 );
ComputeWorldScreenMatrix();
// Set the world unit length
// SetLookAtPoint( VECTOR2D( size.x / 2, size.y / 2 ) );
2011-10-30 05:02:23 +00:00
// Load Font
if( !m_font.LoadNewStrokeFont( newstroke_font, newstroke_font_bufsize ) )
{
printf( "Loading of the font failed.\n" );
2011-10-30 05:02:23 +00:00
}
m_font.SetGraphicsAbstractionLayer( this );
}
2011-11-01 08:05:56 +00:00
void CANVAS::onRedraw( wxCommandEvent& event )
2011-10-30 05:02:23 +00:00
{
2011-11-01 08:05:56 +00:00
D(printf( "%s:\n", __FUNCTION__ );)
PaintScene();
}
void CANVAS::PaintScene()
{
D(printf("%s:\n", __FUNCTION__ );)
2011-10-30 05:02:23 +00:00
BeginDrawing();
SetBackgroundColor( COLOR4D( 0, 0, 0, 1.0 ) );
ClearScreen();
SetLayerDepth( -10 );
SetGridSize( VECTOR2D( 50, 50 ) );
DrawGrid();
SetLayerDepth( 0 );
Flush();
EndDrawing();
}
} // namespace SCH