]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/wxScrolledWindow.py
2 from wxPython
.wx
import *
4 #---------------------------------------------------------------------------
6 class MyCanvas(wxScrolledWindow
):
7 def __init__(self
, parent
, id = -1, size
= wxDefaultSize
):
8 wxScrolledWindow
.__init
__(self
, parent
, id, wxPoint(0, 0), size
, wxSUNKEN_BORDER
)
14 self
.SetBackgroundColour(wxNamedColor("WHITE"))
15 EVT_LEFT_DOWN(self
, self
.OnLeftButtonEvent
)
16 EVT_LEFT_UP(self
, self
.OnLeftButtonEvent
)
17 EVT_MOTION(self
, self
.OnLeftButtonEvent
)
19 EVT_PAINT(self
, self
.OnPaint
)
22 self
.SetCursor(wxStockCursor(wxCURSOR_PENCIL
))
23 bmp
= wxBitmap('bitmaps/test2.bmp', wxBITMAP_TYPE_BMP
)
24 mask
= wxMaskColour(bmp
, wxBLUE
)
28 self
.SetScrollbars(20, 20, self
.maxWidth
/20, self
.maxHeight
/20)
37 def OnPaint(self
, event
):
43 def DoDrawing(self
, dc
):
45 dc
.SetPen(wxPen(wxNamedColour('RED')))
46 dc
.DrawRectangle(5, 5, 50, 50)
48 dc
.SetBrush(wxLIGHT_GREY_BRUSH
)
49 dc
.SetPen(wxPen(wxNamedColour('BLUE'), 4))
50 dc
.DrawRectangle(15, 15, 50, 50)
52 dc
.SetFont(wxFont(14, wxSWISS
, wxNORMAL
, wxNORMAL
))
53 dc
.SetTextForeground(wxColour(0xFF, 0x20, 0xFF))
54 te
= dc
.GetTextExtent("Hello World")
55 dc
.DrawText("Hello World", 60, 65)
57 dc
.SetPen(wxPen(wxNamedColour('VIOLET'), 4))
58 dc
.DrawLine(5, 65+te
[1], 60+te
[0], 65+te
[1])
60 lst
= [(100,110), (150,110), (150,160), (100,160)]
61 dc
.DrawLines(lst
, -60)
63 dc
.DrawPolygon(lst
, 75)
64 dc
.SetPen(wxGREEN_PEN
)
65 dc
.DrawSpline(lst
+[(100,100)])
67 dc
.DrawBitmap(self
.bmp
, 200, 20, true
)
68 dc
.SetTextForeground(wxColour(0, 0xFF, 0x80))
69 dc
.DrawText("a bitmap", 200, 85)
71 font
= wxFont(20, wxSWISS
, wxNORMAL
, wxNORMAL
)
73 dc
.SetTextForeground(wxBLACK
)
74 for a
in range(0, 360, 45):
75 dc
.DrawRotatedText("Rotated text...", 300, 300, a
)
77 dc
.SetPen(wxTRANSPARENT_PEN
)
78 dc
.SetBrush(wxBLUE_BRUSH
)
79 dc
.DrawRectangle(50,500,50,50)
80 dc
.DrawRectangle(100,500,50,50)
82 dc
.SetPen(wxPen(wxNamedColour('RED')))
83 dc
.DrawEllipticArc(200, 500, 50, 75, 0, 90)
85 self
.DrawSavedLines(dc
)
90 def DrawSavedLines(self
, dc
):
91 dc
.SetPen(wxPen(wxNamedColour('MEDIUM FOREST GREEN'), 4))
92 for line
in self
.lines
:
94 apply(dc
.DrawLine
, coords
)
97 def SetXY(self
, event
):
98 self
.x
, self
.y
= self
.ConvertEventCoords(event
)
100 def ConvertEventCoords(self
, event
):
101 xView
, yView
= self
.GetViewStart()
102 xDelta
, yDelta
= self
.GetScrollPixelsPerUnit()
103 return (event
.GetX() + (xView
* xDelta
),
104 event
.GetY() + (yView
* yDelta
))
106 def OnLeftButtonEvent(self
, event
):
112 elif event
.Dragging():
113 dc
= wxClientDC(self
)
116 dc
.SetPen(wxPen(wxNamedColour('MEDIUM FOREST GREEN'), 4))
117 coords
= (self
.x
, self
.y
) + self
.ConvertEventCoords(event
)
118 self
.curLine
.append(coords
)
119 apply(dc
.DrawLine
, coords
)
124 self
.lines
.append(self
.curLine
)
128 #---------------------------------------------------------------------------
130 def runTest(frame
, nb
, log
):
134 #---------------------------------------------------------------------------