summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/ParseErrorView.m
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2017-01-11 16:33:00 +0100
committerAleks Kissinger <aleks0@gmail.com>2017-01-11 16:33:00 +0100
commit1802977b95d29198f27535b1b731d1180c083667 (patch)
tree032c4beb7411d88d76794a25f0e3b00a3437da3e /tikzit/src/osx/ParseErrorView.m
parentff79a9c213dfd75ea00ed5112d3a6e314601e064 (diff)
made new subdir
Diffstat (limited to 'tikzit/src/osx/ParseErrorView.m')
-rw-r--r--tikzit/src/osx/ParseErrorView.m40
1 files changed, 0 insertions, 40 deletions
diff --git a/tikzit/src/osx/ParseErrorView.m b/tikzit/src/osx/ParseErrorView.m
deleted file mode 100644
index 83383f0..0000000
--- a/tikzit/src/osx/ParseErrorView.m
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-// ParseErrorView.m
-// TikZiT
-//
-// Created by Karl Johan Paulsson on 27/01/2013.
-// Copyright (c) 2013 Aleks Kissinger. All rights reserved.
-//
-
-#import "ParseErrorView.h"
-
-@implementation ParseErrorView
-
-- (id)initWithFrame:(NSRect)frame
-{
- self = [super initWithFrame:frame];
- if (self) {
- // Initialization code here.
- }
-
- return self;
-}
-
-- (void)drawRect:(NSRect)dirtyRect
-{
- // Drawing code here.
-}
-
-- (void)awakeFromNib{
- self.layer = [CALayer layer];
- self.wantsLayer = YES;
- CALayer *newLayer = [CALayer layer];
- self.layer.backgroundColor = [[NSColor controlColor] CGColor];
- //CGColorCreate(CGColorSpaceCreateDeviceRGB(), (CGFloat[]){ 1, .9, .64, 1 });
-// newLayer.backgroundColor = [NSColor redColor].CGColor;
- newLayer.frame = CGRectMake(100,100,100,100);//NSMakeRect(0,0,image.size.width,image.size.height);
- newLayer.position = CGPointMake(20,20);
- //[self.layer addSublayer:newLayer];
-}
-
-@end