mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-16 20:29:02 +00:00
01f1e5e46e
--HG-- branch : objp
14 lines
367 B
Python
14 lines
367 B
Python
from cocoa.inter import signature, PyGUIObject
|
|
|
|
from core.gui.details_panel import DetailsPanel
|
|
|
|
class PyDetailsPanel(PyGUIObject):
|
|
py_class = DetailsPanel
|
|
@signature('i@:')
|
|
def numberOfRows(self):
|
|
return self.py.row_count()
|
|
|
|
@signature('@@:@i')
|
|
def valueForColumn_row_(self, column, row):
|
|
return self.py.row(row)[int(column)]
|