00001 #ifndef __bush_H_ 00002 #define __bush_H_ 00003 00004 typedef struct bush bush_t; 00005 00006 struct bush { 00007 redraw_man_t *rdman; 00008 coord_t *root_coord; 00009 00010 coord_t *layer1; 00011 00012 shape_t *rect5210; 00013 00014 paint_t *rect5210_fill; 00015 00016 shape_t *path3367; 00017 00018 paint_t *path3367_fill; 00019 00020 paint_t *path3367_stroke; 00021 00022 shape_t *path2589; 00023 00024 paint_t *path2589_fill; 00025 00026 paint_t *path2589_stroke; 00027 00028 shape_t *path2591; 00029 00030 paint_t *path2591_fill; 00031 00032 paint_t *path2591_stroke; 00033 00034 shape_t *path3363; 00035 00036 paint_t *path3363_fill; 00037 00038 paint_t *path3363_stroke; 00039 00040 shape_t *path3365; 00041 00042 paint_t *path3365_fill; 00043 00044 paint_t *path3365_stroke; 00045 00046 shape_t *path3369; 00047 00048 paint_t *path3369_fill; 00049 00050 paint_t *path3369_stroke; 00051 00052 shape_t *path3371; 00053 00054 paint_t *path3371_fill; 00055 00056 paint_t *path3371_stroke; 00057 }; 00058 00059 extern bush_t *bush_new(redraw_man_t *rdman, coord_t *parent_coord); 00060 extern void bush_free(bush_t *obj); 00061 00062 #endif /* __bush_H_ */