Support for g++-4.1.
[gf1.git] / fl_pile.h
blobda6bf0f45b543ea971fb9e84a6a37b62b6e5e533
1 /*
2 ** $Id$
3 */
4 /*
5 ** Copyright (C) 1998 Kurt Van den Branden
6 **
7 ** This program is free software; you can redistribute it and/or modify
8 ** it under the terms of the GNU General Public License as published by
9 ** the Free Software Foundation; either version 2 of the License, or
10 ** (at your option) any later version.
11 **
12 ** This program is distributed in the hope that it will be useful,
13 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ** GNU General Public License for more details.
16 **
17 ** You should have received a copy of the GNU General Public License
18 ** along with this program; if not, write to the Free Software
19 ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #ifndef _fl_pile_h_
23 #define _fl_pile_h_ 1
25 #include <FL/Fl_Widget.H>
27 class fl_pile : public Fl_Widget {
28 private:
29 int nrpieces; // number of pieces to draw
30 char color; // color of the pieces (o -> white, x -> black)
32 int xoffset; // variables for drawing
33 int yoffset;
34 int piecew;
35 int pieceh;
36 uchar lyellow;
38 void calcsizes ();
40 protected:
41 void draw();
43 public:
44 fl_pile (int, int, int, int, const char * = 0);
45 virtual ~fl_pile();
46 int handle (int);
47 void resize (int, int, int, int);
48 void setvalue (int);
49 void setcolor (char);
52 #endif