]> Pileus Git - grits/blobdiff - src/aweather-plugin.c
Example plugin in GObject plugin format
[grits] / src / aweather-plugin.c
index 8546f76bc8ab8cef4046503ca7d35b1fd2c555ba..87cf35cb1e59620e5ed45041d69bd42114239391 100644 (file)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <glib.h>
 
 
+#include "aweather-plugin.h"
+
+static void aweather_plugin_base_init(gpointer g_class)
+{
+       static gboolean is_initialized = FALSE;
+       if (!is_initialized) {
+               /* add properties and signals to the interface here */
+               is_initialized = TRUE;
+       }
+}
+
+GType aweather_plugin_get_type()
+{
+       static GType type = 0;
+       if (type == 0) {
+               static const GTypeInfo info = {
+                       sizeof(AWeatherPluginInterface),
+                       aweather_plugin_base_init,
+                       NULL,
+               };
+               type = g_type_register_static(G_TYPE_INTERFACE,
+                               "AWeatherPlugin", &info, 0);
+       }
+       return type;
+}
+
+void aweather_plugin_expose(AWeatherPlugin *self)
+{
+       g_return_if_fail(AWEATHER_IS_PLUGIN(self));
+       AWEATHER_PLUGIN_GET_INTERFACE(self)->expose(self);
+}