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)
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)
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)
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)
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)
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)
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)
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)
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)
def get_info(self): ret = ExternalTool.get_info(self) ret.update({'file': __file__}) return ret
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)
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)
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)