Package: gtk

GEnum gtk-corner-type

Details

Specifies which corner a child widget should be placed in when packed into a gtk-scrolled-window widget. This is effectively the opposite of where the scroll bars are placed.
(define-g-enum "GtkCornerType" gtk-corner-type
  (:export t
   :type-initializer "gtk_corner_type_get_type")
  (:top-left 0)
  (:bottom-left 1)
  (:top-right 2)
  (:bottom-right 3))  
:top-left
Place the scrollbars on the right and bottom of the widget (default behaviour).
:bottom-left
Place the scrollbars on the top and right of the widget.
:top-right
Place the scrollbars on the left and bottom of the widget.
:bottom-right
Place the scrollbars on the top and left of the widget.
 

See also

2021-10-14