reset_all_objects_transparency_to_value < a starting point
This commit is contained in:
parent
46915ed62f
commit
600b6420e2
|
@ -83,6 +83,43 @@ static GtkBox *rec_ZOOM_box()
|
||||||
return ZOOM_box;
|
return ZOOM_box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* in graphics.h : struct graphics_stack_t { int id; int mode;...}
|
||||||
|
* extern struct graphics_stack_t *graphics_stack;
|
||||||
|
* in init.c : struct graphics_stack_t *graphics_stack = NULL;
|
||||||
|
* graphics_stack = g_malloc0 (sizeof(struct graphics_stack_t));
|
||||||
|
* graphics_stack = g_realloc (graphics_stack,
|
||||||
|
++graphics_stack_size *
|
||||||
|
sizeof(struct graphics_stack_t));
|
||||||
|
* memset (&graphics_stack[cur_id], 0,
|
||||||
|
* sizeof(struct graphics_stack_t));
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#define n_objects 32
|
#define n_objects 32
|
||||||
static GtkScrollbar *object_bar [n_objects];
|
static GtkScrollbar *object_bar [n_objects];
|
||||||
static GtkAdjustment *adjust_bar [n_objects];
|
static GtkAdjustment *adjust_bar [n_objects];
|
||||||
|
|
Loading…
Reference in New Issue