32 if name
in dico_images:
33 return dico_images[name]
36 image=QPixmap(dico_xpm[name])
38 fic_image = os.path.join(os.path.dirname(__file__),
"icons",name)
39 if not os.path.isfile(fic_image):
40 file, ext = os.path.splitext(fic_image)
41 fic_image = file +
'.gif'
42 image = QPixmap(fic_image)
43 dico_images[name]=image