-
Notifications
You must be signed in to change notification settings - Fork 7
/
BlockedContact.py
41 lines (32 loc) · 1.11 KB
/
BlockedContact.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
40
41
# Copyright (C) 2009-2012 AG Projects. See LICENSE for details.
#
from AppKit import NSApp, NSOKButton, NSCancelButton
from Foundation import NSBundle, NSObject
import objc
class BlockedContact(NSObject):
window = objc.IBOutlet()
name = objc.IBOutlet()
address = objc.IBOutlet()
def __new__(cls, *args, **kwargs):
return cls.alloc().init()
def init(self):
NSBundle.loadNibNamed_owner_("BlockedContact", self)
return self
def runModal(self):
self.window.makeKeyAndOrderFront_(None)
rc = NSApp.runModalForWindow_(self.window)
self.window.orderOut_(self)
if rc == NSOKButton:
return {'name': str(self.name.stringValue()),
'address': str(self.address.stringValue())
}
return None
@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