1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Load icons from either images/misc or images/icons

This commit is contained in:
Juhani Numminen 2020-02-29 11:40:01 +02:00
parent f5b1cf0eea
commit e5e60d3232
2 changed files with 16 additions and 4 deletions

View file

@ -168,9 +168,20 @@ class DataLoader:
return self.findFile(filename, subdirs)
def findAllIconSizes(self, filename='pysol.png'):
icondir = self.findDir(os.path.join('images', 'icons'))
icons = [os.path.join(icondir, subdir, filename) for subdir in
os.listdir(icondir)]
try:
icondir = self.findDir(os.path.join('images', 'icons'))
icons = [os.path.join(icondir, subdir, filename) for subdir in
os.listdir(icondir)]
except OSError:
try:
# pysol06.png is known to have transparent borders around it
# which is unsuitable for a window icon
icon_blacklist = ('pysol06.png',)
miscdir = self.findDir(os.path.join('images', 'misc'))
icons = [os.path.join(miscdir, f) for f in os.listdir(miscdir)
if f not in icon_blacklist]
except OSError:
icons = []
return filter(os.path.isfile, icons)
def findDir(self, filename, subdirs=None):

View file

@ -93,7 +93,8 @@ def base_init_root_window(root, app):
if TOOLKIT == 'tk':
icons = [loadImage(img) for img in app.dataloader.findAllIconSizes()]
root.wm_iconphoto(True, *icons)
if icons:
root.wm_iconphoto(True, *icons)
# set minsize
sw, sh = (root.winfo_screenwidth(), root.winfo_screenheight())