| Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte | 
|---|---|
| License | LGPL-2.1 | 
| Maintainer | Iñaki García Etxebarria | 
| Safe Haskell | Safe-Inferred | 
| Language | Haskell2010 | 
GI.Gtk.Interfaces.Scrollable
Description
Scrollable is an interface that is implemented by widgets with native
 scrolling ability.
To implement this interface you should override the
 Scrollable:hadjustment and Scrollable:vadjustment properties.
Creating a scrollable widget
All scrollable widgets should do the following.
- When a parent widget sets the scrollable child widget’s adjustments,
 the widget should populate the adjustments’
 Adjustment:lower,Adjustment:upper,Adjustment:step-increment,Adjustment:page-incrementandAdjustment:page-sizeproperties and connect to the valueChanged signal.
- Because its preferred size is the size for a fully expanded widget,
 the scrollable widget must be able to cope with underallocations.
 This means that it must accept any value passed to its
 WidgetClass.size_allocate() function.
- When the parent allocates space to the scrollable child widget, the widget should update the adjustments’ properties with new values.
- When any of the adjustments emits the valueChanged signal, the scrollable widget should scroll its contents.
Synopsis
- newtype Scrollable = Scrollable (ManagedPtr Scrollable)
- class (GObject o, IsDescendantOf Scrollable o) => IsScrollable o
- toScrollable :: (MonadIO m, IsScrollable o) => o -> m Scrollable
- scrollableGetBorder :: (HasCallStack, MonadIO m, IsScrollable a) => a -> m (Bool, Border)
- scrollableGetHadjustment :: (HasCallStack, MonadIO m, IsScrollable a) => a -> m Adjustment
- scrollableGetHscrollPolicy :: (HasCallStack, MonadIO m, IsScrollable a) => a -> m ScrollablePolicy
- scrollableGetVadjustment :: (HasCallStack, MonadIO m, IsScrollable a) => a -> m Adjustment
- scrollableGetVscrollPolicy :: (HasCallStack, MonadIO m, IsScrollable a) => a -> m ScrollablePolicy
- scrollableSetHadjustment :: (HasCallStack, MonadIO m, IsScrollable a, IsAdjustment b) => a -> Maybe b -> m ()
- scrollableSetHscrollPolicy :: (HasCallStack, MonadIO m, IsScrollable a) => a -> ScrollablePolicy -> m ()
- scrollableSetVadjustment :: (HasCallStack, MonadIO m, IsScrollable a, IsAdjustment b) => a -> Maybe b -> m ()
- scrollableSetVscrollPolicy :: (HasCallStack, MonadIO m, IsScrollable a) => a -> ScrollablePolicy -> m ()
- clearScrollableHadjustment :: (MonadIO m, IsScrollable o) => o -> m ()
- constructScrollableHadjustment :: (IsScrollable o, MonadIO m, IsAdjustment a) => a -> m (GValueConstruct o)
- getScrollableHadjustment :: (MonadIO m, IsScrollable o) => o -> m Adjustment
- setScrollableHadjustment :: (MonadIO m, IsScrollable o, IsAdjustment a) => o -> a -> m ()
- constructScrollableHscrollPolicy :: (IsScrollable o, MonadIO m) => ScrollablePolicy -> m (GValueConstruct o)
- getScrollableHscrollPolicy :: (MonadIO m, IsScrollable o) => o -> m ScrollablePolicy
- setScrollableHscrollPolicy :: (MonadIO m, IsScrollable o) => o -> ScrollablePolicy -> m ()
- clearScrollableVadjustment :: (MonadIO m, IsScrollable o) => o -> m ()
- constructScrollableVadjustment :: (IsScrollable o, MonadIO m, IsAdjustment a) => a -> m (GValueConstruct o)
- getScrollableVadjustment :: (MonadIO m, IsScrollable o) => o -> m Adjustment
- setScrollableVadjustment :: (MonadIO m, IsScrollable o, IsAdjustment a) => o -> a -> m ()
- constructScrollableVscrollPolicy :: (IsScrollable o, MonadIO m) => ScrollablePolicy -> m (GValueConstruct o)
- getScrollableVscrollPolicy :: (MonadIO m, IsScrollable o) => o -> m ScrollablePolicy
- setScrollableVscrollPolicy :: (MonadIO m, IsScrollable o) => o -> ScrollablePolicy -> m ()
Exported types
newtype Scrollable Source #
Memory-managed wrapper type.
Constructors
| Scrollable (ManagedPtr Scrollable) | 
Instances
| Eq Scrollable Source # | |
| Defined in GI.Gtk.Interfaces.Scrollable | |
| GObject Scrollable Source # | |
| Defined in GI.Gtk.Interfaces.Scrollable | |
| ManagedPtrNewtype Scrollable Source # | |
| Defined in GI.Gtk.Interfaces.Scrollable Methods toManagedPtr :: Scrollable -> ManagedPtr Scrollable | |
| TypedObject Scrollable Source # | |
| Defined in GI.Gtk.Interfaces.Scrollable | |
| HasParentTypes Scrollable Source # | |
| Defined in GI.Gtk.Interfaces.Scrollable | |
| IsGValue (Maybe Scrollable) Source # | Convert  | 
| Defined in GI.Gtk.Interfaces.Scrollable Methods gvalueGType_ :: IO GType gvalueSet_ :: Ptr GValue -> Maybe Scrollable -> IO () gvalueGet_ :: Ptr GValue -> IO (Maybe Scrollable) | |
| type ParentTypes Scrollable Source # | |
| Defined in GI.Gtk.Interfaces.Scrollable | |
class (GObject o, IsDescendantOf Scrollable o) => IsScrollable o Source #
Type class for types which can be safely cast to Scrollable, for instance with toScrollable.
Instances
| (GObject o, IsDescendantOf Scrollable o) => IsScrollable o Source # | |
| Defined in GI.Gtk.Interfaces.Scrollable | |
toScrollable :: (MonadIO m, IsScrollable o) => o -> m Scrollable Source #
Cast to Scrollable, for types for which this is known to be safe. For general casts, use castTo.
Methods
Click to display all available methods, including inherited ones
Methods
bindProperty, bindPropertyFull, forceFloating, freezeNotify, getv, isFloating, notify, notifyByPspec, ref, refSink, runDispose, stealData, stealQdata, thawNotify, unref, watchClosure.
Getters
getBorder, getData, getHadjustment, getHscrollPolicy, getProperty, getQdata, getVadjustment, getVscrollPolicy.
Setters
setData, setDataFull, setHadjustment, setHscrollPolicy, setProperty, setVadjustment, setVscrollPolicy.
getBorder
Arguments
| :: (HasCallStack, MonadIO m, IsScrollable a) | |
| => a | 
 | 
