X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=xboard.c;h=97cc06d6bcb5c5a6abcb772743f65820d9794894;hb=b5de79e79388514316d94dc9e20b257c9c98d03a;hp=0fd1d3e9160b80f61f5b2f3164376d285cc71068;hpb=8701da4fd9968fb938ae04c91e9f59a8d64fef9f;p=xboard.git diff --git a/xboard.c b/xboard.c index 0fd1d3e..97cc06d 100644 --- a/xboard.c +++ b/xboard.c @@ -61,6 +61,8 @@ #include #include #include +#include +#include #if !OMIT_SOCKETS # if HAVE_SYS_SOCKET_H @@ -202,6 +204,7 @@ extern char *getenv(); #include "childio.h" #include "xgamelist.h" #include "xhistory.h" +#include "xevalgraph.h" #include "xedittags.h" #include "menus.h" #include "board.h" @@ -2423,15 +2426,21 @@ do_flash_delay (unsigned long msec) TimeDelay(msec); } +static cairo_surface_t *cs; // to keep out of back-end :-( + void DrawBorder (int x, int y, int type) { - GC gc = lineGC; + cairo_t *cr; + DrawSeekOpen(); - if(type == 1) gc = highlineGC; else if(type == 2) gc = prelineGC; + cr = cairo_create(cs); + cairo_set_antialias(cr, CAIRO_ANTIALIAS_NONE); + cairo_rectangle(cr, x, y, squareSize+lineGap, squareSize+lineGap); + SetPen(cr, lineGap, type == 1 ? appData.highlightSquareColor : appData.premoveHighlightColor, 0); + cairo_stroke(cr); - XDrawRectangle(xDisplay, xBoardWindow, gc, x, y, - squareSize+lineGap, squareSize+lineGap); + DrawSeekClose(); } static int @@ -2452,9 +2461,6 @@ CutOutSquare (int x, int y, int *x0, int *y0, int kind) return 1; } -#include -#include - void DrawLogo (void *handle, void *logo) { @@ -2796,7 +2802,24 @@ EventProc (Widget widget, caddr_t unused, XEvent *event) // [HGM] seekgraph: some low-level drawing routines (by JC, mostly) -static cairo_surface_t *cs; // to keep out of back-end :-( +float +Color (char *col, int n) +{ + int c; + sscanf(col, "#%x", &c); + c = c >> 4*n & 255; + return c/255.; +} + +void +SetPen (cairo_t *cr, float w, char *col, int dash) +{ + static const double dotted[] = {4.0, 4.0}; + static int len = sizeof(dotted) / sizeof(dotted[0]); + cairo_set_line_width (cr, w); + cairo_set_source_rgba (cr, Color(col, 4), Color(col, 2), Color(col, 0), 1.0); + if(dash) cairo_set_dash (cr, dotted, len, 0.0); +} void DrawSeekAxis( int x, int y, int xTo, int yTo ) { @@ -2808,8 +2831,7 @@ void DrawSeekAxis( int x, int y, int xTo, int yTo ) cairo_move_to (cr, x, y); cairo_line_to(cr, xTo, yTo ); - cairo_set_line_width(cr, 2); - cairo_set_source_rgba (cr, 0.0, 0.0, 0.0, 1.0); + SetPen(cr, 2, "#000000", 0); cairo_stroke(cr); /* free memory */ @@ -2860,8 +2882,7 @@ void DrawSeekDot(int x, int y, int colorNr) else cairo_arc(cr, x, y, squareSize/8, 0.0, 2*M_PI); - cairo_set_line_width(cr, 2); - cairo_set_source_rgba(cr, 0, 0, 0,1.0); + SetPen(cr, 2, "#000000", 0); cairo_stroke_preserve(cr); switch (colorNr) { case 0: cairo_set_source_rgba(cr, 1.0, 0, 0,1.0); break; @@ -2900,10 +2921,7 @@ DrawGrid() cr = cairo_create (cs); cairo_set_antialias (cr, CAIRO_ANTIALIAS_NONE); - cairo_set_line_width (cr, lineGap); - - /* TODO: use appdata colors */ - cairo_set_source_rgba (cr, 0, 0, 0, 1.0); + SetPen(cr, lineGap, "#000000", 0); /* lines in X */ for (i = 0; i < BOARD_WIDTH + BOARD_HEIGHT + 2; i++) @@ -3917,12 +3935,10 @@ void DrawPolygon(Pnt arrow[], int nr) } if(appData.monoMode) { // should we always outline arrow? cairo_line_to(cr, arrow[0].x, arrow[0].y); - cairo_set_line_width(cr, 2); - cairo_set_source_rgba(cr, 0, 0, 0, 1.0); + SetPen(cr, 2, "#000000", 0); cairo_stroke_preserve(cr); } - cairo_set_line_width(cr, 2); - cairo_set_source_rgba(cr, 1, 1, 0, 1.0); + SetPen(cr, 2, appData.highlightSquareColor, 0); cairo_fill(cr); /* free memory */