summaryrefslogtreecommitdiff
path: root/cocoa/PSMTabBarControl/PSMTabBarController.h
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/PSMTabBarControl/PSMTabBarController.h')
-rw-r--r--cocoa/PSMTabBarControl/PSMTabBarController.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/cocoa/PSMTabBarControl/PSMTabBarController.h b/cocoa/PSMTabBarControl/PSMTabBarController.h
deleted file mode 100644
index a73a04f1f..000000000
--- a/cocoa/PSMTabBarControl/PSMTabBarController.h
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// 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