summaryrefslogtreecommitdiff
path: root/frontends/cocoa/PSMTabBarControl/PSMTabBarController.h
blob: a73a04f1f22924f28d4aa39f3378089c5defd71f (plain)
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
31
32
33
34
35
36
37
38
//
//  PSMTabBarController.h
//  PSMTabBarControl
//
//  Created by Kent Sutherland on 11/24/06.
//  Copyright 2006 Kent Sutherland. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@class PSMTabBarControl, PSMTabBarCell;

@interface PSMTabBarController : NSObject
#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 1060
	<NSMenuDelegate>
#endif
{
	PSMTabBarControl						*_control;
	NSMutableArray						*_cellTrackingRects;
	NSMutableArray						*_closeButtonTrackingRects;
	NSMutableArray						*_cellFrames;
	NSRect									_addButtonRect;
	NSMenu									*_overflowMenu;
}

- (id)initWithTabBarControl:(PSMTabBarControl *)control;

- (NSRect)addButtonRect;
- (NSMenu *)overflowMenu;
- (NSRect)cellTrackingRectAtIndex:(NSUInteger)index;
- (NSRect)closeButtonTrackingRectAtIndex:(NSUInteger)index;
- (NSRect)cellFrameAtIndex:(NSUInteger)index;

- (void)setSelectedCell:(PSMTabBarCell *)cell;

- (void)layoutCells;

@end