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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
"""
Copyright (c) 2015-2017 Nicholas H.Tollervey and others (see the AUTHORS file).
Based upon work done for Puppy IDE by Dan Pope, Nicholas Tollervey and Damien
George.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from pkg_resources import resource_filename, resource_string
from PyQt5.QtGui import QPixmap, QIcon
from PyQt5.QtCore import QDir
# The following lines add the images and css directories to the search path.
QDir.addSearchPath('images', resource_filename(__name__, 'images'))
QDir.addSearchPath('css', resource_filename(__name__, 'css'))
def path(name, resource_dir="images/"):
"""Return the filename for the referenced image."""
return resource_filename(__name__, resource_dir + name)
def load_icon(name):
"""Load an icon from the resources directory."""
return QIcon(path(name))
def load_pixmap(name):
"""Load a pixmap from the resources directory."""
return QPixmap(path(name))
def load_stylesheet(name):
"""Load a CSS stylesheet from the resources directory."""
return resource_string(__name__, "css/" + name).decode('utf8')
def load_font_data(name):
"""
Load the (binary) content of a font as bytes
"""
return resource_string(__name__, "fonts/" + name)
|