PhatVFanslider

Name

PhatVFanslider -- a vertical fanslider widget for selecting a floating point value from a range

Synopsis



GtkWidget*  phat_vfan_slider_new            (GtkAdjustment *adjustment);
GtkWidget*  phat_vfan_slider_new_with_range (double value,
                                             double lower,
                                             double upper);

Description

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

Details

phat_vfan_slider_new ()

GtkWidget*  phat_vfan_slider_new            (GtkAdjustment *adjustment);

Creates a new PhatVFanSlider.

adjustment :

the GtkAdjustment that the new slider will use

Returns :

a newly created PhatVFanSlider


phat_vfan_slider_new_with_range ()

GtkWidget*  phat_vfan_slider_new_with_range (double value,
                                             double lower,
                                             double upper);

Creates a new PhatVFanSlider. 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

Returns :

a newly created PhatVFanSlider

See Also

PhatFanslider provides functions for interacting with PhatVFanslider widgets.