got the board to render halfway
[xboard.git] / interface.h
1 /* GTK widgets */
2 GtkBuilder              *builder=NULL;
3
4 GtkWidget               *GUI_Window=NULL;
5 GtkWidget               *GUI_Board=NULL;
6 GtkWidget               *GUI_Whiteclock=NULL;
7 GtkWidget               *GUI_Blackclock=NULL;
8 gint                     boardWidth;
9 gint                     boardHeight;
10
11
12 GdkPixbuf               *WindowIcon=NULL;
13 GdkPixbuf               *WhiteIcon=NULL;
14 GdkPixbuf               *BlackIcon=NULL;
15 GdkPixbuf               *SVGpieces[100];
16 GdkPixbuf               *SVGLightSquare=NULL;
17 GdkPixbuf               *SVGDarkSquare=NULL;
18 GdkPixbuf               *SVGNeutralSquare=NULL;
19
20 GdkCursor               *BoardCursor=NULL;
21
22
23 GdkPixbuf *load_pixbuf(char *filename);