Interface
IdeCommand
Prerequisite
In order to implement Command, your type must inherit fromIdeObject
.
Interface structure
struct IdeCommandInterface {
GTypeInterface parent_iface;
gchar* (* get_title) (
IdeCommand* self
);
gchar* (* get_subtitle) (
IdeCommand* self
);
void (* run_async) (
IdeCommand* self,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
);
gboolean (* run_finish) (
IdeCommand* self,
GAsyncResult* result,
GError** error
);
gint (* get_priority) (
IdeCommand* self
);
GIcon* (* get_icon) (
IdeCommand* self
);
}
No description available.
Interface members
parent_iface |
|
No description available. | |
get_title |
|
No description available. | |
get_subtitle |
|
No description available. | |
run_async |
|
No description available. | |
run_finish |
|
No description available. | |
get_priority |
|
No description available. | |
get_icon |
|
No description available. |