gtk3-0.12.5.6: Binding to the Gtk+ graphical user interface library.

Portabilityportable (depends on GHC)
Stabilityprovisional
Maintainergtk2hs-users@lists.sourceforge.net
Safe HaskellNone

Graphics.UI.Gtk.Abstract.Range

Contents

Description

Base class for widgets which visualize an adjustment

Synopsis

Description

For signals regarding a change in the range or increments, refer to Adjustment which is contained in the Range object.

Class Hierarchy

 | GObject
 | +----Object
 | +----Widget
 | +----Range
 | +----Scale
 | +----Scrollbar

Types

Methods

rangeGetAdjustmentSource

Arguments

:: RangeClass self 
=> self 
-> IO Adjustment

returns a Adjustment

Get the Adjustment which is the "model" object for Range. See rangeSetAdjustment for details.

rangeSetAdjustmentSource

Arguments

:: RangeClass self 
=> self 
-> Adjustment

adjustment - a Adjustment

-> IO () 

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.

rangeGetInvertedSource

Arguments

:: RangeClass self 
=> self 
-> IO Bool

returns True if the range is inverted

Gets the value set by rangeSetInverted.

rangeSetInvertedSource

Arguments

:: RangeClass self 
=> self 
-> Bool

setting - True to invert the range

-> IO () 

Ranges normally move from lower to higher values as the slider moves from top to bottom or left to right. Inverted ranges have higher values at the top or on the right rather than on the bottom or left.

rangeGetValueSource

Arguments

:: RangeClass self 
=> self 
-> IO Double

returns current value of the range.

Gets the current value of the range.

rangeSetValueSource

Arguments

:: RangeClass self 
=> self 
-> Double

value - new value of the range

-> IO () 

Sets the current value of the range; if the value is outside the minimum or maximum range values, it will be clamped to fit inside them. The range emits the valueChanged signal if the value changes.

rangeSetIncrementsSource

Arguments

:: RangeClass self 
=> self 
-> Double

step - step size

-> Double

page - page size

-> IO () 

Sets the step and page sizes for the range. The step size is used when the user clicks the Scrollbar arrows or moves Scale via arrow keys. The page size is used for example when moving via Page Up or Page Down keys.

rangeSetRangeSource

Arguments

:: RangeClass self 
=> self 
-> Double

min - minimum range value

-> Double

max - maximum range value

-> IO () 

Sets the allowable values in the Range, and clamps the range value to be between min and max. (If the range has a non-zero page size, it is clamped between min and max - page-size.)

data SensitivityType Source

Determines how Gtk+ handles the sensitivity of stepper arrows at the end of range widgets.

rangeSetLowerStepperSensitivitySource

Arguments

:: RangeClass self 
=> self 
-> SensitivityType

sensitivity - the lower stepper's sensitivity policy.

-> IO () 

Sets the sensitivity policy for the stepper that points to the 'lower' end of the Range's adjustment.

  • Available since Gtk+ version 2.10

rangeGetLowerStepperSensitivitySource

Arguments

:: RangeClass self 
=> self 
-> IO SensitivityType

returns The lower stepper's sensitivity policy.

Gets the sensitivity policy for the stepper that points to the 'lower' end of the Range's adjustment.

  • Available since Gtk+ version 2.10

rangeSetUpperStepperSensitivitySource

Arguments

:: RangeClass self 
=> self 
-> SensitivityType

sensitivity - the upper stepper's sensitivity policy.

-> IO () 

Sets the sensitivity policy for the stepper that points to the 'upper' end of the Range's adjustment.

  • Available since Gtk+ version 2.10

rangeGetUpperStepperSensitivitySource

Arguments

:: RangeClass self 
=> self 
-> IO SensitivityType

returns The upper stepper's sensitivity policy.

Gets the sensitivity policy for the stepper that points to the 'upper' end of the Range's adjustment.

  • Available since Gtk+ version 2.10

rangeGetMinSliderSizeSource

Arguments

:: RangeClass self 
=> self 
-> IO Int

returns The minimum size of the range's slider.

This function is useful mainly for Range subclasses.

See rangeSetMinSliderSize.

rangeGetRangeRect :: RangeClass self => self -> IO RectangleSource

This function returns the area that contains the range's trough and its steppers, in DrawWindow coordinates.

This function is useful mainly for Range subclasses.

rangeGetSliderRange :: RangeClass self => self -> IO (Maybe (Int, Int))Source

This function returns sliders range along the long dimension, in DrawWindow coordinates.

This function is useful mainly for Range subclasses.

rangeGetSliderSizeFixedSource

Arguments

:: RangeClass self 
=> self 
-> IO Bool

returns whether the range's slider has a fixed size.

This function is useful mainly for Range subclasses.

See rangeSetSliderSizeFixed.

rangeSetMinSliderSize :: RangeClass self => self -> Bool -> IO ()Source

Sets the minimum size of the range's slider.

This function is useful mainly for Range subclasses.

rangeSetSliderSizeFixedSource

Arguments

:: RangeClass self 
=> self 
-> Bool

sizeFixed True to make the slider size constant

-> IO () 

Sets whether the range's slider has a fixed size, or a size that depends on it's adjustment's page size.

This function is useful mainly for Range subclasses.

Attributes

rangeAdjustment :: RangeClass self => Attr self AdjustmentSource

The Adjustment that contains the current value of this range object.

rangeInverted :: RangeClass self => Attr self BoolSource

Invert direction slider moves to increase range value.

Default value: False

rangeLowerStepperSensitivity :: RangeClass self => Attr self SensitivityTypeSource

The sensitivity policy for the stepper that points to the adjustment's lower side.

Default value: SensitivityAuto

rangeUpperStepperSensitivity :: RangeClass self => Attr self SensitivityTypeSource

The sensitivity policy for the stepper that points to the adjustment's upper side.

Default value: SensitivityAuto

rangeValue :: RangeClass self => Attr self DoubleSource

'value' property. See rangeGetValue and rangeSetValue

rangeSliderSizeFixed :: RangeClass self => Attr self BoolSource

Wheter range's slikder has a fixed size, or a size that depends on it's adjustment's page size.

rangeMinSliderSize :: RangeClass self => ReadWriteAttr self Int BoolSource

Get/Set sliders range along the long dimension, in DrawWindow coordinates.

Signals

adjustBounds :: RangeClass self => Signal self (Double -> IO ())Source

valueChanged :: RangeClass self => Signal self (IO ())Source

Emitted when the range value changes.

changeValue :: RangeClass self => Signal self (ScrollType -> Double -> IO Bool)Source

The changeValue signal is emitted when a scroll action is performed on a range. It allows an application to determine the type of scroll event that occurred and the resultant new value. The application can handle the event itself and return True to prevent further processing. Or, by returning False, it can pass the event to other handlers until the default Gtk+ handler is reached.

The value parameter is unrounded. An application that overrides the changeValue signal is responsible for clamping the value to the desired number of decimal digits.

It is not possible to use delayed update policies in an overridden changeValue handler.

  • Available since Gtk+ version 2.6

Deprecated