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