#pragma once #import @class StatusItemButton; @protocol StatusItemButtonDelegate - (void) statusItemButtonLeftClick: (StatusItemButton *) button; - (void) statusItemButtonRightClick: (StatusItemButton *) button; @end @interface StatusItemButton : NSView @property (strong, nonatomic) NSImage *image; @property (unsafe_unretained) id delegate; - (instancetype) initWithImage: (NSImage *) image; @end