mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 23:39:02 +00:00
e9a97afdf8
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%402
36 lines
979 B
Python
36 lines
979 B
Python
#!/usr/bin/env python
|
|
# Unit Name: preferences
|
|
# Created By: Virgil Dupras
|
|
# Created On: 2009-05-17
|
|
# $Id$
|
|
# Copyright 2009 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
from PyQt4.QtCore import QSettings, QVariant
|
|
|
|
from base.preferences import Preferences as PreferencesBase
|
|
|
|
class Preferences(PreferencesBase):
|
|
# (width, is_visible)
|
|
COLUMNS_DEFAULT_ATTRS = [
|
|
(200, True), # name
|
|
(180, True), # path
|
|
(60, True), # size
|
|
(40, False), # kind
|
|
(100, True), # dimensions
|
|
(120, False), # creation
|
|
(120, False), # modification
|
|
(60, True), # match %
|
|
(80, False), # dupe count
|
|
]
|
|
|
|
def _load_specific(self, settings, get):
|
|
self.match_scaled = get('MatchScaled', self.match_scaled)
|
|
|
|
def _reset_specific(self):
|
|
self.filter_hardness = 95
|
|
self.match_scaled = False
|
|
|
|
def _save_specific(self, settings, set_):
|
|
set_('MatchScaled', self.match_scaled)
|
|
|