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

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

Initial commit of skeletal project.

Line 
1//
2//  AIImageButton.h
3//  AIUtilities.framework
4//
5//  Created by Evan Schoenberg on 10/16/04.
6//  Copyright (c) 2004-2005 The Adium Team. All rights reserved.
7//
8
9#import <AIUtilities/MVMenuButton.h>
10
11@class AIFloater;
12
13/*!
14 * @class AIImageButton
15 * @brief Button which displays an image when clicked for use as the custom view of an NSToolbarItem.
16 *
17 * The image remains as long as the mouse button is held down; if it is an animating image, it will animate.  See <tt>MVMenuButton</tt> for the API.
18 */
19@interface AIImageButton : MVMenuButton {
20        AIFloater       *imageFloater;
21        BOOL            imageFloaterShouldBeOpen; //Track if the image float should currently be open; useful since the floater is desroyed on a delay.
22}
23
24@end
Note: See TracBrowser for help on using the browser.