Just package:gtk

Justification for label and maybe other widgets (text?)
'focusHadjustment' property. See containerGetFocusHAdjustment and containerSetFocusHAdjustment
'focusVadjustment' property. See containerGetFocusVAdjustment and containerSetFocusVAdjustment
Retrieves the horizontal focus adjustment for the container. See containerSetFocusHAdjustment.
Retrieves the vertical focus adjustment for the container. See containerSetFocusVAdjustment.
Hooks up an adjustment to focus handling in a container, so when a child of the container is focused, the adjustment is scrolled to show that widget. This function sets the horizontal alignment. See scrolledWindowGetHAdjustment for a typical way of obtaining the adjustment and containerSetFocusVAdjustment for setting the vertical adjustment. The adjustments have to be in pixel units and in the same coordinate system as the allocation for immediate children of the container.
Hooks up an adjustment to focus handling in a container, so when a child of the container is focused, the adjustment is scrolled to show that widget. This function sets the vertical alignment. See scrolledWindowGetVAdjustment for a typical way of obtaining the adjustment and containerSetFocusHAdjustment for setting the horizontal adjustment. The adjustments have to be in pixel units and in the same coordinate system as the allocation for immediate children of the container.
Emitted when the range is adjusted by user action. Note the value can be outside the bounds of the range since it depends on the mouse position. Usually you should use onRangeValueChanged / afterRangeValueChanged instead.
Emitted when the range is adjusted by user action. Note the value can be outside the bounds of the range since it depends on the mouse position. Usually you should use onRangeValueChanged / afterRangeValueChanged instead.
The Adjustment that contains the current value of this range object.
Get the Adjustment which is the "model" object for Range. See rangeSetAdjustment for details.
Sets the adjustment to be used as the "model" object for this range widget. The adjustment indicates the current range value, the minimum and maximum range values, the step/page increments used for keybindings and scrolling, and the page size. The page size is normally 0 for Scale and nonzero for Scrollbar, and indicates the size of the visible area of the widget being scrolled. The page size affects the size of the scrollbar slider.
For widgets that support scrolling, sets the scroll adjustments and returns True. For widgets that don't support scrolling, does nothing and returns False. Widgets that don't support scrolling can be scrolled by placing them in a Viewport, which does support scrolling. Removed in Gtk3.
The Adjustment that contains the current value of this scale button object.
Returns the justification of the label. See labelSetJustify.
The alignment of the lines in the text of the label relative to each other. This does NOT affect the alignment of the label within its allocation. Default value: JustifyLeft
Sets the alignment of the lines in the text of the label relative to each other. JustifyLeft is the default value when the widget is first created with labelNew. If you instead want to set the alignment of the label as a whole, use miscSetAlignment instead. labelSetJustify has no effect on labels containing only a single line.
The adjustment that holds the value of the spinbutton.
Get the adjustment associated with a SpinButton
Replaces the Adjustment associated with the spin button.