示例#1
0
    def __init__(self, name=None, is_running=False, open_new=False):
        """
		If @is_running, style as if the app is running (Show application)
		If @open_new, always start a new instance.
		"""
        if not name:
            name = _("Launch")
        Action.__init__(self, name)
        self.is_running = is_running
        self.open_new = open_new
示例#2
0
	def __init__(self, name=None, is_running=False, open_new=False):
		"""
		If @is_running, style as if the app is running (Show application)
		If @open_new, always start a new instance.
		"""
		if not name:
			name = _("Launch")
		Action.__init__(self, name)
		self.is_running = is_running
		self.open_new = open_new
示例#3
0
	def __init__(self, desktop_item, is_default=False):
		"""
		Construct an "Open with application" item:

		Application of @name should open, if
		@is_default, it means it is the default app and
		should only be styled "Open"
		"""
		if not desktop_item:
			raise InvalidDataError

		name = desktop_item.get_name()
		action_name = _("Open") if is_default else _("Open with %s") % name
		Action.__init__(self, action_name)
		self.desktop_item = desktop_item
		self.is_default = is_default

		# add a name alias from the package name of the application
		if is_default:
			self.rank_adjust = 5
			self.name_aliases.add(_("Open with %s") % name)
		package_name, ext = os.path.splitext(self.desktop_item.get_id() or "")
		if package_name:
			self.name_aliases.add(_("Open with %s") % package_name)
 def __init__(self):
     Action.__init__(self, _("Sign and Encrypt For..."))
示例#5
0
 def __init__(self, leaf=None, retry = 0):
     Action.__init__(self, _("Restart aplication"))
     self.retry = retry
     if leaf != None:
         self.activate(leaf)
	def __init__(self):
		Action.__init__(self, _("Export Public Key"))
示例#7
0
	def __init__(self):
		Action.__init__(self, _("Close"))
示例#8
0
文件: gtg.py 项目: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _("Dismiss"))
	def __init__(self):
		name = _("Sign By...") if __kupfer_settings__['ask_for_key'] \
				else _("Sign")
		Action.__init__(self, name)
示例#10
0
	def __init__(self):
		Action.__init__(self, u"Forget")
	def __init__(self):
		Action.__init__(self, _("Decrypt"))
	def __init__(self):
		Action.__init__(self, _("Encrypt With Symmetric Cipher"))
	def __init__(self):
		Action.__init__(self, _("Verify Signature"))
示例#14
0
 def __init__(self):
     Action.__init__(self, _("Show shortcut"))
示例#15
0
 def __init__(self):
     Action.__init__(self, _("Execute shortcuts"))
 def __init__(self):
     Action.__init__(self, _("Decrypt"))
	def __init__(self):
		Action.__init__(self, _("Encrypt For..."))
 def __init__(self):
     name = _("Sign By...") if __kupfer_settings__['ask_for_key'] \
       else _("Sign")
     Action.__init__(self, name)
示例#19
0
	def __init__(self):
		Action.__init__(self, _("Open Site with Filezilla"))
示例#20
0
	def __init__(self):
		Action.__init__(self, u"Debug Info")
示例#21
0
 def __init__(self, leaf=None, retry=0):
     Action.__init__(self, _("Restart aplication"))
     self.retry = retry
     if leaf != None:
         self.activate(leaf)
示例#22
0
文件: gtg.py 项目: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _("Delete"))
示例#23
0
文件: gtg.py 项目: jablan/kupfer
 def __init__(self):
     Action.__init__(self, _("Dismiss"))
示例#24
0
 def __init__(self):
     Action.__init__(self, _("Execute shortcuts"))
示例#25
0
 def __init__(self):
     Action.__init__(self, _("Open Site with Filezilla"))
示例#26
0
文件: gtg.py 项目: jablan/kupfer
 def __init__(self):
     Action.__init__(self, _("Mark Done"))
	def __init__(self):
		Action.__init__(self, _("Edit Key"))
示例#28
0
文件: gtg.py 项目: jablan/kupfer
 def __init__(self):
     Action.__init__(self, _("Create Task"))
示例#29
0
 def __init__(self):
     Action.__init__(self, _("Close"))
示例#30
0
	def get_icon_name(self):
		if self.is_running:
			return "go-jump"
		return Action.get_icon_name(self)
示例#31
0
 def __init__(self):
     Action.__init__(self, _("Run after Delay..."))
示例#32
0
 def __init__(self, name=_("Open")):
     Action.__init__(self, name)
示例#33
0
文件: compose.py 项目: engla/kupfer
 def __init__(self):
     Action.__init__(self, _("Run after Delay..."))
 def __init__(self):
     Action.__init__(self, _("Verify Signature"))
示例#35
0
	def __init__(self):
		Action.__init__(self, _('Get Url to the File'))
		self._dropbox_public = _get_dropbox_subdir('Public')
 def __init__(self):
     Action.__init__(self, _("Encrypt With Symmetric Cipher"))
示例#37
0
	def __init__(self):
		Action.__init__(self, _('Create Link In Public and Get Url'))
		self._dropbox_public = _get_dropbox_subdir('Public')
 def __init__(self):
     Action.__init__(self, _("Encrypt For..."))
示例#39
0
	def __init__(self):
		Action.__init__(self, _("Add Trigger..."))
示例#40
0
	def __init__(self, action):
		Action.__init__(self, u"Apply To...")
		self.action = action
示例#41
0
	def __init__(self):
		Action.__init__(self, _("Remove Trigger"))
示例#42
0
	def get_icon_name(self):
		if self.is_running:
			return "gtk-jump-to-ltr"
		return Action.get_icon_name(self)
示例#43
0
 def __init__(self):
     Action.__init__(self, _("Import Public Key"))
示例#44
0
文件: gtg.py 项目: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _("Open"))
示例#45
0
 def __init__(self):
     Action.__init__(self, _("Search Key on KeyServer"))
示例#46
0
文件: gtg.py 项目: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _("Mark Done"))
示例#47
0
文件: gtg.py 项目: jablan/kupfer
 def __init__(self):
     Action.__init__(self, _("Open"))
示例#48
0
文件: gtg.py 项目: CharString/kupfer
	def __init__(self):
		Action.__init__(self, _("Create Task"))
示例#49
0
文件: gtg.py 项目: jablan/kupfer
 def __init__(self):
     Action.__init__(self, _("Delete"))
示例#50
0
 def __init__(self):
     Action.__init__(self, _("Show shortcut"))
示例#51
0
 def __init__(self):
     Action.__init__(self, _("Search Key on KeyServer"))