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 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
|
/* Picture.cpp
*
* Copyright (C) 1992-2011,2012 Paul Boersma
*
* 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* pb 2002/03/07 GPL
* pb 2003/07/19 extra null byte in Windows metafile name
* pb 2004/02/19 outer selection
* pb 2004/09/05 inner selection
* pb 2005/05/19 EPS files have the option to switch off the screen preview
* pb 2005/09/18 useSilipaPS
* pb 2006/10/28 erased MacOS 9 stuff
* pb 2007/11/30 erased Graphics_printf
* sdk 2008/05/09 Picture_selfExpose
* pb 2009/07/22 Picture_writeToPdfFile
* fb 2010/03/01 cairo fix for black 1px borders
* pb 2011/05/15 C++
* pb 2011/07/08 C++
*/
#include "melder.h"
#include "Gui.h"
#include "Printer.h"
#include "Picture.h"
#include "site.h"
struct structPicture {
GuiObject drawingArea;
Graphics graphics, selectionGraphics;
Boolean sensitive;
double selx1, selx2, sely1, sely2; // selection in NDC co-ordinates
void (*selectionChangedCallback) (struct structPicture *, XtPointer, double, double, double, double);
XtPointer selectionChangedClosure;
int backgrounding, mouseSelectsInnerViewport;
#if gtk
bool selectionInProgress;
double ixstart, iystart;
#endif
};
static void drawMarkers (Picture me)
/*
* The drawing area is a square measuring 12x12 inches.
*/
#define SIDE 12
/*
* The selection grid has a resolution of 1/2 inch.
*/
#define SQUARES 24
/*
* Vertical and horizontal lines every 3 inches.
*/
#define YELLOW_GRID 3
{
int i;
/* Fill the entire canvas with GC's background. */
Graphics_setColour (my selectionGraphics, Graphics_WHITE);
Graphics_fillRectangle (my selectionGraphics, 0, SIDE, 0, SIDE);
/* Draw yellow grid lines for coarse navigation. */
Graphics_setColour (my selectionGraphics, Graphics_YELLOW);
for (i = YELLOW_GRID; i < SIDE; i += YELLOW_GRID) {
Graphics_line (my selectionGraphics, 0, i, SIDE, i);
Graphics_line (my selectionGraphics, i, 0, i, SIDE);
}
/* Draw red ticks and numbers for feedback on viewport measurement. */
Graphics_setColour (my selectionGraphics, Graphics_RED);
for (i = 1; i < SIDE; i ++) {
double x = i;
Graphics_setTextAlignment (my selectionGraphics, Graphics_CENTRE, Graphics_TOP);
Graphics_text1 (my selectionGraphics, x, SIDE, Melder_integer (i));
Graphics_setTextAlignment (my selectionGraphics, Graphics_CENTRE, Graphics_BOTTOM);
Graphics_text1 (my selectionGraphics, x, 0, Melder_integer (i));
}
for (i = 1; i < SQUARES ; i ++) { /* Vertical ticks. */
double x = 0.5 * i;
Graphics_line (my selectionGraphics, x, SIDE - 0.04, x, SIDE);
Graphics_line (my selectionGraphics, x, 0, x, 0.04);
}
for (i = 1; i < SIDE; i ++) {
double y = SIDE - i;
Graphics_setTextAlignment (my selectionGraphics, Graphics_LEFT, Graphics_HALF);
Graphics_text1 (my selectionGraphics, 0.04, y, Melder_integer (i));
Graphics_setTextAlignment (my selectionGraphics, Graphics_RIGHT, Graphics_HALF);
Graphics_text1 (my selectionGraphics, SIDE - 0.03, y, Melder_integer (i));
}
for (i = 1; i < SQUARES; i ++) { /* Horizontal ticks. */
double y = SIDE - 0.5 * i;
Graphics_line (my selectionGraphics, SIDE - 0.04, y, SIDE, y);
Graphics_line (my selectionGraphics, 0, y, 0.04, y);
}
Graphics_setColour (my selectionGraphics, Graphics_BLACK);
}
static void drawSelection (Picture me, int high) {
double dx, dy;
if (my backgrounding) return;
dy = 2.8 * Graphics_inqFontSize (my graphics) / 72.0;
dx = 1.5 * dy;
if (dy > 0.4 * (my sely2 - my sely1)) dy = 0.4 * (my sely2 - my sely1);
if (dx > 0.4 * (my selx2 - my selx1)) dx = 0.4 * (my selx2 - my selx1);
if (high) {
Graphics_highlight2 (my selectionGraphics, my selx1, my selx2, my sely1, my sely2,
my selx1 + dx, my selx2 - dx, my sely1 + dy, my sely2 - dy);
} else {
Graphics_unhighlight2 (my selectionGraphics, my selx1, my selx2, my sely1, my sely2,
my selx1 + dx, my selx2 - dx, my sely1 + dy, my sely2 - dy);
}
}
//static double test = 0.0;
static void gui_drawingarea_cb_expose (I, GuiDrawingAreaExposeEvent event) {
iam (Picture);
#if gtk
// g_debug("EXPOSE DRAWING AREA");
// save old cairo contexts
cairo_t *cgr = (cairo_t *) Graphics_x_getCR (my graphics);
Melder_assert (cgr != NULL);
cairo_t *csgr = (cairo_t *) Graphics_x_getCR (my selectionGraphics);
// set new cairo contexts
Graphics_x_setCR (my graphics, gdk_cairo_create (GDK_DRAWABLE (GTK_WIDGET (event -> widget) -> window)));
Graphics_x_setCR (my selectionGraphics, gdk_cairo_create (GDK_DRAWABLE (GTK_WIDGET (event -> widget) -> window)));
// - Graphics_x_setCR(my graphics, Graphics_x_getCR(my selectionGraphics));
// g_debug ("%d %d %d %d\n", event->x, event->y, event->width, event->height);
cairo_rectangle ((cairo_t *) Graphics_x_getCR (my graphics), (double) event->x, (double) event->y, (double) event->width, (double) event->height);
cairo_clip ((cairo_t *) Graphics_x_getCR (my graphics));
drawMarkers (me);
Graphics_play ((Graphics) my graphics, (Graphics) my graphics);
drawSelection (me, 1);
// cairo_set_source_rgb(Graphics_x_getCR (my graphics), test / 3.0, test / 2.0, test);
// cairo_fill(Graphics_x_getCR (my graphics));
cairo_destroy ((cairo_t *) Graphics_x_getCR (my selectionGraphics));
cairo_destroy ((cairo_t *) Graphics_x_getCR (my graphics));
// restore old cairo contexts
Graphics_x_setCR (my graphics, cgr);
Graphics_x_setCR (my selectionGraphics, csgr);
// test+=0.1;
// if (test > 3) test = 0.1;
// g_debug("%d", test);
#elif defined (macintosh) && 0
WindowPtr window = (WindowPtr) ((EventRecord *) call) -> message;
static RgnHandle visRgn;
Rect rect;
long x1DC, x2DC, y1DC, y2DC;
Graphics_inqWsViewport (my selectionGraphics, & x1DC, & x2DC, & y1DC, & y2DC);
SetRect (& rect, x1DC, y1DC, x2DC, y2DC);
/* No clearing needed; macintosh clips to update region. */
if (visRgn == NULL) visRgn = NewRgn ();
GetPortVisibleRegion (GetWindowPort (window), visRgn);
if (RectInRgn (& rect, visRgn)) {
drawMarkers (me);
Graphics_play ((Graphics) my graphics, (Graphics) my graphics);
drawSelection (me, 1);
}
#elif defined (_WIN32) || 1
(void) event;
drawMarkers (me);
Graphics_play ((Graphics) my graphics, (Graphics) my graphics);
drawSelection (me, 1);
#endif
}
// TODO: Paul, als praat nu 100dpi zou zijn waarom zie ik hier dan nog 72.0 onder?
// Stefan, die 72.0 is het aantal font-punten per inch,
// gewoon een vaste verhouding die niks met pixels te maken heeft.
// TODO: Paul, deze code is bagger :) En dient door event-model-extremisten te worden veroordeeld.
// Stefan, zoals gezegd, er zijn goede redenen waarom sommige platforms dit synchroon oplossen;
// misschien maar splitsen tussen die platforms en platforms die met events kunnen werken.
static void gui_drawingarea_cb_click (I, GuiDrawingAreaClickEvent event) {
iam (Picture);
int xstart = event -> x;
int ystart = event -> y;
double xWC, yWC;
#if gtk
int ix, iy;
Graphics_DCtoWC (my selectionGraphics, xstart, ystart, & xWC, & yWC);
ix = 1 + floor (xWC * SQUARES / SIDE);
iy = SQUARES - floor (yWC * SQUARES / SIDE);
// if (my ixstart < 1 || my ixstart > SQUARES || my iystart < 1 || my iystart > SQUARES) return;
if (my selectionInProgress == 0) {
if (event->type == BUTTON_PRESS) {
my selectionInProgress = 1;
my ixstart = ix;
my iystart = iy;
}
} else {
int ix1, ix2, iy1, iy2;
if (ix < my ixstart) { ix1 = ix; ix2 = my ixstart; }
else { ix1 = my ixstart; ix2 = ix; }
if (iy < my iystart) { iy1 = iy; iy2 = my iystart; }
else { iy1 = my iystart; iy2 = iy; }
if (my mouseSelectsInnerViewport) {
int fontSize = Graphics_inqFontSize (my graphics);
double xmargin = fontSize * 4.2 / 72.0, ymargin = fontSize * 2.8 / 72.0;
if (xmargin > ix2 - ix1 + 1) xmargin = ix2 - ix1 + 1;
if (ymargin > iy2 - iy1 + 1) ymargin = iy2 - iy1 + 1;
Picture_setSelection (me, 0.5 * (ix1 - 1) - xmargin, 0.5 * ix2 + xmargin,
0.5 * (SQUARES - iy2) - ymargin, 0.5 * (SQUARES + 1 - iy1) + ymargin, False);
} else {
Picture_setSelection (me, 0.5 * (ix1 - 1), 0.5 * ix2,
0.5 * (SQUARES - iy2), 0.5 * (SQUARES + 1 - iy1), False);
}
if (event->type == BUTTON_RELEASE) {
my selectionInProgress = 0;
if (my selectionChangedCallback) {
//Melder_casual ("selectionChangedCallback from gui_drawingarea_cb_click");
my selectionChangedCallback (me, my selectionChangedClosure,
my selx1, my selx2, my sely1, my sely2);
}
}
}
#else
int ixstart, iystart, ix, iy, oldix = 0, oldiy = 0;
Graphics_DCtoWC (my selectionGraphics, xstart, ystart, & xWC, & yWC);
ix = ixstart = 1 + floor (xWC * SQUARES / SIDE);
iy = iystart = SQUARES - floor (yWC * SQUARES / SIDE);
if (ixstart < 1 || ixstart > SQUARES || iystart < 1 || iystart > SQUARES) return;
if (event -> shiftKeyPressed) {
int ix1 = 1 + floor (my selx1 * SQUARES / SIDE);
int ix2 = floor (my selx2 * SQUARES / SIDE);
int iy1 = SQUARES + 1 - floor (my sely2 * SQUARES / SIDE);
int iy2 = SQUARES - floor (my sely1 * SQUARES / SIDE);
ixstart = ix < (ix1 + ix2) / 2 ? ix2 : ix1;
iystart = iy < (iy1 + iy2) / 2 ? iy2 : iy1;
}
while (Graphics_mouseStillDown (my selectionGraphics)) {
if (ix >= 1 && ix <= SQUARES && iy >= 1 && iy <= SQUARES && (ix != oldix || iy != oldiy)) {
int ix1, ix2, iy1, iy2;
if (ix < ixstart) { ix1 = ix; ix2 = ixstart; }
else { ix1 = ixstart; ix2 = ix; }
if (iy < iystart) { iy1 = iy; iy2 = iystart; }
else { iy1 = iystart; iy2 = iy; }
if (my mouseSelectsInnerViewport) {
int fontSize = Graphics_inqFontSize (my graphics);
double xmargin = fontSize * 4.2 / 72.0, ymargin = fontSize * 2.8 / 72.0;
if (xmargin > ix2 - ix1 + 1) xmargin = ix2 - ix1 + 1;
if (ymargin > iy2 - iy1 + 1) ymargin = iy2 - iy1 + 1;
Picture_setSelection (me, 0.5 * (ix1 - 1) - xmargin, 0.5 * ix2 + xmargin,
0.5 * (SQUARES - iy2) - ymargin, 0.5 * (SQUARES + 1 - iy1) + ymargin, False);
} else {
Picture_setSelection (me, 0.5 * (ix1 - 1), 0.5 * ix2,
0.5 * (SQUARES - iy2), 0.5 * (SQUARES + 1 - iy1), False);
#if gtk
Graphics_flushWs (my graphics);
#endif
}
oldix = ix; oldiy = iy;
}
Graphics_getMouseLocation (my selectionGraphics, & xWC, & yWC);
ix = 1 + floor (xWC * SQUARES / SIDE);
iy = SQUARES - floor (yWC * SQUARES / SIDE);
}
if (my selectionChangedCallback) {
//Melder_casual ("selectionChangedCallback from gui_drawingarea_cb_click");
my selectionChangedCallback (me, my selectionChangedClosure,
my selx1, my selx2, my sely1, my sely2);
}
#endif
}
Picture Picture_create (GuiObject drawingArea, Boolean sensitive) {
Picture me = NULL;
try {
me = Melder_calloc (struct structPicture, 1);
#if gtk
my selectionInProgress = 0;
#endif
my drawingArea = drawingArea;
/*
* The initial viewport is a rectangle 6 inches wide and 4 inches high.
*/
my selx1 = 0.0;
my selx2 = 6.0;
my sely1 = 8.0;
my sely2 = 12.0;
my sensitive = sensitive && drawingArea;
if (drawingArea) {
/* The drawing area must have been realized; see manual at XtWindow. */
my graphics = Graphics_create_xmdrawingarea (my drawingArea);
GuiDrawingArea_setExposeCallback (my drawingArea, gui_drawingarea_cb_expose, me);
} else {
/*
* Create a dummy Graphics.
* This has device coordinates from 0 to 32767.
* This will be mapped on an area of 12x12 inches,
* so the resolution is 32767 / 12 = 2731.
*/
my graphics = Graphics_create (2731);
}
Graphics_setWsWindow (my graphics, 0.0, 12.0, 0.0, 12.0);
Graphics_setViewport (my graphics, my selx1, my selx2, my sely1, my sely2);
if (my sensitive) {
my selectionGraphics = Graphics_create_xmdrawingarea (my drawingArea);
Graphics_setWindow (my selectionGraphics, 0, 12, 0, 12);
GuiDrawingArea_setClickCallback (my drawingArea, gui_drawingarea_cb_click, me);
}
Graphics_startRecording (my graphics);
return me;
} catch (MelderError) {
if (me) Melder_free (me);
Melder_throw ("Picture not created.");
}
}
void Picture_setSelectionChangedCallback (Picture me,
void (*selectionChangedCallback) (Picture, XtPointer, double, double, double, double),
XtPointer selectionChangedClosure)
{
my selectionChangedCallback = selectionChangedCallback;
my selectionChangedClosure = selectionChangedClosure;
}
void Picture_setMouseSelectsInnerViewport (Picture me, int mouseSelectsInnerViewport) {
my mouseSelectsInnerViewport = mouseSelectsInnerViewport;
}
void Picture_remove (Picture *pme) {
Picture me = *pme;
if (! me) return;
Picture_erase (me);
forget (my graphics);
if (my sensitive) forget (my selectionGraphics);
Melder_free (me);
*pme = NULL;
}
Graphics Picture_getGraphics (Picture me) { return my graphics; }
void Picture_unhighlight (Picture me) {
if (my drawingArea) drawSelection (me, 0); // unselect
}
void Picture_highlight (Picture me) {
if (my drawingArea) drawSelection (me, 1); // select
}
void Picture_erase (Picture me) {
Graphics_clearRecording (my graphics);
Graphics_clearWs (my graphics);
if (my drawingArea) {
drawMarkers (me);
drawSelection (me, 1);
}
}
void Picture_writeToPraatPictureFile (Picture me, MelderFile file) {
try {
autofile f = Melder_fopen (file, "wb");
if (fprintf (f, "PraatPictureFile") < 0) Melder_throw ("Write error.");
Graphics_writeRecordings (my graphics, f);
f.close (file);
} catch (MelderError) {
Melder_throw ("Cannot write Praat picture file ", file, ".");
}
}
void Picture_readFromPraatPictureFile (Picture me, MelderFile file) {
try {
autofile f = Melder_fopen (file, "rb");
char line [200];
int n = fread (line, 1, 199, f);
line [n] = '\0';
const char *tag = "PraatPictureFile";
char *end = strstr (line, tag);
if (! end) Melder_throw ("This is not a Praat picture file.");
*end = '\0';
rewind (f);
fread (line, 1, end - line + strlen (tag), f);
Graphics_readRecordings (my graphics, f);
Graphics_updateWs (my graphics);
f.close (file);
} catch (MelderError) {
Melder_throw ("Praat picture not read from file ", file);
}
}
#ifdef macintosh
static size_t appendBytes (void *info, const void *buffer, size_t count) {
CFDataAppendBytes ((CFMutableDataRef) info, (const UInt8 *) buffer, count);
return count;
}
void Picture_copyToClipboard (Picture me) {
/*
* Find the clipboard and clear it.
*/
PasteboardRef clipboard = NULL;
PasteboardCreate (kPasteboardClipboard, & clipboard);
PasteboardClear (clipboard);
/*
* Add a PDF flavour to the clipboard.
*/
static CGDataConsumerCallbacks callbacks = { appendBytes, NULL };
CFDataRef data = CFDataCreateMutable (kCFAllocatorDefault, 0);
CGDataConsumerRef consumer = CGDataConsumerCreate ((void *) data, & callbacks);
int resolution = 600;
CGRect rect = CGRectMake (0, 0, (my selx2 - my selx1) * resolution, (my sely1 - my sely2) * resolution);
CGContextRef context = CGPDFContextCreate (consumer, & rect, NULL);
//my selx1 * RES, (12 - my sely2) * RES, my selx2 * RES, (12 - my sely1) * RES)
Graphics graphics = Graphics_create_pdf (context, resolution, my selx1, my selx2, my sely1, my sely2);
Graphics_play ((Graphics) my graphics, graphics);
forget (graphics);
PasteboardPutItemFlavor (clipboard, (PasteboardItemID) 1, kUTTypePDF, data, kPasteboardFlavorNoFlags);
CFRelease (data);
/*
* Forget the clipboard.
*/
CFRelease (clipboard);
}
#endif
#ifdef _WIN32
/* Windows pictures.
*/
#define WIN_WIDTH 7.5
#define WIN_HEIGHT 11
static HENHMETAFILE copyToMetafile (Picture me) {
RECT rect;
HDC dc;
PRINTDLG defaultPrinter;
int resolution;
memset (& defaultPrinter, 0, sizeof (PRINTDLG));
defaultPrinter. lStructSize = sizeof (PRINTDLG);
defaultPrinter. Flags = PD_RETURNDEFAULT | PD_RETURNDC;
PrintDlg (& defaultPrinter);
SetRect (& rect, my selx1 * 2540, (12 - my sely2) * 2540, my selx2 * 2540, (12 - my sely1) * 2540);
dc = CreateEnhMetaFile (defaultPrinter. hDC, NULL, & rect, L"Praat\0");
if (! dc) Melder_throw ("Cannot create Windows metafile.");
resolution = GetDeviceCaps (dc, LOGPIXELSX); // Virtual PC: 360
if (Melder_debug == 6) {
DEVMODE *devMode = * (DEVMODE **) defaultPrinter. hDevMode;
MelderInfo_open ();
MelderInfo_writeLine1 (L"DEVICE CAPS:");
MelderInfo_writeLine4 (L"aspect x ", Melder_integer (GetDeviceCaps (dc, ASPECTX)),
L" y ", Melder_integer (GetDeviceCaps (dc, ASPECTY)));
MelderInfo_writeLine4 (L"res(pixels) hor ", Melder_integer (GetDeviceCaps (dc, HORZRES)),
L" vert ", Melder_integer (GetDeviceCaps (dc, VERTRES)));
MelderInfo_writeLine4 (L"size(mm) hor ", Melder_integer (GetDeviceCaps (dc, HORZSIZE)),
L" vert ", Melder_integer (GetDeviceCaps (dc, VERTSIZE)));
MelderInfo_writeLine4 (L"pixels/inch hor ", Melder_integer (GetDeviceCaps (dc, LOGPIXELSX)),
L" vert ", Melder_integer (GetDeviceCaps (dc, LOGPIXELSY)));
MelderInfo_writeLine4 (L"physicalOffset(pixels) hor ", Melder_integer (GetDeviceCaps (dc, PHYSICALOFFSETX)),
L" vert ", Melder_integer (GetDeviceCaps (dc, PHYSICALOFFSETY)));
MelderInfo_writeLine1 (L"PRINTER:");
MelderInfo_writeLine2 (L"dmFields ", Melder_integer (devMode -> dmFields));
if (devMode -> dmFields & DM_YRESOLUTION)
MelderInfo_writeLine2 (L"y resolution ", Melder_integer (devMode -> dmYResolution));
if (devMode -> dmFields & DM_PRINTQUALITY)
MelderInfo_writeLine2 (L"print quality ", Melder_integer (devMode -> dmPrintQuality));
if (devMode -> dmFields & DM_PAPERWIDTH)
MelderInfo_writeLine2 (L"paper width ", Melder_integer (devMode -> dmPaperWidth));
if (devMode -> dmFields & DM_PAPERLENGTH)
MelderInfo_writeLine2 (L"paper length ", Melder_integer (devMode -> dmPaperLength));
if (devMode -> dmFields & DM_PAPERSIZE)
MelderInfo_writeLine2 (L"paper size ", Melder_integer (devMode -> dmPaperSize));
if (devMode -> dmFields & DM_ORIENTATION)
MelderInfo_writeLine2 (L"orientation ", Melder_integer (devMode -> dmOrientation));
MelderInfo_close ();
}
autoGraphics pictGraphics = Graphics_create_screen ((void *) dc, NULL, resolution);
Graphics_setWsViewport (pictGraphics.peek(), 0, WIN_WIDTH * resolution, 0, WIN_HEIGHT * resolution);
Graphics_setWsWindow (pictGraphics.peek(), 0.0, WIN_WIDTH, 12.0 - WIN_HEIGHT, 12.0);
Graphics_play ((Graphics) my graphics, pictGraphics.peek());
HENHMETAFILE metafile = CloseEnhMetaFile (dc);
return metafile;
}
void Picture_copyToClipboard (Picture me) {
try {
HENHMETAFILE metafile = copyToMetafile (me);
OpenClipboard (NULL);
EmptyClipboard ();
SetClipboardData (CF_ENHMETAFILE, metafile);
CloseClipboard ();
/*
* We should NOT call DeleteEnhMetaFile,
* because the clipboard becomes the owner of this global memory object.
*/
} catch (MelderError) {
Melder_throw ("Picture not copied to clipboard.");
}
}
void Picture_writeToWindowsMetafile (Picture me, MelderFile file) {
try {
HENHMETAFILE metafile = copyToMetafile (me);
MelderFile_delete (file); // overwrite any existing file with the same name
DeleteEnhMetaFile (CopyEnhMetaFile (metafile, file -> path));
DeleteEnhMetaFile (metafile);
} catch (MelderError) {
Melder_throw ("Picture not written to Windows metafile ", file);
}
}
#endif
void Picture_writeToEpsFile (Picture me, MelderFile file, int includeFonts, int useSilipaPS) {
try {
MelderFile_delete (file); // to kill resources as well (fopen only kills data fork)
/* BUG: no message if file cannot be deleted (e.g. because still open by Microsoft Word 2001 after reading). */
{ // scope
autoGraphics ps = Graphics_create_epsfile (file, 600, thePrinter. spots,
my selx1, my selx2, my sely1, my sely2, includeFonts, useSilipaPS);
Graphics_play ((Graphics) my graphics, ps.peek());
}
MelderFile_setMacTypeAndCreator (file, 'EPSF', 'vgrd');
} catch (MelderError) {
Melder_throw ("Picture not written to EPS file ", file);
}
}
void Picture_writeToPdfFile (Picture me, MelderFile file) {
try {
autoGraphics graphics = Graphics_create_pdffile (file, 300, my selx1, my selx2, my sely1, my sely2);
Graphics_play ((Graphics) my graphics, graphics.peek());
} catch (MelderError) {
Melder_throw ("Picture not written to PDF file ", file, ".");
}
}
static void print (I, Graphics printer) {
iam (Picture);
Graphics_play ((Graphics) my graphics, printer);
}
void Picture_print (Picture me) {
try {
Printer_print (print, me); therror
} catch (MelderError) {
Melder_flushError ("Picture not printed.");
}
}
void Picture_setSelection
(Picture me, double x1NDC, double x2NDC, double y1NDC, double y2NDC, Boolean notify)
{
if (my drawingArea) {
#if gtk
long x1, x2, y1, y2;
Graphics_WCtoDC (my selectionGraphics, my selx1, my sely1, & x1, & y1);
Graphics_WCtoDC (my selectionGraphics, my selx2, my sely2, & x2, & y2);
gtk_widget_queue_draw_area (GTK_WIDGET (my drawingArea), x1, y2, abs (x2 - x1), abs (y2 - y1));
#else
drawSelection (me, 0); // unselect
#endif
}
my selx1 = x1NDC;
my selx2 = x2NDC;
my sely1 = y1NDC;
my sely2 = y2NDC;
if (my drawingArea) {
#if gtk
long x1, x2, y1, y2;
Graphics_WCtoDC (my selectionGraphics, my selx1, my sely1, & x1, & y1);
Graphics_WCtoDC (my selectionGraphics, my selx2, my sely2, & x2, & y2);
gtk_widget_queue_draw_area (GTK_WIDGET (my drawingArea), x1, y2, abs (x2 - x1), abs (y2 - y1));
#else
drawSelection (me, 1); // select
#endif
}
if (notify && my selectionChangedCallback) {
//Melder_casual ("selectionChangedCallback from Picture_setSelection");
my selectionChangedCallback (me, my selectionChangedClosure,
my selx1, my selx2, my sely1, my sely2);
}
}
void Picture_background (Picture me) { my backgrounding = TRUE; }
void Picture_foreground (Picture me) { my backgrounding = FALSE; }
#if gtk
void Picture_selfExpose (Picture me) {
if (my drawingArea) {
long x1, x2, y1, y2;
Graphics_WCtoDC (my selectionGraphics, my selx1, my sely1, & x1, & y1);
Graphics_WCtoDC (my selectionGraphics, my selx2, my sely2, & x2, & y2);
gtk_widget_queue_draw_area (GTK_WIDGET (my drawingArea), x1, y2, abs (x2 - x1), abs (y2 - y1));
}
}
#endif
/* End of file Picture.cpp */
|