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