MenuItemView/ImageMenuItemView.h

/*
 Copyright (C) 2017 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 The NSView that draws a picture as its background, used for menu item views that want a background image.
 */
 
@import Cocoa;
 
@interface ImageMenuItemView : NSView
 
- (void)setupBackgroundImage;
 
@end