mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-19 05:19:03 +00:00
a699a2ef45
--HG-- branch : objp
33 lines
769 B
Python
33 lines
769 B
Python
from objp.util import dontwrap
|
|
from cocoa.inter2 import PyGUIObject
|
|
|
|
class ExtraFairwareReminderView:
|
|
def startTimer(self): pass
|
|
def stopTimer(self): pass
|
|
def setButtonText_(self, text: str): pass;
|
|
def enableButton(self): pass
|
|
|
|
class PyExtraFairwareReminder(PyGUIObject):
|
|
def start(self):
|
|
self.model.start()
|
|
|
|
def updateButton(self):
|
|
self.model.update_button()
|
|
|
|
# model --> view
|
|
@dontwrap
|
|
def start_timer(self):
|
|
self.callback.startTimer()
|
|
|
|
@dontwrap
|
|
def stop_timer(self):
|
|
self.callback.stopTimer()
|
|
|
|
@dontwrap
|
|
def enable_button(self):
|
|
self.callback.enableButton()
|
|
|
|
@dontwrap
|
|
def set_button_text(self, text):
|
|
self.callback.setButtonText_(text)
|