1
0
의 미러 https://github.com/arsenetar/dupeguru.git synced 2025-07-15 18:53:19 +00:00
dupeguru/cocoa/inter/directory_outline.py

18 lines
515 B
Python

from objp.util import dontwrap
from cocoa.inter2 import PyOutline2, GUIObjectView
class DirectoryOutlineView(GUIObjectView):
pass
class PyDirectoryOutline(PyOutline2):
def addDirectory_(self, path: str):
self.model.add_directory(path)
def removeSelectedDirectory(self):
self.model.remove_selected()
# python --> cocoa
@dontwrap
def refresh_states(self):
# Under cocoa, both refresh() and refresh_states() do the same thing.
self.callback.refresh()