mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
72 lines
3.1 KiB
C
72 lines
3.1 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
|
|
|
/* nautilus-password-dialog.h - A use password prompting dialog widget.
|
|
|
|
Copyright (C) 1999, 2000 Eazel, Inc.
|
|
|
|
The Gnome Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
The Gnome 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the Gnome Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA.
|
|
|
|
Authors: Ramiro Estrugo <ramiro@eazel.com>
|
|
*/
|
|
|
|
#ifndef NAUTILUS_PASSWORD_DIALOG_H
|
|
#define NAUTILUS_PASSWORD_DIALOG_H
|
|
|
|
#include <libgnomeui/gnome-dialog.h>
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
#define GTK_TYPE_AUTH_DIALOG (nautilus_password_dialog_get_type ())
|
|
#define NAUTILUS_PASSWORD_DIALOG(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_AUTH_DIALOG, NautilusPasswordDialog))
|
|
#define NAUTILUS_PASSWORD_DIALOG_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_AUTH_DIALOG, NautilusPasswordDialogClass))
|
|
#define NAUTILUS_IS_PASSWORD_DIALOG(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_AUTH_DIALOG))
|
|
#define NAUTILUS_IS_PASSWORD_DIALOG_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_AUTH_DIALOG))
|
|
|
|
typedef struct _NautilusPasswordDialog NautilusPasswordDialog;
|
|
typedef struct _NautilusPasswordDialogClass NautilusPasswordDialogClass;
|
|
typedef struct _NautilusPasswordDialogDetail NautilusPasswordDialogDetail;
|
|
|
|
struct _NautilusPasswordDialog
|
|
{
|
|
GnomeDialog gnome_dialog;
|
|
|
|
NautilusPasswordDialogDetail *detail;
|
|
};
|
|
|
|
struct _NautilusPasswordDialogClass
|
|
{
|
|
GnomeDialogClass parent_class;
|
|
};
|
|
|
|
|
|
GtkType nautilus_password_dialog_get_type (void);
|
|
GtkWidget* nautilus_password_dialog_new (const char *dialog_title,
|
|
const char *username,
|
|
const char *password,
|
|
gboolean readonly_username);
|
|
gboolean nautilus_password_dialog_run_and_block (NautilusPasswordDialog *auth_dialog);
|
|
void nautilus_password_dialog_set_username (NautilusPasswordDialog *auth_dialog,
|
|
const char *username);
|
|
void nautilus_password_dialog_set_password (NautilusPasswordDialog *auth_dialog,
|
|
const char *password);
|
|
void nautilus_password_dialog_set_readonly_username (NautilusPasswordDialog *auth_dialog,
|
|
gboolean readonly);
|
|
char * nautilus_password_dialog_get_username (NautilusPasswordDialog *auth_dialog);
|
|
char * nautilus_password_dialog_get_password (NautilusPasswordDialog *auth_dialog);
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
#endif /* NAUTILUS_PASSWORD_DIALOG_H */
|