-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathWindow.m
46 lines (41 loc) · 1.46 KB
/
Window.m
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
42
43
44
45
46
#include <Cocoa/Cocoa.h>
@interface Window : NSWindow {
NSButton* button;
}
- (instancetype)init;
- (BOOL)windowShouldClose:(id)sender;
@end
@implementation Window
- (instancetype)init {
button = [[[NSButton alloc] initWithFrame:NSMakeRect(10, 443, 90, 32)] autorelease];
[button setTitle:@"Close"];
[button setBezelStyle:NSBezelStyleRounded];
[button setAction:@selector(performClose:)];
[button setAutoresizingMask:NSViewMaxXMargin | NSViewMinYMargin];
[super initWithContentRect:NSMakeRect(320, 200, 640, 480) styleMask:NSWindowStyleMaskTitled | NSWindowStyleMaskClosable | NSWindowStyleMaskMiniaturizable | NSWindowStyleMaskResizable backing:NSBackingStoreBuffered defer:NO];
[self setTitle:@"Window example"];
[[self contentView] addSubview:button];
[self setIsVisible:YES];
return self;
}
- (BOOL)windowShouldClose:(id)sender {
NSAlert* alert = [[NSAlert alloc] init];
[alert setMessageText:@"Close Window"];
[alert setInformativeText:@"Are you sure you want exit?"];
[alert setAlertStyle:NSAlertStyleWarning];
[alert addButtonWithTitle:@"Yes"];
[alert addButtonWithTitle:@"No"];
[alert beginSheetModalForWindow:self completionHandler:^(NSModalResponse returnCode) {
if (returnCode == NSAlertFirstButtonReturn) {
[sender close];
[NSApp stop:sender];
}
}];
return NO;
}
@end
int main(int argc, char* argv[]) {
[NSApplication sharedApplication];
[[[[Window alloc] init] autorelease] makeMainWindow];
[NSApp run];
}