mirror of
				https://github.com/arsenetar/dupeguru.git
				synced 2025-09-11 17:58:17 +00:00 
			
		
		
		
	This unit hosts previously awkward UI view methods which weren't related to the view itself, but to the current desktop environment. These functions are now at their appropriate place.
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Created On: 2011/09/20
 | |
| # Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
 | |
| # 
 | |
| # This software is licensed under the "BSD" License as described in the "LICENSE" file, 
 | |
| # which should be included with this package. The terms are also available at 
 | |
| # http://www.hardcoded.net/licenses/bsd_license
 | |
| 
 | |
| from core.app import DupeGuru as DupeGuruBase
 | |
| from . import prioritize
 | |
| from . import __appname__
 | |
| from . import scanner, fs
 | |
| from .result_table import ResultTable
 | |
| 
 | |
| class DupeGuru(DupeGuruBase):
 | |
|     NAME = __appname__
 | |
|     METADATA_TO_READ = ['size', 'mtime', 'duration', 'bitrate', 'samplerate', 'title', 'artist',
 | |
|         'album', 'genre', 'year', 'track', 'comment']
 | |
| 
 | |
|     def __init__(self, view):
 | |
|         DupeGuruBase.__init__(self, view)
 | |
|         self.scanner = scanner.ScannerME()
 | |
|         self.directories.fileclasses = [fs.MusicFile]
 | |
|     
 | |
|     def _get_dupe_sort_key(self, dupe, get_group, key, delta):
 | |
|         if key == 'folder_path':
 | |
|             dupe_folder_path = getattr(dupe, 'display_folder_path', dupe.folder_path)
 | |
|             return str(dupe_folder_path).lower()
 | |
|         return DupeGuruBase._get_dupe_sort_key(self, dupe, get_group, key, delta)
 | |
|     
 | |
|     def _get_group_sort_key(self, group, key):
 | |
|         if key == 'folder_path':
 | |
|             dupe_folder_path = getattr(group.ref, 'display_folder_path', group.ref.folder_path)
 | |
|             return str(dupe_folder_path).lower()
 | |
|         return DupeGuruBase._get_group_sort_key(self, group, key)
 | |
|     
 | |
|     def _prioritization_categories(self):
 | |
|         return prioritize.all_categories()
 | |
|     
 | |
|     def _create_result_table(self):
 | |
|         return ResultTable(self)
 |