25 lines
585 B
Objective-C
Executable File
25 lines
585 B
Objective-C
Executable File
//
|
|
// Document.h
|
|
// Brainfuck
|
|
//
|
|
// Created by Kim Wittenburg on 20.05.13.
|
|
// Copyright (c) 2013 brainfuck. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "Printer.h"
|
|
|
|
@interface Document : NSDocument<NSWindowDelegate, NSSplitViewDelegate, NSTextStorageDelegate, NSTextViewDelegate, Printer>
|
|
|
|
@property (unsafe_unretained) IBOutlet NSTextView *editorView;
|
|
@property (weak) IBOutlet NSTextField *inputView;
|
|
@property (unsafe_unretained) IBOutlet NSTextView *outputView;
|
|
|
|
@property (copy) NSString *text;
|
|
|
|
- (IBAction)executeScript:(id)sender;
|
|
- (void)updateColors;
|
|
|
|
@end
|