Mercurial > fife-parpg
view clients/editor/scripts/gui/statusbar.py @ 316:6add14ebe9f5
Disabled recursing for some adaptLayout calls. This will make the editor more responsive
author | cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sat, 15 Aug 2009 00:42:23 +0000 |
parents | 62d1eebd1487 |
children | 8b125ec749d7 |
line wrap: on
line source
from pychan import widgets class StatusBar(widgets.HBox): """ A basic widget which displays information of the current status of the program. Use the text property to set the text to be displayed. Use showTooltip() to display a temporary message. """ def __init__(self, text=u"", panel_size=25, *args, **kwargs): super(StatusBar, self).__init__(*args, **kwargs) self.min_size = (panel_size, panel_size) self._tooltip = None self._label = widgets.Label(text=text) self.addChild(self._label) self._text = u"" self._tooltipDisplayed = False def setText(self, text): """ Sets the text to be displayed whenever a tooltip isn't displayed """ self._text = text if not self.isTooltipDisplayed(): self._label.text = text def getText(self): return self._text text = property(getText, setText) def showTooltip(self, text): """ Shows a text which is visible until hideTooltip is called """ self._label.text = text self._tooltipDisplayed = True def hideTooltip(self): """ Removes the text set by showTooltip. Whatever text previously set by setText is then displayed. """ self._label.text = self._text self._tooltipDisplayed = False def isTooltipDisplayed(self): """ Returns true if tool tip is displayed """ return self._tooltipDisplayed