-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLinkingEditor.h
executable file
·81 lines (66 loc) · 2.3 KB
/
LinkingEditor.h
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* LinkingEditor */
#import <Cocoa/Cocoa.h>
@class NotesTableView;
@class NoteObject;
@class GlobalPrefs;
#define DELAYED_LAYOUT 0
@interface LinkingEditor : NSTextView
{
IBOutlet NSTextField *controlField;
IBOutlet NotesTableView *notesTableView;
GlobalPrefs *prefsController;
#if DELAYED_LAYOUT
NSTimer *timer;
BOOL inhibitingUpdates;
BOOL didSetFutureRange, didInvalidateLayout, didRenderFully;
NSRange futureRange;
NSString *futureWordsToHighlight;
unsigned int lastHighlightedIndex;
NSRect rectForSuppressedUpdate;
#else
BOOL didRenderFully;
#endif
BOOL didChangeIntoAutomaticRange;
NSRange lastAutomaticallySelectedRange;
NSRange changedRange;
//ludicrous ivars used to hack NSTextFinder. just write your own, damnit!
NSRange selectedRangeDuringFind;
NSString *lastImportedFindString;
NSString *stringDuringFind;
NoteObject *noteDuringFind;
}
- (NSDictionary*)preferredLinkAttributes;
- (NSRange)selectedRangeWasAutomatic:(BOOL*)automatic;
- (void)setAutomaticallySelectedRange:(NSRange)newRange;
- (void)removeHighlightedTerms;
- (void)highlightRangesTemporarily:(CFArrayRef)ranges;
- (NSRange)highlightTermsTemporarilyReturningFirstRange:(NSString*)typedString;
- (void)defaultStyle:(id)sender;
- (void)underlineNV:(id)sender;
- (void)bold:(id)sender;
- (void)italic:(id)sender;
- (void)applyStyleOfTrait:(NSFontTraitMask)trait alternateAttributeName:(NSString*)attrName alternateAttributeValue:(id)value;
//- (void)suggestComplete:(id)sender;
- (id)highlightLinkAtIndex:(unsigned)givenIndex;
- (BOOL)jumpToRenaming;
- (void)indicateRange:(NSValue*)rangeValue;
- (void)fixTypingAttributesForSubstitutedFonts;
#if DELAYED_LAYOUT
- (void)_updateHighlightedRangesToIndex:(unsigned)loc;
- (void)_setFutureSelectionRangeWithinIndex:(unsigned)loc;
- (void)setFutureSelectionRange:(NSRange)aRange highlightingWords:(NSString*)words;
- (BOOL)readyToDraw;
- (void)beginInhibitingUpdates;
#else
- (BOOL)didRenderFully;
#endif
@end
@interface NSTextView (Private)
#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6
- (void)toggleAutomaticTextReplacement:(id)sender;
- (BOOL)isAutomaticTextReplacementEnabled;
- (void)setAutomaticTextReplacementEnabled:(BOOL)flag;
- (void)moveToLeftEndOfLine:(id)sender;
#endif
- (void)_checkSpellingForRange:(struct _NSRange)fp8 excludingRange:(struct _NSRange)fp16;
@end