SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
HexFiend/HFRepresenterTextViewCallout.h
1 //
2 // HFRepresenterTextViewCallout.h
3 // HexFiend_2
4 //
5 // Copyright 2011 ridiculous_fish. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9
10 @class HFRepresenterTextView;
11
12 #define kHFRepresenterTextViewCalloutMaxGlyphCount 2u
13
14 @interface HFRepresenterTextViewCallout : NSObject {
15 CGFloat rotation;
16 NSPoint tipOrigin;
17 NSPoint pinStart, pinEnd;
18 }
19
20 @property(nonatomic) NSInteger byteOffset;
21 @property(nonatomic, copy) NSColor *color;
22 @property(nonatomic, copy) NSString *label;
23 @property(nonatomic, retain) id representedObject;
24 @property(readonly) NSRect rect;
25
26 + (void)layoutCallouts:(NSArray *)callouts inView:(HFRepresenterTextView *)textView;
27
28 - (void)drawShadowWithClip:(NSRect)clip;
29 - (void)drawWithClip:(NSRect)clip;
30
31 @end
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.