1 """The only file where icon filenames are mentioned"""
5 from qtpy
import QtWidgets
8 from . import decorators
10 from . import resources
11 from .compat
import ustr
15 KNOWN_FILE_MIME_TYPES
= [
16 ('text', 'file-code.svg'),
17 ('image', 'file-media.svg'),
18 ('octet', 'file-binary.svg'),
21 KNOWN_FILE_EXTENSIONS
= {
22 '.bash': 'file-code.svg',
23 '.c': 'file-code.svg',
24 '.cpp': 'file-code.svg',
25 '.css': 'file-code.svg',
26 '.cxx': 'file-code.svg',
27 '.h': 'file-code.svg',
28 '.hpp': 'file-code.svg',
29 '.hs': 'file-code.svg',
30 '.html': 'file-code.svg',
31 '.java': 'file-code.svg',
32 '.js': 'file-code.svg',
33 '.ksh': 'file-code.svg',
34 '.lisp': 'file-code.svg',
35 '.perl': 'file-code.svg',
36 '.pl': 'file-code.svg',
37 '.py': 'file-code.svg',
38 '.rb': 'file-code.svg',
39 '.rs': 'file-code.svg',
40 '.sh': 'file-code.svg',
41 '.zsh': 'file-code.svg',
47 icon_dir
= resources
.icon_dir(theme
)
48 qtcompat
.add_search_path('icons', icon_dir
)
53 (N_('Default'), 'default'),
54 (N_('Dark Theme'), 'dark'),
55 (N_('Light Theme'), 'light'),
59 def name_from_basename(basename
):
60 """Prefix the basename with "icons:" so that git-cola's icons are found
62 "icons" is registered with Qt's resource system during install().
65 return 'icons:' + basename
70 """Return a QIcon from an absolute filename or "icons:basename.svg" name"""
71 return QtGui
.QIcon(name
)
75 """Given a basename returns a QIcon from the corresponding cola icon"""
76 return from_name(name_from_basename(basename
))
79 def from_theme(name
, fallback
=None):
80 """Grab an icon from the current theme with a fallback
82 Support older versions of Qt checking for fromTheme's availability.
85 if hasattr(QtGui
.QIcon
, 'fromTheme'):
86 base
, _
= os
.path
.splitext(name
)
88 qicon
= QtGui
.QIcon
.fromTheme(base
, icon(fallback
))
90 qicon
= QtGui
.QIcon
.fromTheme(base
)
91 if not qicon
.isNull():
93 return icon(fallback
or name
)
96 def basename_from_filename(filename
):
97 """Returns an icon name based on the filename"""
98 mimetype
= core
.guess_mimetype(filename
)
99 if mimetype
is not None:
100 mimetype
= mimetype
.lower()
101 for filetype
, icon_name
in KNOWN_FILE_MIME_TYPES
:
102 if filetype
in mimetype
:
104 extension
= os
.path
.splitext(filename
)[1]
105 return KNOWN_FILE_EXTENSIONS
.get(extension
.lower(), 'file-text.svg')
108 def from_filename(filename
):
109 """Return a QIcon from a filename"""
110 basename
= basename_from_filename(filename
)
111 return from_name(name_from_basename(basename
))
114 def mkicon(value
, default
=None):
115 """Create an icon from a string value"""
116 if value
is None and default
is not None:
118 elif value
and isinstance(value
, (str, ustr
)):
119 value
= QtGui
.QIcon(value
)
124 """Maintain a cache of standard icons and return cache entries."""
125 style
= QtWidgets
.QApplication
.instance().style()
126 return style
.standardIcon(key
)
129 def status(filename
, deleted
, is_staged
, untracked
):
130 """Status icon for a file"""
132 icon_name
= 'circle-slash-red.svg'
134 icon_name
= 'staged.svg'
136 icon_name
= 'question-plain.svg'
138 icon_name
= basename_from_filename(filename
)
142 # Icons creators and SVG file references
146 """Three-bars icon"""
147 return icon('three-bars.svg')
152 return from_theme('list-add', fallback
='plus.svg')
156 """Alphabetical icon"""
157 return from_theme('view-sort', fallback
='a-z-order.svg')
162 return icon('git-branch.svg')
166 """Checkmark icon name"""
167 return name_from_basename('check.svg')
171 """Cherry-pick icon"""
172 return icon('git-commit.svg')
175 def circle_slash_red():
176 """A circle with a slash through it"""
177 return icon('circle-slash-red.svg')
187 return icon('git-cola.svg')
192 return icon('document-save-symbolic.svg')
197 return icon('git-compare.svg')
202 return icon('gear.svg')
207 return from_theme('edit-cut', fallback
='edit-cut.svg')
212 return from_theme('edit-copy', fallback
='edit-copy.svg')
217 return from_theme('edit-paste', fallback
='edit-paste.svg')
222 return icon('play.svg')
227 return from_theme('edit-delete', fallback
='trashcan.svg')
231 """Default app icon"""
232 return icon('telescope.svg')
237 return name_from_basename('primitive-dot.svg')
242 return icon('file-download.svg')
247 return from_theme('delete', fallback
='trashcan.svg')
250 # folder vs directory: directory is opaque, folder is just an outline
251 # directory is used for the File Browser, where more contrast with the file
257 return from_theme('folder', fallback
='folder.svg')
262 return from_theme('folder', fallback
='file-directory.svg')
267 return icon('diff.svg')
272 return from_theme('document-edit', fallback
='pencil.svg')
277 return icon('ellipsis.svg')
281 """External link icon"""
282 return icon('link-external.svg')
287 return icon('file-code.svg')
292 return icon('file-text.svg')
296 """Zip file / tarball icon"""
297 return icon('file-zip.svg')
302 return icon('fold.svg')
307 return icon('git-merge.svg')
312 return icon('modified.svg')
316 """Modified icon name"""
317 return name_from_basename('modified.svg')
322 return from_theme('go-next', fallback
='arrow-down.svg')
327 return from_theme('go-previous', fallback
='arrow-up.svg')
331 """Add new/add-to-list icon"""
332 return from_theme('list-add', fallback
='folder-new.svg')
337 return from_theme('checkmark', fallback
='check.svg')
340 def open_directory():
341 """Open directory icon"""
342 return from_theme('folder', fallback
='folder.svg')
347 return icon('arrow-up.svg')
351 """Go to next item icon"""
352 return icon('arrow-down.svg')
356 """Partial icon name"""
357 return name_from_basename('partial.svg')
362 return icon('repo-pull.svg')
367 return icon('repo-push.svg')
372 return icon('question.svg')
377 return from_theme('list-remove', fallback
='circle-slash.svg')
381 """Repository icon"""
382 return icon('repo.svg')
385 def reverse_chronological():
386 """Reverse chronological icon"""
387 return icon('last-first-order.svg')
392 return from_theme('document-save', fallback
='desktop-download.svg')
397 return from_theme('search', fallback
='search.svg')
401 """Select all icon"""
402 return from_theme('edit-select-all', fallback
='edit-select-all')
407 return icon('staged.svg')
411 """Staged icon name"""
412 return name_from_basename('staged.svg')
417 return icon('star.svg')
421 """Sync/update icon"""
422 return icon('sync.svg')
427 return icon('tag.svg')
432 return icon('terminal.svg')
437 return from_theme('edit-undo', fallback
='edit-undo.svg')
442 return from_theme('edit-redo', fallback
='edit-redo.svg')
445 def style_dialog_apply():
446 """Apply icon from the current style"""
447 return from_style(QtWidgets
.QStyle
.SP_DialogApplyButton
)
450 def style_dialog_discard():
451 """Discard icon for the current style"""
452 return from_style(QtWidgets
.QStyle
.SP_DialogDiscardButton
)
455 def style_dialog_reset():
456 """Reset icon for the current style"""
457 return from_style(QtWidgets
.QStyle
.SP_DialogResetButton
)
461 """Expand/unfold icon"""
462 return icon('unfold.svg')
466 """An eye icon to represent visualization"""
467 return icon('eye.svg')
471 """Upstream branch icon name"""
472 return name_from_basename('upstream.svg')
476 """Zoom-to-fit icon"""
477 return from_theme('zoom-fit-best', fallback
='zoom-fit-best.svg')
482 return from_theme('zoom-in', fallback
='zoom-in.svg')
487 return from_theme('zoom-out', fallback
='zoom-out.svg')