Removed unnecessary files, removed or replaced images that we're not

sure of their origin or license.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-05-24 20:55:42 +00:00
parent ec6803d965
commit 6c75a4cf0f
163 changed files with 12487 additions and 14000 deletions

View File

@@ -79,19 +79,18 @@ class TestPanel(wx.Panel):
def OnChooseCursor(self, evt):
# clear the dots
self.win.Refresh()
choice = self.cb.GetStringSelection()
choice = evt.GetString() #self.cb.GetStringSelection()
self.log.write("Selecting the %s cursor\n" % choice)
cnum = cursors[choice]
if cnum == CUSTOMID:
image = images.getBlom12Image()
image.SetMaskColour(255, 255, 255)
image = images.getPointyImage()
# since this image didn't come from a .cur file, tell it where the hotspot is
image.SetOptionInt(wx.IMAGE_OPTION_CUR_HOTSPOT_X, 0)
image.SetOptionInt(wx.IMAGE_OPTION_CUR_HOTSPOT_Y, 22)
image.SetOptionInt(wx.IMAGE_OPTION_CUR_HOTSPOT_X, 1)
image.SetOptionInt(wx.IMAGE_OPTION_CUR_HOTSPOT_Y, 1)
# make the image into a cursor
cursor = wx.CursorFromImage(image)