Code

Make curvature work again by fixing a minor omission
[inkscape.git] / src / selection.h
1 #ifndef SEEN_INKSCAPE_SELECTION_H
2 #define SEEN_INKSCAPE_SELECTION_H
4 /** \file
5  * Inkscape::Selection: per-desktop selection container
6  *
7  * Authors:
8  *   Lauris Kaplinski <lauris@kaplinski.com>
9  *   MenTaLguY <mental@rydia.net>
10  *   bulia byak <buliabyak@users.sf.net>
11  *
12  * Copyright (C) 2004-2005 MenTaLguY
13  * Copyright (C) 1999-2002 Lauris Kaplinski
14  * Copyright (C) 2001-2002 Ximian, Inc.
15  *
16  * Released under GNU GPL, read the file 'COPYING' for more information
17  */
19 #include <vector>
20 #include <map>
21 #include <list>
22 #include <sigc++/sigc++.h>
24 //#include "libnr/nr-rect.h"
25 #include "libnr/nr-convex-hull.h"
26 #include "forward.h"
27 #include "gc-managed.h"
28 #include "gc-finalized.h"
29 #include "gc-anchored.h"
30 #include "gc-soft-ptr.h"
31 #include "util/list.h"
32 #include "sp-item.h"
33 #include "snapped-point.h"
35 class SPItem;
36 class SPBox3D;
37 class Persp3D;
39 namespace Inkscape {
40 namespace XML {
41 class Node;
42 }
43 }
45 namespace Inkscape {
47 /**
48  * @brief The set of selected SPObjects for a given desktop.
49  *
50  * This class represents the set of selected SPItems for a given
51  * SPDesktop.
52  *
53  * An SPObject and its parent cannot be simultaneously selected;
54  * selecting an SPObjects has the side-effect of unselecting any of
55  * its children which might have been selected.
56  *
57  * This is a per-desktop object that keeps the list of selected objects
58  * at the given desktop. Both SPItem and SPRepr lists can be retrieved
59  * from the selection. Many actions operate on the selection, so it is
60  * widely used throughout the code.
61  * It also implements its own asynchronous notification signals that
62  * UI elements can listen to.
63  */
64 class Selection : public Inkscape::GC::Managed<>,
65                   public Inkscape::GC::Finalized,
66                   public Inkscape::GC::Anchored
67 {
68 public:
69     /**
70      * Constructs an selection object, bound to a particular
71      * SPDesktop
72      *
73      * @param desktop the desktop in question
74      */
75     Selection(SPDesktop *desktop);
76     ~Selection();
78     /**
79      * @brief Returns the desktop the selection is bound to
80      *
81      * @return the desktop the selection is bound to
82      */
83     SPDesktop *desktop() { return _desktop; }
85     /**
86      * @brief Returns active layer for selection (currentLayer or its parent)
87      *
88      * @return layer item the selection is bound to
89      */
90     SPObject *activeContext();
92     /**
93      * @brief Add an SPObject to the set of selected objects
94      *
95      * @param obj the SPObject to add
96      */
97     void add(SPObject *obj, bool persist_selection_context = false);
99     /**
100      * @brief Add an XML node's SPObject to the set of selected objects
101      *
102      * @param the xml node of the item to add
103      */
104     void add(XML::Node *repr) { add(_objectForXMLNode(repr)); }
106     /**
107      * @brief Set the selection to a single specific object
108      *
109      * @param obj the object to select
110      */
111     void set(SPObject *obj, bool persist_selection_context = false);
113     /**
114      * @brief Set the selection to an XML node's SPObject
115      *
116      * @param repr the xml node of the item to select
117      */
118     void set(XML::Node *repr) { set(_objectForXMLNode(repr)); }
120     /**
121      * @brief Removes an item from the set of selected objects
122      *
123      * It is ok to call this method for an unselected item.
124      *
125      * @param item the item to unselect
126      */
127     void remove(SPObject *obj);
129     /**
130      * @brief Removes an item if selected, adds otherwise
131      *
132      * @param item the item to unselect
133      */
134     void toggle(SPObject *obj);
136     /**
137      * @brief Removes an item from the set of selected objects
138      *
139      * It is ok to call this method for an unselected item.
140      *
141      * @param repr the xml node of the item to remove
142      */
143     void remove(XML::Node *repr) { remove(_objectForXMLNode(repr)); }
145     /**
146      * @brief Selects exactly the specified objects
147      *
148      * @param objs the objects to select
149      */
150     void setList(GSList const *objs);
152     /**
153      * @brief Adds the specified objects to selection, without deselecting first
154      *
155      * @param objs the objects to select
156      */
157     void addList(GSList const *objs);
159     /**
160      * @brief Clears the selection and selects the specified objects
161      *
162      * @param repr a list of xml nodes for the items to select
163      */
164     void setReprList(GSList const *reprs);
166     /** \brief  Add items from an STL iterator range to the selection
167      *  \param  from the begin iterator
168      *  \param  to   the end iterator
169      */
170     template <typename InputIterator>
171     void add(InputIterator from, InputIterator to) {
172         _invalidateCachedLists();
173         while ( from != to ) {
174             _add(*from);
175             ++from;
176         }
177         _emitChanged();
178     }
180     /**
181      * @brief Unselects all selected objects.
182      */
183     void clear();
185     /**
186      * @brief Returns true if no items are selected
187      */
188     bool isEmpty() const { return _objs == NULL; }
190     /**
191      * @brief Returns true if the given object is selected
192      */
193     bool includes(SPObject *obj) const;
195     /**
196      * @brief Returns true if the given item is selected
197      */
198     bool includes(XML::Node *repr) const {
199         return includes(_objectForXMLNode(repr));
200     }
202     /**
203      * @brief Returns a single selected object
204      *
205      * @return NULL unless exactly one object is selected
206      */
207     SPObject *single();
209     /**
210      * @brief Returns a single selected item
211      *
212      * @return NULL unless exactly one object is selected
213      */
214     SPItem *singleItem();
216     /**
217      * @brief Returns a single selected object's xml node
218      *
219      * @return NULL unless exactly one object is selected
220      */
221     XML::Node *singleRepr();
223     /** @brief Returns the list of selected objects */
224     GSList const *list();
225     /** @brief Returns the list of selected SPItems */
226     GSList const *itemList();
227     /** @brief Returns a list of the xml nodes of all selected objects */
228     /// \todo only returns reprs of SPItems currently; need a separate
229     ///      method for that
230     GSList const *reprList();
232     /* list of all perspectives which have a 3D box in the current selection
233        (these may also be nested in groups) */
234     std::list<Persp3D *> const perspList();
236     std::list<SPBox3D *> const box3DList();
238     /** @brief Returns the number of layers in which there are selected objects */
239     guint numberOfLayers();
241     /** @brief Returns the number of parents to which the selected objects belong */
242     guint numberOfParents();
244     /** @brief Returns the bounding rectangle of the selection */
245     NRRect *bounds(NRRect *dest, SPItem::BBoxType type = SPItem::APPROXIMATE_BBOX) const;
246     /** @brief Returns the bounding rectangle of the selection */
247     Geom::OptRect bounds(SPItem::BBoxType type = SPItem::APPROXIMATE_BBOX) const;
249     /**
250      * @brief Returns the bounding rectangle of the selection
251      *
252      * \todo how is this different from bounds()?
253      */
254     NRRect *boundsInDocument(NRRect *dest, SPItem::BBoxType type = SPItem::APPROXIMATE_BBOX) const;
256     /**
257      * @brief Returns the bounding rectangle of the selection
258      *
259      * \todo how is this different from bounds()?
260      */
261     Geom::OptRect boundsInDocument(SPItem::BBoxType type = SPItem::APPROXIMATE_BBOX) const;
263     /**
264      * @brief Returns the rotation/skew center of the selection
265      */
266     boost::optional<Geom::Point> center() const;
268     /**
269      * @brief Gets the selection's snap points.
270      * @return Selection's snap points
271      */
272     std::vector<std::pair<Geom::Point, int> > getSnapPoints(SnapPreferences const *snapprefs) const;
274     /**
275      * @brief Gets the snap points of a selection that form a convex hull.
276      * @return Selection's convex hull points
277      */
278     std::vector<std::pair<Geom::Point, int> > getSnapPointsConvexHull(SnapPreferences const *snapprefs) const;
280     /**
281      * @brief Connects a slot to be notified of selection changes
282      *
283      * This method connects the given slot such that it will
284      * be called upon any change in the set of selected objects.
285      *
286      * @param slot the slot to connect
287      *
288      * @return the resulting connection
289      */
290     sigc::connection connectChanged(sigc::slot<void, Selection *> const &slot) {
291         return _changed_signal.connect(slot);
292     }
294     /**
295      * @brief Connects a slot to be notified of selected
296      *        object modifications
297      *
298      * This method connects the given slot such that it will
299      * receive notifications whenever any selected item is
300      * modified.
301      *
302      * @param slot the slot to connect
303      *
304      * @return the resulting connection
305      *
306      */
307     sigc::connection connectModified(sigc::slot<void, Selection *, guint> const &slot)
308     {
309         return _modified_signal.connect(slot);
310     }
312 private:
313     /** @brief no copy */
314     Selection(Selection const &);
315     /** @brief no assign */
316     void operator=(Selection const &);
318     /** @brief Issues modification notification signals */
319     static gboolean _emit_modified(Selection *selection);
320     /** @brief Schedules an item modification signal to be sent */
321     void _schedule_modified(SPObject *obj, guint flags);
323     /** @brief Issues modified selection signal */
324     void _emitModified(guint flags);
325     /** @brief Issues changed selection signal */
326     void _emitChanged(bool persist_selection_context = false);
328     void _invalidateCachedLists();
330     /** @brief unselect all descendants of the given item */
331     void _removeObjectDescendants(SPObject *obj);
332     /** @brief unselect all ancestors of the given item */
333     void _removeObjectAncestors(SPObject *obj);
334     /** @brief clears the selection (without issuing a notification) */
335     void _clear();
336     /** @brief adds an object (without issuing a notification) */
337     void _add(SPObject *obj);
338     /** @brief removes an object (without issuing a notification) */
339     void _remove(SPObject *obj);
340     /** @brief returns the SPObject corresponding to an xml node (if any) */
341     SPObject *_objectForXMLNode(XML::Node *repr) const;
342     /** @brief Releases an active layer object that is being removed */
343     void _releaseContext(SPObject *obj);
345     mutable GSList *_objs;
346     mutable GSList *_reprs;
347     mutable GSList *_items;
349     void add_box_perspective(SPBox3D *box);
350     void add_3D_boxes_recursively(SPObject *obj);
351     void remove_box_perspective(SPBox3D *box);
352     void remove_3D_boxes_recursively(SPObject *obj);
354     std::map<Persp3D *, unsigned int> _persps;
355     std::list<SPBox3D *> _3dboxes;
357     GC::soft_ptr<SPDesktop> _desktop;
358     SPObject* _selection_context;
359     guint _flags;
360     guint _idle;
362     std::map<SPObject *, sigc::connection> _modified_connections;
363     std::map<SPObject *, sigc::connection> _release_connections;
364     sigc::connection _context_release_connection;
366     sigc::signal<void, Selection *> _changed_signal;
367     sigc::signal<void, Selection *, guint> _modified_signal;
368 };
372 #endif
373 /*
374   Local Variables:
375   mode:c++
376   c-file-style:"stroustrup"
377   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
378   indent-tabs-mode:nil
379   fill-column:99
380   End:
381 */
382 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :