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