File: icon.py

package info (click to toggle)
python-moderngl-window 2.4.6-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 69,220 kB
  • sloc: python: 11,387; makefile: 21
file content (25 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from moderngl_window.loaders.base import BaseLoader
from moderngl_window.finders import texture
from pathlib import Path


class IconLoader(BaseLoader):
    kind = "icon"

    def __init__(self, meta):
        super().__init__(meta)

    def find_icon(self):
        """Find resource using texture finders.

        This is mainly a shortcut method to simplify the task.

        Args:
            path: Path to resource
        """
        abs_path = self._find(Path(self.meta.path), texture.get_finders())
        if abs_path is None:
            raise ValueError(
                "Could not find the icon specified. {}".format(self.meta.path)
            )
        return abs_path