2016-05-29 01:54:25 +00:00
|
|
|
# Copyright 2016 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
#
|
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
2015-01-03 21:33:16 +00:00
|
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2011-04-21 15:17:19 +00:00
|
|
|
from core.scanner import ScanType
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2010-10-04 13:29:00 +00:00
|
|
|
from ..base.preferences import Preferences as PreferencesBase
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
class Preferences(PreferencesBase):
|
2016-05-29 01:54:25 +00:00
|
|
|
DEFAULT_SCAN_TYPE = ScanType.FuzzyBlock
|
|
|
|
|
2010-08-15 10:27:15 +00:00
|
|
|
def _load_specific(self, settings):
|
2011-04-21 15:17:19 +00:00
|
|
|
get = self.get_value
|
|
|
|
self.match_scaled = get('MatchScaled', self.match_scaled)
|
2016-05-29 01:54:25 +00:00
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
def _reset_specific(self):
|
|
|
|
self.filter_hardness = 95
|
|
|
|
self.match_scaled = False
|
2016-05-29 01:54:25 +00:00
|
|
|
|
2010-08-15 10:27:15 +00:00
|
|
|
def _save_specific(self, settings):
|
2011-04-21 15:17:19 +00:00
|
|
|
set_ = self.set_value
|
|
|
|
set_('MatchScaled', self.match_scaled)
|
2016-05-29 01:54:25 +00:00
|
|
|
|