mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-01 06:15:58 +00:00
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
#
|
|
# This software is licensed under the "HS" 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/hs_license
|
|
|
|
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
|
from core_pe import app_cocoa as app_pe_cocoa
|
|
|
|
# Fix py2app imports which chokes on relative imports and other stuff
|
|
from core_pe import block, cache, matchbase, data, _block_osx
|
|
from lxml import etree, _elementpath
|
|
import gzip
|
|
|
|
class PyDupeGuru(PyDupeGuruBase):
|
|
def init(self):
|
|
self = super(PyDupeGuru, self).init()
|
|
self.py = app_pe_cocoa.DupeGuruPE()
|
|
return self
|
|
|
|
def clearPictureCache(self):
|
|
self.py.scanner.clear_picture_cache()
|
|
|
|
#---Information
|
|
def getSelectedDupePath(self):
|
|
return unicode(self.py.selected_dupe_path())
|
|
|
|
def getSelectedDupeRefPath(self):
|
|
return unicode(self.py.selected_dupe_ref_path())
|
|
|
|
#---Properties
|
|
def setMatchScaled_(self,match_scaled):
|
|
self.py.scanner.match_scaled = match_scaled
|
|
|
|
def setMinMatchPercentage_(self,percentage):
|
|
self.py.scanner.threshold = int(percentage)
|
|
|
|
#---Registration
|
|
def appName(self):
|
|
return "dupeGuru Picture Edition"
|
|
|