def __init__(self, parent, title, top_left, w, h):
    	assert(parent is not None)
    	assert(isinstance(parent, (AppWindow)))
        assert(isinstance(top_left, Point))
#	self.states=None
    	self.STATE_ACCEPT = 0x4
    	self.STATE_CANCEL = 0x2
	self.state=self.STATE_ACCEPT
        Container.__init__(self, parent, title, top_left, w, h)
示例#2
0
	def __init__(self, parent, title, top_left, w, h):
		Container.__init__(self, parent, title, top_left, w, h)
		self.RadioChildren=[]
		self.count=0
 def __init__(self, parent, title, top_left, w, h):
 	assert(parent is not None)
 	assert(isinstance(parent, (AppWindow)))
     assert(isinstance(top_left, Point))
     Container.__init__(self, parent, title, top_left, w, h)