Package: gtk

GFlags gtk-attach-options

Details

Denotes the expansion properties that a widget will have in a gtk-table widget when it or its parent is resized.
(define-g-flags "GtkAttachOptions" gtk-attach-options
  (:export t
   :type-initializer "gtk_attach_options_get_type")
  (:expand 1)
  (:shrink 2)
  (:fill 4))  
:expand
The widget should expand to take up any extra space in its container that has been allocated.
:shrink
The widget should shrink as and when possible.
:fill
The widget should fill the space allocated to it.
 

See also

2021-5-26