+
+
+ #----------------------------------------------------------------------
+
+ def runTest(frame, nb, log):
+ """
+ This method is used by the wxPython Demo Framework for integrating
+ this demo with the rest.
+ """
+ global colors
+ wxPython.lib.colourdb.updateColourDB()
+ colors = wxPython.lib.colourdb.getColourList()
+
+ win = DrawFrame(None, -1, "FloatCanvas Drawing Window",
+ wx.DefaultPosition, (500,500))
+ frame.otherWin = win
+ win.Show(True)
+
+
+