2010-01-01 20:11:34 +00:00
|
|
|
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2010-02-05 19:10:54 +00:00
|
|
|
from core.app_cocoa_inter import PyDupeGuruBase, PyDetailsPanel
|
2009-12-30 10:37:57 +00:00
|
|
|
from core_pe import app_cocoa as app_pe_cocoa
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2010-03-01 12:15:27 +00:00
|
|
|
# Fix py2app imports which chokes on relative imports and other stuff
|
2010-08-15 12:23:16 +00:00
|
|
|
import hsutil.conflict
|
|
|
|
import core.engine, core.fs, core.app
|
|
|
|
import core_pe.block, core_pe.cache, core_pe.matchbase, core_pe.data, core_pe._block_osx
|
2010-08-15 12:42:55 +00:00
|
|
|
import xml.etree.ElementPath
|
2010-03-01 12:15:27 +00:00
|
|
|
import gzip
|
2010-08-15 12:23:16 +00:00
|
|
|
import aem.kae
|
|
|
|
import appscript.defaultterminology
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2010-02-03 10:55:53 +00:00
|
|
|
class PyDupeGuru(PyDupeGuruBase):
|
2009-06-01 09:55:11 +00:00
|
|
|
def init(self):
|
2010-02-03 10:55:53 +00:00
|
|
|
self = super(PyDupeGuru, self).init()
|
2010-02-07 14:26:50 +00:00
|
|
|
self.py = app_pe_cocoa.DupeGuruPE()
|
2009-06-01 09:55:11 +00:00
|
|
|
return self
|
|
|
|
|
|
|
|
def clearPictureCache(self):
|
2010-02-07 14:26:50 +00:00
|
|
|
self.py.scanner.clear_picture_cache()
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2010-02-03 10:55:53 +00:00
|
|
|
#---Information
|
2009-06-01 09:55:11 +00:00
|
|
|
def getSelectedDupePath(self):
|
2010-08-11 14:39:06 +00:00
|
|
|
return str(self.py.selected_dupe_path())
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
def getSelectedDupeRefPath(self):
|
2010-08-11 14:39:06 +00:00
|
|
|
return str(self.py.selected_dupe_ref_path())
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
#---Properties
|
|
|
|
def setMatchScaled_(self,match_scaled):
|
2010-02-07 14:26:50 +00:00
|
|
|
self.py.scanner.match_scaled = match_scaled
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
def setMinMatchPercentage_(self,percentage):
|
2010-02-07 14:26:50 +00:00
|
|
|
self.py.scanner.threshold = int(percentage)
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
#---Registration
|
2010-01-13 08:30:10 +00:00
|
|
|
def appName(self):
|
|
|
|
return "dupeGuru Picture Edition"
|
|
|
|
|