PhatHFanSlider

Name

PhatHFanSlider -- a horizontal fanslider widget for selecting a floating point value from a range

Synopsis



struct      PhatHFanSlider;
GtkWidget*  phat_hfan_slider_new            (GtkAdjustment *adjustment);
GtkWidget*  phat_hfan_slider_new_with_range (double value,
                                             double lower,
                                             double upper,
                                             double step);


Object Hierarchy


  GObject
   +----GtkObject
         +----GtkWidget
               +----PhatFanSlider
                     +----PhatHFanSlider

Implemented Interfaces

PhatHFanSlider implements AtkImplementorIface.

Description

PhatHFanSlider is a wrapper class for the abstract base PhatFanSlider class. After creating a PhatHFanSlider, you should interact with it using the PhatFanSlider functions.

Details

struct PhatHFanSlider

struct PhatHFanSlider;

The PhatHFanSlider-struct struct contains private data only, and should be accessed using the functions below.


phat_hfan_slider_new ()

GtkWidget*  phat_hfan_slider_new            (GtkAdjustment *adjustment);

Creates a new PhatHFanSlider.

adjustment :

the GtkAdjustment that the new slider will use

Returns :

a newly created PhatHFanSlider


phat_hfan_slider_new_with_range ()

GtkWidget*  phat_hfan_slider_new_with_range (double value,
                                             double lower,
                                             double upper,
                                             double step);

Creates a new PhatHFanSlider. The slider will create a new GtkAdjustment from value, lower, and upper. If these parameters represent a bogus configuration, the program will terminate.

value :

the initial value the new slider should have

lower :

the lowest value the new slider will allow

upper :

the highest value the new slider will allow

step :

increment added or subtracted when sliding

Returns :

a newly created PhatHFanSlider

See Also

PhatFanSlider provides functions for interacting with PhatHFanSlider widgets.