| Top |
void ide_command_provider_query_async (IdeCommandProvider *self,IdeWorkspace *workspace,const gchar *typed_text,GCancellable *cancellable,GAsyncReadyCallback callback,gpointer user_data);
GPtrArray * ide_command_provider_query_finish (IdeCommandProvider *self,GAsyncResult *result,GError **error);
Completes an asynchronous request to locate all the commands matching the users typed text.
Since: 3.32
struct IdeCommandProviderInterface {
GTypeInterface parent_iface;
void (*query_async) (IdeCommandProvider *self,
IdeWorkspace *workspace,
const gchar *typed_text,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GPtrArray *(*query_finish) (IdeCommandProvider *self,
GAsyncResult *result,
GError **error);
};