mirror of
				https://github.com/arsenetar/dupeguru.git
				synced 2025-09-11 17:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			480 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			480 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from objp.util import pyref
 | |
| from cocoa.inter import PyGUIObject, GUIObjectView
 | |
| 
 | |
| class IgnoreListDialogView(GUIObjectView):
 | |
|     def show(self): pass
 | |
| 
 | |
| class PyIgnoreListDialog(PyGUIObject):
 | |
|     def ignoreListTable(self) -> pyref:
 | |
|         return self.model.ignore_list_table
 | |
|     
 | |
|     def removeSelected(self):
 | |
|         self.model.remove_selected()
 | |
|     
 | |
|     def clear(self):
 | |
|         self.model.clear()
 | |
|     
 | |
|     #--- model --> view
 | |
|     def show(self):
 | |
|         self.callback.show()
 | |
|     
 |