forked from michaelvillar/chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MVTabView.h
27 lines (21 loc) · 875 Bytes
/
MVTabView.h
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
#import <TwUI/TUIKit.h>
@class MVTabView;
@protocol MVTabViewDelegate
@optional
- (void)tabViewShouldBeSelect:(MVTabView*)tabView;
@end
@interface MVTabView : TUIView
@property (copy, readwrite) NSString *name;
@property (strong, readwrite) NSObject *identifier;
@property (readwrite) BOOL sortable;
@property (readwrite) BOOL showed;
@property (readwrite, nonatomic, getter = isSelected) BOOL selected;
@property (readonly, getter = isHighlighted) BOOL highlighted;
@property (readwrite, nonatomic) BOOL sorting;
@property (readwrite, getter = isGlowing, nonatomic) BOOL glowing;
@property (readwrite, getter = isOnline, nonatomic) BOOL online;
@property (strong, readwrite, nonatomic) MVTabView *nextTab;
@property (strong, readwrite, nonatomic) MVTabView *previousTab;
@property (weak, readwrite) NSObject <MVTabViewDelegate> *delegate;
- (float)expectedWidth;
@end