node-tool.h revision 16a8c7d5e433b176636a4a1260c42ea43932110b
/** @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"
#include "forward.h"
#include "display/display-forward.h"
#include "ui/tool/node-types.h"
#define INK_TYPE_NODE_TOOL (ink_node_tool_get_type ())
#define INK_NODE_TOOL_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), INK_TYPE_NODE_TOOL, InkNodeToolClass))
struct PathSharedData;
}
}
{
unsigned cursor_drag : 1;
unsigned show_outline : 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;
};
struct InkNodeToolClass {
};
GType ink_node_tool_get_type (void);
#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:encoding=utf-8:textwidth=99 :