mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@70552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
import imp_unittest, unittest
|
|
import wtc
|
|
import wx
|
|
import sys
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class ClientDCTests(wtc.WidgetTestCase):
|
|
|
|
def test_ClientDC(self):
|
|
dc = wx.ClientDC(self.frame)
|
|
dc.DrawLine(0,0, 50,50)
|
|
|
|
def test_WindowDC(self):
|
|
dc = wx.WindowDC(self.frame)
|
|
dc.DrawLine(0,0, 50,50)
|
|
|
|
|
|
def test_PaintDC(self):
|
|
class TestPanel(wx.Panel):
|
|
def __init__(self, *args, **kw):
|
|
wx.Panel.__init__(self, *args, **kw)
|
|
#self.SetBackgroundStyle(wx.BG_STYLE_PAINT)
|
|
self.Bind(wx.EVT_PAINT, self.onPaint)
|
|
self.onPaintCalled = False
|
|
|
|
def onPaint(self, evt):
|
|
dc = wx.PaintDC(self)
|
|
dc.DrawLine(0,0, 50,50)
|
|
self.onPaintCalled = True
|
|
|
|
panel = TestPanel(self.frame)
|
|
self.frame.SendSizeEvent()
|
|
panel.Refresh()
|
|
self.myUpdate(panel)
|
|
self.myYield()
|
|
self.assertTrue(panel.onPaintCalled == True)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|