Пример #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)
Пример #4
0
 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
	def __init__(self):
		Action.__init__(self, _("Dismiss"))
Пример #9
0
	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")
Пример #11
0
	def __init__(self):
		Action.__init__(self, _("Decrypt"))
Пример #12
0
	def __init__(self):
		Action.__init__(self, _("Encrypt With Symmetric Cipher"))
Пример #13
0
	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"))
Пример #16
0
 def __init__(self):
     Action.__init__(self, _("Decrypt"))
Пример #17
0
	def __init__(self):
		Action.__init__(self, _("Encrypt For..."))
Пример #18
0
 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
	def __init__(self):
		Action.__init__(self, _("Delete"))
Пример #23
0
 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
 def __init__(self):
     Action.__init__(self, _("Mark Done"))
Пример #27
0
	def __init__(self):
		Action.__init__(self, _("Edit Key"))
Пример #28
0
 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
 def __init__(self):
     Action.__init__(self, _("Run after Delay..."))
Пример #34
0
 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')
Пример #36
0
 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')
Пример #38
0
 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
	def __init__(self):
		Action.__init__(self, _("Open"))
Пример #45
0
 def __init__(self):
     Action.__init__(self, _("Search Key on KeyServer"))
Пример #46
0
	def __init__(self):
		Action.__init__(self, _("Mark Done"))
Пример #47
0
 def __init__(self):
     Action.__init__(self, _("Open"))
Пример #48
0
	def __init__(self):
		Action.__init__(self, _("Create Task"))
Пример #49
0
 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"))