Lines Matching defs:layer
29 #include "layer-fns.h"
30 #include "layer-model.h"
42 static void _layer_activated(SPObject *layer, Inkscape::LayerModel *layer_model);
43 static void _layer_deactivated(SPObject *layer, Inkscape::LayerModel *layer_model);
88 * Returns current root (=bottom) layer.
96 * Returns current top layer.
104 * Resets the bottom layer to the current root
113 * Sets the current layer of the desktop.
115 * Make \a object the top layer.
145 // Dont lock any ancestors, since that would in turn lock the layer as well
176 // Don't hide ancestors, since that would in turn hide the layer as well
201 * Return layer that contains \a object.
209 // Objects in defs have no layer and are NOT in the root layer
218 * True if object is a layer.
231 _layer_activated(SPObject *layer, Inkscape::LayerModel *layer_model) {
232 g_return_if_fail(SP_IS_GROUP(layer));
233 layer_model->_layer_activated_signal.emit(layer);
238 _layer_deactivated(SPObject *layer, Inkscape::LayerModel *layer_model) {
239 g_return_if_fail(SP_IS_GROUP(layer));
240 layer_model->_layer_deactivated_signal.emit(layer);