-
Notifications
You must be signed in to change notification settings - Fork 0
/
MergeContactController.py
40 lines (30 loc) · 1.03 KB
/
MergeContactController.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright (C) 2013 AG Projects. See LICENSE for details.
#
from AppKit import NSApp, NSCancelButton, NSOKButton
from Foundation import NSBundle, NSObject
import objc
class MergeContactController(NSObject):
window = objc.IBOutlet()
textLabel = objc.IBOutlet()
def __new__(cls, *args, **kwargs):
return cls.alloc().init()
def init(self):
NSBundle.loadNibNamed_owner_("MergeContacts", self)
return self
def runModal_(self, text):
self.textLabel.setStringValue_(text)
self.window.makeKeyAndOrderFront_(None)
rc = NSApp.runModalForWindow_(self.window)
self.window.orderOut_(self)
if rc == NSOKButton:
return True
return False
@objc.IBAction
def okClicked_(self, sender):
NSApp.stopModalWithCode_(NSOKButton)
@objc.IBAction
def cancelClicked_(self, sender):
NSApp.stopModalWithCode_(NSCancelButton)
def windowShouldClose_(self, sender):
NSApp.stopModalWithCode_(NSCancelButton)
return True