123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188 |
- /* Graphics_linesAndAreas.cpp
- *
- * Copyright (C) 1992-2011,2012,2013,2014,2015,2017 Paul Boersma, 2013 Tom Naughton
- *
- * This code 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 code 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 work. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "GraphicsP.h"
- /* Normally on, because e.g. the intensity contour in the Sound window should not run through the play buttons: */
- #define FUNCTIONS_ARE_CLIPPED 1
- #define LINE_WIDTH_IN_PIXELS(me) ( my resolution > 192 ? my lineWidth * (my resolution / 192.0) : my lineWidth )
- #define ORDER_DC { double temp; if (x1DC > x2DC) temp = x1DC, x1DC = x2DC, x2DC = temp; \
- if (yIsZeroAtTheTop == (y2DC > y1DC)) temp = y1DC, y1DC = y2DC, y2DC = temp; }
- static void psPrepareLine (GraphicsPostscript me) {
- double lineWidth_pixels = LINE_WIDTH_IN_PIXELS (me);
- if (my lineType == Graphics_DOTTED)
- my d_printf (my d_file, "[%ld %ld] 0 setdash\n", (long_not_integer) (my resolution / 100), (long_not_integer) (my resolution / 75 + lineWidth_pixels));
- else if (my lineType == Graphics_DASHED)
- my d_printf (my d_file, "[%ld %ld] 0 setdash\n", (long_not_integer) (my resolution / 25), (long_not_integer) (my resolution / 50 + lineWidth_pixels));
- else if (my lineType == Graphics_DASHED_DOTTED)
- my d_printf (my d_file, "[%ld %ld %ld %ld] 0 setdash\n",
- (long_not_integer) (my resolution / 100), (long_not_integer) (my resolution / 60 + lineWidth_pixels),
- (long_not_integer) (my resolution / 25), (long_not_integer) (my resolution / 60 + lineWidth_pixels));
- if (my lineWidth != 1.0)
- my d_printf (my d_file, "%g setlinewidth\n", lineWidth_pixels);
- }
- static void psRevertLine (GraphicsPostscript me) {
- if (my lineType != Graphics_DRAWN)
- my d_printf (my d_file, "[] 0 setdash\n");
- if (my lineWidth != 1.0)
- my d_printf (my d_file, "%g setlinewidth\n", my resolution > 192 ? my resolution / 192.0 : 1.0); // 0.375 point
- }
- #if cairo
- #if ALLOW_GDK_DRAWING
- static void gdkPrepareLine (GraphicsScreen me) {
- gdk_gc_set_line_attributes (my d_gdkGraphicsContext, my lineWidth,
- my lineType >= Graphics_DOTTED ? GDK_LINE_ON_OFF_DASH : GDK_LINE_SOLID, GDK_CAP_ROUND, GDK_JOIN_ROUND);
- }
- static void gdkRevertLine (GraphicsScreen me) {
- if (my lineType >= Graphics_DOTTED) {
- gdk_gc_set_line_attributes (my d_gdkGraphicsContext, my lineWidth, GDK_LINE_SOLID, GDK_CAP_ROUND, GDK_JOIN_ROUND);
- }
- }
- #endif
- static void cairoPrepareLine (GraphicsScreen me) {
- if (! my d_cairoGraphicsContext) return;
- double dotted_line [] { 2.0, 2.0 };
- double dashed_line [] { 6.0, 2.0 };
- double dashed_dotted_line [] { 6.0, 2.0, 2.0, 2.0 };
- cairo_save (my d_cairoGraphicsContext);
- switch (my lineType) {
- case Graphics_DOTTED:
- cairo_set_dash (my d_cairoGraphicsContext, dotted_line, 2, 1.0);
- break;
- case Graphics_DASHED:
- cairo_set_dash (my d_cairoGraphicsContext, dashed_line, 2, 1.0);
- break;
- case Graphics_DASHED_DOTTED:
- cairo_set_dash (my d_cairoGraphicsContext, dashed_dotted_line, 4, 1.0);
- break;
- }
- cairo_set_line_width (my d_cairoGraphicsContext, my lineWidth);
- }
- static void cairoRevertLine (GraphicsScreen me) {
- if (! my d_cairoGraphicsContext) return;
- if (my lineType >= Graphics_DOTTED) {
- cairo_set_dash (my d_cairoGraphicsContext, nullptr, 0, 0);
- }
- cairo_restore (my d_cairoGraphicsContext);
- }
- #elif gdi
- #define MY_BRUSH SelectPen (d_gdiGraphicsContext, GetStockPen (NULL_PEN)), SelectBrush (d_gdiGraphicsContext, d_winBrush);
- #define DEFAULT SelectPen (d_gdiGraphicsContext, GetStockPen (BLACK_PEN)), SelectBrush (d_gdiGraphicsContext, GetStockBrush (NULL_BRUSH));
- static void winPrepareLine (GraphicsScreen me) {
- HPEN newPen;
- int lineWidth_pixels = LINE_WIDTH_IN_PIXELS (me) + 0.5;
- if (! lineWidth_pixels) lineWidth_pixels = 1;
- my d_fatNonSolid = my lineType != Graphics_DRAWN && lineWidth_pixels > 1;
- if (Melder_debug == 10) {
- LOGBRUSH brush;
- brush. lbStyle = BS_SOLID;
- brush. lbColor = my d_winForegroundColour;
- brush. lbHatch = my lineType == Graphics_DRAWN ? 0 : my lineType == Graphics_DOTTED ? PS_DOT : my lineType == Graphics_DASHED ? PS_DASH : PS_DASHDOT;
- if (my lineType == Graphics_DRAWN) {
- newPen = ExtCreatePen (PS_GEOMETRIC, lineWidth_pixels, & brush, 0, nullptr);
- } else {
- DWORD style [] = { 36, 33 };
- newPen = ExtCreatePen (PS_GEOMETRIC | PS_USERSTYLE, lineWidth_pixels, & brush, 2, style);
- }
- } else {
- /*newPen = CreatePen (my lineType == Graphics_DRAWN ? PS_SOLID :
- my lineType == Graphics_DOTTED ? PS_DOT : my lineType == Graphics_DASHED ? PS_DASH : PS_DASHDOT,
- my fatNonSolid ? 1 : lineWidth_pixels, my foregroundColour);*/
- LOGPEN pen;
- pen. lopnStyle = my lineType == Graphics_DRAWN ? PS_SOLID : my lineType == Graphics_DOTTED ? PS_DOT : my lineType == Graphics_DASHED ? PS_DASH : PS_DASHDOT;
- pen. lopnWidth. x = my d_fatNonSolid ? 1 : lineWidth_pixels;
- pen. lopnWidth. y = 0;
- pen. lopnColor = my d_winForegroundColour | 0x02000000;
- newPen = CreatePenIndirect (& pen);
- }
- SelectPen (my d_gdiGraphicsContext, newPen);
- DeletePen (my d_winPen);
- my d_winPen = newPen;
- }
- #elif quartz
- static void quartzPrepareLine (GraphicsScreen me) {
- CGContextSetLineJoin (my d_macGraphicsContext, kCGLineJoinBevel); // much faster than kCGLineJoinRound
- if (my duringXor) {
- CGContextSetBlendMode (my d_macGraphicsContext, kCGBlendModeDifference);
- CGContextSetAllowsAntialiasing (my d_macGraphicsContext, false);
- CGContextSetRGBStrokeColor (my d_macGraphicsContext, 1.0, 1.0, 1.0, 1.0);
- } else {
- CGContextSetRGBStrokeColor (my d_macGraphicsContext, my d_macColour.red / 65536.0, my d_macColour.green / 65536.0, my d_macColour.blue / 65536.0, 1.0);
- }
- double lineWidth_pixels = LINE_WIDTH_IN_PIXELS (me);
- CGContextSetLineWidth (my d_macGraphicsContext, lineWidth_pixels);
- CGFloat lengths [4];
- if (my lineType == Graphics_DOTTED)
- lengths [0] = my resolution > 192 ? my resolution / 100.0 : 2,
- lengths [1] = my resolution > 192 ? my resolution / 75.0 + lineWidth_pixels : 2;
- if (my lineType == Graphics_DASHED)
- lengths [0] = my resolution > 192 ? my resolution / 25 : 6,
- lengths [1] = my resolution > 192 ? my resolution / 50.0 + lineWidth_pixels : 2;
- if (my lineType == Graphics_DASHED_DOTTED)
- lengths [0] = my resolution > 192 ? my resolution / 25 : 6,
- lengths [1] = my resolution > 192 ? my resolution / 50.0 + lineWidth_pixels : 2;
- lengths [2] = my resolution > 192 ? my resolution / 100.0 : 2;
- lengths [3] = my resolution > 192 ? my resolution / 50.0 + lineWidth_pixels : 2;
- CGContextSetLineDash (my d_macGraphicsContext, 0.0, my lineType == Graphics_DRAWN ? nullptr : lengths, my lineType == 0 ? 0 : my lineType == Graphics_DASHED_DOTTED ? 4 : 2);
- }
- static void quartzRevertLine (GraphicsScreen me) {
- if (my duringXor) {
- CGContextSetBlendMode (my d_macGraphicsContext, kCGBlendModeNormal);
- CGContextSetAllowsAntialiasing (my d_macGraphicsContext, true);
- }
- }
- static void quartzPrepareFill (GraphicsScreen me) {
- CGContextSetAlpha (my d_macGraphicsContext, 1.0);
- CGContextSetBlendMode (my d_macGraphicsContext, kCGBlendModeNormal);
- CGContextSetRGBFillColor (my d_macGraphicsContext, my d_macColour.red / 65536.0, my d_macColour.green / 65536.0, my d_macColour.blue / 65536.0, 1.0);
- }
- #endif
- /* First level. */
- void structGraphicsScreen :: v_polyline (integer numberOfPoints, double *xyDC, bool close) {
- #if cairo
- if (duringXor) {
- #if ALLOW_GDK_DRAWING
- gdkPrepareLine (this);
- for (integer i = 0; i < numberOfPoints - 1; i ++) {
- gdk_draw_line (our d_window, our d_gdkGraphicsContext,
- xyDC [i + i], xyDC [i + i + 1], xyDC [i + i + 2], xyDC [i + i + 3]);
- }
- gdkRevertLine (this);
- gdk_flush ();
- #endif
- } else {
- if (our d_cairoGraphicsContext == nullptr) return;
- cairoPrepareLine (this);
- // cairo_new_path (d_cairoGraphicsContext); // move_to() automatically creates a new path
- cairo_move_to (our d_cairoGraphicsContext, xyDC [0], xyDC [1]);
- for (integer i = 1; i < numberOfPoints; i ++) {
- cairo_line_to (our d_cairoGraphicsContext, xyDC [i + i], xyDC [i + i + 1]);
- }
- if (close) cairo_close_path (our d_cairoGraphicsContext);
- cairo_stroke (our d_cairoGraphicsContext);
- cairoRevertLine (this);
- }
- #elif gdi
- if (our d_useGdiplus && 0) {
- Gdiplus::Graphics dcplus (our d_gdiGraphicsContext);
- Gdiplus::Point *points = Melder_malloc (Gdiplus::Point, numberOfPoints + close);
- if (points) {
- for (integer i = 0; i < numberOfPoints; i ++) {
- points [i]. X = *xyDC, xyDC ++;
- points [i]. Y = *xyDC, xyDC ++;
- }
- if (close)
- points [numberOfPoints] = points [0];
- #define LINE_WIDTH_IN_PIXELS2(hjhkj) ( our resolution > 192 ? our lineWidth * (our resolution / 192.0) : our lineWidth )
- Gdiplus::Pen pen (Gdiplus::Color (255,0,0,0), LINE_WIDTH_IN_PIXELS2 (this) + 0.5);
- float dotted_line [] = { 2, 2 };
- float dashed_line [] = { 6, 2 };
- float dashed_dotted_line [] = { 6, 2, 2, 2 };
- switch (our lineType) {
- case Graphics_DOTTED:
- pen. SetDashPattern (dotted_line, 2);
- break;
- case Graphics_DASHED:
- pen. SetDashPattern (dashed_line, 2);
- break;
- case Graphics_DASHED_DOTTED:
- pen. SetDashPattern (dashed_dotted_line, 4);
- break;
- }
- dcplus. DrawLines (& pen, points, numberOfPoints + close);
- Melder_free (points);
- }
- } else {
- winPrepareLine (this);
- POINT *points = Melder_malloc (POINT, numberOfPoints + close);
- if (points) {
- for (integer i = 0; i < numberOfPoints; i ++) {
- points [i]. x = *xyDC, xyDC ++;
- points [i]. y = *xyDC, xyDC ++;
- }
- if (close)
- points [numberOfPoints] = points [0];
- Polyline (our d_gdiGraphicsContext, points, numberOfPoints + close);
- if (our d_fatNonSolid) {
- for (integer i = 0; i < numberOfPoints; i ++)
- points [i]. x -= 1;
- if (close)
- points [numberOfPoints] = points [0];
- Polyline (our d_gdiGraphicsContext, points, numberOfPoints + close);
- for (integer i = 0; i < numberOfPoints; i ++) {
- points [i]. x += 1;
- points [i]. y -= 1;
- }
- if (close)
- points [numberOfPoints] = points [0];
- Polyline (our d_gdiGraphicsContext, points, numberOfPoints + close);
- }
- Melder_free (points);
- }
- DEFAULT
- }
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareLine (this);
- CGContextBeginPath (our d_macGraphicsContext);
- trace (U"starting point ", xyDC [0], U" ", xyDC [1]);
- CGContextMoveToPoint (our d_macGraphicsContext, xyDC [0], xyDC [1]); // starts a new subpath
- for (integer i = 1; i < numberOfPoints; i ++) {
- CGContextAddLineToPoint (our d_macGraphicsContext, xyDC [i + i], xyDC [i + i + 1]);
- }
- if (close)
- CGContextClosePath (our d_macGraphicsContext); // closes only the subpath
- CGContextStrokePath (our d_macGraphicsContext);
- quartzRevertLine (this);
- GraphicsQuartz_exitDraw (this);
- #endif
- }
- void structGraphicsPostscript :: v_polyline (integer numberOfPoints, double *xyDC, bool close) {
- integer nn = 2 * numberOfPoints;
- psPrepareLine (this);
- our d_printf (our d_file, "N %.7g %.7g moveto\n", xyDC [0], xyDC [1]);
- for (integer i = 2; i < nn; i += 2) {
- double dx = xyDC [i] - xyDC [i - 2], dy = xyDC [i + 1] - xyDC [i - 1];
- our d_printf (our d_file, "%.7g %.7g L\n", dx, dy);
- }
- if (close)
- our d_printf (our d_file, "closepath ");
- our d_printf (our d_file, "stroke\n");
- psRevertLine (this);
- }
- void structGraphicsScreen :: v_fillArea (integer numberOfPoints, double *xyDC) {
- #if cairo
- if (our d_cairoGraphicsContext == nullptr) return;
- // cairo_new_path (our d_cairoGraphicsContext); // move_to() automatically creates a new path
- cairo_move_to (our d_cairoGraphicsContext, xyDC [0], xyDC [1]);
- for (integer i = 1; i < numberOfPoints; i ++)
- cairo_line_to (our d_cairoGraphicsContext, xyDC [i + i], xyDC [i + i + 1]);
- cairo_close_path (our d_cairoGraphicsContext);
- cairo_fill (our d_cairoGraphicsContext);
- #elif gdi
- MY_BRUSH
- BeginPath (our d_gdiGraphicsContext);
- MoveToEx (our d_gdiGraphicsContext, xyDC [0], xyDC [1], nullptr);
- for (integer i = 1; i < numberOfPoints; i ++)
- LineTo (our d_gdiGraphicsContext, xyDC [i + i], xyDC [i + i + 1]);
- EndPath (our d_gdiGraphicsContext);
- FillPath (our d_gdiGraphicsContext);
- DEFAULT
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareFill (this);
- CGContextBeginPath (our d_macGraphicsContext);
- CGContextMoveToPoint (our d_macGraphicsContext, xyDC [0], xyDC [1]);
- for (integer i = 1; i < numberOfPoints; i ++) {
- CGContextAddLineToPoint (our d_macGraphicsContext, xyDC [i + i], xyDC [i + i + 1]);
- }
- CGContextFillPath (our d_macGraphicsContext);
- GraphicsQuartz_exitDraw (this);
- #endif
- }
- void structGraphicsPostscript :: v_fillArea (integer numberOfPoints, double *xyDC) {
- integer nn = numberOfPoints + numberOfPoints;
- d_printf (d_file, "N %.7g %.7g M\n", xyDC [0], xyDC [1]);
- for (integer i = 2; i < nn; i += 2) {
- d_printf (d_file, "%.7g %.7g L\n", xyDC [i] - xyDC [i - 2], xyDC [i + 1] - xyDC [i - 1]);
- }
- d_printf (d_file, "closepath fill\n");
- }
- /* Second level. */
- void structGraphicsScreen :: v_rectangle (double x1DC, double x2DC, double y1DC, double y2DC) {
- ORDER_DC
- #if cairo
- if (! d_cairoGraphicsContext) return;
- double width = x2DC - x1DC, height = y1DC - y2DC;
- if (width <= 0.0 || height <= 0.0) return;
- cairoPrepareLine (this);
- cairo_rectangle (d_cairoGraphicsContext, x1DC, y2DC, width, height);
- cairo_stroke (d_cairoGraphicsContext);
- cairoRevertLine (this);
- #elif gdi
- winPrepareLine (this);
- Rectangle (our d_gdiGraphicsContext, x1DC, y2DC, x2DC + 1.0, y1DC + 1.0);
- DEFAULT
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareLine (this);
- CGContextStrokeRect (d_macGraphicsContext, CGRectMake (x1DC, y2DC, x2DC - x1DC, y1DC - y2DC));
- quartzRevertLine (this);
- GraphicsQuartz_exitDraw (this);
- #else
- double xyDC [8];
- xyDC [0] = x1DC; xyDC [1] = y1DC;
- xyDC [2] = x2DC; xyDC [3] = y1DC;
- xyDC [4] = x2DC; xyDC [5] = y2DC;
- xyDC [6] = x1DC; xyDC [7] = y2DC;
- v_polyline (5, & xyDC [0], true);
- #endif
- }
- void structGraphicsPostscript :: v_rectangle (double x1DC, double x2DC, double y1DC, double y2DC) {
- psPrepareLine (this);
- d_printf (d_file, "N %.7g %.7g M %.7g %.7g lineto %.7g %.7g lineto %.7g %.7g lineto closepath stroke\n",
- x1DC, y1DC, x2DC, y1DC, x2DC, y2DC, x1DC, y2DC);
- psRevertLine (this);
- }
- void structGraphicsScreen :: v_fillRectangle (double x1DC, double x2DC, double y1DC, double y2DC) {
- ORDER_DC
- #if cairo
- if (! d_cairoGraphicsContext) return;
- double width = x2DC - x1DC + 1.0, height = y1DC - y2DC + 1.0;
- if (width <= 0.0 || height <= 0.0) return;
- trace (U"x1DC ", x1DC, U", x2DC ", x2DC, U", y1DC ", y1DC, U", y2DC ", y2DC);
- cairo_rectangle (d_cairoGraphicsContext, round (x1DC), round (y2DC), round (width), round (height));
- cairo_fill (d_cairoGraphicsContext);
- #elif gdi
- RECT rect;
- rect. left = x1DC, rect. right = x2DC, rect. top = y2DC, rect. bottom = y1DC; /* Superfluous? */
- MY_BRUSH
- Rectangle (d_gdiGraphicsContext, x1DC, y2DC, x2DC + 1.0, y1DC + 1.0);
- DEFAULT
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareFill (this);
- CGContextFillRect (d_macGraphicsContext, CGRectMake (x1DC, y2DC, x2DC - x1DC, y1DC - y2DC));
- GraphicsQuartz_exitDraw (this);
- #else
- double xyDC [10];
- xyDC [0] = x1DC; xyDC [1] = y1DC;
- xyDC [2] = x2DC; xyDC [3] = y1DC;
- xyDC [4] = x2DC; xyDC [5] = y2DC;
- xyDC [6] = x1DC; xyDC [7] = y2DC;
- xyDC [8] = x1DC; xyDC [9] = y1DC;
- v_fillArea (5, & xyDC [0]);
- #endif
- }
- void structGraphicsPostscript :: v_fillRectangle (double x1DC, double x2DC, double y1DC, double y2DC) {
- d_printf (d_file,
- "N %.7g %.7g M %.7g %.7g lineto %.7g %.7g lineto %.7g %.7g lineto closepath fill\n",
- x1DC, y1DC, x2DC, y1DC, x2DC, y2DC, x1DC, y2DC);
- }
- void structGraphicsScreen :: v_circle (double xDC, double yDC, double rDC) {
- #if cairo
- if (duringXor) {
- #if ALLOW_GDK_DRAWING
- gdkPrepareLine (this);
- gdk_draw_arc (d_window, d_gdkGraphicsContext, false, xDC - rDC, yDC - rDC, rDC + rDC, rDC + rDC, 0, 360 * 64);
- gdkRevertLine (this);
- gdk_flush ();
- #endif
- } else {
- if (! d_cairoGraphicsContext) return;
- cairoPrepareLine (this);
- cairo_new_path (d_cairoGraphicsContext);
- cairo_arc (d_cairoGraphicsContext, xDC, yDC, rDC, 0.0, 2.0 * M_PI);
- cairo_stroke (d_cairoGraphicsContext);
- cairoRevertLine (this);
- }
- #elif gdi
- winPrepareLine (this);
- Ellipse (d_gdiGraphicsContext, xDC - rDC, yDC - rDC, xDC + rDC + 1.0, yDC + rDC + 1.0);
- DEFAULT
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareLine (this);
- CGContextBeginPath (d_macGraphicsContext);
- CGContextAddArc (d_macGraphicsContext, xDC, yDC, rDC, 0.0, NUM2pi, 0);
- CGContextStrokePath (d_macGraphicsContext);
- quartzRevertLine (this);
- GraphicsQuartz_exitDraw (this);
- #endif
- }
- void structGraphicsPostscript :: v_circle (double xDC, double yDC, double rDC) {
- psPrepareLine (this);
- d_printf (d_file, "N %ld %ld %ld C\n", (long_not_integer) xDC, (long_not_integer) yDC, (long_not_integer) rDC);
- psRevertLine (this);
- }
- void structGraphicsScreen :: v_ellipse (double x1DC, double x2DC, double y1DC, double y2DC) {
- ORDER_DC
- #if cairo
- if (! d_cairoGraphicsContext) return;
- cairoPrepareLine (this);
- cairo_new_path (d_cairoGraphicsContext);
- cairo_save (d_cairoGraphicsContext);
- cairo_translate (d_cairoGraphicsContext, 0.5 * (x2DC + x1DC), 0.5 * (y2DC + y1DC));
- cairo_scale (d_cairoGraphicsContext, 0.5 * (x2DC - x1DC), 0.5 * (y2DC - y1DC));
- cairo_arc (d_cairoGraphicsContext, 0.0, 0.0, 1.0, 0.0, 2 * M_PI);
- cairo_restore (d_cairoGraphicsContext);
- cairo_stroke (d_cairoGraphicsContext);
- cairoRevertLine (this);
- #elif gdi
- winPrepareLine (this);
- Ellipse (d_gdiGraphicsContext, x1DC, y2DC, x2DC + 1, y1DC + 1);
- DEFAULT
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareLine (this);
- NSCAssert (d_macGraphicsContext, @"nil context");
- CGContextBeginPath (d_macGraphicsContext);
- CGContextSaveGState (d_macGraphicsContext);
- CGContextTranslateCTM (d_macGraphicsContext, 0.5 * (x2DC + x1DC), 0.5 * (y2DC + y1DC));
- CGContextScaleCTM (d_macGraphicsContext, 0.5 * (x2DC - x1DC), 0.5 * (y2DC - y1DC));
- CGContextAddArc (d_macGraphicsContext, 0.0, 0.0, 1.0, 0.0, NUM2pi, 0);
- CGContextScaleCTM (d_macGraphicsContext, 2.0 / (x2DC - x1DC), 2.0 / (y2DC - y1DC));
- CGContextStrokePath (d_macGraphicsContext);
- CGContextRestoreGState (d_macGraphicsContext);
- quartzRevertLine (this);
- GraphicsQuartz_exitDraw (this);
- #endif
- }
- void structGraphicsPostscript :: v_ellipse (double x1DC, double x2DC, double y1DC, double y2DC) {
- if (x1DC != x2DC && y1DC != y2DC) { // prevent division by zero
- psPrepareLine (this);
- /* To draw an ellipse, we will have to 'translate' and 'scale' and draw a circle. */
- /* However, we have to scale back before the actual 'stroke', */
- /* because we want the normal line thickness; */
- /* So we cannot use 'gsave' and 'grestore', which clear the path (Cookbook 3). */
- d_printf (d_file, "gsave %.7g %.7g translate %.7g %.7g scale N 0 0 1 0 360 arc\n"
- " %.7g %.7g scale stroke grestore\n",
- 0.5 * (x2DC + x1DC), 0.5 * (y2DC + y1DC), 0.5 * (x2DC - x1DC), 0.5 * (y2DC - y1DC),
- 2.0 / (x2DC - x1DC), 2.0 / (y2DC - y1DC));
- psRevertLine (this);
- }
- }
- void structGraphicsScreen :: v_arc (double xDC, double yDC, double rDC, double fromAngle, double toAngle) {
- #if cairo
- if (! d_cairoGraphicsContext) return;
- cairoPrepareLine (this);
- cairo_new_path (d_cairoGraphicsContext);
- cairo_arc (d_cairoGraphicsContext, xDC, yDC, rDC, -toAngle * (M_PI / 180.0), -fromAngle * (M_PI / 180.0));
- cairo_stroke (d_cairoGraphicsContext);
- cairoRevertLine (this);
- #elif gdi
- int arcAngle = (int) toAngle - (int) fromAngle;
- POINT pt;
- if (arcAngle < 0.0) arcAngle += 360;
- winPrepareLine (this);
- MoveToEx (d_gdiGraphicsContext, xDC + rDC * cos (NUMpi / 180 * fromAngle), yDC - rDC * sin (NUMpi / 180 * fromAngle), & pt);
- AngleArc (d_gdiGraphicsContext, xDC, yDC, rDC, fromAngle, arcAngle);
- DEFAULT
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareLine (this);
- CGContextBeginPath (d_macGraphicsContext);
- CGContextAddArc (d_macGraphicsContext, xDC, yDC, rDC, NUM2pi - NUMpi / 180 * toAngle, NUM2pi - NUMpi / 180 * fromAngle, 0);
- CGContextStrokePath (d_macGraphicsContext);
- quartzRevertLine (this);
- GraphicsQuartz_exitDraw (this);
- #endif
- }
- void structGraphicsPostscript :: v_arc (double xDC, double yDC, double rDC, double fromAngle, double toAngle) {
- psPrepareLine (this);
- d_printf (d_file, "N %.7g %.7g %.7g %.7g %.7g arc stroke\n", xDC, yDC, rDC, fromAngle, toAngle);
- psRevertLine (this);
- }
- /* Third level. */
- void structGraphicsScreen :: v_fillCircle (double xDC, double yDC, double rDC) {
- #if cairo
- if (! d_cairoGraphicsContext) return;
- cairo_new_path (d_cairoGraphicsContext);
- cairo_arc (d_cairoGraphicsContext, xDC, yDC, rDC, 0, 2 * M_PI);
- cairo_fill (d_cairoGraphicsContext);
- #elif gdi
- MY_BRUSH
- /*
- * NT cannot fill circles that span less than five pixels...
- */
- Ellipse (d_gdiGraphicsContext, xDC - rDC - 1.0, yDC - rDC - 1.0, xDC + rDC + 1.0, yDC + rDC + 1.0);
- DEFAULT
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareFill (this);
- CGContextBeginPath (d_macGraphicsContext);
- CGContextAddArc (d_macGraphicsContext, xDC, yDC, rDC, 0.0, NUM2pi, 0);
- CGContextFillPath (d_macGraphicsContext);
- GraphicsQuartz_exitDraw (this);
- #else
- v_circle (xDC, yDC, rDC);
- #endif
- }
- void structGraphicsPostscript :: v_fillCircle (double xDC, double yDC, double rDC) {
- d_printf (d_file, "N %.7g %.7g %.7g FC\n", xDC, yDC, rDC);
- }
- void structGraphicsScreen :: v_fillEllipse (double x1DC, double x2DC, double y1DC, double y2DC) {
- ORDER_DC
- #if cairo
- if (! d_cairoGraphicsContext) return;
- cairo_new_path (d_cairoGraphicsContext);
- cairo_save (d_cairoGraphicsContext);
- cairo_translate (d_cairoGraphicsContext, 0.5 * (x2DC + x1DC), 0.5 * (y2DC + y1DC));
- cairo_scale (d_cairoGraphicsContext, 0.5 * (x2DC - x1DC), 0.5 * (y2DC - y1DC));
- cairo_arc (d_cairoGraphicsContext, 0.0, 0.0, 1.0, 0.0, 2.0 * M_PI);
- cairo_restore (d_cairoGraphicsContext);
- cairo_fill (d_cairoGraphicsContext);
- #elif gdi
- MY_BRUSH
- Ellipse (d_gdiGraphicsContext, x1DC, y2DC, x2DC + 1.0, y1DC + 1.0);
- DEFAULT
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareFill (this);
- NSCAssert (d_macGraphicsContext, @"nil context");
- CGContextBeginPath (d_macGraphicsContext);
- CGContextSaveGState (d_macGraphicsContext);
- CGContextTranslateCTM (d_macGraphicsContext, 0.5 * (x2DC + x1DC), 0.5 * (y2DC + y1DC));
- CGContextScaleCTM (d_macGraphicsContext, 0.5 * (x2DC - x1DC), 0.5 * (y2DC - y1DC));
- CGContextAddArc (d_macGraphicsContext, 0.0, 0.0, 1.0, 0.0, NUM2pi, 0);
- CGContextScaleCTM (d_macGraphicsContext, 2.0 / (x2DC - x1DC), 2.0 / (y2DC - y1DC));
- CGContextFillPath (d_macGraphicsContext);
- CGContextRestoreGState (d_macGraphicsContext);
- GraphicsQuartz_exitDraw (this);
- #else
- v_ellipse (x1DC, x2DC, y1DC, y2DC);
- #endif
- }
- void structGraphicsPostscript :: v_fillEllipse (double x1DC, double x2DC, double y1DC, double y2DC) {
- d_printf (d_file, "gsave %.7g %.7g translate %.7g %.7g scale N 0 0 1 FC grestore\n",
- (x2DC + x1DC) / 2.0, (y2DC + y1DC) / 2.0, (x2DC - x1DC) / 2.0, (y2DC - y1DC) / 2.0);
- }
- void structGraphicsScreen :: v_button (double x1DC, double x2DC, double y1DC, double y2DC) {
- ORDER_DC
- #if cairo
- if (x2DC <= x1DC || y1DC <= y2DC) return;
-
- cairo_save (d_cairoGraphicsContext);
- #if 0
- if (d_drawingArea) {
- // clip to drawing area
- int w, h;
- #if ALLOW_GDK_DRAWING
- gdk_drawable_get_size (d_window, & w, & h);
- #else
- w = gdk_window_get_width (d_window);
- h = gdk_window_get_height (d_window);
- #endif
- cairo_rectangle (d_cairoGraphicsContext, 0, 0, w, h);
- cairo_clip (d_cairoGraphicsContext);
- }
- #endif
- cairo_set_line_width (d_cairoGraphicsContext, 1.0);
- double left = x1DC - 0.5, right = x2DC - 0.5, top = y2DC + 0.5, bottom = y1DC + 0.5;
- double width = right - left, height = bottom - top;
- cairo_set_source_rgb (d_cairoGraphicsContext, 0.1, 0.1, 0.1); // dark grey
- cairo_rectangle (d_cairoGraphicsContext, left, top, width, height);
- cairo_stroke (d_cairoGraphicsContext);
-
- left ++, right --, top ++, bottom --, width -= 2, height -= 2;
- if (width > 0 && height > 0) {
- cairo_set_source_rgb (d_cairoGraphicsContext, 0.3, 0.3, 0.3);
- cairo_move_to (d_cairoGraphicsContext, left + 1, bottom);
- cairo_line_to (d_cairoGraphicsContext, right, bottom);
- cairo_line_to (d_cairoGraphicsContext, right, top + 1);
- cairo_stroke (d_cairoGraphicsContext);
-
- cairo_set_source_rgb (d_cairoGraphicsContext, 1.0, 1.0, 1.0);
- cairo_move_to (d_cairoGraphicsContext, left, bottom);
- cairo_line_to (d_cairoGraphicsContext, left, top);
- cairo_line_to (d_cairoGraphicsContext, right, top);
- cairo_stroke (d_cairoGraphicsContext);
- left += 0.5, right -= 0.5, top += 0.5, bottom -= 0.5, width -= 1, height -= 1;
- if (width > 0 && height > 0) {
- cairo_set_source_rgb (d_cairoGraphicsContext, 0.65, 0.65, 0.65);
- cairo_rectangle (d_cairoGraphicsContext, left, top, width, height);
- cairo_fill (d_cairoGraphicsContext);
- }
- }
- cairo_restore (d_cairoGraphicsContext);
- #elif quartz
- double width = x2DC - x1DC, height = y1DC - y2DC;
- if (width <= 0 || height <= 0) return;
- /*
- * This is pixel-precise drawing, and may therefore be different on retina displays than on 100 dpi displays.
- */
- #if 1
- bool isRetinaDisplay = [[d_macView window] backingScaleFactor] == 2.0;
- #else
- bool isRetinaDisplay = false;
- #endif
- GraphicsQuartz_initDraw (this);
- CGContextSetLineWidth (d_macGraphicsContext, 1.0);
- CGContextSetAllowsAntialiasing (d_macGraphicsContext, false); // because we want to draw by pixel
- CGFloat red = 0.3, green = 0.3, blue = 0.2;
- CGContextSetRGBStrokeColor (d_macGraphicsContext, red, green, blue, 1.0);
- if (! isRetinaDisplay)
- x1DC --;
- x1DC += 0.5, x2DC -= 0.5, y1DC -= 0.5, y2DC += 0.5, width = x2DC - x1DC, height = y1DC - y2DC;
- CGRect rect = CGRectMake (x1DC, y2DC, width, height);
- CGContextAddRect (d_macGraphicsContext, rect);
- CGContextStrokePath (d_macGraphicsContext);
- x1DC ++, x2DC --, y1DC --, y2DC ++, width = x2DC - x1DC, height = y1DC - y2DC;
- if (width > 0 && height > 0) {
- red = 0.5, green = 0.5, blue = 0.4;
- CGContextSetRGBStrokeColor (d_macGraphicsContext, red, green, blue, 1.0);
- CGContextMoveToPoint (d_macGraphicsContext, x1DC, y1DC);
- CGContextAddLineToPoint (d_macGraphicsContext, x2DC, y1DC);
- CGContextMoveToPoint (d_macGraphicsContext, x2DC, y1DC);
- CGContextAddLineToPoint (d_macGraphicsContext, x2DC, y2DC);
- CGContextStrokePath (d_macGraphicsContext);
- red = 1.0, green = 1.0, blue = 0.9;
- CGContextSetRGBStrokeColor (d_macGraphicsContext, red, green, blue, 1.0);
- CGContextMoveToPoint (d_macGraphicsContext, x1DC, y1DC);
- CGContextAddLineToPoint (d_macGraphicsContext, x1DC, y2DC);
- CGContextMoveToPoint (d_macGraphicsContext, x1DC, y2DC);
- CGContextAddLineToPoint (d_macGraphicsContext, x2DC, y2DC);
- CGContextStrokePath (d_macGraphicsContext);
- if (width > 2 && height > 2) {
- if (! isRetinaDisplay) x1DC ++, width = x2DC - x1DC, height = y1DC - y2DC;
- red = 0.75, green = 0.75, blue = 0.65;
- CGContextSetRGBFillColor (d_macGraphicsContext, red, green, blue, 1.0);
- rect = CGRectMake (x1DC, y2DC, width, height);
- CGContextFillRect (d_macGraphicsContext, rect);
- }
- }
- CGContextSetAllowsAntialiasing (d_macGraphicsContext, true);
- CGContextSetLineDash (d_macGraphicsContext, 0, nullptr, 0);
- GraphicsQuartz_exitDraw (this);
- #elif gdi
- RECT rect;
- rect. left = x1DC, rect. right = x2DC, rect. top = y2DC, rect. bottom = y1DC;
- DrawEdge (d_gdiGraphicsContext, & rect, EDGE_RAISED, BF_RECT);
- SelectPen (d_gdiGraphicsContext, GetStockPen (NULL_PEN));
- SelectBrush (d_gdiGraphicsContext, GetStockBrush (LTGRAY_BRUSH));
- Rectangle (d_gdiGraphicsContext, x1DC + 1, y2DC + 1, x2DC - 1, y1DC - 1);
- SelectPen (d_gdiGraphicsContext, GetStockPen (BLACK_PEN));
- SelectBrush (d_gdiGraphicsContext, GetStockBrush (NULL_BRUSH));
- #endif
- }
- void structGraphics :: v_roundedRectangle (double x1DC, double x2DC, double y1DC, double y2DC, double r) {
- double dy = yIsZeroAtTheTop ? - r : r;
- double xyDC [4];
- ORDER_DC
- xyDC [0] = x1DC + r;
- xyDC [1] = y1DC;
- xyDC [2] = x2DC - r;
- xyDC [3] = y1DC;
- v_polyline (2, xyDC, false);
- v_arc (x2DC - r, y1DC + dy, r, -90.0, 0.0);
- xyDC [0] = x2DC;
- xyDC [1] = y1DC + dy;
- xyDC [2] = x2DC;
- xyDC [3] = y2DC - dy;
- v_polyline (2, xyDC, false);
- v_arc (x2DC - r, y2DC - dy, r, 0.0, 90.0);
- xyDC [0] = x2DC - r;
- xyDC [1] = y2DC;
- xyDC [2] = x1DC + r;
- xyDC [3] = y2DC;
- v_polyline (2, xyDC, false);
- v_arc (x1DC + r, y2DC - dy, r, 90.0, 180.0);
- xyDC [0] = x1DC;
- xyDC [1] = y2DC - dy;
- xyDC [2] = x1DC;
- xyDC [3] = y1DC + dy;
- v_polyline (2, xyDC, false);
- v_arc (x1DC + r, y1DC + dy, r, 180.0, 270.0);
- }
- void structGraphicsScreen :: v_roundedRectangle (double x1DC, double x2DC, double y1DC, double y2DC, double r) {
- #if gdi
- double dy = yIsZeroAtTheTop ? - r : r, xyDC [4];
- ORDER_DC
- winPrepareLine (this);
- RoundRect (d_gdiGraphicsContext, x1DC, y2DC, x2DC + 1.0, y1DC + 1.0, r + r, r + r);
- DEFAULT
- return;
- #else
- GraphicsScreen_Parent :: v_roundedRectangle (x1DC, x2DC, y1DC, y2DC, r);
- #endif
- }
- /* Fourth level. */
- void structGraphics :: v_fillRoundedRectangle (double x1DC, double x2DC, double y1DC, double y2DC, double r) {
- double dy = yIsZeroAtTheTop ? - r : r;
- ORDER_DC
- v_fillCircle (x2DC - r, y1DC + dy, r);
- v_fillCircle (x2DC - r, y2DC - dy, r);
- v_fillCircle (x1DC + r, y2DC - dy, r);
- v_fillCircle (x1DC + r, y1DC + dy, r);
- v_fillRectangle (x1DC, x2DC, y1DC + dy, y2DC - dy);
- v_fillRectangle (x1DC + r, x2DC - r, y1DC, y2DC);
- }
- /* Fifth level. */
- #define wdx(x) ((x) * my scaleX + my deltaX)
- #define wdy(y) ((y) * my scaleY + my deltaY)
- void Graphics_polyline (Graphics me, integer numberOfPoints, double *xWC, double *yWC) { // base 0
- if (numberOfPoints == 0) return;
- double *xyDC;
- try {
- xyDC = Melder_malloc (double, 2 * numberOfPoints);
- } catch (MelderError) {
- /*
- * Out of memory: silently refuse to draw.
- */
- Melder_clearError ();
- return;
- }
- for (integer i = 0; i < numberOfPoints; i ++) {
- xyDC [i + i] = wdx (xWC [i]);
- xyDC [i + i + 1] = wdy (yWC [i]);
- }
- my v_polyline (numberOfPoints, xyDC, false);
- Melder_free (xyDC);
- if (my recording) {
- op (POLYLINE, 1 + 2 * numberOfPoints);
- put (numberOfPoints);
- mput (numberOfPoints, & xWC [0])
- mput (numberOfPoints, & yWC [0])
- }
- }
- void Graphics_polyline_closed (Graphics me, integer numberOfPoints, double *xWC, double *yWC) { // base 0
- if (numberOfPoints == 0) return;
- double *xyDC;
- try {
- xyDC = Melder_malloc (double, 2 * numberOfPoints);
- } catch (MelderError) {
- /*
- * Out of memory: silently refuse to draw.
- */
- Melder_clearError ();
- return;
- }
- for (integer i = 0; i < numberOfPoints; i ++) {
- xyDC [i + i] = wdx (xWC [i]);
- xyDC [i + i + 1] = wdy (yWC [i]);
- }
- my v_polyline (numberOfPoints, xyDC, true);
- Melder_free (xyDC);
- if (my recording) {
- op (POLYLINE_CLOSED, 1 + 2 * numberOfPoints);
- put (numberOfPoints);
- mput (numberOfPoints, & xWC [0])
- mput (numberOfPoints, & yWC [0])
- }
- }
- void Graphics_line (Graphics me, double x1WC, double y1WC, double x2WC, double y2WC) {
- double xyDC [4];
- trace (x1WC, U" ", y1WC, U" ", x2WC, U" ", y2WC);
- xyDC [0] = wdx (x1WC);
- xyDC [1] = wdy (y1WC);
- xyDC [2] = wdx (x2WC);
- xyDC [3] = wdy (y2WC);
- my v_polyline (2, xyDC, false);
- if (my recording) { op (LINE, 4); put (x1WC); put (y1WC); put (x2WC); put (y2WC); }
- }
- void Graphics_fillArea (Graphics me, integer numberOfPoints, double *xWC, double *yWC) {
- double *xyDC;
- try {
- xyDC = Melder_malloc (double, 2 * numberOfPoints);
- } catch (MelderError) {
- /*
- * Out of memory: silently refuse to draw.
- */
- Melder_clearError ();
- return;
- }
- for (integer i = 0; i < numberOfPoints; i ++) {
- xyDC [i + i] = wdx (xWC [i]);
- xyDC [i + i + 1] = wdy (yWC [i]);
- }
- my v_fillArea (numberOfPoints, xyDC);
- Melder_free (xyDC);
- if (my recording) {
- op (FILL_AREA, 1 + 2 * numberOfPoints);
- put (numberOfPoints);
- mput (numberOfPoints, & xWC [0])
- mput (numberOfPoints, & yWC [0])
- }
- }
- #define MACRO_Graphics_function(TYPE) \
- integer x1DC, x2DC; \
- integer clipy1 = wdy (my d_y1WC), clipy2 = wdy (my d_y2WC); \
- double dx, offsetX, translation, scale; \
- integer n = ix2 - ix1 + 1; \
- \
- if (ix2 <= ix1 || my scaleX == 0.0) return; \
- \
- dx = (x2WC - x1WC) / (n - 1); \
- offsetX = x1WC - ix1 * dx; \
- /* xDC = wdx (offsetX + i * dx) */ \
- translation = wdx (offsetX); \
- scale = dx * my scaleX; \
- x1DC = translation + ix1 * scale; \
- x2DC = translation + ix2 * scale; \
- if (n > (x2DC - x1DC + 1) * 2) { /* Optimize: draw one vertical line for each device x coordinate. */ \
- integer numberOfPixels = x2DC - x1DC + 1, k = 0; \
- integer numberOfPointsActuallyDrawn = numberOfPixels * 2; \
- double *xyDC; \
- TYPE lastMini; \
- if (numberOfPointsActuallyDrawn < 1) return; \
- xyDC = Melder_malloc_f (double, 2 * numberOfPointsActuallyDrawn); \
- for (integer i = 0; i < numberOfPixels; i ++) { \
- integer j, jmin = ix1 + i / scale, jmax = ix1 + (i + 1) / scale; \
- TYPE mini, maxi; \
- integer minDC, maxDC; \
- if (jmin > ix2) jmin = ix2; \
- if (jmax > ix2) jmax = ix2; \
- mini = yWC [STAGGER (jmin)], maxi = mini; \
- for (j = jmin + 1; j <= jmax; j ++) { /* One point overlap. */ \
- TYPE value = yWC [STAGGER (j)]; \
- if (value > maxi) maxi = value; \
- else if (value < mini) mini = value; \
- } \
- minDC = wdy (mini); \
- maxDC = wdy (maxi); \
- if (my yIsZeroAtTheTop) { \
- if (minDC > clipy1) minDC = clipy1; \
- if (maxDC > clipy1) maxDC = clipy1; \
- if (maxDC < clipy2) maxDC = clipy2; \
- if (minDC < clipy2) minDC = clipy2; \
- } else { \
- if (minDC < clipy1) minDC = clipy1; \
- if (maxDC < clipy1) maxDC = clipy1; \
- if (maxDC > clipy2) maxDC = clipy2; \
- if (minDC > clipy2) minDC = clipy2; \
- } \
- if (i == 0) { \
- if (yWC [STAGGER (jmin)] < yWC [STAGGER (jmax)]) { \
- xyDC [k ++] = x1DC; \
- xyDC [k ++] = minDC; \
- xyDC [k ++] = x1DC; \
- xyDC [k ++] = maxDC; \
- } else { \
- xyDC [k ++] = x1DC; \
- xyDC [k ++] = maxDC; \
- xyDC [k ++] = x1DC; \
- xyDC [k ++] = minDC; \
- } \
- } else if (minDC == xyDC [k - 1]) { \
- xyDC [k ++] = x1DC + i; \
- xyDC [k ++] = maxDC; \
- } else if (maxDC == xyDC [k - 1]) { \
- xyDC [k ++] = x1DC + i; \
- xyDC [k ++] = minDC; \
- } else if (mini > lastMini) { \
- xyDC [k ++] = x1DC + i; \
- xyDC [k ++] = minDC; \
- xyDC [k ++] = x1DC + i; \
- xyDC [k ++] = maxDC; \
- } else { \
- xyDC [k ++] = x1DC + i; \
- xyDC [k ++] = maxDC; \
- xyDC [k ++] = x1DC + i; \
- xyDC [k ++] = minDC; \
- } \
- lastMini = mini; \
- } \
- if (k > 1) my v_polyline (k / 2, xyDC, false); \
- Melder_free (xyDC); \
- } else { /* Normal. */ \
- double *xyDC = Melder_malloc_f (double, 2 * n); \
- for (integer i = 0; i < n; i ++) { \
- integer ix = ix1 + i; \
- integer value = wdy (yWC [STAGGER (ix)]); \
- xyDC [i + i] = translation + ix * scale; \
- if (my yIsZeroAtTheTop) { \
- if (FUNCTIONS_ARE_CLIPPED && value > clipy1) value = clipy1; \
- if (FUNCTIONS_ARE_CLIPPED && value < clipy2) value = clipy2; \
- } else { \
- if (FUNCTIONS_ARE_CLIPPED && value < clipy1) value = clipy1; \
- if (FUNCTIONS_ARE_CLIPPED && value > clipy2) value = clipy2; \
- } \
- xyDC [i + i + 1] = value; \
- } \
- my v_polyline (n, xyDC, false); \
- Melder_free (xyDC); \
- }
- void Graphics_function (Graphics me, double yWC [], integer ix1, integer ix2, double x1WC, double x2WC) {
- #define STAGGER(i) (i)
- MACRO_Graphics_function (double)
- #undef STAGGER
- if (my recording) { op (FUNCTION, 3 + n); put (n); put (x1WC); put (x2WC); mput (n, & yWC [ix1]) }
- }
- void Graphics_function16 (Graphics me, int16 yWC [], int stagger, integer ix1, integer ix2, double x1WC, double x2WC) {
- if (stagger == 1) {
- #define STAGGER(i) ((i) + (i))
- MACRO_Graphics_function (int16)
- #undef STAGGER
- } else if (stagger > 1) {
- #define STAGGER(i) ((stagger + 1) * (i))
- MACRO_Graphics_function (int16)
- #undef STAGGER
- } else {
- #define STAGGER(i) (i)
- MACRO_Graphics_function (int16)
- #undef STAGGER
- }
- }
- void Graphics_rectangle (Graphics me, double x1WC, double x2WC, double y1WC, double y2WC) {
- my v_rectangle (wdx (x1WC), wdx (x2WC), wdy (y1WC), wdy (y2WC));
- if (my recording) { op (RECTANGLE, 4); put (x1WC); put (x2WC); put (y1WC); put (y2WC); }
- }
- void Graphics_fillRectangle (Graphics me, double x1WC, double x2WC, double y1WC, double y2WC) {
- my v_fillRectangle (wdx (x1WC), wdx (x2WC), wdy (y1WC), wdy (y2WC));
- if (my recording) { op (FILL_RECTANGLE, 4); put (x1WC); put (x2WC); put (y1WC); put (y2WC); }
- }
- void Graphics_roundedRectangle (Graphics me, double x1WC, double x2WC, double y1WC, double y2WC, double r_mm) {
- my v_roundedRectangle (wdx (x1WC), wdx (x2WC), wdy (y1WC), wdy (y2WC), Melder_iceiling (r_mm * my resolution / 25.4));
- if (my recording) { op (ROUNDED_RECTANGLE, 5); put (x1WC); put (x2WC); put (y1WC); put (y2WC); put (r_mm); }
- }
- void Graphics_fillRoundedRectangle (Graphics me, double x1WC, double x2WC, double y1WC, double y2WC, double r_mm) {
- my v_fillRoundedRectangle (wdx (x1WC), wdx (x2WC), wdy (y1WC), wdy (y2WC), Melder_iceiling (r_mm * my resolution / 25.4));
- if (my recording) { op (FILL_ROUNDED_RECTANGLE, 5); put (x1WC); put (x2WC); put (y1WC); put (y2WC); put (r_mm); }
- }
- void Graphics_button (Graphics me, double x1WC, double x2WC, double y1WC, double y2WC) {
- my v_button (wdx (x1WC), wdx (x2WC), wdy (y1WC), wdy (y2WC));
- if (my recording) { op (BUTTON, 4); put (x1WC); put (x2WC); put (y1WC); put (y2WC); }
- }
- void Graphics_innerRectangle (Graphics me, double x1WC, double x2WC, double y1WC, double y2WC) {
- int dy = my yIsZeroAtTheTop ? -1 : 1;
- my v_rectangle (wdx (x1WC) + 1, wdx (x2WC) - 1, wdy (y1WC) + dy, wdy (y2WC) - dy);
- if (my recording) { op (INNER_RECTANGLE, 4); put (x1WC); put (x2WC); put (y1WC); put (y2WC); }
- }
- void Graphics_circle (Graphics me, double xWC, double yWC, double rWC) {
- my v_circle (wdx (xWC), wdy (yWC), my scaleX * rWC);
- if (my recording) { op (CIRCLE, 3); put (xWC); put (yWC); put (rWC); }
- }
- void Graphics_circle_mm (Graphics me, double xWC, double yWC, double diameter) {
- my v_circle (wdx (xWC), wdy (yWC), 0.5 * diameter * my resolution / 25.4);
- if (my recording) { op (CIRCLE_MM, 3); put (xWC); put (yWC); put (diameter); }
- }
- void Graphics_fillCircle (Graphics me, double xWC, double yWC, double rWC) {
- my v_fillCircle (wdx (xWC), wdy (yWC), Melder_iceiling (my scaleX * rWC));
- if (my recording) { op (FILL_CIRCLE, 3); put (xWC); put (yWC); put (rWC); }
- }
- void Graphics_fillCircle_mm (Graphics me, double xWC, double yWC, double diameter) {
- my v_fillCircle (wdx (xWC), wdy (yWC), Melder_iceiling (0.5 * diameter * my resolution / 25.4));
- if (my recording) { op (FILL_CIRCLE_MM, 3); put (xWC); put (yWC); put (diameter); }
- }
- void Graphics_speckle (Graphics me, double xWC, double yWC) {
- my v_fillCircle (wdx (xWC), wdy (yWC), Melder_iceiling (0.5 * my speckleSize * my resolution / 25.4));
- if (my recording) { op (SPECKLE, 2); put (xWC); put (yWC); }
- }
- void Graphics_rectangle_mm (Graphics me, double xWC, double yWC, double horSide, double vertSide) {
- integer xDC = wdx (xWC), yDC = wdy (yWC);
- integer halfHorSide = Melder_iceiling (0.5 * horSide * my resolution / 25.4);
- integer halfVertSide = Melder_iceiling (0.5 * vertSide * my resolution / 25.4);
- if (my yIsZeroAtTheTop) {
- my v_rectangle (xDC - halfHorSide, xDC + halfHorSide, yDC + halfVertSide, yDC - halfVertSide);
- } else {
- my v_rectangle (xDC - halfHorSide, xDC + halfHorSide, yDC - halfVertSide, yDC + halfVertSide);
- }
- if (my recording) { op (RECTANGLE_MM, 4); put (xWC); put (yWC); put (horSide); put (vertSide); }
- }
- void Graphics_fillRectangle_mm (Graphics me, double xWC, double yWC, double horSide, double vertSide) {
- integer xDC = wdx (xWC), yDC = wdy (yWC);
- integer halfHorSide = Melder_iceiling (0.5 * horSide * my resolution / 25.4);
- integer halfVertSide = Melder_iceiling (0.5 * vertSide * my resolution / 25.4);
- if (my yIsZeroAtTheTop) {
- my v_fillRectangle (xDC - halfHorSide, xDC + halfHorSide, yDC + halfVertSide, yDC - halfVertSide);
- } else {
- my v_fillRectangle (xDC - halfHorSide, xDC + halfHorSide, yDC - halfVertSide, yDC + halfVertSide);
- }
- if (my recording) { op (FILL_RECTANGLE_MM, 4); put (xWC); put (yWC); put (horSide); put (vertSide); }
- }
- void Graphics_ellipse (Graphics me, double x1, double x2, double y1, double y2) {
- my v_ellipse (wdx (x1), wdx (x2), wdy (y1), wdy (y2));
- if (my recording) { op (ELLIPSE, 4); put (x1); put (x2); put (y1); put (y2); }
- }
- void Graphics_fillEllipse (Graphics me, double x1, double x2, double y1, double y2) {
- my v_fillEllipse (wdx (x1), wdx (x2), wdy (y1), wdy (y2));
- if (my recording) { op (FILL_ELLIPSE, 4); put (x1); put (x2); put (y1); put (y2); }
- }
- void Graphics_arc (Graphics me, double xWC, double yWC, double rWC, double fromAngle, double toAngle) {
- my v_arc (wdx (xWC), wdy (yWC), my scaleX * rWC, fromAngle, toAngle);
- if (my recording) { op (ARC, 5); put (xWC); put (yWC); put (rWC); put (fromAngle); put (toAngle); }
- }
- void Graphics_fillArc (Graphics me, double xWC, double yWC, double rWC, double fromAngle, double toAngle) {
- my v_arc (wdx (xWC), wdy (yWC), my scaleX * rWC, fromAngle, toAngle); // NYI v_fillArc
- if (my recording) { op (FILL_ARC, 5); put (xWC); put (yWC); put (rWC); put (fromAngle); put (toAngle); }
- }
- /* Arrows. */
- void structGraphics :: v_arrowHead (double xDC, double yDC, double angle) {
- (void) xDC;
- (void) yDC;
- (void) angle;
- }
- void structGraphicsScreen :: v_arrowHead (double xDC, double yDC, double angle) {
- #if cairo
- if (! our d_cairoGraphicsContext) return;
- double size = 10.0 * our resolution * our arrowSize / 75.0; // TODO: die 75 zou dat niet de scherm resolutie moeten worden?
- cairo_new_path (our d_cairoGraphicsContext);
- cairo_move_to (our d_cairoGraphicsContext, xDC + cos ((angle + 160.0) * NUMpi / 180.0) * size, yDC - sin ((angle + 160.0) * NUMpi / 180.0) * size);
- cairo_line_to (our d_cairoGraphicsContext, xDC, yDC);
- cairo_line_to (our d_cairoGraphicsContext, xDC + cos ((angle - 160.0) * NUMpi / 180.0) * size, yDC - sin ((angle - 160.0) * NUMpi / 180.0) * size);
- cairo_close_path (our d_cairoGraphicsContext);
- cairo_fill (our d_cairoGraphicsContext);
- #elif gdi
- double size = 10.0 * our resolution * our arrowSize / 72.0;
- MY_BRUSH
- BeginPath (our d_gdiGraphicsContext);
- MoveToEx (our d_gdiGraphicsContext, xDC + cos ((angle + 160.0) * NUMpi / 180.0) * size, yDC - sin ((angle + 160.0) * NUMpi / 180.0) * size, nullptr);
- LineTo (our d_gdiGraphicsContext, xDC, yDC);
- LineTo (our d_gdiGraphicsContext, xDC + cos ((angle - 160.0) * NUMpi / 180.0) * size, yDC - sin ((angle - 160.0) * NUMpi / 180.0) * size);
- EndPath (our d_gdiGraphicsContext);
- FillPath (our d_gdiGraphicsContext);
- DEFAULT
- #elif quartz
- GraphicsQuartz_initDraw (this);
- quartzPrepareFill (this);
- NSCAssert (our d_macGraphicsContext, @"nil context");
- CGContextSaveGState (our d_macGraphicsContext);
- CGContextBeginPath (our d_macGraphicsContext);
- CGContextTranslateCTM (our d_macGraphicsContext, xDC, yDC);
- CGContextRotateCTM (our d_macGraphicsContext, - angle * NUMpi / 180.0);
- CGContextMoveToPoint (our d_macGraphicsContext, 0.0, 0.0);
- double size = 10.0 * our resolution * our arrowSize / 72.0;
- double radius = our resolution * our arrowSize / 30.0;
- CGContextAddArc (our d_macGraphicsContext, - size, 0.0, radius, - NUMpi / 3.0, NUMpi / 3.0, 0);
- CGContextAddLineToPoint (our d_macGraphicsContext, 0.0, 0.0);
- CGContextFillPath (our d_macGraphicsContext);
- CGContextRestoreGState (our d_macGraphicsContext);
- GraphicsQuartz_exitDraw (this);
- #endif
- }
- void structGraphicsPostscript :: v_arrowHead (double xDC, double yDC, double angle) {
- double length = resolution * arrowSize / 10.0, radius = resolution * arrowSize / 30.0;
- d_printf (d_file, "gsave %.7g %.7g translate %.7g rotate\n"
- "N 0 0 M %.7g 0 %.7g -60 60 arc closepath fill grestore\n", xDC, yDC, angle, - length, radius);
- }
- void Graphics_arrow (Graphics me, double x1WC, double y1WC, double x2WC, double y2WC) {
- double angle = (180.0 / NUMpi) * atan2 ((wdy (y2WC) - wdy (y1WC)) * (my yIsZeroAtTheTop ? -1.0 : 1.0), wdx (x2WC) - wdx (x1WC));
- double size = my screen ? 10.0 * my resolution * my arrowSize / 72.0 : my resolution * my arrowSize / 10;
- double xyDC [4];
- xyDC [0] = wdx (x1WC);
- xyDC [1] = wdy (y1WC);
- xyDC [2] = wdx (x2WC) + (my screen ? 0.7 : 0.6) * cos ((angle - 180.0) * NUMpi / 180.0) * size;
- xyDC [3] = wdy (y2WC) + (my yIsZeroAtTheTop ? -1.0 : 1.0) * (my screen ? 0.7 : 0.6) * sin ((angle - 180.0) * NUMpi / 180.0) * size;
- my v_polyline (2, xyDC, false);
- my v_arrowHead (wdx (x2WC), wdy (y2WC), angle);
- if (my recording) { op (ARROW, 4); put (x1WC); put (y1WC); put (x2WC); put (y2WC); }
- }
- void Graphics_doubleArrow (Graphics me, double x1WC, double y1WC, double x2WC, double y2WC) {
- double angle = (180.0 / NUMpi) * atan2 ((wdy (y2WC) - wdy (y1WC)) * (my yIsZeroAtTheTop ? -1.0 : 1.0), wdx (x2WC) - wdx (x1WC));
- double size = my screen ? 10.0 * my resolution * my arrowSize / 72.0 : my resolution * my arrowSize / 10.0;
- double xyDC [4];
- xyDC [0] = wdx (x1WC) + (my screen ? 0.7 : 0.6) * cos (angle * NUMpi / 180.0) * size;
- xyDC [1] = wdy (y1WC) + (my yIsZeroAtTheTop ? -1.0 : 1.0) * (my screen ? 0.7 : 0.6) * sin (angle * NUMpi / 180.0) * size;
- xyDC [2] = wdx (x2WC) + (my screen ? 0.7 : 0.6) * cos ((angle - 180) * NUMpi / 180.0) * size;
- xyDC [3] = wdy (y2WC) + (my yIsZeroAtTheTop ? -1.0 : 1.0) * (my screen ? 0.7 : 0.6) * sin ((angle - 180.0) * NUMpi / 180.0) * size;
- my v_polyline (2, xyDC, false);
- my v_arrowHead (wdx (x1WC), wdy (y1WC), angle + 180.0);
- //my v_polyline (2, xyDC);
- my v_arrowHead (wdx (x2WC), wdy (y2WC), angle);
- if (my recording) { op (DOUBLE_ARROW, 4); put (x1WC); put (y1WC); put (x2WC); put (y2WC); }
- }
- void Graphics_arcArrow (Graphics me, double xWC, double yWC, double rWC,
- double fromAngle, double toAngle, int arrowAtStart, int arrowAtEnd)
- {
- my v_arc (wdx (xWC), wdy (yWC), my scaleX * rWC, fromAngle, toAngle);
- if (arrowAtStart) my v_arrowHead (
- wdx (xWC + rWC * cos (fromAngle * (NUMpi / 180.0))),
- wdy (yWC + rWC * sin (fromAngle * (NUMpi / 180.0))), fromAngle - 90.0);
- if (arrowAtEnd) my v_arrowHead (
- wdx (xWC + rWC * cos (toAngle * (NUMpi / 180.0))),
- wdy (yWC + rWC * sin (toAngle * (NUMpi / 180.0))), toAngle + 90.0);
- if (my recording)
- { op (ARC_ARROW, 7); put (xWC); put (yWC); put (rWC);
- put (fromAngle); put (toAngle); put (arrowAtStart); put (arrowAtEnd); }
- }
- /* Output attributes. */
- void Graphics_setLineType (Graphics me, int lineType) {
- my lineType = lineType;
- if (my recording) { op (SET_LINE_TYPE, 1); put (lineType); }
- }
- void Graphics_setLineWidth (Graphics me, double lineWidth) {
- my lineWidth = lineWidth;
- if (my recording) { op (SET_LINE_WIDTH, 1); put (lineWidth); }
- }
- void Graphics_setArrowSize (Graphics me, double arrowSize) {
- my arrowSize = arrowSize;
- if (my recording) { op (SET_ARROW_SIZE, 1); put (arrowSize); }
- }
- void Graphics_setSpeckleSize (Graphics me, double speckleSize) {
- my speckleSize = speckleSize;
- if (my recording) { op (SET_SPECKLE_SIZE, 1); put (speckleSize); }
- }
- /* Inquiries. */
- int Graphics_inqLineType (Graphics me) { return my lineType; }
- double Graphics_inqLineWidth (Graphics me) { return my lineWidth; }
- double Graphics_inqArrowSize (Graphics me) { return my arrowSize; }
- double Graphics_inqSpeckleSize (Graphics me) { return my speckleSize; }
- /* End of file Graphics_linesAndAreas.cpp */
|