mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
get freq/volume widgets
This commit is contained in:
parent
335c93569b
commit
9bc26edc87
1 changed files with 4 additions and 0 deletions
|
@ -54,6 +54,8 @@ typedef struct App
|
|||
GType selected_type;
|
||||
GtkWidget *background_properties;
|
||||
GtkComboBox *background_type;
|
||||
GtkSpinButton *frequency;
|
||||
GtkHScale *volume;
|
||||
} App;
|
||||
|
||||
App *app_new (void);
|
||||
|
@ -910,6 +912,8 @@ create_ui (App * app)
|
|||
GET_WIDGET (app->generic_duration, "generic_duration", GTK_WIDGET);
|
||||
GET_WIDGET (app->background_type, "background_type", GTK_COMBO_BOX);
|
||||
GET_WIDGET (app->background_properties, "background_properties", GTK_WIDGET);
|
||||
GET_WIDGET (app->frequency, "frequency", GTK_SPIN_BUTTON);
|
||||
GET_WIDGET (app->volume, "volume", GTK_HSCALE);
|
||||
|
||||
/* get text notifications */
|
||||
|
||||
|
|
Loading…
Reference in a new issue