2016-05-29 01:54:25 +00:00
|
|
|
# Copyright 2016 Hardcoded Software (http://www.hardcoded.net)
|
2014-10-13 19:08:59 +00:00
|
|
|
#
|
2015-01-03 21:33:16 +00:00
|
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
2014-10-13 19:08:59 +00:00
|
|
|
# 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
|
2011-01-21 12:57:54 +00:00
|
|
|
|
2020-07-22 20:41:22 +00:00
|
|
|
from PyQt5.QtCore import Qt, QSize, pyqtSlot
|
2014-10-13 19:08:59 +00:00
|
|
|
from PyQt5.QtWidgets import (
|
2020-01-01 02:16:27 +00:00
|
|
|
QDialog,
|
|
|
|
QDialogButtonBox,
|
|
|
|
QVBoxLayout,
|
|
|
|
QHBoxLayout,
|
2020-07-22 19:38:03 +00:00
|
|
|
QGridLayout,
|
2020-01-01 02:16:27 +00:00
|
|
|
QLabel,
|
|
|
|
QComboBox,
|
|
|
|
QSlider,
|
|
|
|
QSizePolicy,
|
|
|
|
QSpacerItem,
|
|
|
|
QCheckBox,
|
|
|
|
QLineEdit,
|
|
|
|
QMessageBox,
|
|
|
|
QSpinBox,
|
|
|
|
QLayout,
|
2020-07-20 01:10:06 +00:00
|
|
|
QTabWidget,
|
|
|
|
QWidget,
|
2020-07-22 19:38:03 +00:00
|
|
|
QColorDialog,
|
|
|
|
QPushButton,
|
2020-08-01 14:42:14 +00:00
|
|
|
QGroupBox,
|
2020-08-01 15:40:31 +00:00
|
|
|
QFormLayout,
|
2014-10-13 19:08:59 +00:00
|
|
|
)
|
2020-07-22 20:41:22 +00:00
|
|
|
from PyQt5.QtGui import QPixmap, QIcon
|
2011-01-21 12:57:54 +00:00
|
|
|
|
2011-11-01 19:44:18 +00:00
|
|
|
from hscommon.trans import trget
|
2020-07-21 01:52:15 +00:00
|
|
|
from hscommon.plat import ISLINUX
|
2011-09-23 14:29:25 +00:00
|
|
|
from qtlib.util import horizontalWrap
|
2016-05-26 01:07:30 +00:00
|
|
|
from qtlib.preferences import get_langnames
|
2020-07-20 03:04:25 +00:00
|
|
|
from enum import Flag, auto
|
2011-01-21 12:57:54 +00:00
|
|
|
|
2016-06-01 01:22:50 +00:00
|
|
|
from .preferences import Preferences
|
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
tr = trget("ui")
|
2011-11-01 19:44:18 +00:00
|
|
|
|
2015-04-13 01:53:45 +00:00
|
|
|
SUPPORTED_LANGUAGES = [
|
2020-01-01 02:16:27 +00:00
|
|
|
"en",
|
|
|
|
"fr",
|
|
|
|
"de",
|
|
|
|
"el",
|
|
|
|
"zh_CN",
|
|
|
|
"cs",
|
|
|
|
"it",
|
|
|
|
"hy",
|
|
|
|
"ru",
|
|
|
|
"uk",
|
|
|
|
"pt_BR",
|
|
|
|
"vi",
|
|
|
|
"pl_PL",
|
|
|
|
"ko",
|
|
|
|
"es",
|
|
|
|
"nl",
|
2015-04-13 01:53:45 +00:00
|
|
|
]
|
2011-11-03 14:38:31 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
|
2020-07-20 03:04:25 +00:00
|
|
|
class Sections(Flag):
|
|
|
|
"""Filter blocks of preferences when reset or loaded"""
|
|
|
|
GENERAL = auto()
|
|
|
|
DISPLAY = auto()
|
|
|
|
ALL = GENERAL | DISPLAY
|
|
|
|
|
|
|
|
|
2011-01-21 12:57:54 +00:00
|
|
|
class PreferencesDialogBase(QDialog):
|
2013-10-20 19:53:59 +00:00
|
|
|
def __init__(self, parent, app, **kwargs):
|
2011-01-21 12:57:54 +00:00
|
|
|
flags = Qt.CustomizeWindowHint | Qt.WindowTitleHint | Qt.WindowSystemMenuHint
|
2013-10-20 19:53:59 +00:00
|
|
|
super().__init__(parent, flags, **kwargs)
|
2011-01-21 12:57:54 +00:00
|
|
|
self.app = app
|
2016-05-26 01:07:30 +00:00
|
|
|
all_languages = get_langnames()
|
2020-01-01 02:16:27 +00:00
|
|
|
self.supportedLanguages = sorted(
|
|
|
|
SUPPORTED_LANGUAGES, key=lambda lang: all_languages[lang]
|
|
|
|
)
|
2011-01-21 12:57:54 +00:00
|
|
|
self._setupUi()
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
self.filterHardnessSlider.valueChanged["int"].connect(
|
|
|
|
self.filterHardnessLabel.setNum
|
|
|
|
)
|
2014-03-27 23:09:10 +00:00
|
|
|
self.buttonBox.clicked.connect(self.buttonClicked)
|
2011-01-21 12:57:54 +00:00
|
|
|
self.buttonBox.accepted.connect(self.accept)
|
|
|
|
self.buttonBox.rejected.connect(self.reject)
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2011-01-21 12:57:54 +00:00
|
|
|
def _setupFilterHardnessBox(self):
|
|
|
|
self.filterHardnessHLayout = QHBoxLayout()
|
|
|
|
self.filterHardnessLabel = QLabel(self)
|
|
|
|
self.filterHardnessLabel.setText(tr("Filter Hardness:"))
|
|
|
|
self.filterHardnessLabel.setMinimumSize(QSize(0, 0))
|
|
|
|
self.filterHardnessHLayout.addWidget(self.filterHardnessLabel)
|
|
|
|
self.filterHardnessVLayout = QVBoxLayout()
|
|
|
|
self.filterHardnessVLayout.setSpacing(0)
|
|
|
|
self.filterHardnessHLayoutSub1 = QHBoxLayout()
|
|
|
|
self.filterHardnessHLayoutSub1.setSpacing(12)
|
|
|
|
self.filterHardnessSlider = QSlider(self)
|
|
|
|
sizePolicy = QSizePolicy(QSizePolicy.Expanding, QSizePolicy.Fixed)
|
|
|
|
sizePolicy.setHorizontalStretch(0)
|
|
|
|
sizePolicy.setVerticalStretch(0)
|
2020-01-01 02:16:27 +00:00
|
|
|
sizePolicy.setHeightForWidth(
|
|
|
|
self.filterHardnessSlider.sizePolicy().hasHeightForWidth()
|
|
|
|
)
|
2011-01-21 12:57:54 +00:00
|
|
|
self.filterHardnessSlider.setSizePolicy(sizePolicy)
|
|
|
|
self.filterHardnessSlider.setMinimum(1)
|
|
|
|
self.filterHardnessSlider.setMaximum(100)
|
|
|
|
self.filterHardnessSlider.setTracking(True)
|
|
|
|
self.filterHardnessSlider.setOrientation(Qt.Horizontal)
|
|
|
|
self.filterHardnessHLayoutSub1.addWidget(self.filterHardnessSlider)
|
|
|
|
self.filterHardnessLabel = QLabel(self)
|
|
|
|
self.filterHardnessLabel.setText("100")
|
|
|
|
self.filterHardnessLabel.setMinimumSize(QSize(21, 0))
|
|
|
|
self.filterHardnessHLayoutSub1.addWidget(self.filterHardnessLabel)
|
|
|
|
self.filterHardnessVLayout.addLayout(self.filterHardnessHLayoutSub1)
|
|
|
|
self.filterHardnessHLayoutSub2 = QHBoxLayout()
|
|
|
|
self.filterHardnessHLayoutSub2.setContentsMargins(-1, 0, -1, -1)
|
|
|
|
self.moreResultsLabel = QLabel(self)
|
|
|
|
self.moreResultsLabel.setText(tr("More Results"))
|
|
|
|
self.filterHardnessHLayoutSub2.addWidget(self.moreResultsLabel)
|
|
|
|
spacerItem = QSpacerItem(40, 20, QSizePolicy.Expanding, QSizePolicy.Minimum)
|
|
|
|
self.filterHardnessHLayoutSub2.addItem(spacerItem)
|
|
|
|
self.fewerResultsLabel = QLabel(self)
|
|
|
|
self.fewerResultsLabel.setText(tr("Fewer Results"))
|
|
|
|
self.filterHardnessHLayoutSub2.addWidget(self.fewerResultsLabel)
|
|
|
|
self.filterHardnessVLayout.addLayout(self.filterHardnessHLayoutSub2)
|
|
|
|
self.filterHardnessHLayout.addLayout(self.filterHardnessVLayout)
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2011-01-21 12:57:54 +00:00
|
|
|
def _setupBottomPart(self):
|
|
|
|
# The bottom part of the pref panel is always the same in all editions.
|
|
|
|
self.copyMoveLabel = QLabel(self)
|
|
|
|
self.copyMoveLabel.setText(tr("Copy and Move:"))
|
|
|
|
self.widgetsVLayout.addWidget(self.copyMoveLabel)
|
|
|
|
self.copyMoveDestinationComboBox = QComboBox(self)
|
|
|
|
self.copyMoveDestinationComboBox.addItem(tr("Right in destination"))
|
|
|
|
self.copyMoveDestinationComboBox.addItem(tr("Recreate relative path"))
|
|
|
|
self.copyMoveDestinationComboBox.addItem(tr("Recreate absolute path"))
|
|
|
|
self.widgetsVLayout.addWidget(self.copyMoveDestinationComboBox)
|
|
|
|
self.customCommandLabel = QLabel(self)
|
2020-01-01 02:16:27 +00:00
|
|
|
self.customCommandLabel.setText(
|
|
|
|
tr("Custom Command (arguments: %d for dupe, %r for ref):")
|
|
|
|
)
|
2011-01-21 12:57:54 +00:00
|
|
|
self.widgetsVLayout.addWidget(self.customCommandLabel)
|
|
|
|
self.customCommandEdit = QLineEdit(self)
|
|
|
|
self.widgetsVLayout.addWidget(self.customCommandEdit)
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2020-07-20 01:10:06 +00:00
|
|
|
def _setupDisplayPage(self):
|
2020-08-01 16:50:44 +00:00
|
|
|
self.ui_groupbox = QGroupBox("&General Interface")
|
|
|
|
layout = QVBoxLayout()
|
2020-07-22 19:38:03 +00:00
|
|
|
self.languageLabel = QLabel(tr("Language:"), self)
|
|
|
|
self.languageComboBox = QComboBox(self)
|
|
|
|
for lang in self.supportedLanguages:
|
|
|
|
self.languageComboBox.addItem(get_langnames()[lang])
|
2020-08-01 16:50:44 +00:00
|
|
|
layout.addLayout(horizontalWrap([self.languageLabel, self.languageComboBox, None]))
|
2020-08-01 16:29:22 +00:00
|
|
|
self._setupAddCheckbox("tabs_default_pos",
|
|
|
|
tr("Use default position for tab bar (requires restart)"))
|
|
|
|
self.tabs_default_pos.setToolTip(
|
|
|
|
tr("Place the tab bar below the main menu instead of next to it\n\
|
|
|
|
On MacOS, the tab bar will fill up the window's width instead."))
|
2020-08-01 16:50:44 +00:00
|
|
|
layout.addWidget(self.tabs_default_pos)
|
|
|
|
self.ui_groupbox.setLayout(layout)
|
|
|
|
self.displayVLayout.addWidget(self.ui_groupbox)
|
2020-07-22 19:38:03 +00:00
|
|
|
|
2020-08-01 15:40:31 +00:00
|
|
|
gridlayout = QFormLayout()
|
|
|
|
result_groupbox = QGroupBox("&Result Table")
|
2011-09-23 14:29:25 +00:00
|
|
|
self.fontSizeSpinBox = QSpinBox()
|
|
|
|
self.fontSizeSpinBox.setMinimum(5)
|
2020-08-01 15:40:31 +00:00
|
|
|
gridlayout.addRow(tr("Font size:"), self.fontSizeSpinBox)
|
2020-07-14 15:37:48 +00:00
|
|
|
self._setupAddCheckbox("reference_bold_font",
|
2020-08-01 14:42:14 +00:00
|
|
|
tr("Use bold font for references"))
|
2020-08-01 15:40:31 +00:00
|
|
|
gridlayout.addRow(self.reference_bold_font)
|
|
|
|
|
2020-07-22 19:38:03 +00:00
|
|
|
self.result_table_ref_foreground_color = ColorPickerButton(self)
|
2020-08-01 16:29:22 +00:00
|
|
|
gridlayout.addRow(tr("Reference foreground color:"),
|
|
|
|
self.result_table_ref_foreground_color)
|
2020-07-22 19:38:03 +00:00
|
|
|
self.result_table_delta_foreground_color = ColorPickerButton(self)
|
2020-08-01 16:29:22 +00:00
|
|
|
gridlayout.addRow(tr("Delta foreground color:"),
|
|
|
|
self.result_table_delta_foreground_color)
|
2020-08-01 15:40:31 +00:00
|
|
|
gridlayout.setLabelAlignment(Qt.AlignLeft)
|
|
|
|
|
2020-08-01 14:42:14 +00:00
|
|
|
# Keep same vertical spacing as parent layout for consistency
|
|
|
|
gridlayout.setVerticalSpacing(self.displayVLayout.spacing())
|
|
|
|
result_groupbox.setLayout(gridlayout)
|
|
|
|
self.displayVLayout.addWidget(result_groupbox)
|
2020-07-22 19:38:03 +00:00
|
|
|
|
2020-08-01 16:50:44 +00:00
|
|
|
details_groupbox = QGroupBox("&Details Window")
|
2020-08-01 14:42:14 +00:00
|
|
|
self.details_groupbox_layout = QVBoxLayout()
|
2020-07-14 15:37:48 +00:00
|
|
|
self._setupAddCheckbox("details_dialog_titlebar_enabled",
|
2020-07-30 01:13:58 +00:00
|
|
|
tr("Show the title bar and can be docked"))
|
2020-07-20 01:10:06 +00:00
|
|
|
self.details_dialog_titlebar_enabled.setToolTip(
|
2020-07-30 01:13:58 +00:00
|
|
|
tr("While the title bar is hidden, \
|
|
|
|
use the modifier key to drag the floating window around") if ISLINUX else
|
|
|
|
tr("The title bar can only be disabled while the window is docked"))
|
2020-08-01 14:42:14 +00:00
|
|
|
self.details_groupbox_layout.addWidget(self.details_dialog_titlebar_enabled)
|
2020-07-14 15:37:48 +00:00
|
|
|
self._setupAddCheckbox("details_dialog_vertical_titlebar",
|
2020-07-20 01:10:06 +00:00
|
|
|
tr("Vertical title bar"))
|
2020-07-30 01:13:58 +00:00
|
|
|
self.details_dialog_vertical_titlebar.setToolTip(
|
|
|
|
tr("Change the title bar from horizontal on top, to vertical on the left side"))
|
2020-08-01 14:42:14 +00:00
|
|
|
self.details_groupbox_layout.addWidget(self.details_dialog_vertical_titlebar)
|
2020-07-14 15:37:48 +00:00
|
|
|
self.details_dialog_vertical_titlebar.setEnabled(
|
|
|
|
self.details_dialog_titlebar_enabled.isChecked())
|
|
|
|
self.details_dialog_titlebar_enabled.stateChanged.connect(
|
|
|
|
self.details_dialog_vertical_titlebar.setEnabled)
|
2020-07-29 19:42:44 +00:00
|
|
|
gridlayout = QGridLayout()
|
|
|
|
self.details_table_delta_foreground_color_label = QLabel(tr("Delta foreground color:"))
|
|
|
|
gridlayout.addWidget(self.details_table_delta_foreground_color_label, 4, 0)
|
|
|
|
self.details_table_delta_foreground_color = ColorPickerButton(self)
|
2020-08-01 14:42:14 +00:00
|
|
|
gridlayout.addWidget(self.details_table_delta_foreground_color, 4, 2, 1, 1, Qt.AlignLeft)
|
|
|
|
gridlayout.setColumnStretch(1, 1)
|
2020-08-01 15:40:31 +00:00
|
|
|
gridlayout.setColumnStretch(3, 4)
|
2020-08-01 14:42:14 +00:00
|
|
|
self.details_groupbox_layout.addLayout(gridlayout)
|
|
|
|
details_groupbox.setLayout(self.details_groupbox_layout)
|
|
|
|
self.displayVLayout.addWidget(details_groupbox)
|
2020-07-14 15:37:48 +00:00
|
|
|
|
2011-01-21 12:57:54 +00:00
|
|
|
def _setupAddCheckbox(self, name, label, parent=None):
|
|
|
|
if parent is None:
|
|
|
|
parent = self
|
|
|
|
cb = QCheckBox(parent)
|
|
|
|
cb.setText(label)
|
|
|
|
setattr(self, name, cb)
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2011-01-21 12:57:54 +00:00
|
|
|
def _setupPreferenceWidgets(self):
|
|
|
|
# Edition-specific
|
|
|
|
pass
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2011-01-21 12:57:54 +00:00
|
|
|
def _setupUi(self):
|
2016-05-29 01:54:25 +00:00
|
|
|
self.setWindowTitle(tr("Options"))
|
2011-01-21 12:57:54 +00:00
|
|
|
self.setSizeGripEnabled(False)
|
|
|
|
self.setModal(True)
|
|
|
|
self.mainVLayout = QVBoxLayout(self)
|
2020-07-20 01:10:06 +00:00
|
|
|
self.tabwidget = QTabWidget()
|
|
|
|
self.page_general = QWidget()
|
|
|
|
self.page_display = QWidget()
|
2011-01-21 12:57:54 +00:00
|
|
|
self.widgetsVLayout = QVBoxLayout()
|
2020-07-20 01:10:06 +00:00
|
|
|
self.page_general.setLayout(self.widgetsVLayout)
|
|
|
|
self.displayVLayout = QVBoxLayout()
|
2020-08-01 14:42:14 +00:00
|
|
|
self.displayVLayout.setSpacing(5) # arbitrary value, might conflict with style
|
2020-07-20 01:10:06 +00:00
|
|
|
self.page_display.setLayout(self.displayVLayout)
|
2011-01-21 12:57:54 +00:00
|
|
|
self._setupPreferenceWidgets()
|
2020-07-30 01:13:58 +00:00
|
|
|
self._setupDisplayPage()
|
2020-07-20 01:10:06 +00:00
|
|
|
# self.mainVLayout.addLayout(self.widgetsVLayout)
|
2011-01-21 12:57:54 +00:00
|
|
|
self.buttonBox = QDialogButtonBox(self)
|
2020-01-01 02:16:27 +00:00
|
|
|
self.buttonBox.setStandardButtons(
|
|
|
|
QDialogButtonBox.Cancel
|
|
|
|
| QDialogButtonBox.Ok
|
|
|
|
| QDialogButtonBox.RestoreDefaults
|
|
|
|
)
|
2020-07-20 01:10:06 +00:00
|
|
|
self.mainVLayout.addWidget(self.tabwidget)
|
2011-01-21 12:57:54 +00:00
|
|
|
self.mainVLayout.addWidget(self.buttonBox)
|
2018-12-05 03:01:20 +00:00
|
|
|
self.layout().setSizeConstraint(QLayout.SetFixedSize)
|
2020-07-20 01:10:06 +00:00
|
|
|
self.tabwidget.addTab(self.page_general, "General")
|
|
|
|
self.tabwidget.addTab(self.page_display, "Display")
|
|
|
|
self.displayVLayout.addStretch(0)
|
2020-08-01 17:02:04 +00:00
|
|
|
self.widgetsVLayout.addStretch(0)
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2020-07-20 03:04:25 +00:00
|
|
|
def _load(self, prefs, setchecked, section):
|
2011-01-21 12:57:54 +00:00
|
|
|
# Edition-specific
|
|
|
|
pass
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2011-01-21 12:57:54 +00:00
|
|
|
def _save(self, prefs, ischecked):
|
|
|
|
# Edition-specific
|
|
|
|
pass
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2020-07-20 03:04:25 +00:00
|
|
|
def load(self, prefs=None, section=Sections.ALL):
|
2011-01-21 12:57:54 +00:00
|
|
|
if prefs is None:
|
|
|
|
prefs = self.app.prefs
|
|
|
|
setchecked = lambda cb, b: cb.setCheckState(Qt.Checked if b else Qt.Unchecked)
|
2020-07-20 03:04:25 +00:00
|
|
|
if section & Sections.GENERAL:
|
|
|
|
self.filterHardnessSlider.setValue(prefs.filter_hardness)
|
|
|
|
self.filterHardnessLabel.setNum(prefs.filter_hardness)
|
|
|
|
setchecked(self.mixFileKindBox, prefs.mix_file_kind)
|
|
|
|
setchecked(self.useRegexpBox, prefs.use_regexp)
|
|
|
|
setchecked(self.removeEmptyFoldersBox, prefs.remove_empty_folders)
|
|
|
|
setchecked(self.ignoreHardlinkMatches, prefs.ignore_hardlink_matches)
|
|
|
|
setchecked(self.debugModeBox, prefs.debug_mode)
|
|
|
|
self.copyMoveDestinationComboBox.setCurrentIndex(prefs.destination_type)
|
|
|
|
self.customCommandEdit.setText(prefs.custom_command)
|
|
|
|
if section & Sections.DISPLAY:
|
|
|
|
setchecked(self.reference_bold_font, prefs.reference_bold_font)
|
2020-08-01 16:29:22 +00:00
|
|
|
setchecked(self.tabs_default_pos, prefs.tabs_default_pos)
|
2020-07-22 19:38:03 +00:00
|
|
|
setchecked(self.details_dialog_titlebar_enabled,
|
|
|
|
prefs.details_dialog_titlebar_enabled)
|
|
|
|
setchecked(self.details_dialog_vertical_titlebar,
|
|
|
|
prefs.details_dialog_vertical_titlebar)
|
2020-07-20 03:04:25 +00:00
|
|
|
self.fontSizeSpinBox.setValue(prefs.tableFontSize)
|
2020-07-29 19:42:44 +00:00
|
|
|
self.details_table_delta_foreground_color.setColor(
|
|
|
|
prefs.details_table_delta_foreground_color)
|
2020-07-22 19:38:03 +00:00
|
|
|
self.result_table_ref_foreground_color.setColor(
|
|
|
|
prefs.result_table_ref_foreground_color)
|
|
|
|
self.result_table_delta_foreground_color.setColor(
|
|
|
|
prefs.result_table_delta_foreground_color)
|
2020-07-20 03:04:25 +00:00
|
|
|
try:
|
|
|
|
langindex = self.supportedLanguages.index(self.app.prefs.language)
|
|
|
|
except ValueError:
|
|
|
|
langindex = 0
|
|
|
|
self.languageComboBox.setCurrentIndex(langindex)
|
|
|
|
self._load(prefs, setchecked, section)
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2011-01-21 12:57:54 +00:00
|
|
|
def save(self):
|
|
|
|
prefs = self.app.prefs
|
|
|
|
prefs.filter_hardness = self.filterHardnessSlider.value()
|
|
|
|
ischecked = lambda cb: cb.checkState() == Qt.Checked
|
|
|
|
prefs.mix_file_kind = ischecked(self.mixFileKindBox)
|
|
|
|
prefs.use_regexp = ischecked(self.useRegexpBox)
|
|
|
|
prefs.remove_empty_folders = ischecked(self.removeEmptyFoldersBox)
|
|
|
|
prefs.ignore_hardlink_matches = ischecked(self.ignoreHardlinkMatches)
|
2011-01-26 11:50:44 +00:00
|
|
|
prefs.debug_mode = ischecked(self.debugModeBox)
|
2020-04-26 23:36:27 +00:00
|
|
|
prefs.reference_bold_font = ischecked(self.reference_bold_font)
|
Squashed commit of the following:
commit ac941037ff51158b64daa65c244df26346af10cf
Author: glubsy <glubsy@users.noreply.github.com>
Date: Thu Jul 16 22:21:24 2020 +0200
Fix resize of top frame not updating scaled pixmap
* Also limit viewing features such as zoom levels when files have different dimensions
* GraphicsViewImageViewer is still a bit buggy: the scrollbars are toggled on when the pixmap is null in the reference viewer (we do not use that class right anyway)
commit 733b3b0ed4fbd6de908c968402af03879df3336f
Author: glubsy <glubsy@users.noreply.github.com>
Date: Thu Jul 16 01:31:24 2020 +0200
Prevent zoom for images of differing dimensions
* If images are not the same size, prevent zooming features from being used by disabling the normal size button, only enable swap
commit 9168d72f38faaf0a12230cd544f14190cd29fca4
Author: glubsy <glubsy@users.noreply.github.com>
Date: Wed Jul 15 22:47:32 2020 +0200
Update preferences on show(), not in constructor
* If the dialog window shouldn't have a titlebar during construction, update accordingly only when showing to fix Windows displaying a window without titlebar on first show
* Only save geometry if the window is floating. Otherwise geometry while docked is saved whih gives weird results on subsequent starts, since it may be floating by default anyway (at least on Linux where titlebar being disabled is allowed while floating)
* Vertical title bar doesn't seem to work on Windows, add note in preferences dialog
commit 75621cc816120597f493e0debc6d88e2e0bbd30a
Author: glubsy <glubsy@users.noreply.github.com>
Date: Wed Jul 15 22:04:19 2020 +0200
Prevent Windows from floating if no decoration
* Windows users cannot move a window which has no native decorations. Toggling a dock widget's titlebar off also removes native decorations on a floating window. Until we implement a replacement titlebar by overriding paintEvents, simply force the floating window to go back to docked state after we toggled the titlebar off.
commit 3c816b2f11ddc66a78cdc6327ee102df46d1a552
Author: glubsy <glubsy@users.noreply.github.com>
Date: Wed Jul 15 21:43:01 2020 +0200
Fix computing and setting offset to 0 for tableview
commit 85d6e05cd406b999e8f6ae421a9746a0c9f146bb
Merge: 66127d02 3eddeb6a
Author: glubsy <glubsy@users.noreply.github.com>
Date: Wed Jul 15 21:25:44 2020 +0200
Merge branch 'dockable_windows' into details_dialog_improvements_dev
commit 66127d025e9a497ee13126f955166946acdb35a8
Author: glubsy <glubsy@users.noreply.github.com>
Date: Wed Jul 15 20:22:13 2020 +0200
Add credit for icons used, upscale exchange icon
* Jason Cho gave his express permission to use the icon (it was made 10 years ago and he doesn't have the source files anymore)
* Used waifu2x to upscale the icon
* Used GIMP to draw dark outline around the icon
* Source files are included
commit 58c675d1fa90a7247233d9887a460cf5a8e4cbf5
Author: glubsy <glubsy@users.noreply.github.com>
Date: Wed Jul 15 05:25:47 2020 +0200
Add custom icons
* Use custom icons on platforms which do not provide theme
* Old zoom icons credits to "schollidesign" from icon pack Office and Entertainment (GPL licence).
* Exchange icon credit to Jason Cho (Unknown license).
* Use hack to resize viewers on first show() as well
commit 95b8406c7b97aab170d127b466ff506b724def3c
Author: glubsy <glubsy@users.noreply.github.com>
Date: Wed Jul 15 04:14:24 2020 +0200
Fix scrollbar displayed while splitter maxed out
* For some reason the table's height is a few pixel longer on Windows so we work around the issue by adding a small offset to the maximum height hint.
* No idea about MacOS yet but this might need the same treatment.
commit 3eddeb6aebc99126e62eb05af60333ba3bd22e82
Author: glubsy <glubsy@users.noreply.github.com>
Date: Tue Jul 14 17:37:48 2020 +0200
Fix ME/SE details dialogs, add preferences
* Fix ME and SE versions of details dialog not displaying their content properly after change to QDockWidget
* Add option to toggle titlebar and orientation of titlebar in preferences dialog
* Fix setting layout on PE details dialog window while layout already set, by removing the self (parent) reference in constructing the QSplitter
commit 56912a71084415eac2f447650279d833d9857686
Author: glubsy <glubsy@users.noreply.github.com>
Date: Mon Jul 13 05:06:04 2020 +0200
Make details dialog dockable
2020-07-16 20:31:54 +00:00
|
|
|
prefs.details_dialog_titlebar_enabled = ischecked(self.details_dialog_titlebar_enabled)
|
|
|
|
prefs.details_dialog_vertical_titlebar = ischecked(self.details_dialog_vertical_titlebar)
|
2020-07-29 19:42:44 +00:00
|
|
|
prefs.details_table_delta_foreground_color = self.details_table_delta_foreground_color.color
|
2020-07-22 19:38:03 +00:00
|
|
|
prefs.result_table_ref_foreground_color = self.result_table_ref_foreground_color.color
|
|
|
|
prefs.result_table_delta_foreground_color = self.result_table_delta_foreground_color.color
|
2011-01-21 12:57:54 +00:00
|
|
|
prefs.destination_type = self.copyMoveDestinationComboBox.currentIndex()
|
|
|
|
prefs.custom_command = str(self.customCommandEdit.text())
|
2011-09-23 14:29:25 +00:00
|
|
|
prefs.tableFontSize = self.fontSizeSpinBox.value()
|
2020-07-30 23:32:29 +00:00
|
|
|
prefs.tabs_default_pos = ischecked(self.tabs_default_pos)
|
2015-07-20 17:18:14 +00:00
|
|
|
lang = self.supportedLanguages[self.languageComboBox.currentIndex()]
|
2011-01-21 12:57:54 +00:00
|
|
|
oldlang = self.app.prefs.language
|
2015-07-20 17:18:14 +00:00
|
|
|
if oldlang not in self.supportedLanguages:
|
2020-01-01 02:16:27 +00:00
|
|
|
oldlang = "en"
|
2011-01-21 12:57:54 +00:00
|
|
|
if lang != oldlang:
|
2020-01-01 02:16:27 +00:00
|
|
|
QMessageBox.information(
|
|
|
|
self,
|
|
|
|
"",
|
|
|
|
tr("dupeGuru has to restart for language changes to take effect."),
|
|
|
|
)
|
2011-01-21 12:57:54 +00:00
|
|
|
self.app.prefs.language = lang
|
|
|
|
self._save(prefs, ischecked)
|
2014-10-13 19:08:59 +00:00
|
|
|
|
2020-07-20 03:04:25 +00:00
|
|
|
def resetToDefaults(self, section_to_update):
|
|
|
|
self.load(Preferences(), section_to_update)
|
2016-06-01 01:22:50 +00:00
|
|
|
|
2020-01-01 02:16:27 +00:00
|
|
|
# --- Events
|
2011-01-21 12:57:54 +00:00
|
|
|
def buttonClicked(self, button):
|
|
|
|
role = self.buttonBox.buttonRole(button)
|
|
|
|
if role == QDialogButtonBox.ResetRole:
|
2020-07-20 03:04:25 +00:00
|
|
|
current_tab = self.tabwidget.currentWidget()
|
|
|
|
section_to_update = Sections.ALL
|
|
|
|
if current_tab is self.page_general:
|
|
|
|
section_to_update = Sections.GENERAL
|
|
|
|
if current_tab is self.page_display:
|
|
|
|
section_to_update = Sections.DISPLAY
|
|
|
|
self.resetToDefaults(section_to_update)
|
2020-07-22 19:38:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ColorPickerButton(QPushButton):
|
|
|
|
def __init__(self, parent):
|
|
|
|
super().__init__(parent)
|
|
|
|
self.parent = parent
|
|
|
|
self.color = None
|
|
|
|
self.clicked.connect(self.onClicked)
|
|
|
|
|
|
|
|
@pyqtSlot()
|
|
|
|
def onClicked(self):
|
|
|
|
color = QColorDialog.getColor(
|
|
|
|
self.color if self.color is not None else Qt.white,
|
|
|
|
self.parent)
|
|
|
|
self.setColor(color)
|
|
|
|
|
|
|
|
def setColor(self, color):
|
2020-08-01 00:09:38 +00:00
|
|
|
size = QSize(16, 16)
|
2020-07-22 19:38:03 +00:00
|
|
|
px = QPixmap(size)
|
|
|
|
if color is None:
|
|
|
|
size.width = 0
|
|
|
|
size.height = 0
|
|
|
|
elif not color.isValid():
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
self.color = color
|
|
|
|
px.fill(color)
|
|
|
|
self.setIcon(QIcon(px))
|