X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/127f34b4b88f957e351c2118a298f7f3d193412f..73b0140015fced01ece088f4419b6fa7dbd45052:/README diff --git a/README b/README index d059892..494dcc1 100644 --- a/README +++ b/README @@ -101,6 +101,11 @@ so it is also wise to check the source code. - library prefixes are stripped from all symbols +- object properties should be available as virtual slots. A lot of + "missing" properties are manually defined as slots. Slots may be read + only or write only, but there later type are generally only + defined automatically through introspection + - the get/set part are removed from regular accessors, but retained in functions which set or retrieve multiple values @@ -113,9 +118,6 @@ so it is also wise to check the source code. - there are no gtk_*_new functions, use MAKE-INSTANCE to create widgets -- all object properties are available as virtual slots. A lot of - "missing" properties are manually defined as slots - - use CHILD-PROPERTY-VALUE or automatically defined accessors to access child properties @@ -123,6 +125,35 @@ so it is also wise to check the source code. - the only function used to connect signals is SIGNAL-CONNECT +- some additional initargs to make-instance: + + - gtk:container + + child -- adds a child to a container widget. This argument could + be a widget or a list who's first element is a widget and the rest + child properties. Multiple :child initargs may be specified + + children -- list of children to be added + + child-args -- default child properties used when adding children (during + construction only) + + show-children -- automatically make children (and grandchildren) + visible. May be overridden in a child by explicit specifying :visible or + another :show-children + + + - gtk:button + + stock -- equivalent to ":label stock :use-stock t :use-underline t" + + + - gtk:dialog + + button -- button specification applied to dialog-add-button. Multiple + :button initargs may be specified + + buttons -- list of button specifications