|  |  |  | hildon 2.1.24 Reference Manual |  | 
|---|---|---|---|---|
| HildonLoginDialogHildonLoginDialog — A widget which allows a user to enter an username and a password. |  | 
                    HildonLoginDialog;
GtkWidget*          hildon_login_dialog_new             (GtkWindow *parent);
GtkWidget*          hildon_login_dialog_new_with_default
                                                        (GtkWindow *parent,
                                                         const gchar *name,
                                                         const gchar *password);
const gchar*        hildon_login_dialog_get_username    (HildonLoginDialog *dialog);
const gchar*        hildon_login_dialog_get_password    (HildonLoginDialog *dialog);
void                hildon_login_dialog_set_message     (HildonLoginDialog *dialog,
                                                         const gchar *msg);
  GObject
   +----GInitiallyUnowned
         +----GtkObject
               +----GtkWidget
                     +----GtkContainer
                           +----GtkBin
                                 +----GtkWindow
                                       +----GtkDialog
                                             +----HildonLoginDialog
"message" gchar* : Read / Write "password" gchar* : Read / Write "username" gchar* : Read / Write
HildonLoginDialog is used to enter a username and password when accessing a password protected area. The widget performs no input checking and is used only for retrieving the username and a password.
typedef struct _HildonLoginDialog HildonLoginDialog;
HildonLoginDialog is deprecated and should not be used in newly-written code.
GtkWidget* hildon_login_dialog_new (GtkWindow *parent);
hildon_login_dialog_new is deprecated and should not be used in newly-written code.
Creates a new HildonLoginDialog widget with Ok and Close buttons.
| parent: | the parent window of the dialog | 
| Returns : | the newly created HildonLoginDialog | 
GtkWidget*          hildon_login_dialog_new_with_default
                                                        (GtkWindow *parent,
                                                         const gchar *name,
                                                         const gchar *password);
hildon_login_dialog_new_with_default is deprecated and should not be used in newly-written code.
Same as hildon_login_dialog_new but with a default username and password.
| parent: | the parent window of the dialog | 
| name: | default username, NULL if unset | 
| password: | default password, NULL if unset | 
| Returns : | the newly created HildonLoginDialog | 
const gchar* hildon_login_dialog_get_username (HildonLoginDialog *dialog);
hildon_login_dialog_get_username is deprecated and should not be used in newly-written code.
Gets the text that's in the username entry.
| dialog: | the dialog | 
| Returns : | a pointer to the name string. You should not modify it. | 
const gchar* hildon_login_dialog_get_password (HildonLoginDialog *dialog);
hildon_login_dialog_get_password is deprecated and should not be used in newly-written code.
Gets the text that's in the password entry.
| dialog: | the dialog | 
| Returns : | a pointer to the password string. You should not modify it. | 
void hildon_login_dialog_set_message (HildonLoginDialog *dialog, const gchar *msg);
hildon_login_dialog_set_message is deprecated and should not be used in newly-written code.
Sets the optional descriptive text that is displayed on the top of the dialog.
| dialog: | the dialog | 
| msg: | the message or some other descriptive text to be set |