| -> m (Bool, Border) | Returns:  | 
Returns the size of a non-scrolling border around the outside of the scrollable. An example for this would be treeview headers. GTK can use this information to display overlaid graphics, like the overshoot indication, at the right position.
getHadjustment
scrollableGetHadjustment Source #
Arguments
| :: (HasCallStack, MonadIO m, IsScrollable a) | |
| => a | 
 | 
| -> m Adjustment | Returns: horizontal  | 
Retrieves the Adjustment used for horizontal scrolling.
getHscrollPolicy
scrollableGetHscrollPolicy Source #
Arguments
| :: (HasCallStack, MonadIO m, IsScrollable a) | |
| => a | 
 | 
| -> m ScrollablePolicy | Returns: The horizontal  | 
Gets the horizontal ScrollablePolicy.
getVadjustment
scrollableGetVadjustment Source #
Arguments
| :: (HasCallStack, MonadIO m, IsScrollable a) | |
| => a | 
 | 
| -> m Adjustment | Returns: vertical  | 
Retrieves the Adjustment used for vertical scrolling.
getVscrollPolicy
scrollableGetVscrollPolicy Source #
Arguments
| :: (HasCallStack, MonadIO m, IsScrollable a) | |
| => a | 
 | 
| -> m ScrollablePolicy | Returns: The vertical  | 
Gets the vertical ScrollablePolicy.
setHadjustment
scrollableSetHadjustment Source #
Arguments
| :: (HasCallStack, MonadIO m, IsScrollable a, IsAdjustment b) | |
| => a | 
 | 
| -> Maybe b | 
 | 
| -> m () | 
Sets the horizontal adjustment of the Scrollable.
setHscrollPolicy
scrollableSetHscrollPolicy Source #
Arguments
| :: (HasCallStack, MonadIO m, IsScrollable a) | |
| => a | 
 | 
| -> ScrollablePolicy | 
 | 
| -> m () | 
Sets the ScrollablePolicy to determine whether
 horizontal scrolling should start below the minimum width or
 below the natural width.
