From c5fc6c6030d7d9d1b2af3d5165bebed3decd741b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 2 Oct 2017 06:51:13 +0200 Subject: New upstream version 0.9.4 --- raphodo/viewutils.py | 58 ++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 50 insertions(+), 8 deletions(-) (limited to 'raphodo/viewutils.py') diff --git a/raphodo/viewutils.py b/raphodo/viewutils.py index 9a1f156..fa0bd5c 100644 --- a/raphodo/viewutils.py +++ b/raphodo/viewutils.py @@ -22,10 +22,14 @@ __copyright__ = "Copyright 2015-2017, Damon Lynch" from typing import List, Dict from collections import namedtuple -from PyQt5.QtWidgets import (QStyleOptionFrame, QStyle, QStylePainter, QWidget, QLabel, - QListWidget) -from PyQt5.QtGui import QFontMetrics, QFont -from PyQt5.QtCore import (QSize, Qt) +from gettext import gettext as _ + +from PyQt5.QtWidgets import ( + QStyleOptionFrame, QStyle, QStylePainter, QWidget, QLabel, QListWidget, QProxyStyle, + QStyleOption, QDialogButtonBox +) +from PyQt5.QtGui import QFontMetrics, QFont, QPainter +from PyQt5.QtCore import QSize, Qt class RowTracker: @@ -139,8 +143,9 @@ class RowTracker: return ids_to_remove -ThumbnailDataForProximity = namedtuple('ThumbnailDataForProximity', 'uid, ctime, file_type, ' - 'previously_downloaded') +ThumbnailDataForProximity = namedtuple( + 'ThumbnailDataForProximity', 'uid, ctime, file_type, previously_downloaded' +) class QFramedWidget(QWidget): @@ -173,6 +178,21 @@ class QFramedLabel(QLabel): super().paintEvent(*opts) +class ProxyStyleNoFocusRectangle(QProxyStyle): + """ + Remove the focus rectangle from a widget + """ + + def drawPrimitive(self, element: QStyle.PrimitiveElement, + option: QStyleOption, painter: QPainter, + widget: QWidget) -> None: + + if QStyle.PE_FrameFocusRect == element: + pass + else: + super().drawPrimitive(element, option, painter, widget) + + class QNarrowListWidget(QListWidget): """ Create a list widget that is not by default enormously wide. @@ -180,11 +200,16 @@ class QNarrowListWidget(QListWidget): See http://stackoverflow.com/questions/6337589/qlistwidget-adjust-size-to-content """ - def __init__(self, minimum_rows: int=0, minimum_width: int=0, parent=None) -> None: + def __init__(self, minimum_rows: int=0, + minimum_width: int=0, + no_focus_recentangle: bool=False, + parent=None) -> None: super().__init__(parent=parent) self.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOff) self._minimum_rows = minimum_rows self._minimum_width = minimum_width + if no_focus_recentangle: + self.setStyle(ProxyStyleNoFocusRectangle()) @property def minimum_width(self) -> int: @@ -207,4 +232,21 @@ class QNarrowListWidget(QListWidget): def standardIconSize() -> QSize: size = QFontMetrics(QFont()).height() * 6 - return QSize(size, size) \ No newline at end of file + return QSize(size, size) + + +def translateButtons(buttonBox: QDialogButtonBox) -> None: + buttons = ( + (QDialogButtonBox.Ok, _('&OK')), + (QDialogButtonBox.Close, _('&Close') ), + (QDialogButtonBox.Cancel, _('&Cancel')), + (QDialogButtonBox.Save, _('&Save')), + (QDialogButtonBox.Help, _('&Help')), + (QDialogButtonBox.RestoreDefaults, _('Restore Defaults')), + (QDialogButtonBox.Yes, _('&Yes')), + (QDialogButtonBox.No, _('&No')), + ) + for role, text in buttons: + button = buttonBox.button(role) + if button: + button.setText(text) \ No newline at end of file -- cgit v1.2.3