HildonVVolumebar

HildonVVolumebar — A widget that displays a vertical volume bar.

Synopsis




            HildonVVolumebar;
GtkWidget*  hildon_vvolumebar_new           (void);

Object Hierarchy


  GObject
   +----GInitiallyUnowned
         +----GtkObject
               +----GtkWidget
                     +----GtkContainer
                           +----HildonVolumebar
                                 +----HildonVVolumebar

Implemented Interfaces

HildonVVolumebar implements GtkBuildable and AtkImplementorIface.

Description

HildonVVolumebar is a subclass of HildonVolumebar. It displays a vertical volume bar that allows increasing or decreasing volume within a predefined range, and muting when users click the mute icon.

Here is an example that creates a vertical volume bar and connects both its signals.

Example 5. HildonVVolumebar example

GtkWidget *volbar = hildon_vvolumebar_new();
g_signal_connect (G_OBJECT (volbar), "mute_toggled", G_CALLBACK (mute_toggle), NULL);
g_signal_connect (G_OBJECT (volbar), "level_changed", G_CALLBACK (level_change), NULL);


Details

HildonVVolumebar

typedef struct _HildonVVolumebar HildonVVolumebar;


hildon_vvolumebar_new ()

GtkWidget*  hildon_vvolumebar_new           (void);

Creates a new HildonVVolumebar widget.

Returns : a new HildonVVolumebar

See Also

HildonVolumebar, HildonHVolumebar