icons: add style icons for apply, discard and reset
[git-cola.git] / cola / icons.py
blob4bfafe888713ee601e3e9418c0a3cde267d468fd
1 """The only file where icon filenames are mentioned"""
2 from __future__ import absolute_import, division, unicode_literals
3 import os
5 from qtpy import QtGui
6 from qtpy import QtWidgets
8 from . import core
9 from . import qtcompat
10 from . import resources
11 from .compat import ustr
12 from .i18n import N_
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',
45 def install(themes):
46 for theme in themes:
47 icon_dir = resources.icon_dir(theme)
48 qtcompat.add_search_path('icons', icon_dir)
51 def icon_themes():
52 return (
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().
64 """
65 return 'icons:' + basename
68 def from_name(name):
69 """Return a QIcon from an absolute filename or "icons:basename.svg" name"""
70 return QtGui.QIcon(name)
73 def icon(basename):
74 """Given a basename returns a QIcon from the corresponding cola icon"""
75 return from_name(name_from_basename(basename))
78 def from_theme(name, fallback=None):
79 """Grab an icon from the current theme with a fallback
81 Support older versions of Qt checking for fromTheme's availability.
83 """
84 if hasattr(QtGui.QIcon, 'fromTheme'):
85 base, _ = os.path.splitext(name)
86 if fallback:
87 qicon = QtGui.QIcon.fromTheme(base, icon(fallback))
88 else:
89 qicon = QtGui.QIcon.fromTheme(base)
90 if not qicon.isNull():
91 return qicon
92 return icon(fallback or name)
95 def basename_from_filename(filename):
96 """Returns an icon name based on the filename"""
97 mimetype = core.guess_mimetype(filename)
98 if mimetype is not None:
99 mimetype = mimetype.lower()
100 for filetype, icon_name in KNOWN_FILE_MIME_TYPES:
101 if filetype in mimetype:
102 return icon_name
103 extension = os.path.splitext(filename)[1]
104 return KNOWN_FILE_EXTENSIONS.get(extension.lower(), 'file-text.svg')
107 def from_filename(filename):
108 basename = basename_from_filename(filename)
109 return from_name(name_from_basename(basename))
112 def mkicon(value, default=None):
113 if value is None and default is not None:
114 value = default()
115 elif value and isinstance(value, (str, ustr)):
116 value = QtGui.QIcon(value)
117 return value
120 def from_style(key):
121 """Maintain a cache of standard icons and return cache entries."""
122 style = QtWidgets.QApplication.instance().style()
123 return style.standardIcon(key)
126 def status(filename, deleted, is_staged, untracked):
127 if deleted:
128 icon_name = 'circle-slash-red.svg'
129 elif is_staged:
130 icon_name = 'staged.svg'
131 elif untracked:
132 icon_name = 'question-plain.svg'
133 else:
134 icon_name = basename_from_filename(filename)
135 return icon_name
138 # Icons creators and SVG file references
140 def three_bars():
141 return icon('three-bars.svg')
144 def add():
145 return from_theme('list-add', fallback='plus.svg')
148 def alphabetical():
149 return icon('a-z-order.svg')
152 def branch():
153 return icon('git-branch.svg')
156 def check_name():
157 return name_from_basename('check.svg')
160 def close():
161 return icon('x.svg')
164 def cola():
165 return icon('git-cola.svg')
168 def commit():
169 return icon('document-save-symbolic.svg')
172 def compare():
173 return icon('git-compare.svg')
176 def configure():
177 return icon('gear.svg')
180 def copy():
181 return from_theme('edit-copy.svg')
184 def default_app():
185 return icon('telescope.svg')
188 def dot_name():
189 return name_from_basename('primitive-dot.svg')
192 def download():
193 return icon('file-download.svg')
196 def discard():
197 return icon('trashcan.svg')
200 # folder vs directory: directory is opaque, folder is just an outline
201 # directory is used for the File Browser, where more contrast with the file
202 # icons are needed.
204 def folder():
205 return icon('folder.svg')
208 def directory():
209 return icon('file-directory.svg')
212 def diff():
213 return icon('diff.svg')
216 def edit():
217 return icon('pencil.svg')
220 def ellipsis():
221 return icon('ellipsis.svg')
224 def external():
225 return icon('link-external.svg')
228 def file_code():
229 return icon('file-code.svg')
232 def file_text():
233 return icon('file-text.svg')
236 def file_zip():
237 return icon('file-zip.svg')
240 def fold():
241 return icon('fold.svg')
244 def merge():
245 return icon('git-merge.svg')
248 def modified():
249 return icon('modified.svg')
252 def modified_name():
253 return name_from_basename('modified.svg')
256 def new():
257 return icon('folder-new.svg')
260 def ok():
261 return icon('check.svg')
264 def open_directory():
265 return icon('folder.svg')
268 def partial_name():
269 return name_from_basename('partial.svg')
272 def pull():
273 return icon('repo-pull.svg')
276 def push():
277 return icon('repo-push.svg')
280 def question():
281 return icon('question.svg')
284 def remove():
285 return from_theme('list-remove', fallback='circle-slash.svg')
288 def repo():
289 return icon('repo.svg')
292 def reverse_chronological():
293 return icon('last-first-order.svg')
296 def save():
297 return icon('desktop-download.svg')
300 def search():
301 return icon('search.svg')
304 def select_all():
305 return from_theme('edit-select-all.svg')
308 def staged():
309 return icon('staged.svg')
312 def staged_name():
313 return name_from_basename('staged.svg')
316 def star():
317 return icon('star.svg')
320 def sync():
321 return icon('sync.svg')
324 def tag():
325 return icon('tag.svg')
328 def undo():
329 return from_theme('edit-undo', fallback='edit-undo.svg')
332 def style_dialog_apply():
333 return from_style(QtWidgets.QStyle.SP_DialogApplyButton)
336 def style_dialog_discard():
337 return from_style(QtWidgets.QStyle.SP_DialogDiscardButton)
340 def style_dialog_reset():
341 return from_style(QtWidgets.QStyle.SP_DialogResetButton)
344 def unfold():
345 return icon('unfold.svg')
348 def visualize():
349 return icon('eye.svg')
352 def upstream_name():
353 return name_from_basename('upstream.svg')
356 def zoom_fit_best():
357 return icon('zoom-fit-best.svg')
360 def zoom_in():
361 return icon('zoom-in.svg')
364 def zoom_out():
365 return icon('zoom-out.svg')