Exemplo n.º 1
0
 def __init__(self):
     icon = IconFont().icon('desktop')
     name = 'Archiver Viwer'
     group = 'CON'
     use_with_widgets = False
     ExternalTool.__init__(self, icon=icon, name=name, group=group,
                           use_with_widgets=use_with_widgets)
Exemplo n.º 2
0
 def __init__(self):
     icon = IconFont().icon('paw')
     name = 'Beaglebone Daemon'
     group = 'CON'
     use_with_widgets = False
     ExternalTool.__init__(self, icon=icon, name=name, group=group,
                           use_with_widgets=use_with_widgets)
Exemplo n.º 3
0
 def __init__(self):
     icon = IconFont().icon("archive")
     name = 'Archiver Appliance'
     group = 'CON'
     use_with_widgets = False
     ExternalTool.__init__(self, icon=icon, name=name, group=group,
                           use_with_widgets=use_with_widgets)
Exemplo n.º 4
0
 def __init__(self):
     icon = IconFont().icon("cogs")
     name = "Write Node"
     group = "Rogue"
     use_with_widgets = True
     ExternalTool.__init__(self,
                           icon=icon,
                           name=name,
                           group=group,
                           use_with_widgets=use_with_widgets)
Exemplo n.º 5
0
 def __init__(self):
     icon = IconFont().icon("code")
     name = "Root Tool"
     group = ""
     use_with_widgets = True
     ExternalTool.__init__(self,
                           icon=icon,
                           name=name,
                           group=group,
                           use_with_widgets=use_with_widgets)
Exemplo n.º 6
0
 def __init__(self):
     icon = IconFont().icon("paw")
     name = "Beaglebone Daemon"
     group = "CON"
     use_with_widgets = False
     ExternalTool.__init__(self,
                           icon=icon,
                           name=name,
                           group=group,
                           use_with_widgets=use_with_widgets)
Exemplo n.º 7
0
 def __init__(self):
     icon = IconFont().icon("desktop")
     name = "Archiver Viwer"
     group = "CON"
     use_with_widgets = False
     ExternalTool.__init__(self,
                           icon=icon,
                           name=name,
                           group=group,
                           use_with_widgets=use_with_widgets)
Exemplo n.º 8
0
 def __init__(self):
     icon = IconFont().icon("code")
     name = "Dummy Tool 2"
     group = "Example"
     use_with_widgets = True
     use_without_widget = False
     ExternalTool.__init__(self,
                           icon=icon,
                           name=name,
                           group=group,
                           use_with_widgets=use_with_widgets,
                           use_without_widget=use_without_widget)
Exemplo n.º 9
0
    def __init__(self,save=False):
        icon = IconFont().icon("cogs")
        self.save = save

        if self.save:
            name = "File Save Browser"
        else:
            name = "File Open Browser"

        group = "Rogue"
        use_with_widgets = True
        ExternalTool.__init__(self, icon=icon, name=name, group=group, use_with_widgets=use_with_widgets)
Exemplo n.º 10
0
 def get_info(self):
     ret = ExternalTool.get_info(self)
     ret.update({'file': __file__})
     return ret
Exemplo n.º 11
0
 def __init__(self):
     icon = IconFont().icon("cogs")
     name = "Dummy Tool"
     group = "Example"
     use_with_widgets = False
     ExternalTool.__init__(self, icon=icon, name=name, group=group, use_with_widgets=use_with_widgets)
Exemplo n.º 12
0
 def __init__(self):
     icon = None
     name = "Dummy Tool 3"
     group = ""
     use_with_widgets = False
     ExternalTool.__init__(self, icon=icon, name=name, group=group, use_with_widgets=use_with_widgets)
Exemplo n.º 13
0
 def __init__(self):
     icon = IconFont().icon("code")
     name = "Root Tool"
     group = ""
     use_with_widgets = True
     ExternalTool.__init__(self, icon=icon, name=name, group=group, use_with_widgets=use_with_widgets)
Exemplo n.º 14
0
 def get_info(self):
     ret = ExternalTool.get_info(self)
     ret.update({'file': __file__})
     return ret
Exemplo n.º 15
0
 def __init__(self):
     icon = IconFont().icon("code")
     name = "Dummy Tool 2"
     group = "Example"
     use_with_widgets = True
     ExternalTool.__init__(self, icon=icon, name=name, group=group, use_with_widgets=use_with_widgets)