Source code for sparkle.resources.icons

import os

from sparkle.QtWrapper import QtGui

thisfolder = os.path.dirname(os.path.realpath(__file__))

[docs]def arrowup(): return QtGui.QIcon(os.path.join(thisfolder,'arrowup.png'))
[docs]def arrowdown(): return QtGui.QIcon(os.path.join(thisfolder,'arrowdown.png'))
[docs]def windowicon(): return QtGui.QIcon(os.path.join(thisfolder,'horsey.png'))