shape-editor.h revision 981b809bc6ed10a21e89444d9447e5475801874f
#ifndef __SHAPE_EDITOR_H__
#define __SHAPE_EDITOR_H__
/*
* Inkscape::ShapeEditor
*
* This is a container class which contains either knotholder (for shapes) or nodepath (for
* paths). It is attached to a single item so only one of these is active at a time.
*
* Authors:
* bulia byak <buliabyak@users.sf.net>
*
*/
#include <forward.h>
namespace Inkscape {
namespace NodePath {
class Path;
}
}
#include "libnr/nr-path-code.h"
#include "libnr/nr-point.h"
#include "libnr/nr-maybe.h"
class SPKnotHolder;
class SPDesktop;
class SPNodeContext;
class ShapeEditorsCollective;
class ShapeEditor {
public:
ShapeEditor(SPDesktop *desktop);
~ShapeEditor();
void set_item (SPItem *item);
void set_livepatheffect_parameter(SPObject *lpeobject, const char * key);
void unset_item ();
SPItem *get_item ();
bool has_nodepath ();
bool has_knotholder ();
bool has_local_change ();
void decrement_local_change ();
GList *save_nodepath_selection ();
void restore_nodepath_selection (GList *saved);
void nodepath_destroyed ();
void update_statusbar ();
bool is_over_stroke (NR::Point event_p, bool remember);
void add_node_near_point(); // uses the shapeeditor's remembered point, if any
void select_segment_near_point(bool toggle); // uses the shapeeditor's remembered point, if any
void cancel_hit ();
bool hits_curve ();
void curve_drag (gdouble eventx, gdouble eventy);
void finish_drag ();
void select_rect (NR::Rect const &rect, bool add);
bool has_selection ();
void deselect ();
Inkscape::NodePath::Path *get_nodepath() {return nodepath;} //((deprecated))
ShapeEditorsCollective *get_container() {return container;}
void add_node();
void delete_nodes();
void delete_nodes_preserving_shape();
void delete_segment();
void set_node_type(int type);
void break_at_nodes();
void join_nodes();
void join_segments();
void duplicate_nodes();
void set_type_of_segments(NRPathcode code);
void move_nodes(gdouble dx, gdouble dy);
void move_nodes_screen(gdouble dx, gdouble dy);
void rotate_nodes(gdouble angle, int which, bool screen);
void scale_nodes(gdouble const grow, int const which);
void scale_nodes_screen(gdouble const grow, int const which);
void select_all (bool invert);
void select_all_from_subpath (bool invert);
void select_next ();
void select_prev ();
void show_handles (bool show);
void flip (NR::Dim2 axis, NR::Maybe<NR::Point> center = NR::Nothing());
void distribute (NR::Dim2 axis);
void align (NR::Dim2 axis);
private:
SPDesktop *desktop;
Inkscape::NodePath::Path *nodepath;
SPKnotHolder *knotholder;
ShapeEditorsCollective *container;
//Inkscape::XML::Node *lidtened_repr;
double grab_t;
int grab_node; // number of node grabbed by sp_node_context_is_over_stroke
bool hit;
NR::Point curvepoint_event; // int coords from event
NR::Point curvepoint_doc; // same, in doc coords
};
/* As the next stage, this will be a collection of multiple ShapeEditors,
with the same interface as the single ShapeEditor, passing the actions to all its
contained ShapeEditors. Thus it should be easy to switch node context from
using a single ShapeEditor to using a ShapeEditorsCollective. */
class ShapeEditorsCollective {
public:
ShapeEditorsCollective(SPDesktop *desktop);
~ShapeEditorsCollective();
void update_statusbar();
private:
std::vector<ShapeEditor> editors;
SPNodeContext *nc; // who holds us
};
#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 :