svgui/svgui.py
changeset 734 5c42cafaee15
parent 731 4fc681ed0c61
child 737 7b421e080636
equal deleted inserted replaced
733:915be999f3f0 734:5c42cafaee15
    11         return os.path.join(os.path.split(__file__)[0], "pous.xml") 
    11         return os.path.join(os.path.split(__file__)[0], "pous.xml") 
    12 
    12 
    13 class SVGUI:
    13 class SVGUI:
    14 
    14 
    15     ConfNodeMethods = [
    15     ConfNodeMethods = [
    16         {"bitmap" : os.path.join("images","ImportSVG"),
    16         {"bitmap" : "ImportSVG",
    17          "name" : _("Import SVG"),
    17          "name" : _("Import SVG"),
    18          "tooltip" : _("Import SVG"),
    18          "tooltip" : _("Import SVG"),
    19          "method" : "_ImportSVG"},
    19          "method" : "_ImportSVG"},
    20         {"bitmap" : os.path.join("images","ImportSVG"),
    20         {"bitmap" : "ImportSVG", # should be something different
    21          "name" : _("Inkscape"),
    21          "name" : _("Inkscape"),
    22          "tooltip" : _("Create HMI"),
    22          "tooltip" : _("Create HMI"),
    23          "method" : "_StartInkscape"},
    23          "method" : "_StartInkscape"},
    24     ]
    24     ]
    25 
    25