Package: gtk

GFlags gtk:attach-options

Declaration

(gobject:define-gflags "GtkAttachOptions" attach-options
  (:export t
   :type-initializer "gtk_attach_options_get_type")
  (:expand #.(ash 1 0))
  (:shrink #.(ash 1 1))
  (:fill #.(ash 1 2)))  

Values

: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.

Details

Denotes the expansion properties that a widget will have in a gtk:table widget when it or its parent is resized.
 

See also

2024-6-27