node-tool.h revision 83836224b6afd15833c05adbee09475dfde201af
/** @file
* @brief New node tool with support for multiple path editing
*/
/* Authors:
* Krzysztof KosiĆski <tweenk@gmail.com>
*
* Copyright (C) 2009 Authors
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef SEEN_UI_TOOL_NODE_TOOL_H
#define SEEN_UI_TOOL_NODE_TOOL_H
#include <memory>
#include <glib.h>
#include "event-context.h"
} // namespace Display
struct PathSharedData;
} // namespace UI
} // namespace Inkscape
//typedef std::auto_ptr<Inkscape::UI::MultiPathManipulator> MultiPathPtr;
//typedef std::auto_ptr<Inkscape::UI::ControlPointSelection> CSelPtr;
//typedef std::auto_ptr<Inkscape::UI::Selector> SelectorPtr;
//typedef std::auto_ptr<Inkscape::UI::PathSharedData> PathSharedDataPtr;
InkNodeTool();
virtual ~InkNodeTool();
unsigned cursor_drag : 1;
unsigned show_handles : 1;
unsigned show_outline : 1;
unsigned live_outline : 1;
unsigned live_objects : 1;
unsigned show_path_direction : 1;
unsigned show_transform_handles : 1;
unsigned single_node_transform_handles : 1;
unsigned edit_clipping_paths : 1;
unsigned edit_masks : 1;
};
#endif
/*
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 :