diff options
Diffstat (limited to 'src/ui/control-manager.h')
| -rw-r--r-- | src/ui/control-manager.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/ui/control-manager.h b/src/ui/control-manager.h new file mode 100644 index 000000000..1d3e474b3 --- /dev/null +++ b/src/ui/control-manager.h @@ -0,0 +1,61 @@ +/* + * Inkscape::ControlManager - Coordinates creation and styling of nodes, handles, etc. + * + * Author: + * Jon A. Cruz <jon@joncruz.org> + * + * Copyright 2012 Authors + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ +#ifndef SEEN_INKSCAPE_CONTROL_MANAGER_H +#define SEEN_INKSCAPE_CONTROL_MANAGER_H + +#include <memory> +#include <sigc++/sigc++.h> + +#include "display/sp-canvas-item.h" + +struct SPCanvasItem; +struct SPCanvasGroup; + +namespace Inkscape { + +class ControlManagerImpl; + +class ControlManager +{ +public: + static ControlManager &getManager(); + + ~ControlManager(); + + sigc::connection connectCtrlSizeChanged(const sigc::slot<void> &slot); + + SPCanvasItem *createControl(SPCanvasGroup *parent, ControlType type); + + void track(SPCanvasItem *item); + + void updateItem(SPCanvasItem *item); + +private: + ControlManager(); + + std::auto_ptr<ControlManagerImpl> _impl; + + friend class ControlManagerImpl; +}; + +} // namespace Inkscape + +#endif // SEEN_INKSCAPE_CONTROL_MANAGER_H +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : |
