~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/layer-manager.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-07-06 22:03:02 UTC
  • mto: (2.4.1 sid) (1.4.1 upstream) (45.1.3 maverick)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20060706220302-itgso3qgxdaxjmcy
Tags: upstream-0.44
ImportĀ upstreamĀ versionĀ 0.44

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 */
 
9
 
 
10
#ifndef SEEN_INKSCAPE_LAYER_MANAGER_H
 
11
#define SEEN_INKSCAPE_LAYER_MANAGER_H
 
12
 
 
13
#include "document-subset.h"
 
14
#include "gc-finalized.h"
 
15
#include "gc-soft-ptr.h"
 
16
#include <vector>
 
17
 
 
18
class SPDesktop;
 
19
class SPDocument;
 
20
 
 
21
namespace Inkscape {
 
22
 
 
23
class LayerManager : public DocumentSubset,
 
24
                     public GC::Finalized
 
25
{
 
26
public:
 
27
    LayerManager(SPDesktop *desktop);
 
28
 
 
29
    void setCurrentLayer( SPObject* obj );
 
30
    void renameLayer( SPObject* obj, gchar const *label );
 
31
 
 
32
    sigc::connection connectCurrentLayerChanged(const sigc::slot<void, SPObject *> & slot) {
 
33
        return _layer_changed_signal.connect(slot);
 
34
    }
 
35
 
 
36
    sigc::connection connectLayerDetailsChanged(const sigc::slot<void, SPObject *> & slot) {
 
37
        return _details_changed_signal.connect(slot);
 
38
    }
 
39
 
 
40
private:
 
41
    friend class LayerWatcher;
 
42
    class LayerWatcher;
 
43
 
 
44
    static void _objectModifiedCB( SPObject* obj, guint flags, LayerManager* mgr );
 
45
 
 
46
    void _objectModified( SPObject* obj, guint flags );
 
47
    void _setDocument(SPDocument *document);
 
48
    void _rebuild();
 
49
    void _selectedLayerChanged(SPObject *layer);
 
50
 
 
51
    sigc::connection _layer_connection;
 
52
    sigc::connection _document_connection;
 
53
    sigc::connection _resource_connection;
 
54
 
 
55
    GC::soft_ptr<SPDesktop> _desktop;
 
56
    SPDocument *_document;
 
57
 
 
58
    std::vector<LayerWatcher*> _watchers;
 
59
 
 
60
    sigc::signal<void, SPObject *>     _layer_changed_signal;
 
61
    sigc::signal<void, SPObject *>     _details_changed_signal;
 
62
};
 
63
 
 
64
}
 
65
 
 
66
#endif
 
67
/*
 
68
  Local Variables:
 
69
  mode:c++
 
70
  c-file-style:"stroustrup"
 
71
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
72
  indent-tabs-mode:nil
 
73
  fill-column:99
 
74
  End:
 
75
*/
 
76
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :