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
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
import objc
|
|
|
|
|
2009-12-30 10:37:57 +00:00
|
|
|
from core import scanner
|
2010-02-03 10:55:53 +00:00
|
|
|
from core.app_cocoa_inter import PyDupeGuruBase
|
|
|
|
from core_se.app_cocoa import DupeGuru
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
# Fix py2app imports with chokes on relative imports
|
2009-12-30 10:37:57 +00:00
|
|
|
from core_se import fs, data
|
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):
|
|
|
|
self = super(PyDupeGuru,self).init()
|
2009-10-23 13:46:18 +00:00
|
|
|
self.app = DupeGuru()
|
2009-06-01 09:55:11 +00:00
|
|
|
return self
|
|
|
|
|
|
|
|
#---Properties
|
|
|
|
def setMinMatchPercentage_(self,percentage):
|
|
|
|
self.app.scanner.min_match_percentage = int(percentage)
|
|
|
|
|
|
|
|
def setScanType_(self,scan_type):
|
|
|
|
try:
|
|
|
|
self.app.scanner.scan_type = [
|
|
|
|
scanner.SCAN_TYPE_FILENAME,
|
|
|
|
scanner.SCAN_TYPE_CONTENT
|
|
|
|
][scan_type]
|
|
|
|
except IndexError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setWordWeighting_(self,words_are_weighted):
|
|
|
|
self.app.scanner.word_weighting = words_are_weighted
|
|
|
|
|
|
|
|
def setMatchSimilarWords_(self,match_similar_words):
|
|
|
|
self.app.scanner.match_similar_words = match_similar_words
|
|
|
|
|
|
|
|
@objc.signature('v@:i')
|
|
|
|
def setSizeThreshold_(self, size_threshold):
|
|
|
|
self.app.scanner.size_threshold = size_threshold
|
|
|
|
|
|
|
|
#---Registration
|
2010-01-13 08:30:10 +00:00
|
|
|
def appName(self):
|
|
|
|
return "dupeGuru"
|
|
|
|
|