summaryrefslogtreecommitdiff
path: root/tikzit-old/src/osx/CustomNodeCellView.h
blob: 22606d751a0d8d31692e5a4a6e15be3e6e993500 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  CustomNodeCellView.h
//  TikZiT
//
//  Created by Johan Paulsson on 12/12/13.
//  Copyright (c) 2013 Aleks Kissinger. All rights reserved.
//

#import <Cocoa/Cocoa.h>

#import "NodeLayer.h"
#import "NodeStyle.h"
#import "NodeStyle+Coder.h"

@interface CustomNodeCellView : NSTableCellView{
    NodeLayer *nodeLayer;
    NodeStyle *nodeStyle;
    BOOL selected;
}

@property (strong) id objectValue;

@end