use system libraries
[xkbdbthid.git] / xkbd-0.8.15_bthid / src / box.h
1 /* 
2    xkbd - xlib based onscreen keyboard.
3
4    Copyright (C) 2001 Matthew Allum
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15 */
16
17 #ifndef _BOX_H_
18 #define _BOX_H_
19
20 box* box_new(void);
21 button *box_add_button(box *bx, button *but);
22 box *box_add_box(box *bx, box *b);
23 void box_list_contents(box *bx);
24
25 #endif
26
27