mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 10:26:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			504 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			504 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import W
 | |
| 
 | |
| w = W.Window((600, 400), "Ha!", minsize = (240, 200))
 | |
| 
 | |
| w.panes = W.HorizontalPanes((8, 8, -8, -20), (0.6, 0.4))
 | |
| 
 | |
| w.panes.panes = W.VerticalPanes(None, (0.3, 0.4, 0.3))
 | |
| w.panes.panes.blah1 = W.EditText(None, "eehhh...")
 | |
| w.panes.panes.blah2 = W.EditText(None, "nou...")
 | |
| w.panes.panes.blah3 = W.List(None, ["eehhh...", 'abc', 'def'])
 | |
| 
 | |
| w.panes.group = W.Group(None)
 | |
| w.panes.group.mytext = W.EditText((0, 24, 0, 0), "eehhh...")
 | |
| w.panes.group.button1 = W.Button((0, 0, 80, 16), "A Button")
 | |
| 
 | |
| w.open()
 | 
