summaryrefslogtreecommitdiffstats
path: root/src/desktop.cpp
diff options
context:
space:
mode:
authorBryce Harrington <bryce@bryceharrington.org>2006-05-29 23:48:58 +0000
committerbryce <bryce@users.sourceforge.net>2006-05-29 23:48:58 +0000
commit0f9de0b739f87c48cad5347b91ef58152997d7c1 (patch)
treef5f89d89603b40afcae64068b3bd56a58ddb8968 /src/desktop.cpp
parentUpdate. (diff)
downloadinkscape-0f9de0b739f87c48cad5347b91ef58152997d7c1.tar.gz
inkscape-0f9de0b739f87c48cad5347b91ef58152997d7c1.zip
Documentation
(bzr r1075)
Diffstat (limited to 'src/desktop.cpp')
-rw-r--r--src/desktop.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/desktop.cpp b/src/desktop.cpp
index 17ce0907c..7d9904342 100644
--- a/src/desktop.cpp
+++ b/src/desktop.cpp
@@ -376,6 +376,8 @@ SPObject *SPDesktop::currentLayer() const
}
/**
+ * Sets the current layer of the desktop.
+ *
* Make \a object the top layer.
*/
void SPDesktop::setCurrentLayer(SPObject *object) {
@@ -516,12 +518,17 @@ SPDesktop::push_event_context (GtkType type, const gchar *config, unsigned int k
_event_context_changed_signal.emit (this, ec);
}
+/**
+ * Sets the coordinate status to a given point
+ */
void
SPDesktop::set_coordinate_status (NR::Point p) {
_widget->setCoordinateStatus(p);
}
-
+/**
+ * \see sp_document_item_from_list_at_point_bottom()
+ */
SPItem *
SPDesktop::item_from_list_at_point_bottom (const GSList *list, NR::Point const p) const
{
@@ -529,6 +536,9 @@ SPDesktop::item_from_list_at_point_bottom (const GSList *list, NR::Point const p
return sp_document_item_from_list_at_point_bottom (dkey, SP_GROUP (doc()->root), list, p);
}
+/**
+ * \see sp_document_item_at_point()
+ */
SPItem *
SPDesktop::item_at_point (NR::Point const p, bool into_groups, SPItem *upto) const
{
@@ -536,6 +546,9 @@ SPDesktop::item_at_point (NR::Point const p, bool into_groups, SPItem *upto) con
return sp_document_item_at_point (doc(), dkey, p, into_groups, upto);
}
+/**
+ * \see sp_document_group_at_point()
+ */
SPItem *
SPDesktop::group_at_point (NR::Point const p) const
{