mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
a26bca8845
TODO: need small disclosure triangles in the bottom right corner of the icons.
25 lines
549 B
Objective-C
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
|