diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2007-05-11 19:22:30 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2007-05-11 19:22:30 +0000 |
| commit | 02fa22f04f7a81655183192baf55e74aebf53df7 (patch) | |
| tree | 8ad2d4d2fb0118631abac40d3e8232a1b50dfe6c /src/nodepath.h | |
| parent | Fixing compile warnings (diff) | |
| download | inkscape-02fa22f04f7a81655183192baf55e74aebf53df7.tar.gz inkscape-02fa22f04f7a81655183192baf55e74aebf53df7.zip | |
fixed fixme's in shapeeditor and changed verbs for node editting. helps with multiple nodepath implementation in shape-editor.
(bzr r3000)
Diffstat (limited to 'src/nodepath.h')
| -rw-r--r-- | src/nodepath.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/nodepath.h b/src/nodepath.h index 967650818..7e4066769 100644 --- a/src/nodepath.h +++ b/src/nodepath.h @@ -270,20 +270,20 @@ void sp_nodepath_curve_drag(int node, double t, NR::Point delta); Inkscape::NodePath::Node * sp_nodepath_get_node_by_index(int index); /* possibly private functions */ -void sp_node_selected_add_node (void); -void sp_node_selected_break (void); -void sp_node_selected_duplicate (void); -void sp_node_selected_join (void); -void sp_node_selected_join_segment (void); +void sp_node_selected_add_node (Inkscape::NodePath::Path *nodepath); +void sp_node_selected_break (Inkscape::NodePath::Path *nodepath); +void sp_node_selected_duplicate (Inkscape::NodePath::Path *nodepath); +void sp_node_selected_join (Inkscape::NodePath::Path *nodepath); +void sp_node_selected_join_segment (Inkscape::NodePath::Path *nodepath); void sp_node_delete_preserve (GList *nodes_to_delete); -void sp_node_selected_delete (void); -void sp_node_selected_delete_segment (void); -void sp_node_selected_set_type (Inkscape::NodePath::NodeType type); -void sp_node_selected_set_line_type (NRPathcode code); -void sp_node_selected_move (gdouble dx, gdouble dy); -void sp_node_selected_move_screen (gdouble dx, gdouble dy); - -void sp_nodepath_show_handles(bool show); +void sp_node_selected_delete (Inkscape::NodePath::Path *nodepath); +void sp_node_selected_delete_segment (Inkscape::NodePath::Path *nodepath); +void sp_node_selected_set_type (Inkscape::NodePath::Path *nodepath, Inkscape::NodePath::NodeType type); +void sp_node_selected_set_line_type (Inkscape::NodePath::Path *nodepath, NRPathcode code); +void sp_node_selected_move (Inkscape::NodePath::Path *nodepath, gdouble dx, gdouble dy); +void sp_node_selected_move_screen (Inkscape::NodePath::Path *nodepath, gdouble dx, gdouble dy); + +void sp_nodepath_show_handles(Inkscape::NodePath::Path *nodepath, bool show); void sp_nodepath_selected_nodes_rotate (Inkscape::NodePath::Path * nodepath, gdouble angle, int which, bool screen); |
