| 
									
										
										
										
											1996-11-27 19:52:01 +00:00
										 |  |  | #! /usr/bin/env python | 
					
						
							| 
									
										
										
										
											1992-03-30 10:54:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | testlabels = 'Name', 'Address', 'City', 'Country', 'Comments' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							|  |  |  | 	import stdwin | 
					
						
							|  |  |  | 	from WindowParent import WindowParent, MainLoop | 
					
						
							|  |  |  | 	from FormSplit import FormSplit | 
					
						
							|  |  |  | 	from Buttons import Label | 
					
						
							|  |  |  | 	from TextEdit import TextEdit | 
					
						
							|  |  |  | 	# | 
					
						
							|  |  |  | 	stdwin.setdefscrollbars(0, 0) | 
					
						
							|  |  |  | 	# | 
					
						
							|  |  |  | 	w = WindowParent().create('FormTest', (0, 0)) | 
					
						
							|  |  |  | 	f = FormSplit().create(w) | 
					
						
							|  |  |  | 	# | 
					
						
							|  |  |  | 	h, v = 0, 0 | 
					
						
							|  |  |  | 	for label in testlabels: | 
					
						
							|  |  |  | 		f.placenext(h, v) | 
					
						
							|  |  |  | 		lbl = Label().definetext(f, label) | 
					
						
							|  |  |  | 		f.placenext(h + 100, v) | 
					
						
							|  |  |  | 		txt = TextEdit().createboxed(f, (40, 2), (2, 2)) | 
					
						
							|  |  |  | 		#txt = TextEdit().create(f, (40, 2)) | 
					
						
							|  |  |  | 		v = v + 2*stdwin.lineheight() + 10 | 
					
						
							|  |  |  | 	# | 
					
						
							|  |  |  | 	w.realize() | 
					
						
							|  |  |  | 	# | 
					
						
							|  |  |  | 	MainLoop() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | main() |