[maemo-commits] [maemo-commits] r9748 - in projects/haf/branches/hildon-libs/hildon-1: . examples
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Thu Feb 8 15:26:53 EET 2007
- Previous message: [maemo-commits] r9747 - in projects/haf/branches/gtk+/maemo-gtk-2-10: . gtk
- Next message: [maemo-commits] r9749 - projects/haf/trunk/hildon-fm
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: mdk Date: 2007-02-08 15:26:52 +0200 (Thu, 08 Feb 2007) New Revision: 9748 Added: projects/haf/branches/hildon-libs/hildon-1/examples/hildon-vvolumebar-example.c Modified: projects/haf/branches/hildon-libs/hildon-1/ChangeLog.2 projects/haf/branches/hildon-libs/hildon-1/examples/Makefile.am Log: Adding an exmaple for HildonVVolumeBar. Modified: projects/haf/branches/hildon-libs/hildon-1/ChangeLog.2 =================================================================== --- projects/haf/branches/hildon-libs/hildon-1/ChangeLog.2 2007-02-08 13:23:44 UTC (rev 9747) +++ projects/haf/branches/hildon-libs/hildon-1/ChangeLog.2 2007-02-08 13:26:52 UTC (rev 9748) @@ -1,6 +1,12 @@ 2007-02-08 Michael Dominic Kostrzewa <michael.kostrzewa at nokia.com> * examples/Makefile.am: + * examples/hildon-vvolumebar-example.c: Adding an exmaple for + HildonVVolumeBar. + +2007-02-08 Michael Dominic Kostrzewa <michael.kostrzewa at 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. Modified: projects/haf/branches/hildon-libs/hildon-1/examples/Makefile.am =================================================================== --- projects/haf/branches/hildon-libs/hildon-1/examples/Makefile.am 2007-02-08 13:23:44 UTC (rev 9747) +++ projects/haf/branches/hildon-libs/hildon-1/examples/Makefile.am 2007-02-08 13:26:52 UTC (rev 9748) @@ -18,7 +18,8 @@ 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_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 Added: projects/haf/branches/hildon-libs/hildon-1/examples/hildon-vvolumebar-example.c =================================================================== --- projects/haf/branches/hildon-libs/hildon-1/examples/hildon-vvolumebar-example.c 2007-02-08 13:23:44 UTC (rev 9747) +++ projects/haf/branches/hildon-libs/hildon-1/examples/hildon-vvolumebar-example.c 2007-02-08 13:26:52 UTC (rev 9748) @@ -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 at 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; +} + +
- Previous message: [maemo-commits] r9747 - in projects/haf/branches/gtk+/maemo-gtk-2-10: . gtk
- Next message: [maemo-commits] r9749 - projects/haf/trunk/hildon-fm
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]