mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 13:44:37 +00:00
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)]
|