mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 15:29:02 +00:00
3eddeb6aeb
* 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
33 lines
1.2 KiB
Python
33 lines
1.2 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.QtCore import QSize
|
|
from PyQt5.QtWidgets import QVBoxLayout, QAbstractItemView, QWidget
|
|
|
|
from hscommon.trans import trget
|
|
from ..details_dialog import DetailsDialog as DetailsDialogBase
|
|
from ..details_table import DetailsTable
|
|
|
|
tr = trget("ui")
|
|
|
|
|
|
class DetailsDialog(DetailsDialogBase):
|
|
def _setupUi(self):
|
|
self.setWindowTitle(tr("Details"))
|
|
self.resize(502, 295)
|
|
self.setMinimumSize(QSize(250, 250))
|
|
self.verticalLayout = QVBoxLayout(self)
|
|
self.verticalLayout.setSpacing(0)
|
|
self.verticalLayout.setContentsMargins(0, 0, 0, 0)
|
|
self.tableView = DetailsTable(self)
|
|
self.tableView.setAlternatingRowColors(True)
|
|
self.tableView.setSelectionBehavior(QAbstractItemView.SelectRows)
|
|
self.tableView.setShowGrid(False)
|
|
self.verticalLayout.addWidget(self.tableView)
|
|
self.centralWidget = QWidget()
|
|
self.centralWidget.setLayout(self.verticalLayout)
|
|
self.setWidget(self.centralWidget)
|