libsecret/library/secret-prompt.h

78 lines
3.1 KiB
C
Raw Normal View History

/* libsecret - GLib wrapper for Secret Service
*
* Copyright 2011 Collabora Ltd.
*
* This program 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 licence or (at
* your option) any later version.
*
* See the included COPYING file for more information.
*/
2012-02-02 12:40:47 +00:00
#if !defined (__SECRET_INSIDE_HEADER__) && !defined (SECRET_COMPILATION)
#error "Only <secret/secret.h> can be included directly."
#endif
#ifndef __SECRET_PROMPT_H__
#define __SECRET_PROMPT_H__
#include <gio/gio.h>
#include "secret-types.h"
2012-01-11 06:44:32 +00:00
G_BEGIN_DECLS
#define SECRET_TYPE_PROMPT (secret_prompt_get_type ())
#define SECRET_PROMPT(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), SECRET_TYPE_PROMPT, SecretPrompt))
#define SECRET_PROMPT_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), SECRET_TYPE_PROMPT, SecretPromptClass))
#define SECRET_IS_PROMPT(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), SECRET_TYPE_PROMPT))
#define SECRET_IS_PROMPT_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), SECRET_TYPE_PROMPT))
#define SECRET_PROMPT_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), SECRET_TYPE_PROMPT, SecretPromptClass))
typedef struct _SecretPromptClass SecretPromptClass;
typedef struct _SecretPromptPrivate SecretPromptPrivate;
struct _SecretPrompt {
GDBusProxy parent_instance;
2012-02-02 13:59:59 +00:00
/*< private >*/
SecretPromptPrivate *pv;
};
struct _SecretPromptClass {
GDBusProxyClass parent_class;
2012-02-02 13:59:59 +00:00
/*< private >*/
gpointer padding[8];
};
GType secret_prompt_get_type (void) G_GNUC_CONST;
2012-01-11 06:44:32 +00:00
gboolean secret_prompt_run (SecretPrompt *self,
2012-02-02 12:40:47 +00:00
gulong window_id,
GCancellable *cancellable,
GError **error);
gboolean secret_prompt_perform_sync (SecretPrompt *self,
2012-02-02 12:40:47 +00:00
gulong window_id,
GCancellable *cancellable,
GError **error);
void secret_prompt_perform (SecretPrompt *self,
2012-02-02 12:40:47 +00:00
gulong window_id,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
2012-01-11 06:44:32 +00:00
gboolean secret_prompt_perform_finish (SecretPrompt *self,
2012-02-02 12:40:47 +00:00
GAsyncResult *result,
GError **error);
GVariant * secret_prompt_get_result_value (SecretPrompt *self,
2012-02-02 12:40:47 +00:00
const GVariantType *expected_type);
G_END_DECLS
2012-02-02 12:40:47 +00:00
#endif /* __SECRET_PROMPT_H___ */