Code

Finish translate of live path effects and filters
[inkscape.git] / src / node-context.h
index 3e42b74b931bff515fdb791cf4d04734ae91346a..0e141274f635c96b8623888faa73aa09458e509a 100644 (file)
  * This code is in public domain
  */
 
+#include <gtk/gtktypeutils.h>
 #include <sigc++/sigc++.h>
 #include "event-context.h"
 #include "forward.h"
 #include "display/display-forward.h"
 #include "nodepath.h"
-struct SPKnotHolder;
 namespace Inkscape { class Selection; }
 
 #define SP_TYPE_NODE_CONTEXT            (sp_node_context_get_type ())
@@ -33,12 +33,11 @@ class SPNodeContext;
 class SPNodeContextClass;
 
 struct SPNodeContext {
+        // FIXME: shouldn't this be a pointer???
        SPEventContext event_context;
 
        guint drag : 1;
 
-       ShapeEditor* shape_editor;
-
        gboolean leftalt;
        gboolean rightalt;
        gboolean leftctrl;
@@ -71,5 +70,17 @@ struct SPNodeContextClass {
 GtkType sp_node_context_get_type (void);
 
 void sp_node_context_selection_changed (Inkscape::Selection * selection, gpointer data);
+void sp_node_context_selection_modified (Inkscape::Selection * selection, guint flags, gpointer data);
 
 #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 :