import SDK release
[hildon] / hildon-widgets / hildon-name-password-dialog.h
1 /*
2  * This file is part of hildon-libs
3  *
4  * Copyright (C) 2005 Nokia Corporation.
5  *
6  * Contact: Luc Pionchon <luc.pionchon@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #ifndef __HILDON_NAME_PASSWORD_DIALOG_H__
26 #define __HILDON_NAME_PASSWORD_DIALOG_H__
27
28 #include <gtk/gtkdialog.h>
29
30 G_BEGIN_DECLS
31 #define HILDON_TYPE_NAME_PASSWORD_DIALOG \
32   ( hildon_name_password_dialog_get_type() )
33 #define HILDON_NAME_PASSWORD_DIALOG(obj) \
34   (GTK_CHECK_CAST (obj, HILDON_TYPE_NAME_PASSWORD_DIALOG,\
35    HildonNamePasswordDialog))
36 #define HILDON_NAME_PASSWORD_DIALOG_CLASS(klass) \
37   (GTK_CHECK_CLASS_CAST ((klass), HILDON_TYPE_NAME_PASSWORD_DIALOG, \
38   HildonNamePasswordDialogClass))
39 #define HILDON_IS_NAME_PASSWORD_DIALOG(obj) \
40   (GTK_CHECK_TYPE (obj, HILDON_TYPE_NAME_PASSWORD_DIALOG))
41 #define HILDON_IS_NAME_PASSWORD_DIALOG_CLASS(klass) \
42   (GTK_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_NAME_PASSWORD_DIALOG))
43   
44 typedef struct _HildonNamePasswordDialog HildonNamePasswordDialog;
45 typedef struct _HildonNamePasswordDialogClass
46     HildonNamePasswordDialogClass;
47
48 struct _HildonNamePasswordDialog {
49     GtkDialog parent;
50 };
51
52 struct _HildonNamePasswordDialogClass {
53     GtkDialogClass parent_class;
54 };
55
56 GType hildon_name_password_dialog_get_type(void);
57
58 GtkWidget *hildon_name_password_dialog_new(GtkWindow * parent);
59
60 GtkWidget *hildon_name_password_dialog_new_with_default(GtkWindow *parent,
61                                                         gchar *name,
62                                                         gchar *pass);
63
64 const gchar *hildon_name_password_dialog_get_name(HildonNamePasswordDialog 
65                                                   * dialog);
66                                                   
67 const gchar *hildon_name_password_dialog_get_password(HildonNamePasswordDialog
68                                                       * dialog);
69
70 G_END_DECLS
71 #endif