Changeset 56184

Show
Ignore:
Timestamp:
10/08/08 22:35:41 (6 weeks ago)
Author:
RD
Message:

Add extern property for agw

Location:
wxPython/trunk/wx
Files:
2 modified

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 
         1lib/agw              https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/AGW/agw 
         2lib/floatcanvas   https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/FloatCanvas/floatcanvas 
         3tools/XRCed       https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/XRCed 
         4tools/Editra        https://svn.wxwidgets.org/svn/wx/wxPython/3rdParty/Editra 
  • wxPython/trunk/wx/lib/platebtn.py

    r54715 r56184  
    103103    channel if needed. Returns the modified color. 
    104104    @param color: color object to adjust 
    105     @type color: wx.Color 
     105    @type color: wx.Colour 
    106106    @param percent: percent to adjust +(brighten) or -(darken) 
    107107    @type percent: int 
     
    141141def GetHighlightColour(): 
    142142    """Get the default highlight color 
    143     @return: wx.Color 
     143    @return: wx.Colour 
    144144 
    145145    """ 
     
    594594        self.InvalidateBestSize() 
    595595 
    596     def SetLabelColor(self, normal, hlight=wx.NullColor, press=wx.NullColor): 
     596    def SetLabelColor(self, normal, hlight=wx.NullColour, press=wx.NullColour): 
    597597        """Set the color of the label. The optimal label color is usually 
    598598        automatically selected depending on the button color. In some 
     
    642642    def SetPressColor(self, color): 
    643643        """Set the color used for highlighting the pressed state 
    644         @param color: wx.Color 
     644        @param color: wx.Colour 
    645645        @note: also resets all text colours as necessary 
    646646