Make xevalgraph.c backend
[xboard.git] / evalgraph.h
1 /*
2  * evalgraph.h -- Evaluation Graph window
3  *
4  * Copyright 2000, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
5  *
6  * Enhancements Copyright 2005 Alessandro Scotti
7  *
8  * ------------------------------------------------------------------------
9  *
10  * GNU XBoard is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or (at
13  * your option) any later version.
14  *
15  * GNU XBoard is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see http://www.gnu.org/licenses/.  *
22  *
23  *------------------------------------------------------------------------
24  ** See the file ChangeLog for a revision history.
25  */
26
27 #define MIN_HIST_WIDTH  4
28 #define MAX_HIST_WIDTH  10
29
30 typedef enum { PEN_NONE, PEN_BLACK, PEN_DOTTED, PEN_BLUEDOTTED, PEN_BOLDWHITE, PEN_BOLDBLACK, PEN_BACKGD } PenType;
31
32 #define FILLED 1
33 #define OPEN   0
34
35 /* Module globals */
36 ChessProgramStats_Move * currPvInfo;
37 extern int currFirst;
38 extern int currLast;
39 extern int currCurrent;
40
41 extern int nWidthPB;
42 extern int nHeightPB;
43
44 extern int MarginX;
45 extern int MarginW;
46 extern int MarginH;
47
48 // calls from back-end part into front-end part
49 void DrawSegment( int x, int y, int *lastX, int *lastY, int p );
50 void DrawRectangle( int left, int top, int right, int bottom, int side, int style );
51 void DrawEvalText(char *buf, int cbBuf, int y);
52 void EvalGraphSet P(( int first, int last, int current, ChessProgramStats_Move * pvInfo ));
53
54 // calls of front-end part into back-end part
55 extern int GetMoveIndexFromPoint( int x, int y );
56 extern void PaintEvalGraph( void );
57 extern char *MakeEvalTitle( char *title );
58