1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
|
// $Id: wxwidgets_gc.cpp 12334 2013-05-04 16:43:33Z airwin $
//
// Copyright (C) 2008 Werner Smekal
//
// This file is part of PLplot.
//
// PLplot is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as published
// by the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// PLplot 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 Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public License
// along with PLplot; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
// TODO:
// - text clipping
// - implement AddToClipRegion for text correctly
//
// wxwidgets headers
#include <wx/wx.h>
#include "plDevs.h"
// plplot headers
#include "plplotP.h"
// std and driver headers
#include "wxwidgets.h"
#include <wx/string.h>
#include <string>
// only compile code if wxGraphicsContext available
#if wxUSE_GRAPHICS_CONTEXT
wxPLDevGC::wxPLDevGC( void ) : wxPLDevBase( wxBACKEND_GC )
{
// Log_Verbose( "%s", __FUNCTION__ );
m_dc = NULL;
m_bitmap = NULL;
m_context = NULL;
m_font = NULL;
underlined = false;
}
wxPLDevGC::~wxPLDevGC()
{
// Log_Verbose( "%s", __FUNCTION__ );
if ( ownGUI )
{
if ( m_dc )
{
( (wxMemoryDC *) m_dc )->SelectObject( wxNullBitmap );
delete m_dc;
}
if ( m_bitmap )
delete m_bitmap;
}
delete m_font;
delete m_context;
}
void wxPLDevGC::DrawLine( short x1a, short y1a, short x2a, short y2a )
{
// Log_Verbose( "%s", __FUNCTION__ );
wxDouble x1 = x1a / scalex;
wxDouble y1 = height - y1a / scaley;
wxDouble x2 = x2a / scalex;
wxDouble y2 = height - y2a / scaley;
wxGraphicsPath path = m_context->CreatePath();
path.MoveToPoint( x1, y1 );
path.AddLineToPoint( x2, y2 );
m_context->StrokePath( path );
AddtoClipRegion( (int) x1, (int) y1, (int) x2, (int) y2 );
}
void wxPLDevGC::DrawPolyline( short *xa, short *ya, PLINT npts )
{
// Log_Verbose( "%s", __FUNCTION__ );
wxGraphicsPath path = m_context->CreatePath();
path.MoveToPoint( xa[0] / scalex, height - ya[0] / scaley );
for ( PLINT i = 1; i < npts; i++ )
path.AddLineToPoint( xa[i] / scalex, height - ya[i] / scaley );
m_context->StrokePath( path );
wxDouble x, y, w, h;
path.GetBox( &x, &y, &w, &h );
AddtoClipRegion( (int) x, (int) y, (int) ( x + w ), (int) ( y + h ) );
}
void wxPLDevGC::ClearBackground( PLINT bgr, PLINT bgg, PLINT bgb, PLINT x1, PLINT y1, PLINT x2, PLINT y2 )
{
// Log_Verbose( "%s", __FUNCTION__ );
wxDouble x1a, y1a, x2a, y2a;
if ( x1 < 0 )
x1a = 0;
else
x1a = x1 / scalex;
if ( y1 < 0 )
y1a = 0;
else
y1a = height - y1 / scaley;
if ( x2 < 0 )
x2a = width;
else
x2a = x2 / scalex;
if ( y2 < 0 )
y2a = height;
else
y2a = height - y2 / scaley;
m_context->SetPen( *( wxThePenList->FindOrCreatePen( wxColour( bgr, bgg, bgb ), 1, wxSOLID ) ) );
m_context->SetBrush( wxBrush( wxColour( bgr, bgg, bgb ) ) );
m_context->DrawRectangle( x1a, y1a, x2a - x1a, y2a - y1a );
m_context->SetPen( *( wxThePenList->FindOrCreatePen( wxColour( mColorRedStroke, mColorGreenStroke,
mColorBlueStroke, mStrokeOpacity ),
1, wxSOLID ) ) );
m_context->SetBrush( wxBrush( wxColour( mColorRedFill, mColorGreenFill, mColorBlueFill, mStrokeOpacity ) ) );
AddtoClipRegion( (int) x1a, (int) y1a, (int) x2a, (int) y2a );
}
void wxPLDevGC::FillPolygon( PLStream *pls )
{
// Log_Verbose( "%s", __FUNCTION__ );
bool isRect = false;
short* x = pls->dev_x;
short* y = pls->dev_y;
if ( pls->dev_npts == 4 ) // Check if it's a rectangle. If so, it can be made faster to display
{
if ( x[0] == x[1] && x[2] == x[3] && y[0] == y[3] && y[1] == y[2] )
isRect = true;
else if ( x[0] == x[3] && x[1] == x[2] && y[0] == y[1] && y[2] == y[3] )
isRect = true;
}
if ( pls->dev_npts == 5 )
{
if ( x[0] == x[4] && y[0] == y[4] )
{
if ( x[0] == x[1] && x[2] == x[3] && y[0] == y[3] && y[1] == y[2] )
isRect = true;
else if ( x[0] == x[3] && x[1] == x[2] && y[0] == y[1] && y[2] == y[3] )
isRect = true;
}
}
if ( isRect ) //isRect) {
{
double x1, y1, x2, y2, x0, y0, w, h;
x1 = x[0] / scalex;
x2 = x[2] / scalex;
y1 = height - y[0] / scaley;
y2 = height - y[2] / scaley;
if ( x1 < x2 )
{
x0 = x1;
w = x2 - x1;
}
else
{
x0 = x2;
w = x1 - x2;
}
if ( y1 < y2 )
{
y0 = y1;
h = y2 - y1;
}
else
{
y0 = y2;
h = y1 - y2;
}
m_context->DrawRectangle( x0, y0, w, h );
AddtoClipRegion( (int) x0, (int) y0, (int) w, (int) h );
}
else
{
wxGraphicsPath path = m_context->CreatePath();
path.MoveToPoint( x[0] / scalex, height - y[0] / scaley );
for ( int i = 1; i < pls->dev_npts; i++ )
path.AddLineToPoint( x[i] / scalex, height - y[i] / scaley );
path.CloseSubpath();
if ( pls->dev_eofill )
m_context->DrawPath( path, wxODDEVEN_RULE );
else
m_context->DrawPath( path, wxWINDING_RULE );
wxDouble x, y, w, h;
path.GetBox( &x, &y, &w, &h );
AddtoClipRegion( (int) x, (int) y, (int) ( x + w ), (int) ( y + h ) );
}
}
void wxPLDevGC::BlitRectangle( wxDC* dc, int vX, int vY, int vW, int vH )
{
// Log_Verbose( "%s", __FUNCTION__ );
if ( m_dc )
dc->Blit( vX, vY, vW, vH, m_dc, vX, vY );
}
void wxPLDevGC::CreateCanvas()
{
// Log_Verbose( "%s", __FUNCTION__ );
if ( ownGUI )
{
if ( !m_dc )
m_dc = new wxMemoryDC();
( (wxMemoryDC *) m_dc )->SelectObject( wxNullBitmap ); // deselect bitmap
if ( m_bitmap )
delete m_bitmap;
m_bitmap = new wxBitmap( bm_width, bm_height, 32 );
( (wxMemoryDC *) m_dc )->SelectObject( *m_bitmap ); // select new bitmap
}
if ( m_dc )
{
delete m_context;
m_context = wxGraphicsContext::Create( *( (wxMemoryDC *) m_dc ) );
}
}
void wxPLDevGC::SetWidth( PLStream *pls )
{
// Log_Verbose( "%s", __FUNCTION__ );
m_context->SetPen( *( wxThePenList->FindOrCreatePen( wxColour( mColorRedStroke, mColorGreenStroke,
mColorBlueStroke, mStrokeOpacity ),
pls->width > 0 ? pls->width : 1, wxSOLID ) ) );
}
void wxPLDevGC::SetColor0( PLStream *pls )
{
// Log_Verbose( "%s", __FUNCTION__ );
mColorRedStroke = pls->curcolor.r;
mColorGreenStroke = pls->curcolor.g;
mColorBlueStroke = pls->curcolor.b;
mColorRedFill = pls->curcolor.r;
mColorGreenFill = pls->curcolor.g;
mColorBlueFill = pls->curcolor.b;
mStrokeOpacity = (unsigned char) ( pls->curcolor.a * 255 );
m_context->SetPen( *( wxThePenList->FindOrCreatePen( wxColour( mColorRedStroke, mColorGreenStroke,
mColorBlueStroke, mStrokeOpacity ),
pls->width > 0 ? pls->width : 1, wxSOLID ) ) );
m_context->SetBrush( wxBrush( wxColour( mColorRedFill, mColorGreenFill, mColorBlueFill, mStrokeOpacity ) ) );
}
void wxPLDevGC::SetColor1( PLStream *pls )
{
// Log_Verbose( "%s", __FUNCTION__ );
mColorRedStroke = pls->curcolor.r;
mColorGreenStroke = pls->curcolor.g;
mColorBlueStroke = pls->curcolor.b;
mColorRedFill = pls->curcolor.r;
mColorGreenFill = pls->curcolor.g;
mColorBlueFill = pls->curcolor.b;
mStrokeOpacity = (unsigned char) ( pls->curcolor.a * 255 );
m_context->SetPen( *( wxThePenList->FindOrCreatePen( wxColour( mColorRedStroke, mColorGreenStroke,
mColorBlueStroke, mStrokeOpacity ),
pls->width > 0 ? pls->width : 1, wxSOLID ) ) );
m_context->SetBrush( wxBrush( wxColour( mColorRedFill, mColorGreenFill, mColorBlueFill, mStrokeOpacity ) ) );
}
//--------------------------------------------------------------------------
// void wx_set_dc( PLStream* pls, wxDC* dc )
//
// Adds a dc to the stream. The associated device is attached to the canvas
// as the property "dev".
//--------------------------------------------------------------------------
void wxPLDevGC::SetExternalBuffer( void* dc )
{
// Log_Verbose( "%s", __FUNCTION__ );
m_dc = (wxDC *) dc; // Add the dc to the device
m_context = wxGraphicsContext::Create( *( (wxMemoryDC *) m_dc ) );
ready = true;
ownGUI = false;
}
#ifdef PL_HAVE_FREETYPE
void wxPLDevGC::PutPixel( short x, short y, PLINT color )
{
// Log_Verbose( "%s", __FUNCTION__ );
const wxPen oldpen = m_dc->GetPen();
m_context->SetPen( *( wxThePenList->FindOrCreatePen( wxColour( GetRValue( color ), GetGValue( color ), GetBValue( color ) ),
1, wxSOLID ) ) );
//m_context->DrawPoint( x, y );
AddtoClipRegion( x, y, x, y );
m_context->SetPen( oldpen );
}
void wxPLDevGC::PutPixel( short x, short y )
{
// Log_Verbose( "%s", __FUNCTION__ );
//m_dc->DrawPoint( x, y );
AddtoClipRegion( x, y, x, y );
}
PLINT wxPLDevGC::GetPixel( short x, short y )
{
// Log_Verbose( "%s", __FUNCTION__ );
#ifdef __WXGTK__
// Cast function parameters to (void) to silence compiler warnings about unused parameters
(void) x;
(void) y;
// The GetPixel method is incredible slow for wxGTK. Therefore we set the colour
// always to the background color, since this is the case anyway 99% of the time.
PLINT bgr, bgg, bgb; // red, green, blue
plgcolbg( &bgr, &bgg, &bgb ); // get background color information
return RGB( bgr, bgg, bgb );
#else
wxColour col;
m_dc->GetPixel( x, y, &col );
return RGB( col.Red(), col.Green(), col.Blue() );
#endif
}
#endif // PL_HAVE_FREETYPE
void wxPLDevGC::PSDrawTextToDC( char* utf8_string, bool drawText )
{
// Log_Verbose( "%s", __FUNCTION__ );
wxDouble w, h, d, l;
wxString str( wxConvUTF8.cMB2WC( utf8_string ), *wxConvCurrent );
w = 0;
m_context->GetTextExtent( str, &w, &h, &d, &l );
if ( drawText )
{
m_context->DrawText( str, 0, -yOffset / scaley );
m_context->Translate( w, 0 );
}
textWidth += static_cast<int>( w );
//keep track of the height of superscript text, the depth of subscript
//text and the height of regular text
if ( yOffset > 0.0001 )
{
//determine the height the text would have if it were full size
double currentOffset = yOffset;
double currentHeight = h;
while ( currentOffset > 0.0001 )
{
currentOffset -= scaley * fontSize * fontScale / 2.;
currentHeight *= 1.25;
}
textHeight = textHeight > ( currentHeight )
? textHeight
: static_cast<int>( ( currentHeight ) );
//work out the height including superscript
superscriptHeight = superscriptHeight > ( currentHeight + yOffset / scaley )
? superscriptHeight
: static_cast<int>( ( currentHeight + yOffset / scaley ) );
}
else if ( yOffset < -0.0001 )
{
//determine the height the text would have if it were full size
double currentOffset = yOffset;
double currentHeight = h;
double currentDepth = d;
while ( currentOffset < -0.0001 )
{
currentOffset += scaley * fontSize * fontScale * 1.25 / 2.;
currentHeight *= 1.25;
currentDepth *= 1.25;
}
textHeight = textHeight > currentHeight ? textHeight : static_cast<int>( ( currentHeight ) );
//work out the additional depth for subscript note an assumption has been made
//that the font size of (non-superscript and non-subscript) text is the same
//along a line. Currently there is no escape to change font size mid string
//so this should be fine
subscriptDepth = subscriptDepth > ( ( -yOffset / scaley + h + d ) - ( currentDepth + textHeight ) )
? subscriptDepth
: static_cast<int>( ( -yOffset / scaley + h + d ) - ( currentDepth + textHeight ) );
subscriptDepth = subscriptDepth > 0 ? subscriptDepth : 0;
}
else
textHeight = textHeight > h ? textHeight : static_cast<int>( h );
memset( utf8_string, '\0', max_string_length );
}
void wxPLDevGC::PSSetFont( PLUNICODE fci )
{
// Log_Verbose( "%s", __FUNCTION__ );
unsigned char fontFamily, fontStyle, fontWeight;
plP_fci2hex( fci, &fontFamily, PL_FCI_FAMILY );
plP_fci2hex( fci, &fontStyle, PL_FCI_STYLE );
plP_fci2hex( fci, &fontWeight, PL_FCI_WEIGHT );
if ( m_font )
delete m_font;
m_font = wxFont::New( static_cast<int>( fontSize * fontScale ),
fontFamilyLookup[fontFamily],
fontStyleLookup[fontStyle] | fontWeightLookup[fontWeight] );
m_font->SetUnderlined( underlined );
m_context->SetFont( *m_font, wxColour( textRed, textGreen, textBlue ) );
}
void wxPLDevGC::ProcessString( PLStream* pls, EscText* args )
{
// Log_Verbose( "%s", __FUNCTION__ );
// Check that we got unicode, warning message and return if not
if ( args->unicode_array_len == 0 )
{
printf( "Non unicode string passed to a cairo driver, ignoring\n" );
return;
}
// Check that unicode string isn't longer then the max we allow
if ( args->unicode_array_len >= max_string_length )
{
printf( "Sorry, the wxWidgets drivers only handles strings of length < %d\n", max_string_length );
return;
}
// Calculate the font size (in pixels)
fontSize = pls->chrht * VIRTUAL_PIXELS_PER_MM / scaley * 1.3;
// Use PLplot core routine to get the corners of the clipping rectangle
PLINT rcx[4], rcy[4];
difilt_clip( rcx, rcy );
#ifdef __WXOSX_COCOA__
wxPoint topLeft( width, height ), bottomRight( -1, -1 );
for ( int i = 0; i < 4; i++ )
{
topLeft.x = topLeft.x > ( rcx[i] / scalex ) ? ( rcx[i] / scalex ) : topLeft.x;
topLeft.y = topLeft.y > ( height - rcy[i] / scaley ) ? ( height - rcy[i] / scaley ) : topLeft.y;
bottomRight.x = bottomRight.x < ( rcx[i] / scalex ) ? ( rcx[i] / scalex ) : bottomRight.x;
bottomRight.y = bottomRight.y < ( height - rcy[i] / scaley ) ? ( height - rcy[i] / scaley ) : bottomRight.y;
}
m_context->Clip( wxRegion( topLeft.x, topLeft.y, bottomRight.x - topLeft.x, bottomRight.y - topLeft.y ) );
// m_context->Clip( wxRegion( topLeft, bottomRight) ); // this wxRegion constructor doesn't work in wxWidgets 2.9.2/Cocoa
#else
wxPoint cpoints[4];
for ( int i = 0; i < 4; i++ )
{
cpoints[i].x = rcx[i] / scalex;
cpoints[i].y = height - rcy[i] / scaley;
}
m_context->Clip( wxRegion( 4, cpoints ) );
#endif
// text color
textRed = pls->curcolor.r;
textGreen = pls->curcolor.g;
textBlue = pls->curcolor.b;
// calculate rotation of text
plRotationShear( args->xform, &rotation, &shear, &stride );
rotation -= pls->diorot * M_PI / 2.0;
cos_rot = cos( rotation );
sin_rot = sin( rotation );
cos_shear = cos( shear );
sin_shear = sin( shear );
PLUNICODE *lineStart = args->unicode_array;
int lineLen = 0;
bool lineFeed = false;
bool carriageReturn = false;
wxCoord paraHeight = 0;
// Get the curent font
fontScale = 1.0;
yOffset = 0.0;
plgfci( &fci );
PSSetFont( fci );
while ( lineStart != args->unicode_array + args->unicode_array_len )
{
while ( lineStart + lineLen != args->unicode_array + args->unicode_array_len
&& *( lineStart + lineLen ) != (PLUNICODE) '\n' )
{
lineLen++;
}
//set line feed for the beginning of this line and
//carriage return for the end
lineFeed = carriageReturn;
carriageReturn = lineStart + lineLen != args->unicode_array + args->unicode_array_len
&& *( lineStart + lineLen ) == (PLUNICODE) ( '\n' );
if ( lineFeed )
paraHeight += textHeight + subscriptDepth;
//remember the text parameters so they can be restored
double startingFontScale = fontScale;
double startingYOffset = yOffset;
PLUNICODE startingFci = fci;
// determine extent of text
PSDrawText( lineStart, lineLen, false );
if ( lineFeed && superscriptHeight > textHeight )
paraHeight += superscriptHeight - textHeight;
// actually draw text, resetting the font first
fontScale = startingFontScale;
yOffset = startingYOffset;
fci = startingFci;
PSSetFont( fci );
m_context->PushState(); //save current position
m_context->Translate( args->x / scalex, height - args->y / scaley ); //move to text starting position
wxGraphicsMatrix matrix = m_context->CreateMatrix(
cos_rot * stride, -sin_rot * stride,
cos_rot * sin_shear + sin_rot * cos_shear,
-sin_rot * sin_shear + cos_rot * cos_shear,
0.0, 0.0 ); //create rotation transformation matrix
m_context->ConcatTransform( matrix ); //rotate
m_context->Translate( -args->just * textWidth, -0.5 * textHeight + paraHeight * lineSpacing ); //move to set alignment
PSDrawText( lineStart, lineLen, true ); //draw text
m_context->PopState(); //return to original position
lineStart += lineLen;
if ( carriageReturn )
lineStart++;
lineLen = 0;
}
AddtoClipRegion( 0, 0, width, height );
m_context->ResetClip();
}
#endif
|