Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-password-view.h
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ev-password-view.h')
-rw-r--r--shell/ev-password-view.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/shell/ev-password-view.h b/shell/ev-password-view.h
index d59d62b..7f2670b 100644
--- a/shell/ev-password-view.h
+++ b/shell/ev-password-view.h
@@ -21,6 +21,7 @@
#define __EV_PASSWORD_VIEW_H__
#include <gtk/gtk.h>
+#include <gio/gio.h>
G_BEGIN_DECLS
@@ -34,6 +35,7 @@ typedef struct _EvPasswordViewPrivate EvPasswordViewPrivate;
struct _EvPasswordView {
GtkViewport parent_instance;
+
EvPasswordViewPrivate *priv;
};
@@ -44,11 +46,13 @@ struct _EvPasswordViewClass {
void (*unlock) (EvPasswordView *self);
};
-GType ev_password_view_get_type (void) G_GNUC_CONST;
-GtkWidget *ev_password_view_new (void);
-void ev_password_view_set_file_name (EvPasswordView *password_view,
- const char *file_name);
-
+GType ev_password_view_get_type (void) G_GNUC_CONST;
+GtkWidget *ev_password_view_new (GtkWindow *parent);
+void ev_password_view_set_uri (EvPasswordView *password_view,
+ const char *uri);
+void ev_password_view_ask_password (EvPasswordView *password_view);
+const gchar *ev_password_view_get_password (EvPasswordView *password_view);
+GPasswordSave ev_password_view_get_password_save_flags (EvPasswordView *password_view);
G_END_DECLS