Changeset 56184
- Timestamp:
- 10/08/08 22:35:41 (6 weeks ago)
- Location:
- wxPython/trunk/wx
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
lib/platebtn.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wxPython/trunk/wx
- Property svn:externals
-
old new 1 lib/floatcanvas https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/FloatCanvas/floatcanvas 2 tools/XRCed https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/XRCed 3 tools/Editra https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/Editra 1 lib/agw https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/AGW/agw 2 lib/floatcanvas https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/FloatCanvas/floatcanvas 3 tools/XRCed https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/XRCed 4 tools/Editra https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/Editra
-
- Property svn:externals
-
wxPython/trunk/wx/lib/platebtn.py
r54715 r56184 103 103 channel if needed. Returns the modified color. 104 104 @param color: color object to adjust 105 @type color: wx.Colo r105 @type color: wx.Colour 106 106 @param percent: percent to adjust +(brighten) or -(darken) 107 107 @type percent: int … … 141 141 def GetHighlightColour(): 142 142 """Get the default highlight color 143 @return: wx.Colo r143 @return: wx.Colour 144 144 145 145 """ … … 594 594 self.InvalidateBestSize() 595 595 596 def SetLabelColor(self, normal, hlight=wx.NullColo r, press=wx.NullColor):596 def SetLabelColor(self, normal, hlight=wx.NullColour, press=wx.NullColour): 597 597 """Set the color of the label. The optimal label color is usually 598 598 automatically selected depending on the button color. In some … … 642 642 def SetPressColor(self, color): 643 643 """Set the color used for highlighting the pressed state 644 @param color: wx.Colo r644 @param color: wx.Colour 645 645 @note: also resets all text colours as necessary 646 646
