25783b497166d39d95709cbc1124fbbede9696d5
[hildon] / hildon-widgets / hildon-name-password-dialog.h
1 /*
2  * This file is part of hildon-libs
3  *
4  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Michael Dominic Kostrzewa <michael.kostrzewa@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; version 2.1 of
11  * the License.
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 #define HILDON_NAME_PASSWORD_DIALOG_TITLE "frw_ti_get_user_name_and_pwd"
45 #define HILDON_NAME_PASSWORD_DIALOG_NAME \
46          "frw_ti_get_user_name_and_pwd_enter_user_name"
47 #define HILDON_NAME_PASSWORD_DIALOG_PASSWORD \
48          "frw_ti_get_user_name_and_pwd_enter_pwd"
49 #define HILDON_NAME_PASSWORD_DIALOG_OK "frw_bd_get_user_name_and_pwd_ok"
50 #define HILDON_NAME_PASSWORD_DIALOG_CANCEL \
51          "frw_bd_get_user_name_and_pwd_cancel"
52
53   
54 typedef struct _HildonNamePasswordDialog HildonNamePasswordDialog;
55 typedef struct _HildonNamePasswordDialogClass
56     HildonNamePasswordDialogClass;
57
58 struct _HildonNamePasswordDialog {
59     GtkDialog parent;
60 };
61
62 struct _HildonNamePasswordDialogClass {
63     GtkDialogClass parent_class;
64 };
65
66 GType hildon_name_password_dialog_get_type(void) G_GNUC_CONST;
67
68 GtkWidget *hildon_name_password_dialog_new(GtkWindow * parent);
69
70 GtkWidget *hildon_name_password_dialog_new_with_default(GtkWindow *parent,
71                                                         const gchar *name,
72                                                         const gchar *pass);
73
74
75 const gchar *hildon_name_password_dialog_get_name(HildonNamePasswordDialog 
76                                                   * dialog);
77                                                   
78 const gchar *hildon_name_password_dialog_get_password(HildonNamePasswordDialog
79                                                       * dialog);
80
81 void hildon_name_password_dialog_set_domain(HildonNamePasswordDialog *dialog, 
82                                             const gchar *domain);
83
84 G_END_DECLS
85 #endif /* __HILDON_NAME_PASSWORD_DIALOG_H__ */