From 9bc26edc87de557d129d377d99eaae0ff8dcd697 Mon Sep 17 00:00:00 2001 From: Brandon Lewis Date: Tue, 3 Aug 2010 14:38:42 +0200 Subject: [PATCH] get freq/volume widgets --- tests/examples/ges-ui.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/examples/ges-ui.c b/tests/examples/ges-ui.c index aa52d56bdc..8fe7fa0e80 100644 --- a/tests/examples/ges-ui.c +++ b/tests/examples/ges-ui.c @@ -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 */