]> git.decadent.org.uk Git - ion3.git/blob - mod_tiling/panehandle.h
5556c91855b578dabea325a561198293fdba0008
[ion3.git] / mod_tiling / panehandle.h
1 /*
2  * ion/mod_tiling/panehandle.h
3  *
4  * Copyright (c) Tuomo Valkonen 1999-2008. 
5  *
6  * See the included file LICENSE for details.
7  */
8
9 #ifndef ION_PANEWS_PANEHANDLE_H
10 #define ION_PANEWS_PANEHANDLE_H
11
12 #include <ioncore/common.h>
13 #include <ioncore/gr.h>
14
15 INTRCLASS(WPaneHandle);
16
17 #include "splitfloat.h"
18
19 DECLCLASS(WPaneHandle){
20     WWindow wwin;
21     GrBrush *brush;
22     GrBorderLine bline;
23     GrBorderWidths bdw;
24     WSplitFloat *splitfloat;
25 };
26
27 extern bool panehandle_init(WPaneHandle *pwin, 
28                             WWindow *parent, const WFitParams *fp);
29 extern WPaneHandle *create_panehandle(WWindow *parent, const WFitParams *fp);
30
31 #endif /* ION_PANEWS_PANEHANDLE_H */