forked from BranchMetrics/xcode-github
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathXGAStatusPopover.h
More file actions
29 lines (22 loc) · 838 Bytes
/
XGAStatusPopover.h
File metadata and controls
29 lines (22 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
@file XGAStatusPopover.h
@package xcode-github-app
@brief A status popover for the status and log windows.
@author Edward Smith
@date July 2018
@copyright Copyright © 2018 Branch. All rights reserved.
*/
#import <Cocoa/Cocoa.h>
NS_ASSUME_NONNULL_BEGIN
@interface XGAStatusPopover : NSViewController
@property (strong) IBOutlet NSPopover*popover;
@property (strong) IBOutlet NSTextField*titleTextField;
@property (strong) IBOutlet NSImageView*statusImageView;
@property (strong) IBOutlet NSTextField*statusTextField;
@property (strong) IBOutlet NSTextField*detailTextField;
- (void) close;
- (void) showRelativeToRect:(NSRect)positioningRect
ofView:(NSView *)positioningView
preferredEdge:(NSRectEdge)preferredEdge;
@end
NS_ASSUME_NONNULL_END