-
Notifications
You must be signed in to change notification settings - Fork 0
/
GUI_Draw.py
64 lines (43 loc) · 1.64 KB
/
GUI_Draw.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-
###########################################################################
## Python code generated with wxFormBuilder (version 3.10.1-0-g8feb16b3)
## http://www.wxformbuilder.org/
##
## PLEASE DO *NOT* EDIT THIS FILE!
###########################################################################
import wx
import wx.xrc
###########################################################################
## Class Main
###########################################################################
class Main ( wx.Frame ):
def __init__( self, parent ):
wx.Frame.__init__ ( self, parent, id = wx.ID_ANY, title = u"Draw", pos = wx.DefaultPosition, size = wx.Size( 600,500 ), style = wx.CAPTION|wx.CLOSE_BOX|wx.TAB_TRAVERSAL )
self.SetSizeHints( wx.DefaultSize, wx.DefaultSize )
self.SetBackgroundColour( wx.Colour( 255, 255, 255 ) )
bSizer3 = wx.BoxSizer( wx.VERTICAL )
self.SetSizer( bSizer3 )
self.Layout()
self.Centre( wx.BOTH )
# Connect Events
self.Bind( wx.EVT_CLOSE, self.Close )
self.Bind( wx.EVT_ERASE_BACKGROUND, self.MainOnEraseBackground )
self.Bind( wx.EVT_LEFT_DOWN, self.MainOnLeftDown )
self.Bind( wx.EVT_LEFT_UP, self.MainOnLeftUp )
self.Bind( wx.EVT_MOVE, self.OnMove )
self.Bind( wx.EVT_PAINT, self.MainOnPaint )
def __del__( self ):
pass
# Virtual event handlers, override them in your derived class
def Close( self, event ):
event.Skip()
def MainOnEraseBackground( self, event ):
event.Skip()
def MainOnLeftDown( self, event ):
event.Skip()
def MainOnLeftUp( self, event ):
event.Skip()
def OnMove( self, event ):
event.Skip()
def MainOnPaint( self, event ):
event.Skip()