| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- """Undocumented Module"""
- __all__ = ['DirectLabel']
- from pandac.PandaModules import *
- import DirectGuiGlobals as DGG
- from DirectFrame import *
- class DirectLabel(DirectFrame):
- """
- DirectLabel(parent) - Create a DirectGuiWidget which has multiple
- states. User explicitly chooses a state to display
- """
- def __init__(self, parent = None, **kw):
- # Inherits from DirectFrame
- # A Direct Frame can have:
- # - A background texture (pass in path to image, or Texture Card)
- # - A midground geometry item (pass in geometry)
- # - A foreground text Node (pass in text string or Onscreen Text)
- # For a direct label:
- # Each label has 1 or more states
- # The same image/geom/text can be used for all states or each
- # state can have a different text/geom/image
- # State transitions happen under user control
- optiondefs = (
- # Define type of DirectGuiWidget
- ('pgFunc', PGItem, None),
- ('numStates', 1, None),
- ('state', self.inactiveInitState, None),
- ('activeState', 0, self.setActiveState),
- )
- # Merge keyword options with default options
- self.defineoptions(kw, optiondefs)
- # Initialize superclasses
- DirectFrame.__init__(self, parent)
-
- # Call option initialization functions
- self.initialiseoptions(DirectLabel)
- def setActiveState(self):
- """ setActiveState - change label to specifed state """
- self.guiItem.setState(self['activeState'])
|