2009-06-01 09:55:11 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2009-05-21
|
2011-04-12 10:04:01 +02:00
|
|
|
# Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
#
|
2010-09-30 12:17:41 +02:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-08-05 08:59:46 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 12:17:41 +02:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2011-09-21 14:04:41 -04:00
|
|
|
from core_me import __appname__
|
2011-09-20 18:40:27 -04:00
|
|
|
from core_me.app import DupeGuru as DupeGuruModel
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2010-10-04 15:29:00 +02:00
|
|
|
from ..base.app import DupeGuru as DupeGuruBase
|
|
|
|
from .details_dialog import DetailsDialog
|
2011-11-28 10:27:17 -05:00
|
|
|
from .results_model import ResultsModel
|
2010-10-04 15:29:00 +02:00
|
|
|
from .preferences import Preferences
|
|
|
|
from .preferences_dialog import PreferencesDialog
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
class DupeGuru(DupeGuruBase):
|
2011-09-20 18:40:27 -04:00
|
|
|
MODELCLASS = DupeGuruModel
|
2010-04-07 09:04:58 -07:00
|
|
|
EDITION = 'me'
|
2009-06-01 09:55:11 +00:00
|
|
|
LOGO_NAME = 'logo_me'
|
2011-01-21 13:57:54 +01:00
|
|
|
NAME = __appname__
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2011-11-28 10:27:17 -05:00
|
|
|
DETAILS_DIALOG_CLASS = DetailsDialog
|
|
|
|
RESULT_MODEL_CLASS = ResultsModel
|
|
|
|
PREFERENCES_CLASS = Preferences
|
|
|
|
PREFERENCES_DIALOG_CLASS = PreferencesDialog
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
def _update_options(self):
|
|
|
|
DupeGuruBase._update_options(self)
|
2011-09-20 15:06:29 -04:00
|
|
|
self.model.scanner.min_match_percentage = self.prefs.filter_hardness
|
|
|
|
self.model.scanner.scan_type = self.prefs.scan_type
|
|
|
|
self.model.scanner.word_weighting = self.prefs.word_weighting
|
|
|
|
self.model.scanner.match_similar_words = self.prefs.match_similar
|
2009-06-01 09:55:11 +00:00
|
|
|
scanned_tags = set()
|
|
|
|
if self.prefs.scan_tag_track:
|
|
|
|
scanned_tags.add('track')
|
|
|
|
if self.prefs.scan_tag_artist:
|
|
|
|
scanned_tags.add('artist')
|
|
|
|
if self.prefs.scan_tag_album:
|
|
|
|
scanned_tags.add('album')
|
|
|
|
if self.prefs.scan_tag_title:
|
|
|
|
scanned_tags.add('title')
|
|
|
|
if self.prefs.scan_tag_genre:
|
|
|
|
scanned_tags.add('genre')
|
|
|
|
if self.prefs.scan_tag_year:
|
|
|
|
scanned_tags.add('year')
|
2011-09-20 15:06:29 -04:00
|
|
|
self.model.scanner.scanned_tags = scanned_tags
|
2009-06-01 09:55:11 +00:00
|
|
|
|