node-tool.h revision 523c67aa88378b56e7d995ce820cf9a49d3c4c3c
/** @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 <glib.h>
#include "ui/tools/tool-base.h"
// we need it to call it from Live Effect
#include "selection.h"
}
struct PathSharedData;
}
}
#define INK_NODE_TOOL(obj) (dynamic_cast<Inkscape::UI::Tools::NodeTool*>((Inkscape::UI::Tools::ToolBase*)obj))
#define INK_IS_NODE_TOOL(obj) (dynamic_cast<const Inkscape::UI::Tools::NodeTool*>((const Inkscape::UI::Tools::ToolBase*)obj))
NodeTool();
bool edit_clipping_paths;
bool edit_masks;
bool cursor_drag;
bool show_handles;
bool show_outline;
bool live_outline;
bool live_objects;
bool show_path_direction;
bool show_transform_handles;
void handleControlUiStyleChange();
};
}
}
}
#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 :