mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
55db21f3e0
--HG-- branch : objp
12 lines
330 B
Python
12 lines
330 B
Python
from cocoa.inter import PyGUIObject, GUIObjectView
|
|
|
|
class DetailsPanelView(GUIObjectView):
|
|
pass
|
|
|
|
class PyDetailsPanel(PyGUIObject):
|
|
def numberOfRows(self) -> int:
|
|
return self.model.row_count()
|
|
|
|
def valueForColumn_row_(self, column: str, row: int) -> object:
|
|
return self.model.row(row)[int(column)]
|