1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

[#138] Added PE-specific prioritizations and adjusted PE cocoa proj to the pri dialog.

This commit is contained in:
Virgil Dupras
2011-09-16 12:44:20 -04:00
parent 664803c2ca
commit 26e81a8cbf
4 changed files with 82 additions and 8 deletions

View File

@@ -10,6 +10,8 @@ from hscommon.util import format_size
from hscommon.trans import tr as trbase
from core.data import format_timestamp, format_perc, format_dupe_count, cmp_value, Column
from . import prioritize
tr = lambda s: trbase(s, 'columns')
def format_dimensions(dimensions):
@@ -94,3 +96,5 @@ def GetGroupSortKey(group, key):
return cmp_value(str(dupe_folder_path))
return cmp_value(getattr(group.ref, COLUMNS[key].attr, ''))
def prioritization_categories():
return prioritize.all_categories()

25
core_pe/prioritize.py Normal file
View File

@@ -0,0 +1,25 @@
# Created On: 2011/09/16
# Copyright 2011 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 hscommon.trans import tr
from core.prioritize import (KindCategory, FolderCategory, FilenameCategory, NumericalCategory,
SizeCategory, MtimeCategory)
class DimensionsCategory(NumericalCategory):
NAME = tr("Dimensions")
def extract_value(self, dupe):
return dupe.dimensions
def invert_numerical_value(self, value):
width, height = value
return (-width, -height)
def all_categories():
return [KindCategory, FolderCategory, FilenameCategory, SizeCategory, DimensionsCategory,
MtimeCategory]