示例#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)
示例#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)
示例#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)
示例#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)
示例#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)
示例#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)
示例#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)
示例#8
0
文件: new_tool.py 项目: vbaggiol/pydm
 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)
示例#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)
示例#10
0
 def get_info(self):
     ret = ExternalTool.get_info(self)
     ret.update({'file': __file__})
     return ret
示例#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)
示例#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)
示例#13
0
文件: root_tool.py 项目: slaclab/pydm
 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)
示例#14
0
文件: root_tool.py 项目: slaclab/pydm
 def get_info(self):
     ret = ExternalTool.get_info(self)
     ret.update({'file': __file__})
     return ret
示例#15
0
文件: new_tool.py 项目: slaclab/pydm
 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)