Virtualvfunc_close a prompt
Virtualvfunc_Prompts for confirmation asking a cancel/continue style question. Set the various properties on the prompt before calling this method to represent the question correctly.
This method will return immediately and complete asynchronously.
Optionalcancellable: Gio.Cancellableoptional cancellation object
Optionalcallback: AsyncReadyCallback<Gcr.Prompt.Interface>called when the operation completes
Virtualvfunc_Complete an operation to prompt for confirmation.
Gcr.PromptReply.CONTINUE will be returned if the user confirms the prompt. The
return value will also be Gcr.PromptReply.CANCEL if the user cancels or if
an error occurs. Check the error argument to tell the difference.
asynchronous result passed to callback
Virtualvfunc_Prompts for password. Set the various properties on the prompt before calling this method to explain which password should be entered.
This method will return immediately and complete asynchronously.
Optionalcancellable: Gio.Cancellableoptional cancellation object
Optionalcallback: AsyncReadyCallback<Gcr.Prompt.Interface>called when the operation completes
Virtualvfunc_Complete an operation to prompt for a password.
A password will be returned if the user enters a password successfully. The returned password is valid until the next time a method is called to display another prompt.
null will be returned if the user cancels or if an error occurs. Check the
error argument to tell the difference.
asynchronous result passed to callback
Interface for implementing Prompt. Contains only the virtual methods that need to be implemented.