Documentation updates
[hildon] / examples / hildon-picker-button-example.c
index a1d2528..4d10fbf 100644 (file)
  *
  */
 
-#include <glib.h>
-#include <gtk/gtk.h>
-
-#include "hildon-program.h"
-#include "hildon-stackable-window.h"
-
-#include "hildon-picker-button.h"
+#include                                        <glib.h>
+#include                                        <gtk/gtk.h>
+#include                                        <hildon/hildon.h>
 
 static void
 on_picker_value_changed (HildonPickerButton * button, gpointer data)
@@ -30,13 +26,14 @@ on_picker_value_changed (HildonPickerButton * button, gpointer data)
 }
 
 int
-main (int argc, char **args)
+main (int argc, char **argv)
 {
   HildonProgram *program = NULL;
   GtkWidget *window = NULL;
   GtkWidget *button;
+  GtkWidget *selector;
 
-  gtk_init (&argc, &args);
+  hildon_gtk_init (&argc, &argv);
 
   program = hildon_program_get_instance ();
   g_set_application_name ("hildon-picker-button-example");
@@ -45,15 +42,23 @@ main (int argc, char **args)
   gtk_window_set_default_size (GTK_WINDOW (window), 300, 200);
   hildon_program_add_window (program, HILDON_WINDOW (window));
 
-  button = hildon_picker_button_new_text (HILDON_BUTTON_WITH_VERTICAL_VALUE);
+  button = hildon_picker_button_new (HILDON_SIZE_AUTO, HILDON_BUTTON_ARRANGEMENT_VERTICAL);
+  selector = hildon_touch_selector_new_text ();
   hildon_button_set_title (HILDON_BUTTON (button), "Continent");
 
-  hildon_picker_button_append_text (HILDON_PICKER_BUTTON (button), "America");
-  hildon_picker_button_append_text (HILDON_PICKER_BUTTON (button), "Europe");
-  hildon_picker_button_append_text (HILDON_PICKER_BUTTON (button), "Asia");
-  hildon_picker_button_append_text (HILDON_PICKER_BUTTON (button), "Africa");
-  hildon_picker_button_append_text (HILDON_PICKER_BUTTON (button),
-                                    "Australia");
+  hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), "America");
+  hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), "Europe");
+  hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), "Asia");
+  hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector), "Africa");
+  hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector),
+                                     "Australia");
+
+  /* Select any item, just to show that during selector's setting, the currently selected
+     item will be displayed in the button's value. */
+  hildon_touch_selector_set_active (HILDON_TOUCH_SELECTOR (selector), 0, 2);
+
+  hildon_picker_button_set_selector (HILDON_PICKER_BUTTON (button),
+                                     HILDON_TOUCH_SELECTOR (selector));
 
   g_signal_connect (G_OBJECT (button), "value-changed",
                     G_CALLBACK (on_picker_value_changed), NULL);