Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Icon cleanups #388

Merged
merged 8 commits into from
Dec 3, 2014
Merged

Icon cleanups #388

merged 8 commits into from
Dec 3, 2014

Conversation

living180
Copy link
Contributor

Various cleanups and refactorings in the icon handling code. In addition, fix #386 (Untracked icon is not used).

The icon_for_file() function and its only caller update_file_icons()
were unused so remove them.

Signed-off-by: Daniel Harding <dharding@living180.net>
This will enable some later code refactoring by allowing Python's
mimetypes module to be imported in the cola.qtutils module without
a name collision.

Signed-off-by: Daniel Harding <dharding@living180.net>
* Rename KNOWN_FILE_EXTENSION to KNOWN_FILE_EXTENSIONS.
* KNOWN_FILE_MIME_TYPES was never used for dictionary lookups (it was
  only iterated over), so convert it to a list of two-element tuples.
* Convert the guessed mimetype to lowercase once instead of every time
  through the loop of KNOWN_FILE_MIME_TYPES.
* Look up the filename's extension in the KNOWN_FILE_EXTENSIONS
  dictionary instead of iterating over it and testing with .endswith().

Signed-off-by: Daniel Harding <dharding@living180.net>
The utils.file_icon() and supporting utils.ident_file_type() functions
did not really belong in the utils module because they have to do with
the QT UI.  The utils.file_icon() function was only used in one place,
in the qtutils.icon_file() function, so inline its functionality there,
and move ident_file_type() from utils to qtutils.

Signed-off-by: Daniel Harding <dharding@living180.net>
Change some of the icon functions to return icon names that get passed
to a single call to resources.icon() in create_treeitem() instead of
calling resources.icon() every time an icon is specified.

Signed-off-by: Daniel Harding <dharding@living180.net>
Rename ident_file_type() to icon_name_for_filename() and icon_file() to
icon_name_for_file() to better reflect functionality.

Signed-off-by: Daniel Harding <dharding@living180.net>
daf997b added a new smaller staged icon
for the status widget, but create_treeitem() was not updated to use the
new icon when called with check=False.  Update create_treeitem() to use
the smaller icon.

Signed-off-by: Daniel Harding <dharding@living180.net>
git-cola has an icon for untracked files, but it wasn't being used,
because the StatusTreeWidget was not providing the correct argument to
qtutils.create_treeitem().  Change StatusTreeWidget.set_untracked() to
pass untracked=True to StatusTreeWidget._set_subtree(), which will pass
that value on to qtutils.create_treeitem(), causing the desired icon to
be used.

Signed-off-by: Daniel Harding <dharding@living180.net>
@davvid
Copy link
Member

davvid commented Dec 3, 2014

👏 nice!

davvid added a commit that referenced this pull request Dec 3, 2014
Icon cleanups

Signed-off-by: David Aguilar <davvid@gmail.com>
@davvid davvid merged commit da9562b into git-cola:master Dec 3, 2014
@living180 living180 deleted the icon_cleanups branch December 4, 2014 10:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Untracked icon is not used
2 participants