projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Compile fix.
[wxWidgets.git]
/
wxPython
/
wx
/
lib
/
colourdb.py
diff --git
a/wxPython/wx/lib/colourdb.py
b/wxPython/wx/lib/colourdb.py
index ec9ae457f21dba655e44c85f0770cee2b3b1c6aa..c053c5ce0f63c1171925ee16a2e3f19f040e5c2a 100644
(file)
--- a/
wxPython/wx/lib/colourdb.py
+++ b/
wxPython/wx/lib/colourdb.py
@@
-12,16
+12,19
@@
#----------------------------------------------------------------------
"""
#----------------------------------------------------------------------
"""
-Load color names/values from the rgb.txt file on my system...
+Load addition color names/values into the wx colour database. These
+names and values originally came from the rgb.txt file on my system...
"""
def getColourList():
"""
def getColourList():
+ """Returns a list of just the colour names used by this module."""
return [ x[0] for x in getColourInfoList() ]
def getColourInfoList():
return [ x[0] for x in getColourInfoList() ]
def getColourInfoList():
+ """Returns the list of colour name/value tuples used by this module."""
return [
("SNOW", 255, 250, 250),
("GHOST WHITE", 248, 248, 255),
return [
("SNOW", 255, 250, 250),
("GHOST WHITE", 248, 248, 255),
@@
-659,11
+662,15
@@
def getColourInfoList():
_haveUpdated = False
def updateColourDB():
_haveUpdated = False
def updateColourDB():
+ """Updates the wx colour database by adding new colour names and RGB values."""
global _haveUpdated
if not _haveUpdated:
global _haveUpdated
if not _haveUpdated:
- from wxPython.wx import wxTheColourDatabase
+ import wx
+ assert wx.GetApp() is not None, "You must have a wx.App object before you can use the colour database."
cl = getColourInfoList()
cl = getColourInfoList()
+
for info in cl:
for info in cl:
- wxTheColourDatabase.Append(*info)
-
+ wx.TheColourDatabase.Append(*info)
+
+ _haveUpdated = True