2012-05-30 12:10:56 -04:00
|
|
|
# Created On: 2012-05-30
|
2013-04-28 10:35:51 -04:00
|
|
|
# Copyright 2013 Hardcoded Software (http://www.hardcoded.net)
|
2012-05-30 12:10:56 -04:00
|
|
|
#
|
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
|
2012-06-06 15:09:38 -04:00
|
|
|
from objp.util import dontwrap
|
2012-05-30 12:10:56 -04:00
|
|
|
from cocoa.inter import PyGUIObject, GUIObjectView
|
|
|
|
|
|
|
|
class DeletionOptionsView(GUIObjectView):
|
|
|
|
def updateMsg_(self, msg: str): pass
|
|
|
|
def show(self) -> bool: pass
|
|
|
|
|
|
|
|
class PyDeletionOptions(PyGUIObject):
|
2012-08-01 12:36:23 -04:00
|
|
|
def setLinkDeleted_(self, link_deleted: bool):
|
|
|
|
self.model.link_deleted = link_deleted
|
|
|
|
|
|
|
|
def setUseHardlinks_(self, use_hardlinks: bool):
|
|
|
|
self.model.use_hardlinks = use_hardlinks
|
2012-05-30 12:10:56 -04:00
|
|
|
|
|
|
|
def setDirect_(self, direct: bool):
|
|
|
|
self.model.direct = direct
|
|
|
|
|
|
|
|
#--- model --> view
|
2012-06-06 15:09:38 -04:00
|
|
|
@dontwrap
|
2012-05-30 12:10:56 -04:00
|
|
|
def update_msg(self, msg):
|
|
|
|
self.callback.updateMsg_(msg)
|
|
|
|
|
2012-06-06 15:09:38 -04:00
|
|
|
@dontwrap
|
2012-05-30 12:10:56 -04:00
|
|
|
def show(self):
|
|
|
|
return self.callback.show()
|
|
|
|
|