| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | # Test List module. | 
					
						
							|  |  |  | # Draw a window with all the files in the current folder. | 
					
						
							|  |  |  | # double-clicking will change folder. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This test expects Win, Evt and FrameWork (and anything used by those) | 
					
						
							|  |  |  | # to work. | 
					
						
							| 
									
										
										
										
											1995-08-17 14:26:23 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Actually, it is more a test of FrameWork by now.... | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | from FrameWork import * | 
					
						
							| 
									
										
										
										
											2001-08-25 12:15:04 +00:00
										 |  |  | from Carbon import Win | 
					
						
							|  |  |  | from Carbon import Qd | 
					
						
							|  |  |  | from Carbon import List | 
					
						
							|  |  |  | from Carbon import Lists | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | import os | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-17 14:26:23 +00:00
										 |  |  | class ListWindow(Window): | 
					
						
							|  |  |  | 	def open(self, name, where): | 
					
						
							|  |  |  | 		self.where = where | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 		r = (40, 40, 400, 300) | 
					
						
							| 
									
										
										
										
											1995-08-17 14:26:23 +00:00
										 |  |  | 		w = Win.NewWindow(r, name, 1, 0, -1, 1, 0x55555555) | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 		r2 = (0, 0, 345, 245) | 
					
						
							| 
									
										
										
										
											1996-04-11 15:40:32 +00:00
										 |  |  | 		Qd.SetPort(w) | 
					
						
							|  |  |  | 		self.wid = w | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 		self.list = List.LNew(r2, (0, 0, 1, 1), (0,0), 0, w, 0, 1, 1, 1) | 
					
						
							| 
									
										
										
										
											1996-07-26 16:04:29 +00:00
										 |  |  | 		self.list.selFlags = Lists.lOnlyOne | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 		self.filllist() | 
					
						
							|  |  |  | 		w.DrawGrowIcon() | 
					
						
							| 
									
										
										
										
											1995-08-17 14:26:23 +00:00
										 |  |  | 		self.do_postopen() | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 		 | 
					
						
							| 
									
										
										
										
											1995-08-17 14:26:23 +00:00
										 |  |  | 	def do_activate(self, onoff, evt): | 
					
						
							|  |  |  | 		self.list.LActivate(onoff) | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	def do_update(self, *args): | 
					
						
							| 
									
										
										
										
											1996-04-10 14:49:41 +00:00
										 |  |  | 		self.list.LUpdate(self.wid.GetWindowPort().visRgn) | 
					
						
							| 
									
										
										
										
											1995-08-17 14:26:23 +00:00
										 |  |  | 		 | 
					
						
							|  |  |  | 	def do_contentclick(self, local, modifiers, evt): | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 		dclick = self.list.LClick(local, modifiers) | 
					
						
							|  |  |  | 		if dclick: | 
					
						
							|  |  |  | 			h, v = self.list.LLastClick() | 
					
						
							|  |  |  | 			file = self.list.LGetCell(1000, (h, v)) | 
					
						
							| 
									
										
										
										
											1995-08-17 14:26:23 +00:00
										 |  |  | 			self.where = os.path.join(self.where, file) | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 			self.filllist() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def filllist(self): | 
					
						
							|  |  |  | 		"""Fill the list with the contents of the current directory""" | 
					
						
							|  |  |  | 		l = self.list | 
					
						
							|  |  |  | 		l.LSetDrawingMode(0) | 
					
						
							|  |  |  | 		l.LDelRow(0, 0) | 
					
						
							| 
									
										
										
										
											1995-08-17 14:26:23 +00:00
										 |  |  | 		contents = os.listdir(self.where) | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 		l.LAddRow(len(contents), 0) | 
					
						
							|  |  |  | 		for i in range(len(contents)): | 
					
						
							|  |  |  | 			l.LSetCell(contents[i], (0, i)) | 
					
						
							|  |  |  | 		l.LSetDrawingMode(1) | 
					
						
							| 
									
										
										
										
											1996-04-10 14:49:41 +00:00
										 |  |  | 		l.LUpdate(self.wid.GetWindowPort().visRgn) | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-17 14:26:23 +00:00
										 |  |  | class TestList(Application): | 
					
						
							|  |  |  | 	def __init__(self): | 
					
						
							|  |  |  | 		Application.__init__(self) | 
					
						
							|  |  |  | 		self.num = 0 | 
					
						
							|  |  |  | 		self.listoflists = [] | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 	def makeusermenus(self): | 
					
						
							|  |  |  | 		self.filemenu = m = Menu(self.menubar, "File") | 
					
						
							|  |  |  | 		self.newitem = MenuItem(m, "New window...", "O", self.open) | 
					
						
							|  |  |  | 		self.quititem = MenuItem(m, "Quit", "Q", self.quit) | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	def open(self, *args): | 
					
						
							|  |  |  | 		import macfs | 
					
						
							|  |  |  | 		fss, ok = macfs.GetDirectory() | 
					
						
							|  |  |  | 		if not ok: | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		w = ListWindow(self) | 
					
						
							|  |  |  | 		w.open('Window %d'%self.num, fss.as_pathname()) | 
					
						
							|  |  |  | 		self.num = self.num + 1 | 
					
						
							|  |  |  | 		self.listoflists.append(w) | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 	def quit(self, *args): | 
					
						
							|  |  |  | 		raise self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	def do_about(self, id, item, window, event): | 
					
						
							|  |  |  | 		EasyDialogs.Message("""Test the List Manager interface.
 | 
					
						
							|  |  |  | 		Simple inward-only folder browser""")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-14 11:46:24 +00:00
										 |  |  | def main(): | 
					
						
							|  |  |  | 	App = TestList() | 
					
						
							|  |  |  | 	App.mainloop() | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  | 	main() | 
					
						
							|  |  |  | 	 |