Code

Set merge from trunk
[inkscape.git] / src / lpe-tool-context.h
index 73002143e42f1b8a899768293fcba60add13bb76..478989e0ba809eb2e94f7fa0e303488edd74cb37 100644 (file)
@@ -6,7 +6,6 @@
  *
  * Authors:
  *   Maximilian Albert <maximilian.albert@gmail.com>
- *   Lauris Kaplinski <lauris@kaplinski.com>
  *
  * Copyright (C) 1998 The Free Software Foundation
  * Copyright (C) 1999-2002 authors
@@ -16,7 +15,8 @@
  * Released under GNU GPL, read the file 'COPYING' for more information
  */
 
-#include "event-context.h"
+#include "pen-context.h"
+#include "helper/units.h"
 
 #define SP_TYPE_LPETOOL_CONTEXT (sp_lpetool_context_get_type())
 #define SP_LPETOOL_CONTEXT(o) (GTK_CHECK_CAST((o), SP_TYPE_LPETOOL_CONTEXT, SPLPEToolContext))
 class SPLPEToolContext;
 class SPLPEToolContextClass;
 
-struct SPLPEToolContext : public SPEventContext {
+/* This is the list of subtools from which the toolbar of the LPETool is built automatically */
+extern const int num_subtools;
+
+struct SubtoolEntry {
+    Inkscape::LivePathEffect::EffectType type;
+    gchar const *icon_name;
+};
+
+extern SubtoolEntry lpesubtools[];
+
+enum LPEToolState {
+    LPETOOL_STATE_PEN,
+    LPETOOL_STATE_NODE
+};
+
+namespace Inkscape {
+class Selection;
+}
+
+class ShapeEditor;
+
+struct SPLPEToolContext : public SPPenContext {
+    ShapeEditor* shape_editor;
+    SPCanvasItem *canvas_bbox;
+    Inkscape::LivePathEffect::EffectType mode;
+
+    std::map<SPPath *, SPCanvasItem*> *measuring_items;
+
+    Inkscape::MessageContext *_lpetool_message_context;
+
+    sigc::connection sel_changed_connection;
+    sigc::connection sel_modified_connection;
 };
 
 struct SPLPEToolContextClass : public SPEventContextClass{};
 
+int lpetool_mode_to_index(Inkscape::LivePathEffect::EffectType const type);
+int lpetool_item_has_construction(SPLPEToolContext *lc, SPItem *item);
+bool lpetool_try_construction(SPLPEToolContext *lc, Inkscape::LivePathEffect::EffectType const type);
+void lpetool_context_switch_mode(SPLPEToolContext *lc, Inkscape::LivePathEffect::EffectType const type);
+void lpetool_get_limiting_bbox_corners(SPDocument *document, Geom::Point &A, Geom::Point &B);
+void lpetool_context_reset_limiting_bbox(SPLPEToolContext *lc);
+void lpetool_create_measuring_items(SPLPEToolContext *lc, Inkscape::Selection *selection = NULL);
+void lpetool_delete_measuring_items(SPLPEToolContext *lc);
+void lpetool_update_measuring_items(SPLPEToolContext *lc);
+void lpetool_show_measuring_info(SPLPEToolContext *lc, bool show = true);
+
 GType sp_lpetool_context_get_type(void);
 
 #endif // SP_LPETOOL_CONTEXT_H_SEEN
@@ -45,4 +87,4 @@ GType sp_lpetool_context_get_type(void);
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :