Code

Status bar tips for VP draggers
[inkscape.git] / src / layer-manager.h
1 /*
2  * Inkscape::LayerManager - a view of a document's layers, relative
3  *                          to a particular desktop
4  *
5  * Copyright 2006  MenTaLguY  <mental@rydia.net>
6  *
7  * Released under GNU GPL, read the file 'COPYING' for more information
8  */
10 #ifndef SEEN_INKSCAPE_LAYER_MANAGER_H
11 #define SEEN_INKSCAPE_LAYER_MANAGER_H
13 #include "document-subset.h"
14 #include "gc-finalized.h"
15 #include "gc-soft-ptr.h"
16 #include <vector>
17 #include <map>
19 class SPDesktop;
20 class SPDocument;
22 namespace Inkscape {
24 class LayerManager : public DocumentSubset,
25                      public GC::Finalized
26 {
27 public:
28     LayerManager(SPDesktop *desktop);
30     void setCurrentLayer( SPObject* obj );
31     void renameLayer( SPObject* obj, gchar const *label );
33     sigc::connection connectCurrentLayerChanged(const sigc::slot<void, SPObject *> & slot) {
34         return _layer_changed_signal.connect(slot);
35     }
37     sigc::connection connectLayerDetailsChanged(const sigc::slot<void, SPObject *> & slot) {
38         return _details_changed_signal.connect(slot);
39     }
41 private:
42     friend class LayerWatcher;
43     class LayerWatcher;
45     void _objectModified( SPObject* obj, guint flags );
46     void _setDocument(SPDocument *document);
47     void _rebuild();
48     void _selectedLayerChanged(SPObject *layer);
50     sigc::connection _layer_connection;
51     sigc::connection _document_connection;
52     sigc::connection _resource_connection;
54     GC::soft_ptr<SPDesktop> _desktop;
55     SPDocument *_document;
57     std::vector<LayerWatcher*> _watchers;
59     sigc::signal<void, SPObject *>     _layer_changed_signal;
60     sigc::signal<void, SPObject *>     _details_changed_signal;
61 };
63 }
65 #endif
66 /*
67   Local Variables:
68   mode:c++
69   c-file-style:"stroustrup"
70   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
71   indent-tabs-mode:nil
72   fill-column:99
73   End:
74 */
75 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :