//***************************************************************************

// Copyright (C) 2007 Realmac Software Ltd
//
// These coded instructions, statements, and computer programs contain
// unpublished proprietary information of Realmac Software Ltd
// and are protected by copyright law. They may not be disclosed
// to third parties or copied or duplicated in any form, in whole or
// in part, without the prior written consent of Realmac Software Ltd.

//***************************************************************************

#import <Cocoa/Cocoa.h>

//***************************************************************************

/// A NSButton subclass that can display a popup menu
/** Displays the menu when the user clicks and holds on the button. Tracks the mouse and acts intelligently when the user moves in and out of the button.
*/
@interface RMButtonWithMenu : NSButton {

}

@end

//***************************************************************************
