Skip to content

Commit d830847

Browse files
Quite a few little fixes
fullscreen mode, snow leopard only fixes, the insert link command, holding down option/ctrl trick works better, some pragma marking, also found some places where the url scheme was still set to "nv://". we're fully "nvalt://"
1 parent 6168e9d commit d830847

15 files changed

+272
-358
lines changed

AppController.h

+8-7
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
IBOutlet NSMenuItem *fsMenuItem;
5858
BOOL wasVert;
5959
BOOL wasDFVisible;
60+
BOOL fieldWasFirstResponder;
6061
BOOL isAutocompleting;
6162
BOOL wasDeleting;
6263
IBOutlet ETContentView *mainView;
@@ -182,10 +183,9 @@ void outletObjectAwoke(id sender);
182183
//elasticwork
183184
//- (void)setIsEditing:(BOOL)inBool inCell:(NSCell *)theCell;
184185
//- (void)focusOnCtrlFld:(id)sender;
185-
- (void)tableView:(NSTableView *)aTableView willDisplayCell:(id)aCell forTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex;
186186
- (NSMenu *)statBarMenu;
187-
- (BOOL)toggleAttachedWindow:(NSNotification *)aNotification;
188-
- (BOOL)toggleAttachedMenu:(NSNotification *)aNotification;
187+
- (void)toggleAttachedWindow:(NSNotification *)aNotification;
188+
- (void)toggleAttachedMenu:(NSNotification *)aNotification;
189189
- (NSArray *)commonLabels;
190190
- (IBAction)multiTag:(id)sender;
191191
- (void)setDualFieldInToolbar;
@@ -197,8 +197,8 @@ void outletObjectAwoke(id sender);
197197
- (IBAction)toggleCollapse:(id)sender;
198198
- (IBAction)switchFullScreen:(id)sender;
199199
- (BOOL)isInFullScreen;
200-
- (IBAction)openFileInEditor:(id)sender;
201-
- (NSArray *)getTxtAppList;
200+
//- (IBAction)openFileInEditor:(id)sender;
201+
//- (NSArray *)getTxtAppList;
202202
//- (void)updateTextApp:(id)sender;
203203
- (IBAction)setBWColorScheme:(id)sender;
204204
- (IBAction)setLCColorScheme:(id)sender;
@@ -215,6 +215,7 @@ void outletObjectAwoke(id sender);
215215
- (IBAction)toggleWordCount:(id)sender;
216216
- (void)popWordCount:(BOOL)showIt;
217217
- (void)popPreview:(BOOL)showIt;
218+
- (IBAction)previewNoteWithMarked:(id)sender;
218219
- (IBAction)togglePreview:(id)sender;
219220
- (IBAction)toggleSourceView:(id)sender;
220221
- (IBAction)savePreview:(id)sender;
@@ -227,17 +228,17 @@ void outletObjectAwoke(id sender);
227228
- (void)updateRTL;
228229
- (void)refreshNotesList;
229230
- (void)focusControlField:(id)sender activate:(BOOL)shouldActivate;
231+
- (void)updateModifier:(NSTimer*)theTimer;
230232
#pragma mark toggling dock icon
231233
- (void)togDockIcon:(NSNotification *)notification;
232234
- (void)hideDockIconAfterDelay;
233235
- (void)hideDockIcon;
234236
- (void)showDockIcon;
235237
- (void)reActivate:(id)sender;
236238
- (void)toggleStatusItem:(NSNotification *)notification;
237-
//- (IBAction)testThing:(id)sender;
238239
- (void)setUpStatusBarItem;
239240
- (NSArray *)referenceLinksInString:(NSString *)contentString;
240-
- (IBAction)testThing:(id)sender;
241+
//- (IBAction)testThing:(id)sender;
241242
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7
242243
- (void)postToggleToolbar:(NSNumber *)boolNum;
243244
#endif

0 commit comments

Comments
 (0)