root/Trunk/AIUtilities.framework/Versions/A/Headers/AISplitView.h @ 2

Revision 2, 1.0 KB (checked in by jon, 16 years ago)

Initial commit of skeletal project.

Line 
1//
2//  AISplitView.h
3//  AIUtilities.framework
4//
5//  Created by Adam Iser on 2/6/05.
6//  Copyright 2005 the Adium Team. All rights reserved.
7//
8
9#import <AIUtilities/AITigerCompatibility.h>
10
11/*!
12 * @class AISplitView
13 * @brief <tt>NSSplitView</tt> subclass with additional customization
14 *
15 * This subclass of NSSplitView allows the user to adjust the thickness of the divider and disable drawing of the
16 * divider 'dot' graphic.
17 */
18@interface AISplitView : NSSplitView {
19        CGFloat dividerThickness;
20        BOOL    drawDivider;
21}
22
23/*!
24 * @brief Set the thickness of the split divider
25 *
26 * Set the thickness of the split divider
27 * @param inThickness Desired divider thickness
28 */
29- (void)setDividerThickness:(CGFloat)inThickness;
30
31/*!
32 * @brief Toggle drawing of the divider graphics
33 *
34 * Toggle display of the divider graphics (The 'dot' in the center of the divider)
35 * @param inDraw NO to disable drawing of the dot, YES to enable it
36 */
37- (void)setDrawsDivider:(BOOL)inDraw;
38
39@end
Note: See TracBrowser for help on using the browser.