2011-09-16 12:44:20 -04:00
|
|
|
# Created On: 2011/09/16
|
2015-01-03 16:30:57 -05:00
|
|
|
# Copyright 2015 Hardcoded Software (http://www.hardcoded.net)
|
2014-10-13 15:08:59 -04:00
|
|
|
#
|
2015-01-03 16:33:16 -05:00
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
2014-10-13 15:08:59 -04:00
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 16:33:16 -05:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2011-09-16 12:44:20 -04:00
|
|
|
|
2011-11-01 15:44:18 -04:00
|
|
|
from hscommon.trans import trget
|
2011-09-16 12:44:20 -04:00
|
|
|
|
2014-10-13 15:08:59 -04:00
|
|
|
from core.prioritize import (
|
2019-12-31 20:16:27 -06:00
|
|
|
KindCategory,
|
|
|
|
FolderCategory,
|
|
|
|
FilenameCategory,
|
|
|
|
NumericalCategory,
|
|
|
|
SizeCategory,
|
|
|
|
MtimeCategory,
|
2014-10-13 15:08:59 -04:00
|
|
|
)
|
2011-09-16 12:44:20 -04:00
|
|
|
|
2019-12-31 20:16:27 -06: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")
|
2014-10-13 15:08:59 -04:00
|
|
|
|
2011-09-16 12:44:20 -04:00
|
|
|
def extract_value(self, dupe):
|
|
|
|
return dupe.dimensions
|
2014-10-13 15:08:59 -04:00
|
|
|
|
2011-09-16 12:44:20 -04:00
|
|
|
def invert_numerical_value(self, value):
|
|
|
|
width, height = value
|
|
|
|
return (-width, -height)
|
|
|
|
|
2019-12-31 20:16:27 -06:00
|
|
|
|
2011-09-16 12:44:20 -04:00
|
|
|
def all_categories():
|
2014-10-13 15:08:59 -04:00
|
|
|
return [
|
2019-12-31 20:16:27 -06:00
|
|
|
KindCategory,
|
|
|
|
FolderCategory,
|
|
|
|
FilenameCategory,
|
|
|
|
SizeCategory,
|
|
|
|
DimensionsCategory,
|
|
|
|
MtimeCategory,
|
2014-10-13 15:08:59 -04:00
|
|
|
]
|