X-Git-Url: https://git.draconx.ca/gitweb/aspectbin.git/blobdiff_plain/8e40543a4d1d56de06f8ab28eb110439f18ff06e..4b6acfc09d3af7822977aedd04dfadd47aa210d9:/aspectbin.h diff --git a/aspectbin.h b/aspectbin.h index 34bc969..b4ce50d 100644 --- a/aspectbin.h +++ b/aspectbin.h @@ -15,9 +15,9 @@ typedef struct AspectBin AspectBin; typedef struct AspectBinClass AspectBinClass; struct AspectBin { - GtkBin bin; + GtkContainer parent; - GtkWidget *body; + GtkWidget *body, *side; gfloat ratio; gfloat align; @@ -30,6 +30,7 @@ struct AspectBinClass { GType aspect_bin_get_type(void); GtkWidget *aspect_bin_new(void); -void aspect_bin_set_body_widget(AspectBin *, GtkWidget *, gfloat); +void aspect_bin_set_body(AspectBin *, GtkWidget *, gfloat); +void aspect_bin_set_side(AspectBin *, GtkWidget *); #endif