mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
27 lines
945 B
Python
27 lines
945 B
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 QAbstractItemView
|
|
|
|
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, 186)
|
|
self.setMinimumSize(QSize(200, 0))
|
|
self.tableView = DetailsTable(self)
|
|
self.tableView.setAlternatingRowColors(True)
|
|
self.tableView.setSelectionBehavior(QAbstractItemView.SelectRows)
|
|
self.tableView.setShowGrid(False)
|
|
self.setWidget(self.tableView)
|