mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
21 lines
480 B
Python
21 lines
480 B
Python
|
from objp.util import pyref
|
||
|
from cocoa.inter import PyGUIObject, GUIObjectView
|
||
|
|
||
|
class IgnoreListDialogView(GUIObjectView):
|
||
|
def show(self): pass
|
||
|
|
||
|
class PyIgnoreListDialog(PyGUIObject):
|
||
|
def ignoreListTable(self) -> pyref:
|
||
|
return self.model.ignore_list_table
|
||
|
|
||
|
def removeSelected(self):
|
||
|
self.model.remove_selected()
|
||
|
|
||
|
def clear(self):
|
||
|
self.model.clear()
|
||
|
|
||
|
#--- model --> view
|
||
|
def show(self):
|
||
|
self.callback.show()
|
||
|
|