X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cf694132f1c28509a9f84377ce8d374bae4177ad..4e4ea166d76da40eaa5fdcf9e958d93521f72fba:/utils/wxPython/demo/wxScrolledWindow.py diff --git a/utils/wxPython/demo/wxScrolledWindow.py b/utils/wxPython/demo/wxScrolledWindow.py index 7012e38f9a..9586cd1bc0 100644 --- a/utils/wxPython/demo/wxScrolledWindow.py +++ b/utils/wxPython/demo/wxScrolledWindow.py @@ -15,8 +15,8 @@ class MyCanvas(wxScrolledWindow): self.Connect(-1, -1, wxEVT_MOTION, self.OnLeftButtonEvent) self.SetCursor(wxStockCursor(wxCURSOR_PENCIL)) - bmp = wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP) - self.bmp = bmp + #bmp = wxBitmap('bitmaps/image.bmp', wxBITMAP_TYPE_BMP) + #self.bmp = bmp self.SetScrollbars(20, 20, 50, 50) @@ -54,9 +54,9 @@ class MyCanvas(wxScrolledWindow): dc.SetPen(wxGREEN_PEN) dc.DrawSpline(lst+[(100,100)]) - dc.DrawBitmap(self.bmp, 200, 20) - dc.SetTextForeground(wxColour(0, 0xFF, 0x80)) - dc.DrawText("a bitmap", 200, 80) + #dc.DrawBitmap(self.bmp, 200, 20) + #dc.SetTextForeground(wxColour(0, 0xFF, 0x80)) + #dc.DrawText("a bitmap", 200, 80) self.DrawSavedLines(dc) dc.EndDrawing()