Adding login dialog example.
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Wed, 17 Jan 2007 15:11:47 +0000 (15:11 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Wed, 17 Jan 2007 15:11:47 +0000 (15:11 +0000)
ChangeLog
examples/Makefile.am
examples/hildon-login-dialog-example.c [new file with mode: 0644]

index 97b1365..ceadc09 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2007-01-17  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
 
+       * examples/Makefile.am:
+       * examples/hildon-login-dialog-example.c: Adding login dialog example.
+
+2007-01-17  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
+
        * examples/: Moving the examples out of the directory.
 
 2007-01-17  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com> 
index aa3d440..11140f7 100644 (file)
@@ -10,7 +10,8 @@ noinst_PROGRAMS                               = hildon-window-example         \
                                          hildon-note-example           \
                                          hildon-time-picker-example    \
                                          hildon-color-chooser-example  \
-                                         hildon-color-button-example
+                                         hildon-color-button-example   \
+                                         hildon-login-dialog-example
 
 # HIldon window
 hildon_window_example_LDADD            = $(HILDON_OBJ_LIBS)
@@ -62,4 +63,9 @@ hildon_color_button_example_LDADD     = $(HILDON_OBJ_LIBS)
 hildon_color_button_example_CFLAGS     = $(HILDON_OBJ_CFLAGS)
 hildon_color_button_example_SOURCES    = hildon-color-button-example.c
 
+# Hildon color button example
+hildon_login_dialog_example_LDADD      = $(HILDON_OBJ_LIBS)
+hildon_login_dialog_example_CFLAGS     = $(HILDON_OBJ_CFLAGS)
+hildon_login_dialog_example_SOURCES    = hildon-login-dialog-example.c
+
 endif
diff --git a/examples/hildon-login-dialog-example.c b/examples/hildon-login-dialog-example.c
new file mode 100644 (file)
index 0000000..70ae32b
--- /dev/null
@@ -0,0 +1,47 @@
+/*
+ * 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 (hildon_login_dialog_new (NULL));
+    
+    hildon_login_dialog_set_message ((HildonLoginDialog *) dialog, "Enter password to login");
+
+
+    gtk_widget_show_all (GTK_WIDGET (dialog));
+    gtk_dialog_run (dialog);
+    
+    return 0;
+}
+
+