/* ide-object.h * * Copyright (C) 2015 Christian Hergert * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef IDE_OBJECT_H #define IDE_OBJECT_H #include #include "ide-types.h" G_BEGIN_DECLS G_DECLARE_DERIVABLE_TYPE (IdeObject, ide_object, IDE, OBJECT, GObject) #define IDE_TYPE_OBJECT (ide_object_get_type()) struct _IdeObjectClass { GObjectClass parent; void (*destroy) (IdeObject *self); IdeContext *(*get_context) (IdeObject *self); void (*set_context) (IdeObject *self, IdeContext *context); }; IdeContext *ide_object_get_context (IdeObject *self); void ide_object_set_context (IdeObject *self, IdeContext *context); void ide_object_new_for_extension_async (GType interface_gtype, GCompareDataFunc sort_priority_func, gpointer sort_proirity_data, int io_priority, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data, const gchar *first_property, ...); void ide_object_new_async (const gchar *extension_point, int io_priority, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data, const gchar *first_property, ...); IdeObject *ide_object_new_finish (GAsyncResult *result, GError **error); gboolean ide_object_hold (IdeObject *self); void ide_object_release (IdeObject *self); void ide_object_notify_in_main (gpointer instance, GParamSpec *pspec); G_END_DECLS #endif /* IDE_OBJECT_H */