mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Created By: Virgil Dupras
|
|
# Created On: 2010-02-05
|
|
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
|
#
|
|
# This software is licensed under the "HS" License as described in the "LICENSE" file,
|
|
# which should be included with this package. The terms are also available at
|
|
# http://www.hardcoded.net/licenses/hs_license
|
|
|
|
from .base import GUIObject
|
|
|
|
class DetailsPanel(GUIObject):
|
|
def __init__(self, view, app):
|
|
GUIObject.__init__(self, view, app)
|
|
self._table = []
|
|
|
|
def connect(self):
|
|
GUIObject.connect(self)
|
|
self._refresh()
|
|
self.view.refresh()
|
|
|
|
#--- Private
|
|
def _refresh(self):
|
|
if self.app.selected_dupes:
|
|
dupe = self.app.selected_dupes[0]
|
|
group = self.app.results.get_group_of_duplicate(dupe)
|
|
else:
|
|
dupe = None
|
|
group = None
|
|
l1 = self.app._get_display_info(dupe, group, False)
|
|
# we don't want the two sides of the table to display the stats for the same file
|
|
ref = group.ref if group is not None and group.ref is not dupe else None
|
|
l2 = self.app._get_display_info(ref, group, False)
|
|
names = [c['display'] for c in self.app.data.COLUMNS]
|
|
self._table = list(zip(names, l1, l2))
|
|
|
|
#--- Public
|
|
def row_count(self):
|
|
return len(self._table)
|
|
|
|
def row(self, row_index):
|
|
return self._table[row_index]
|
|
|
|
#--- Event Handlers
|
|
def dupes_selected(self):
|
|
self._refresh()
|
|
self.view.refresh()
|
|
|