forked from scrod/nv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
LinkingEditor.h
executable file
·93 lines (76 loc) · 3.04 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
82
83
84
85
86
87
88
89
90
91
92
93
/* LinkingEditor */
/*Copyright (c) 2010, Zachary Schneirov. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions
and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of
conditions and the following disclaimer in the documentation and/or other materials provided with
the distribution.
- Neither the name of Notational Velocity nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior written permission. */
#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