Mercurial > lcfOS
annotate python/ide/qtwrapper.py @ 399:a7c444404df9
Fix hexwrite
author | Windel Bouwman |
---|---|
date | Fri, 20 Jun 2014 16:36:49 +0200 |
parents | 11c5a8a70c02 |
children |
rev | line source |
---|---|
333 | 1 import os |
343 | 2 from PyQt5 import QtCore, QtGui, QtWidgets, uic |
333 | 3 from PyQt5.QtCore import pyqtSignal, Qt |
4 | |
5 def abspath(filename): | |
6 script_path = os.path.abspath(os.path.dirname(__file__)) | |
7 return os.path.join(script_path, filename) | |
8 | |
9 def get_icon(filename): | |
10 return QtGui.QPixmap(abspath(os.path.join('icons', filename))) | |
11 |