Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / lpe-tool-context.h
index 2c3e6e36f5ea1df7930e8c3bd5f6c28f8725007d..478989e0ba809eb2e94f7fa0e303488edd74cb37 100644 (file)
@@ -30,7 +30,12 @@ class SPLPEToolContextClass;
 /* This is the list of subtools from which the toolbar of the LPETool is built automatically */
 extern const int num_subtools;
 
-extern Inkscape::LivePathEffect::EffectType lpesubtools[];
+struct SubtoolEntry {
+    Inkscape::LivePathEffect::EffectType type;
+    gchar const *icon_name;
+};
+
+extern SubtoolEntry lpesubtools[];
 
 enum LPEToolState {
     LPETOOL_STATE_PEN,
@@ -50,6 +55,8 @@ struct SPLPEToolContext : public SPPenContext {
 
     std::map<SPPath *, SPCanvasItem*> *measuring_items;
 
+    Inkscape::MessageContext *_lpetool_message_context;
+
     sigc::connection sel_changed_connection;
     sigc::connection sel_modified_connection;
 };
@@ -80,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 :