IdeApplicationTool
IdeApplicationTool
|
|
Object Hierarchy
GInterface
╰── IdeApplicationTool
Prerequisites
IdeApplicationTool requires
GObject.
Functions
IDE_TYPE_APPLICATION_TOOL
#define IDE_TYPE_APPLICATION_TOOL (ide_application_tool_get_type())
ide_application_tool_run_async ()
void
ide_application_tool_run_async (IdeApplicationTool *self
,
const gchar * const *arguments
,
GCancellable *cancellable
,
GAsyncReadyCallback callback
,
gpointer user_data
);
Asynchronously runs an application tool. This is typically done on the
command line using the ide
command.
ide_application_tool_run_finish ()
gint
ide_application_tool_run_finish (IdeApplicationTool *self
,
GAsyncResult *result
,
GError **error
);
Types and Values
struct IdeApplicationToolInterface
struct IdeApplicationToolInterface {
GTypeInterface parent_interface;
void (*run_async) (IdeApplicationTool *self,
const gchar * const *arguments,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gint (*run_finish) (IdeApplicationTool *self,
GAsyncResult *result,
GError **error);
};
IdeApplicationTool
typedef struct _IdeApplicationTool IdeApplicationTool;