2011-09-16 12:44:20 -04:00
|
|
|
# Created On: 2011/09/16
|
2013-04-28 10:35:51 -04:00
|
|
|
# Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2011-09-16 12:44:20 -04:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2011-11-01 15:44:18 -04:00
|
|
|
from hscommon.trans import trget
|
2011-09-16 12:44:20 -04:00
|
|
|
|
|
|
|
from core.prioritize import (KindCategory, FolderCategory, FilenameCategory, NumericalCategory,
|
|
|
|
SizeCategory, MtimeCategory)
|
|
|
|
|
2011-11-01 15:44:18 -04:00
|
|
|
coltr = trget('columns')
|
2011-09-16 18:01:56 -04:00
|
|
|
|
2011-09-16 12:44:20 -04:00
|
|
|
class DimensionsCategory(NumericalCategory):
|
2011-09-16 18:01:56 -04:00
|
|
|
NAME = coltr("Dimensions")
|
2011-09-16 12:44:20 -04:00
|
|
|
|
|
|
|
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]
|