Class
GcrSystemPrompter
since: 4
Description [src]
class Gcr.SystemPrompter : GObject.Object
{
/* No available fields */
}
A prompter used by implementations of system prompts.
This is a D-Bus service which is rarely implemented. Use GcrSystemPrompt
to display system prompts.
The system prompter service responds to D-Bus requests to create system
prompts and creates GcrPrompt
type objects to display those prompts.
Pass the GType of the implementation of GcrPrompt
to
gcr_system_prompter_new()
.
Available since: 4
Constructors
gcr_system_prompter_new
Create a new system prompter service. This prompter won’t do anything unless you connect to its signals and show appropriate prompts.
since: 4
Properties
Gcr.SystemPrompter:prompt-type
The GType
for prompts created by this prompter. This must be a
GcrPrompt
implementation.
since: 4
Signals
Signals inherited from GObject (1)
GObject::notify
The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.
since: 2.0
Class structure
struct GcrSystemPrompterClass {
GObjectClass parent_class;
GcrPrompt* (* new_prompt) (
GcrSystemPrompter* self
);
}
The class for GcrSystemPrompter
.
Class members
parent_class: GObjectClass
Parent class.
new_prompt: GcrPrompt* (* new_prompt) ( GcrSystemPrompter* self )
Default handler for the
GcrSystemPrompter::new-prompt
signal.
Virtual methods
Gcr.SystemPrompterClass.new_prompt
Default handler for the GcrSystemPrompter::new-prompt
signal.
since: 4