Mercurial > parpg-source
view gui/__init__.py @ 118:30dbbae653ad
If gui_file, in the ContainerGUIBase constructor, is a widget self.gui will now be set to it.
author | KarstenBock@gmx.net |
---|---|
date | Wed, 05 Oct 2011 10:57:31 +0200 |
parents | 06145a6ee387 |
children |
line wrap: on
line source
from fife.extensions import pychan from .inventorygui import EquipmentSlot, InventoryGrid from .spinners import Spinner, IntSpinner from .tabwidget import TabWidget pychan.registerWidget(EquipmentSlot) pychan.registerWidget(InventoryGrid) pychan.registerWidget(Spinner) pychan.registerWidget(IntSpinner) pychan.registerWidget(TabWidget)