HildonHVolumebar

HildonHVolumebar — A widget that displays a horizontal volume bar.

Synopsis


#include <hildon/hildon.h>

                    HildonHVolumebar;
GtkWidget*          hildon_hvolumebar_new               (void);

Object Hierarchy

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

Implemented Interfaces

HildonHVolumebar implements AtkImplementorIface and GtkBuildable.

Description

The HildonHVolumebar widget displays a horizontal volume bar that allows increasing or decreasing volume within a pre-defined range, and includes a mute icon which users can click to mute the sound.

Note

HildonHVolumeBar has been deprecated since Hildon 2.2 See Migrating Volume Bars section to know how to migrate this deprecated widget.

Example 19. 

GtkWidget *volbar = hildon_hvolumebar_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

HildonHVolumebar

typedef struct _HildonHVolumebar HildonHVolumebar;

Warning

HildonHVolumebar is deprecated and should not be used in newly-written code.


hildon_hvolumebar_new ()

GtkWidget*          hildon_hvolumebar_new               (void);

Warning

hildon_hvolumebar_new is deprecated and should not be used in newly-written code.

Creates a new HildonHVolumebar widget.

Returns : a new HildonHVolumebar

See Also

HildonVVolumebar, HildonVolumebar