Top |
Functions
GcrPrompt * | gcr_system_prompt_open () |
void | gcr_system_prompt_open_async () |
GcrPrompt * | gcr_system_prompt_open_finish () |
GcrPrompt * | gcr_system_prompt_open_for_prompter () |
void | gcr_system_prompt_open_for_prompter_async () |
GcrSecretExchange * | gcr_system_prompt_get_secret_exchange () |
gboolean | gcr_system_prompt_close () |
void | gcr_system_prompt_close_async () |
gboolean | gcr_system_prompt_close_finish () |
Properties
gchar * | bus-name | Read / Write / Construct Only |
GcrSecretExchange * | secret-exchange | Read / Write |
gint | timeout-seconds | Write / Construct Only |
Types and Values
struct | GcrSystemPrompt |
struct | GcrSystemPromptClass |
#define | GCR_SYSTEM_PROMPT_ERROR |
enum | GcrSystemPromptError |
Description
A GcrPrompt implementation which calls to the system prompter to display prompts in a system modal fashion.
Since the system prompter usually only displays one prompt at a time, you
may have to wait for the prompt to be displayed. Use gcr_system_prompt_open()
or a related function to open a prompt. Since this can take a long time, you
should always check that the prompt is still needed after it is opened. A
previous prompt may have already provided the information needed and you
may no longer need to prompt.
Use gcr_system_prompt_close()
to close the prompt when you're done with it.
Functions
gcr_system_prompt_open ()
GcrPrompt * gcr_system_prompt_open (gint timeout_seconds
,GCancellable *cancellable
,GError **error
);
Opens a system prompt with the default prompter.
Most system prompters only allow showing one prompt at a time, and if
another prompt is shown then this method will block for up to
timeout_seconds
seconds. If timeout_seconds
is equal to -1, then this
will block indefinitely until the prompt can be opened. If timeout_seconds
expires, then this function will fail with a GCR_SYSTEM_PROMPT_IN_PROGRESS
error.
gcr_system_prompt_open_async ()
void gcr_system_prompt_open_async (gint timeout_seconds
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Asynchronously open a system prompt with the default system prompter.
Most system prompters only allow showing one prompt at a time, and if
another prompt is shown then this method will block for up to
timeout_seconds
seconds. If timeout_seconds
is equal to -1, then this
will block indefinitely until the prompt can be opened. If timeout_seconds
expires, then this operation will fail with a GCR_SYSTEM_PROMPT_IN_PROGRESS
error.
gcr_system_prompt_open_finish ()
GcrPrompt * gcr_system_prompt_open_finish (GAsyncResult *result
,GError **error
);
Complete an operation to asynchronously open a system prompt.
gcr_system_prompt_open_for_prompter ()
GcrPrompt * gcr_system_prompt_open_for_prompter (const gchar *prompter_name
,gint timeout_seconds
,GCancellable *cancellable
,GError **error
);
Opens a system prompt. If prompter_name is NULL
, then the default
system prompter is used.
Most system prompters only allow showing one prompt at a time, and if
another prompt is shown then this method will block for up to
timeout_seconds
seconds. If timeout_seconds
is equal to -1, then this
will block indefinitely until the prompt can be opened. If timeout_seconds
expires, then this function will fail with a GCR_SYSTEM_PROMPT_IN_PROGRESS
error.
gcr_system_prompt_open_for_prompter_async ()
void gcr_system_prompt_open_for_prompter_async (const gchar *prompter_name
,gint timeout_seconds
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Opens a system prompt asynchronously. If prompter_name is NULL
, then the
default system prompter is used.
Most system prompters only allow showing one prompt at a time, and if
another prompt is shown then this method will block for up to
timeout_seconds
seconds. If timeout_seconds
is equal to -1, then this
will block indefinitely until the prompt can be opened. If timeout_seconds
expires, then this operation will fail with a GCR_SYSTEM_PROMPT_IN_PROGRESS
error.
gcr_system_prompt_get_secret_exchange ()
GcrSecretExchange *
gcr_system_prompt_get_secret_exchange (GcrSystemPrompt *self
);
Get the current GcrSecretExchange used to transfer secrets in this prompt.
gcr_system_prompt_close ()
gboolean gcr_system_prompt_close (GcrSystemPrompt *self
,GCancellable *cancellable
,GError **error
);
Close this prompt. After calling this function, no further prompts will succeed on this object. The prompt object is not unreferenced by this function, and you must unreference it once done.
This call may block, use the gcr_system_prompt_close_async()
to perform
this action indefinitely.
Whether or not this function returns TRUE
, the system prompt object is
still closed and may not be further used.
gcr_system_prompt_close_async ()
void gcr_system_prompt_close_async (GcrSystemPrompt *self
,GCancellable *cancellable
,GAsyncReadyCallback callback
,gpointer user_data
);
Close this prompt asynchronously. After calling this function, no further methods may be called on this object. The prompt object is not unreferenced by this function, and you must unreference it once done.
This call returns immediately and completes asynchronously.
gcr_system_prompt_close_finish ()
gboolean gcr_system_prompt_close_finish (GcrSystemPrompt *self
,GAsyncResult *result
,GError **error
);
Complete operation to close this prompt.
Whether or not this function returns TRUE
, the system prompt object is
still closed and may not be further used.
Types and Values
struct GcrSystemPrompt
struct GcrSystemPrompt;
A GcrPrompt which shows a system prompt. This is usually a system modal dialog.
struct GcrSystemPromptClass
struct GcrSystemPromptClass { GObjectClass parent_class; };
The class for GcrSystemPrompt.
GCR_SYSTEM_PROMPT_ERROR
#define GCR_SYSTEM_PROMPT_ERROR (gcr_system_prompt_error_get_domain ())
The domain for errors returned from GcrSystemPrompt methods.
enum GcrSystemPromptError
No error returned by the GcrSystemPrompt is suitable for display or to the user.
If the system prompter can only show one prompt at a time, and there is
already a prompt being displayed, and the timeout waiting to open the
prompt expires, then GCR_SYSTEM_PROMPT_IN_PROGRESS
is returned.
Property Details
The “bus-name”
property
“bus-name” gchar *
The DBus bus name of the prompter to use for prompting, or NULL
for the default prompter.
Flags: Read / Write / Construct Only
Default value: NULL
The “secret-exchange”
property
“secret-exchange” GcrSecretExchange *
The GcrSecretExchange to use when transferring passwords. A default secret exchange will be used if this is not set.
Flags: Read / Write