mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-17 20:49:02 +00:00
298f659f6e
* When clicking the "Restore Default" in the preferences dialog, only affect the preferences displayed in the current tab. The hidden tab should not be affected by this button.
64 lines
2.6 KiB
Python
64 lines
2.6 KiB
Python
# 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
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
from PyQt5.QtWidgets import QLabel
|
|
from hscommon.trans import trget
|
|
from qtlib.radio_box import RadioBox
|
|
from core.scanner import ScanType
|
|
from core.app import AppMode
|
|
|
|
from ..preferences_dialog import PreferencesDialogBase
|
|
|
|
tr = trget("ui")
|
|
|
|
|
|
class PreferencesDialog(PreferencesDialogBase):
|
|
def _setupPreferenceWidgets(self):
|
|
self._setupFilterHardnessBox()
|
|
self.widgetsVLayout.addLayout(self.filterHardnessHLayout)
|
|
self._setupAddCheckbox(
|
|
"matchScaledBox", tr("Match pictures of different dimensions")
|
|
)
|
|
self.widgetsVLayout.addWidget(self.matchScaledBox)
|
|
self._setupAddCheckbox("mixFileKindBox", tr("Can mix file kind"))
|
|
self.widgetsVLayout.addWidget(self.mixFileKindBox)
|
|
self._setupAddCheckbox(
|
|
"useRegexpBox", tr("Use regular expressions when filtering")
|
|
)
|
|
self.widgetsVLayout.addWidget(self.useRegexpBox)
|
|
self._setupAddCheckbox(
|
|
"removeEmptyFoldersBox", tr("Remove empty folders on delete or move")
|
|
)
|
|
self.widgetsVLayout.addWidget(self.removeEmptyFoldersBox)
|
|
self._setupAddCheckbox(
|
|
"ignoreHardlinkMatches",
|
|
tr("Ignore duplicates hardlinking to the same file"),
|
|
)
|
|
self.widgetsVLayout.addWidget(self.ignoreHardlinkMatches)
|
|
self._setupAddCheckbox("debugModeBox", tr("Debug mode (restart required)"))
|
|
self.widgetsVLayout.addWidget(self.debugModeBox)
|
|
self.widgetsVLayout.addWidget(QLabel(tr("Picture cache mode:")))
|
|
self.cacheTypeRadio = RadioBox(self, items=["Sqlite", "Shelve"], spread=False)
|
|
self.widgetsVLayout.addWidget(self.cacheTypeRadio)
|
|
self._setupBottomPart()
|
|
|
|
def _load(self, prefs, setchecked, section):
|
|
setchecked(self.matchScaledBox, prefs.match_scaled)
|
|
self.cacheTypeRadio.selected_index = (
|
|
1 if prefs.picture_cache_type == "shelve" else 0
|
|
)
|
|
|
|
# Update UI state based on selected scan type
|
|
scan_type = prefs.get_scan_type(AppMode.Picture)
|
|
fuzzy_scan = scan_type == ScanType.FuzzyBlock
|
|
self.filterHardnessSlider.setEnabled(fuzzy_scan)
|
|
|
|
def _save(self, prefs, ischecked):
|
|
prefs.match_scaled = ischecked(self.matchScaledBox)
|
|
prefs.picture_cache_type = (
|
|
"shelve" if self.cacheTypeRadio.selected_index == 1 else "sqlite"
|
|
)
|