From 1c69f467452c8f34d099019d463980ad57811192 Mon Sep 17 00:00:00 2001 From: Perberos Date: Thu, 1 Dec 2011 23:00:56 -0300 Subject: moving from https://github.com/perberos/mate-desktop-environment --- src/polkitmateauthenticationdialog.h | 77 ++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 src/polkitmateauthenticationdialog.h (limited to 'src/polkitmateauthenticationdialog.h') diff --git a/src/polkitmateauthenticationdialog.h b/src/polkitmateauthenticationdialog.h new file mode 100644 index 0000000..debcf1b --- /dev/null +++ b/src/polkitmateauthenticationdialog.h @@ -0,0 +1,77 @@ +/* + * Copyright (C) 2009 Red Hat, Inc. + * + * 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; either + * version 2 of the License, or (at your option) any later version. + * + * 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 Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + * + * Author: David Zeuthen + */ + +#ifndef __POLKIT_MATE_AUTHENTICATION_DIALOG_H +#define __POLKIT_MATE_AUTHENTICATION_DIALOG_H + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#define POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG (polkit_mate_authentication_dialog_get_type ()) +#define POLKIT_MATE_AUTHENTICATION_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG, PolkitMateAuthenticationDialog)) +#define POLKIT_MATE_AUTHENTICATION_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG, PolkitMateAuthenticationDialogClass)) +#define POLKIT_MATE_IS_AUTHENTICATION_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG)) +#define POLKIT_MATE_IS_AUTHENTICATION_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), POLKIT_MATE_TYPE_AUTHENTICATION_DIALOG)) + +typedef struct _PolkitMateAuthenticationDialog PolkitMateAuthenticationDialog; +typedef struct _PolkitMateAuthenticationDialogClass PolkitMateAuthenticationDialogClass; +typedef struct _PolkitMateAuthenticationDialogPrivate PolkitMateAuthenticationDialogPrivate; + +struct _PolkitMateAuthenticationDialog +{ + GtkDialog parent_instance; + PolkitMateAuthenticationDialogPrivate *priv; +}; + +struct _PolkitMateAuthenticationDialogClass +{ + GtkDialogClass parent_class; +}; + +GType polkit_mate_authentication_dialog_get_type (void); +GtkWidget *polkit_mate_authentication_dialog_new (const gchar *action_id, + const gchar *vendor, + const gchar *vendor_url, + const gchar *icon_name, + const gchar *message_markup, + PolkitDetails *details, + gchar **users); +gchar *polkit_mate_authentication_dialog_get_selected_user (PolkitMateAuthenticationDialog *dialog); +gboolean polkit_mate_authentication_dialog_run_until_user_is_selected (PolkitMateAuthenticationDialog *dialog); +gchar *polkit_mate_authentication_dialog_run_until_response_for_prompt (PolkitMateAuthenticationDialog *dialog, + const gchar *prompt, + gboolean echo_chars, + gboolean *was_cancelled, + gboolean *new_user_selected); +gboolean polkit_mate_authentication_dialog_cancel (PolkitMateAuthenticationDialog *dialog); +void polkit_mate_authentication_dialog_indicate_error (PolkitMateAuthenticationDialog *dialog); +void polkit_mate_authentication_dialog_set_info_message (PolkitMateAuthenticationDialog *dialog, + const gchar *info_markup); + +#ifdef __cplusplus +} +#endif + +#endif /* __POLKIT_MATE_AUTHENTICATION_DIALOG_H */ -- cgit v1.2.1