[libshumate] map: Make viewport a read-only property
- From: Corentin Noël <corentinnoel src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libshumate] map: Make viewport a read-only property
- Date: Thu, 14 Oct 2021 06:50:25 +0000 (UTC)
commit 42294ee0c8c8d75a27c6406bb6f841809479a1b7
Author: James Westman <james jwestman net>
Date: Thu Oct 14 00:47:19 2021 -0500
map: Make viewport a read-only property
shumate/shumate-map.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
---
diff --git a/shumate/shumate-map.c b/shumate/shumate-map.c
index 64d3b4d..deb57c2 100644
--- a/shumate/shumate-map.c
+++ b/shumate/shumate-map.c
@@ -72,6 +72,7 @@ enum
PROP_ANIMATE_ZOOM,
PROP_STATE,
PROP_GO_TO_DURATION,
+ PROP_VIEWPORT,
N_PROPERTIES
};
@@ -656,6 +657,10 @@ shumate_map_get_property (GObject *object,
g_value_set_uint (value, priv->go_to_duration);
break;
+ case PROP_VIEWPORT:
+ g_value_set_object (value, priv->viewport);
+ break;
+
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
@@ -774,6 +779,19 @@ shumate_map_class_init (ShumateMapClass *klass)
0, G_MAXUINT, 0,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS);
+ /**
+ * ShumateMap:viewport:
+ *
+ * The viewport, which contains information about the center, rotation, zoom,
+ * etc. of the map.
+ */
+ obj_properties[PROP_VIEWPORT] =
+ g_param_spec_object ("viewport",
+ "Viewport",
+ "Viewport",
+ SHUMATE_TYPE_VIEWPORT,
+ G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
+
g_object_class_install_properties (object_class,
N_PROPERTIES,
obj_properties);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]