forked from joshaber/JAListView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJAListViewItem.h
More file actions
30 lines (22 loc) · 739 Bytes
/
JAListViewItem.h
File metadata and controls
30 lines (22 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// JAListViewItem.h
//
// Created by Josh Abernathy on 10/27/10.
// Copyright 2010 Maybe Apps. All rights reserved.
//
#import <Cocoa/Cocoa.h>
typedef enum {
JAListViewPositionTop = 1 << 1,
JAListViewPositionMiddle = 1 << 2,
JAListViewPositionBottom = 1 << 3,
JAListViewPositionNone = 0,
} JAListViewPosition;
@class JAListView;
@interface JAListViewItem : NSView {}
- (NSImage *)draggingImage;
@property (nonatomic, assign) __weak JAListView *listView;
@property (nonatomic, assign) BOOL ignoreInListViewLayout;
@property (nonatomic, assign, getter=isSelected) BOOL selected;
@property (nonatomic, assign, getter=isHighlighted) BOOL highlighted;
@property (nonatomic, readonly) JAListViewPosition listViewPosition;
@end