Adding an exmaple for HildonVVolumeBar.
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Thu, 8 Feb 2007 13:26:52 +0000 (13:26 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Thu, 8 Feb 2007 13:26:52 +0000 (13:26 +0000)
ChangeLog.2
examples/Makefile.am
examples/hildon-vvolumebar-example.c [new file with mode: 0644]

index 001b9b5..24b3727 100644 (file)
@@ -1,6 +1,12 @@
 2007-02-08  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
 
        * examples/Makefile.am:
+       * examples/hildon-vvolumebar-example.c: Adding an exmaple for
+       HildonVVolumeBar.
+
+2007-02-08  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
+
+       * examples/Makefile.am:
        * examples/hildon-window-cmn-menu-example.c:
        * examples/hildon-window-menu-example.c: Adding a common menu example
        and a window menu example.
index 3bbeadc..a9030cc 100644 (file)
@@ -18,7 +18,8 @@ noinst_PROGRAMS                               = hildon-window-example                 \
                                          hildon-get-password-dialog-example    \
                                          hildon-set-password-dialog-example    \
                                          hildon-window-menu-example            \
-                                         hildon-window-cmn-menu-example
+                                         hildon-window-cmn-menu-example        \
+                                         hildon-vvolumebar-example
 
 # HIldon window
 hildon_window_example_LDADD            = $(HILDON_OBJ_LIBS)
@@ -105,9 +106,14 @@ hildon_window_menu_example_LDADD   = $(HILDON_OBJ_LIBS)
 hildon_window_menu_example_CFLAGS      = $(HILDON_OBJ_CFLAGS)
 hildon_window_menu__example_SOURCES    = hildon-window-menu-example.c
 
-# HIldon window common menu example
+# Hildon window common menu example
 hildon_window_cmn_menu_example_LDADD   = $(HILDON_OBJ_LIBS)
 hildon_window_cmn_menu_example_CFLAGS  = $(HILDON_OBJ_CFLAGS)
 hildon_window_cmn_menu_example_SOURCES = hildon-window-cmn-menu-example.c
 
+# Hildon vvolume bar example
+hildon_vvolumebar_example_LDADD                = $(HILDON_OBJ_LIBS)
+hildon_vvolumebar_example_CFLAGS       = $(HILDON_OBJ_CFLAGS)
+hildon_vvolumebar_example_SOURCES      = hildon-vvolumebar-example.c
+
 endif
diff --git a/examples/hildon-vvolumebar-example.c b/examples/hildon-vvolumebar-example.c
new file mode 100644 (file)
index 0000000..b1ff975
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+ * This file is a part of hildon examples
+ *
+ * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
+ *
+ * Author: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; version 2.1 of
+ * the License.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ *
+ */
+
+#include                                        <stdio.h>
+#include                                        <stdlib.h>
+#include                                        <glib.h>
+#include                                        <gtk/gtk.h>
+#include                                        "hildon.h"
+
+int
+main                                            (int argc, 
+                                                 char **args)
+{
+    gtk_init (&argc, &args);
+    
+    GtkDialog *dialog = GTK_DIALOG (gtk_dialog_new ());
+
+    HildonVVolumebar *bar = HILDON_VVOLUMEBAR (hildon_vvolumebar_new ());
+
+    gtk_box_pack_start (GTK_BOX (dialog->vbox), GTK_WIDGET (bar), FALSE, FALSE, 0);
+    gtk_dialog_add_button (dialog, "Close", GTK_RESPONSE_CLOSE);
+
+    gtk_widget_show_all (GTK_WIDGET (dialog));
+    gtk_dialog_run (dialog);
+
+    return 0;
+}
+
+