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

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

Initial commit of skeletal project.

Line 
1//
2//  AIPlasticButtonCell.m
3//  AIUtilities
4//
5//  Created by Mac-arena the Bored Zo on 2005-11-26.
6//
7
8/*!
9 * @class AIPlasticButtonCell
10 * @brief NSButtonCell subclass for implementing a "plastic" Aqua button
11 *
12 * NOTE: The current implementation is incomplete (in particular, NSCellImagePosition values other than
13 * NSImageOnly and NSNoImage are quite broken). Please fix if you can.
14 */
15@interface AIPlasticButtonCell : NSButtonCell {
16    NSImage                     *plasticCaps;
17    NSImage                     *plasticMiddle;
18    NSImage                     *plasticPressedCaps;
19    NSImage                     *plasticPressedMiddle;
20    NSImage                     *plasticDefaultCaps;
21    NSImage                     *plasticDefaultMiddle;
22}
23
24@end
Note: See TracBrowser for help on using the browser.