Files
gitx/KBPopUpToolbarItem.h
T
brotherbard a26bca8845 Add drop down menus to the push and pull toolbar items.
TODO: need small disclosure triangles in the bottom right corner of the icons.
2009-11-08 20:34:34 -07:00

25 lines
549 B
Objective-C

//
// KBPopUpToolbarItem.h
// --------------------
//
// Created by Keith Blount on 14/05/2006.
// Copyright 2006 Keith Blount. All rights reserved.
//
// Provides a toolbar item that performs its given action if clicked, or displays a pop-up menu
// (if it has one) if held down for over half a second.
//
#import <Cocoa/Cocoa.h>
@class KBDelayedPopUpButton;
@interface KBPopUpToolbarItem : NSToolbarItem
{
KBDelayedPopUpButton *button;
NSImage *smallImage;
NSImage *regularImage;
}
- (void)setMenu:(NSMenu *)menu;
- (NSMenu *)menu;
@end