dparnell / psmtabbar

A port of the PSMTabBarControl for Interface Builder 3.0

This URL has Read+Write access

psmtabbar / PSMTabBarInspector.h
100644 31 lines (26 sloc) 0.945 kb
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
//
// PSMTabBarInspector.h
// PSMTabBar
//
// Created by Daniel Parnell on 29/12/07.
// Copyright 2007 Automagic Software Pty Ltd.. All rights reserved.
//
 
#import <InterfaceBuilderKit/InterfaceBuilderKit.h>
 
@interface PSMTabBarInspector : IBInspector {
    IBOutlet NSPopUpButton *_stylePopUp;
IBOutlet NSButton *_allowsBackgroundTabClosing;
IBOutlet NSButton *_automaticallyAnimates;
    IBOutlet NSButton *_canCloseOnlyTab;
IBOutlet NSButton *_disableTabClose;
    IBOutlet NSButton *_hideForSingleTab;
    IBOutlet NSButton *_showAddTab;
    IBOutlet NSTextField *_cellMinWidth;
    IBOutlet NSTextField *_cellMaxWidth;
    IBOutlet NSTextField *_cellOptimumWidth;
IBOutlet NSButton *_selectsTabsOnMouseDown;
    IBOutlet NSButton *_sizeToFit;
IBOutlet NSButton *_useOverflowMenu;
IBOutlet NSButton *_canDragTabs;
}
 
- (IBAction) ok:(id)sender;
 
@end