summary refs log tree commit diff
path: root/bin/gfcocoa.m
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-02-04 11:04:40 -0500
committerJune McEnroe <programble@gmail.com>2018-02-04 11:04:40 -0500
commit57d57e1dcb0461b438f1ae8b7531467c71c13a49 (patch)
tree8d4c0d584d9d6b7564e82d0f8e9c7d3c4f34e179 /bin/gfcocoa.m
parentQuit gfcocoa when window closes (diff)
downloadsrc-57d57e1dcb0461b438f1ae8b7531467c71c13a49.tar.gz
src-57d57e1dcb0461b438f1ae8b7531467c71c13a49.zip
Switch back to sane Objective-C style
Diffstat (limited to '')
-rw-r--r--bin/gfcocoa.m78
1 files changed, 44 insertions, 34 deletions
diff --git a/bin/gfcocoa.m b/bin/gfcocoa.m
index a9e4a1b5..720f1c72 100644
--- a/bin/gfcocoa.m
+++ b/bin/gfcocoa.m
@@ -32,37 +32,48 @@ static uint32_t buf[WIDTH * HEIGHT];
 @end
 
 @implementation BufferView
-- (void)drawRect:(NSRect)dirtyRect {
+- (void) drawRect: (NSRect) dirtyRect {
     CGContextRef ctx = [[NSGraphicsContext currentContext] CGContext];
     CGColorSpaceRef rgb = CGColorSpaceCreateDeviceRGB();
-    CGDataProviderRef data =
-        CGDataProviderCreateWithData(NULL, buf, size, NULL);
-    CGImageRef image =
-        CGImageCreate(WIDTH, HEIGHT, 8, 32, WIDTH * 4, rgb,
-                      kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst,
-                      data, NULL, false, kCGRenderingIntentDefault);
+    CGDataProviderRef data = CGDataProviderCreateWithData(NULL, buf, size, NULL);
+    CGImageRef image = CGImageCreate(
+        WIDTH,
+        HEIGHT,
+        8,
+        32,
+        WIDTH * 4,
+        rgb,
+        kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst,
+        data,
+        NULL,
+        false,
+        kCGRenderingIntentDefault
+    );
     CGContextDrawImage(ctx, CGRectMake(0, 0, WIDTH, HEIGHT), image);
     CGImageRelease(image);
     CGDataProviderRelease(data);
     CGColorSpaceRelease(rgb);
 }
 
-- (BOOL)acceptsFirstResponder {
+- (BOOL) acceptsFirstResponder {
     return YES;
 }
 
-- (void)keyDown:(NSEvent *)event {
+- (void) keyDown: (NSEvent *) event {
     char in;
-    [[event characters] getBytes:&in
-                       maxLength:1
-                      usedLength:NULL
-                        encoding:NSASCIIStringEncoding
-                         options:NSStringEncodingConversionAllowLossy
-                           range:NSMakeRange(0, 1)
-                  remainingRange:NULL];
+    [
+        [event characters]
+        getBytes: &in
+        maxLength: 1
+        usedLength: NULL
+        encoding: NSASCIIStringEncoding
+        options: NSStringEncodingConversionAllowLossy
+        range: NSMakeRange(0, 1)
+        remainingRange: NULL
+    ];
     input(in);
     draw(buf, WIDTH, HEIGHT);
-    [self setNeedsDisplay:YES];
+    [self setNeedsDisplay: YES];
 }
 @end
 
@@ -70,36 +81,35 @@ static uint32_t buf[WIDTH * HEIGHT];
 @end
 
 @implementation Delegate
-- (BOOL)applicationShouldTerminateAfterLastWindowClosed:
-    (NSApplication *)sender {
+- (BOOL) applicationShouldTerminateAfterLastWindowClosed: (NSApplication *) sender {
     return YES;
 }
 @end
 
 int main(int argc, char *argv[]) {
     int error = init(argc, argv);
-    if (error)
-        return error;
+    if (error) return error;
 
     draw(buf, WIDTH, HEIGHT);
 
     [NSApplication sharedApplication];
-    [NSApp setActivationPolicy:NSApplicationActivationPolicyRegular];
-    [NSApp setDelegate:[Delegate new]];
+    [NSApp setActivationPolicy: NSApplicationActivationPolicyRegular];
+    [NSApp setDelegate: [Delegate new]];
 
-    NSWindow *window = [[NSWindow alloc]
-        initWithContentRect:NSMakeRect(0, 0, WIDTH, HEIGHT)
-                  styleMask:NSTitledWindowMask | NSClosableWindowMask |
-                            NSMiniaturizableWindowMask | NSResizableWindowMask
-                    backing:NSBackingStoreBuffered
-                      defer:YES];
+    NSWindow *window = [
+        [NSWindow alloc]
+        initWithContentRect: NSMakeRect(0, 0, WIDTH, HEIGHT)
+        styleMask: NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask
+        backing: NSBackingStoreBuffered
+        defer: YES
+    ];
 
-    BufferView *view = [[BufferView alloc] initWithFrame:[window frame]];
-    [window setContentView:view];
+    BufferView *view = [[BufferView alloc] initWithFrame: [window frame]];
+    [window setContentView: view];
 
-    [window setTitle:[NSString stringWithUTF8String:argv[0]]];
+    [window setTitle: [NSString stringWithUTF8String: argv[0]]];
     [window center];
-    [window makeKeyAndOrderFront:nil];
-    [NSApp activateIgnoringOtherApps:YES];
+    [window makeKeyAndOrderFront: nil];
+    [NSApp activateIgnoringOtherApps: YES];
     [NSApp run];
 }