setVadjustment
scrollableSetVadjustment Source #
Arguments
| :: (HasCallStack, MonadIO m, IsScrollable a, IsAdjustment b) | |
| => a | 
 | 
| -> Maybe b | 
 | 
| -> m () | 
Sets the vertical adjustment of the Scrollable.
setVscrollPolicy
scrollableSetVscrollPolicy Source #
Arguments
| :: (HasCallStack, MonadIO m, IsScrollable a) | |
| => a | 
 | 
| -> ScrollablePolicy | 
 | 
| -> m () | 
Sets the ScrollablePolicy to determine whether
 vertical scrolling should start below the minimum height or
 below the natural height.
Properties
hadjustment
Horizontal Adjustment of the scrollable widget. This adjustment is
 shared between the scrollable widget and its parent.
clearScrollableHadjustment :: (MonadIO m, IsScrollable o) => o -> m () Source #
Set the value of the “hadjustment” property to Nothing.
 When overloading is enabled, this is equivalent to
clear #hadjustment
constructScrollableHadjustment :: (IsScrollable o, MonadIO m, IsAdjustment a) => a -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “hadjustment” property. This is rarely needed directly, but it is used by new.
getScrollableHadjustment :: (MonadIO m, IsScrollable o) => o -> m Adjustment Source #
Get the value of the “hadjustment” property.
 When overloading is enabled, this is equivalent to
get scrollable #hadjustment
setScrollableHadjustment :: (MonadIO m, IsScrollable o, IsAdjustment a) => o -> a -> m () Source #
Set the value of the “hadjustment” property.
 When overloading is enabled, this is equivalent to
setscrollable [ #hadjustment:=value ]
hscrollPolicy
Determines whether horizontal scrolling should start once the scrollable widget is allocated less than its minimum width or less than its natural width.
constructScrollableHscrollPolicy :: (IsScrollable o, MonadIO m) => ScrollablePolicy -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “hscroll-policy” property. This is rarely needed directly, but it is used by new.
getScrollableHscrollPolicy :: (MonadIO m, IsScrollable o) => o -> m ScrollablePolicy Source #
Get the value of the “hscroll-policy” property.
 When overloading is enabled, this is equivalent to
get scrollable #hscrollPolicy
setScrollableHscrollPolicy :: (MonadIO m, IsScrollable o) => o -> ScrollablePolicy -> m () Source #
Set the value of the “hscroll-policy” property.
 When overloading is enabled, this is equivalent to
setscrollable [ #hscrollPolicy:=value ]
vadjustment
Vertical Adjustment of the scrollable widget. This adjustment is shared
 between the scrollable widget and its parent.
clearScrollableVadjustment :: (MonadIO m, IsScrollable o) => o -> m () Source #
Set the value of the “vadjustment” property to Nothing.
 When overloading is enabled, this is equivalent to
clear #vadjustment
constructScrollableVadjustment :: (IsScrollable o, MonadIO m, IsAdjustment a) => a -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “vadjustment” property. This is rarely needed directly, but it is used by new.
getScrollableVadjustment :: (MonadIO m, IsScrollable o) => o -> m Adjustment Source #
Get the value of the “vadjustment” property.
 When overloading is enabled, this is equivalent to
get scrollable #vadjustment
setScrollableVadjustment :: (MonadIO m, IsScrollable o, IsAdjustment a) => o -> a -> m () Source #
Set the value of the “vadjustment” property.
 When overloading is enabled, this is equivalent to
setscrollable [ #vadjustment:=value ]
vscrollPolicy
Determines whether vertical scrolling should start once the scrollable widget is allocated less than its minimum height or less than its natural height.
constructScrollableVscrollPolicy :: (IsScrollable o, MonadIO m) => ScrollablePolicy -> m (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “vscroll-policy” property. This is rarely needed directly, but it is used by new.
getScrollableVscrollPolicy :: (MonadIO m, IsScrollable o) => o -> m ScrollablePolicy Source #
Get the value of the “vscroll-policy” property.
 When overloading is enabled, this is equivalent to
get scrollable #vscrollPolicy
setScrollableVscrollPolicy :: (MonadIO m, IsScrollable o) => o -> ScrollablePolicy -> m () Source #
Set the value of the “vscroll-policy” property.
 When overloading is enabled, this is equivalent to
setscrollable [ #vscrollPolicy:=value ]