[gnome-photos/wip/uajain/de_dup: 5/11] utils: Add an extension point for PhotosSharePoint sub-classes



commit 0f55e0eaa98d7212f01846cee6a4091320d5068c
Author: Debarshi Ray <debarshir gnome org>
Date:   Fri Jul 1 21:11:33 2016 +0200

    utils: Add an extension point for PhotosSharePoint sub-classes
    
    https://bugzilla.gnome.org/show_bug.cgi?id=751181

 src/photos-utils.c |    4 ++++
 src/photos-utils.h |    1 +
 2 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/src/photos-utils.c b/src/photos-utils.c
index c139977..2d2e56e 100644
--- a/src/photos-utils.c
+++ b/src/photos-utils.c
@@ -52,6 +52,7 @@
 #include "photos-operation-png-guess-sizes.h"
 #include "photos-operation-saturation.h"
 #include "photos-query.h"
+#include "photos-share-point.h"
 #include "photos-source.h"
 #include "photos-tool.h"
 #include "photos-tool-colors.h"
@@ -859,6 +860,9 @@ photos_utils_ensure_extension_points (void)
       extension_point = g_io_extension_point_register (PHOTOS_BASE_ITEM_EXTENSION_POINT_NAME);
       g_io_extension_point_set_required_type (extension_point, PHOTOS_TYPE_BASE_ITEM);
 
+      extension_point = g_io_extension_point_register (PHOTOS_SHARE_POINT_EXTENSION_POINT_NAME);
+      g_io_extension_point_set_required_type (extension_point, PHOTOS_TYPE_SHARE_POINT);
+
       extension_point = g_io_extension_point_register (PHOTOS_TOOL_EXTENSION_POINT_NAME);
       g_io_extension_point_set_required_type (extension_point, PHOTOS_TYPE_TOOL);
 
diff --git a/src/photos-utils.h b/src/photos-utils.h
index 1821811..1f5f994 100644
--- a/src/photos-utils.h
+++ b/src/photos-utils.h
@@ -50,6 +50,7 @@ G_BEGIN_DECLS
 #define PHOTOS_ORIENTATION_TOP (photos_utils_orientation_top_quark ())
 
 #define PHOTOS_BASE_ITEM_EXTENSION_POINT_NAME "photos-base-item"
+#define PHOTOS_SHARE_POINT_EXTENSION_POINT_NAME "photos-share-point"
 #define PHOTOS_TOOL_EXTENSION_POINT_NAME "photos-tool"
 #define PHOTOS_TRACKER_CONTROLLER_EXTENSION_POINT_NAME "photos-tracker-controller"
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]