aboutsummaryrefslogtreecommitdiff
path: root/src/ka-applet-priv.h
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2013-03-31 16:25:03 +0200
committerGuido Günther <agx@sigxcpu.org>2013-03-31 16:25:03 +0200
commit589f31ff7858558b36d03e3abf24c96b3c001c50 (patch)
tree3955d872468d735adf63f7257757d4d9cb343820 /src/ka-applet-priv.h
parentwatch: ignore archive extension (diff)
parentNew upstream version 3.8.0 (diff)
downloadkrb5-auth-dialog-589f31ff7858558b36d03e3abf24c96b3c001c50.tar.gz
krb5-auth-dialog-589f31ff7858558b36d03e3abf24c96b3c001c50.tar.bz2
krb5-auth-dialog-589f31ff7858558b36d03e3abf24c96b3c001c50.zip
Merge tag 'upstream/3.8.0'
Upstream version 3.8.0 # gpg: Signature made So 31 Mär 2013 16:25:02 CEST # gpg: using DSA key 0x9FCF2CCD3F3E6426 # gpg: please do a --check-trustdb # gpg: Good signature from "Guido Günther <agx@sigxcpu.org>" # gpg: aka "Guido Guenther <agx@debian.org>" # gpg: aka "Guido Guenther <agx@sigxcpu.org>"
Diffstat (limited to 'src/ka-applet-priv.h')
-rw-r--r--src/ka-applet-priv.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/ka-applet-priv.h b/src/ka-applet-priv.h
index d571230..ffcb4a4 100644
--- a/src/ka-applet-priv.h
+++ b/src/ka-applet-priv.h
@@ -25,7 +25,6 @@
#include <glib-object.h>
#include <glib/gprintf.h>
-#include <gconf/gconf-client.h>
#include <krb5.h>
#include "config.h"
@@ -52,11 +51,21 @@ void ka_applet_set_tgt_renewable (KaApplet *self, gboolean renewable);
gboolean ka_applet_get_tgt_renewable (const KaApplet *self);
guint ka_applet_get_pw_prompt_secs (const KaApplet *self);
KaPwDialog *ka_applet_get_pwdialog (const KaApplet *self);
-GConfClient *ka_applet_get_gconf_client (const KaApplet *self);
+GSettings *ka_applet_get_settings (const KaApplet *self);
void ka_applet_signal_emit (KaApplet *self, KaAppletSignalNumber signum,
krb5_timestamp expiry);
void ka_applet_set_msg (KaApplet *self, const char *msg);
+GtkWindow* ka_applet_last_focused_window(KaApplet *self);
+/* properties */
+#define KA_PROP_NAME_PRINCIPAL "principal"
+#define KA_PROP_NAME_PK_USERID "pk-userid"
+#define KA_PROP_NAME_PK_ANCHORS "pk-anchors"
+#define KA_PROP_NAME_PW_PROMPT_MINS "pw-prompt-mins"
+#define KA_PROP_NAME_TGT_FORWARDABLE "tgt-forwardable"
+#define KA_PROP_NAME_TGT_PROXIABLE "tgt-proxiable"
+#define KA_PROP_NAME_TGT_RENEWABLE "tgt-renewable"
+#define KA_PROP_NAME_CONF_TICKETS "conf-tickets"
/* create the applet */
KaApplet *ka_applet_create (void);
bgstack15