summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/CustomNodeCellView.h
blob: 5b3b1eea0cee08885c7ada77fc563a66baa8deb2 (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 (retain) id objectValue;

@end