diff --git a/AppController.h b/AppController.h index 87b2cbc3..4d01cb1a 100755 --- a/AppController.h +++ b/AppController.h @@ -53,7 +53,8 @@ #endif { - //NSMenuItem *fsMenuItem; + + IBOutlet NSMenuItem *fsMenuItem; BOOL wasVert; BOOL isAutocompleting; BOOL wasDeleting; @@ -193,7 +194,7 @@ void outletObjectAwoke(id sender); - (BOOL)dualFieldIsVisible; - (IBAction)toggleCollapse:(id)sender; - (void)setMaxNoteBodyWidth; -- (IBAction)toggleFullscreen:(id)sender; +- (IBAction)switchFullScreen:(id)sender; - (IBAction)openFileInEditor:(id)sender; - (NSArray *)getTxtAppList; - (void)updateTextApp:(id)sender; diff --git a/AppController.m b/AppController.m index ec0615de..16190713 100755 --- a/AppController.m +++ b/AppController.m @@ -117,6 +117,7 @@ - (void)awakeFromNib { } theFieldEditor = [[[NSTextView alloc]initWithFrame:[window frame]] retain]; [theFieldEditor setFieldEditor:YES]; + // [theFieldEditor setDelegate:self]; [self updateFieldAttributes]; [NSApp setDelegate:self]; @@ -351,17 +352,30 @@ - (void)runDelayedUIActionsAfterLaunch { //theMenuItem = [[viewMenu itemWithTag:801] copy]; //[statBarMenu insertItem:theMenuItem atIndex:11]; //[theMenuItem release]; - if(IsLeopardOrLater){ - NSMenu *viewMenu = [[[NSApp mainMenu] itemWithTag:VIEW_MENU_ID] submenu]; - theMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Toggle Fullscreen Mode",@"menu item title for toggling fs") - action:@selector(toggleFullscreen:) keyEquivalent:@"F"] autorelease]; - - [theMenuItem setTarget:self]; - [viewMenu insertItem:theMenuItem atIndex:1]; - theMenuItem = [theMenuItem copy]; - [statBarMenu insertItem:theMenuItem atIndex:11]; - [theMenuItem release]; - } + if(IsLeopardOrLater){ + //theMenuItem =[viewMenu itemWithTag:314]; + [fsMenuItem setEnabled:YES]; + [fsMenuItem setHidden:NO]; + +#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7 + if (IsLionOrLater) { + // [window setCollectionBehavior:NSWindowCollectionBehaviorTransient|NSWindowCollectionBehaviorMoveToActiveSpace]; + [window setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary]; + [NSApp setPresentationOptions:NSApplicationPresentationFullScreen]; + + + }else{ +#endif + [fsMenuItem setTarget:self]; + [fsMenuItem setAction:@selector(switchFullScreen:)]; + +#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7 + } +#endif + theMenuItem = [fsMenuItem copy]; + [statBarMenu insertItem:theMenuItem atIndex:11]; + [theMenuItem release]; + } if (![prefsController showWordCount]) { [wordCounter setHidden:NO]; @@ -629,6 +643,21 @@ - (BOOL)validateMenuItem:(NSMenuItem*)menuItem { return NO; } } + } else if ((selector == @selector(toggleFullScreen:))||(selector == @selector(switchFullScreen:))) { + + if (IsLeopardOrLater) { + + if([NSApp presentationOptions]>0){ + [menuItem setTitle:NSLocalizedString(@"Exit Full Screen",@"menu item title for exiting fullscreen")]; + }else{ + + [menuItem setTitle:NSLocalizedString(@"Enter Full Screen",@"menu item title for entering fullscreen")]; + + } + + } + + } else if (selector == @selector(fixFileEncoding:)) { return (currentNote != nil && storageFormatOfNote(currentNote) == PlainTextFormat && ![currentNote contentsWere7Bit]); @@ -679,6 +708,7 @@ - (void)updateNoteMenus { - (void)_forceRegeneratePreviewsForTitleColumn { [notationController regeneratePreviewsForColumn:[notesTableView noteAttributeColumnForIdentifier:NoteTitleColumnString] visibleFilteredRows:[notesTableView rowsInRect:[notesTableView visibleRect]] forceUpdate:YES]; + } - (void)_configureDividerForCurrentLayout { @@ -754,18 +784,7 @@ - (IBAction)renameNote:(id)sender { } //edit the first selected note isEd = YES; - /* NSTextView *fieldEditor = (NSTextView *)[window fieldEditor:YES forObject:notesTableView]; - NSColor *selCol = [NSColor colorWithCalibratedHue: 0.6 - saturation: 0.25 - brightness: 0.9 - alpha: 0.27]; - NSDictionary *colDict = [NSDictionary dictionaryWithObjectsAndKeys:[NSColor redColor], NSForegroundColorAttributeName, [NSColor blueColor], NSBackgroundColorAttributeName, nil]; - [fieldEditor setSelectedTextAttributes:colDict]; - [fieldEditor setTextColor:[NSColor greenColor]]; - [fieldEditor setDrawsBackground:YES]; - [fieldEditor setBackgroundColor:[NSColor blackColor]]; - [fieldEditor setNeedsDisplay:YES]; - */ + [notesTableView editRowAtColumnWithIdentifier:NoteTitleColumnString]; } @@ -980,7 +999,7 @@ - (void)settingChangedForSelectorString:(NSString*)selectorString { ResetFontRelatedTableAttributes(); [notesTableView updateTitleDereferencorState]; - [notationController invalidateAllLabelPreviewImages]; + //[notationController invalidateAllLabelPreviewImages]; [self _forceRegeneratePreviewsForTitleColumn]; if ([selectorString isEqualToString:SEL_STR(setTableColumnsShowPreview:sender:)]) [self updateNoteMenus]; @@ -1006,6 +1025,7 @@ - (void)settingChangedForSelectorString:(NSString*)selectorString { } - (void)tableView:(NSTableView *)tableView didClickTableColumn:(NSTableColumn *)tableColumn { + NSLog(@"dickclicktablecol"); if (tableView == notesTableView) { //this sets global prefs options, which ultimately calls back to us [notesTableView setStatusForSortedColumn:tableColumn]; @@ -1129,6 +1149,7 @@ - (void)cancelOperation:(id)sender { - (BOOL)control:(NSControl *)control textView:(NSTextView *)aTextView doCommandBySelector:(SEL)command { if (control == (NSControl*)field) { + isEd=NO; //backwards-searching is slow enough as it is, so why not just check this first? if (command == @selector(deleteBackward:)) return NO; @@ -1222,10 +1243,13 @@ - (BOOL)control:(NSControl *)control textView:(NSTextView *)aTextView doCommandB if (command == @selector(insertNewline:)) { //hit return in cell + //NSLog(@"herehere"); + isEd=NO; [window makeFirstResponder:textView]; return YES; } } else if (control == [TagEditer tagField]) { + if (command == @selector(insertNewline:)) { if ([aTextView selectedRange].length>0) { NSString *theLabels = [TagEditer newMultinoteLabels]; @@ -1252,8 +1276,11 @@ - (BOOL)control:(NSControl *)control textView:(NSTextView *)aTextView doCommandB } return NO; } - } else + } else{ + NSLog(@"%@/%@ got %@", [control description], [aTextView description], NSStringFromSelector(command)); + isEd=NO; + } return NO; } @@ -1640,9 +1667,22 @@ - (void)textDidBeginEditing:(NSNotification *)aNotification { if ([aNotification object] == textView) { [textView removeHighlightedTerms]; [self createNoteIfNecessary]; - } + }/*else if ([aNotification object] == notesTableView) { + NSLog(@"ntv tdbe2"); + }*/ } +/* + - (void)controlTextDidBeginEditing:(NSNotification *)aNotification{ + NSLog(@"controltextdidbegin"); + } + +- (void)textShouldBeginEditing:(NSNotification *)aNotification { + + NSLog(@"ntv textshould2"); + +} */ + - (void)textDidEndEditing:(NSNotification *)aNotification { if ([aNotification object] == textView) { //save last selection range for currentNote? @@ -2142,6 +2182,7 @@ - (void)applicationWillTerminate:(NSNotification *)aNotification { } - (void)dealloc { + [fsMenuItem release]; [mainView release]; [dualFieldView release]; [wordCounter release]; @@ -2544,85 +2585,158 @@ - (void)setMaxNoteBodyWidth{ } -- (IBAction)toggleFullscreen:(id)sender + +#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7 + +/* + - (NSApplicationPresentationOptions)window:(NSWindow *)window + willUseFullScreenPresentationOptions:(NSApplicationPresentationOptions)rect{ + return NSApplicationPresentationFullScreen | NSApplicationPresentationAutoHideMenuBar |NSApplicationPresentationAutoHideToolbar | NSApplicationPresentationHideDock; + #endif + } + */ + +- (void)windowWillEnterFullScreen:(NSNotification *)aNotification{ + // / [window setCollectionBehavior:NSWindowCollectionBehaviorFullScreenPrimary]; + if (![splitView isVertical]) { + [self switchViewLayout:self]; + wasVert = NO; + }else { + wasVert = YES; + //[splitView adjustSubviews]; + // [self setMaxNoteBodyWidth]; + } + +} +/* + - (void)windowDidEnterFullScreen:(NSNotification *)aNotification{ + NSLog(@"windowDidEnterfs and is vert:%d",[splitView isVertical]); + if (![splitView isVertical]) { + [self switchViewLayout:self]; + wasVert = NO; + }else { + wasVert = YES; + //[splitView adjustSubviews]; + // [self setMaxNoteBodyWidth]; + } + + } + + - (void)windowWillExitFullScreen:(NSNotification *)aNotification{ + NSLog(@"windowwillEXITfs"); + if ((!wasVert)&&([splitView isVertical])) { + [self switchViewLayout:self]; + }//else{ + // [splitView adjustSubviews]; + //[self setMaxNoteBodyWidth]; + //} + } +- (void)windowDidExitFullScreen:(NSNotification *)notification{ + // [window setCollectionBehavior:NSWindowCollectionBehaviorFullScreenAuxiliary|NSWindowCollectionBehaviorMoveToActiveSpace]; +}*/ +- (void)windowWillExitFullScreen:(NSNotification *)aNotification{ + if ((!wasVert)&&([splitView isVertical])) { + [self switchViewLayout:self]; + }//else{ + // [splitView adjustSubviews]; + //[self setMaxNoteBodyWidth]; + //} +} +#endif + +- (IBAction)switchFullScreen:(id)sender { - if(IsLeopardOrLater){ +#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_7 + if (IsLionOrLater) { + [window toggleFullScreen:nil]; + }else if(IsLeopardOrLater){ +#else + if(IsLeopardOrLater){ +#endif + //@try { + isEd = NO; + NSResponder *currentResponder = [window firstResponder]; + NSDictionary* options; + if (([[[NSUserDefaults standardUserDefaults] stringForKey:@"HideDockIcon"] isEqualToString:@"Hide Dock Icon"])&&(IsSnowLeopardOrLater)) { + options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:(NSApplicationPresentationAutoHideMenuBar | NSApplicationPresentationHideDock)],@"NSFullScreenModeApplicationPresentationOptions", nil]; + }else { + options = [NSDictionary dictionaryWithObjectsAndKeys:nil]; + } + CGFloat colW = [notesSubview dimension]; - isEd = NO; - NSResponder *currentResponder = [window firstResponder]; - NSDictionary* options; - if (([[[NSUserDefaults standardUserDefaults] stringForKey:@"HideDockIcon"] isEqualToString:@"Hide Dock Icon"])&&(IsSnowLeopardOrLater)) { - options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:(NSApplicationPresentationAutoHideMenuBar | NSApplicationPresentationHideDock)],@"NSFullScreenModeApplicationPresentationOptions", nil]; - }else { - options = [NSDictionary dictionaryWithObjectsAndKeys:nil]; - } - CGFloat colW = [notesSubview dimension]; - if ([mainView isInFullScreenMode]) { - window = normalWindow; - [mainView exitFullScreenModeWithOptions:options]; - [notesSubview setDimension:colW]; - [self setDualFieldInToolbar]; - [splitView setFrameSize:[mainView frame].size]; - if ((!wasVert)&&([splitView isVertical])) { - [self switchViewLayout:self]; - } - [window makeKeyAndOrderFront:self]; - - }else { - [mainView enterFullScreenMode:[window screen] withOptions:options]; - [notesSubview setDimension:colW]; - [self setDualFieldInView]; - if (![splitView isVertical]) { - [self switchViewLayout:self]; - wasVert = NO; - }else { - wasVert = YES; - } - normalWindow = window; - [normalWindow orderOut:self]; - window = [mainView window]; - //[NSApp setDelegate:self]; - [notesTableView setDelegate:self]; - [window setDelegate:self]; - // [window setInitialFirstResponder:field]; - [field setDelegate:self]; - [textView setDelegate:self]; - [splitView setDelegate:self]; - NSSize wSize = [mainView frame].size; - wSize.height = [splitView frame].size.height; - [splitView setFrameSize:wSize]; - } - [window setBackgroundColor:backgrndColor]; + if ([mainView isInFullScreenMode]) { + window = normalWindow; + [mainView exitFullScreenModeWithOptions:options]; - if ([[currentResponder description] rangeOfString:@"_NSFullScreenWindow"].length>0){ - currentResponder = textView; - } - if (([currentResponder isKindOfClass:[NSTextView class]])&&(![currentResponder isKindOfClass:[LinkingEditor class]])) { - currentResponder = field; - } + [notesSubview setDimension:colW]; + [self setDualFieldInToolbar]; + [splitView setFrameSize:[mainView frame].size]; + if ((!wasVert)&&([splitView isVertical])) { + [self switchViewLayout:self]; + }else{ + [splitView adjustSubviews]; + [self setMaxNoteBodyWidth]; + } + [window makeKeyAndOrderFront:self]; + }else { + [mainView enterFullScreenMode:[window screen] withOptions:options]; + [notesSubview setDimension:colW]; + [self setDualFieldInView]; + if (![splitView isVertical]) { + [self switchViewLayout:self]; + wasVert = NO; + }else { + wasVert = YES; + [splitView adjustSubviews]; + [self setMaxNoteBodyWidth]; + } + normalWindow = window; + [normalWindow orderOut:self]; + window = [mainView window]; + //[NSApp setDelegate:self]; + [notesTableView setDelegate:self]; + [window setDelegate:self]; + // [window setInitialFirstResponder:field]; + [field setDelegate:self]; + [textView setDelegate:self]; + [splitView setDelegate:self]; + NSSize wSize = [mainView frame].size; + wSize.height = [splitView frame].size.height; + [splitView setFrameSize:wSize]; + } + [window setBackgroundColor:backgrndColor]; - [splitView setNextKeyView:notesTableView]; - [field setNextKeyView:textView]; - [textView setNextKeyView:field]; - [window setAutorecalculatesKeyViewLoop:NO]; - [window makeFirstResponder:currentResponder]; - - [textView switchFindPanelDelegate]; - [textView setUsesFindPanel:YES]; - - [self setMaxNoteBodyWidth]; - [splitView adjustSubviews]; - - [mainView setNeedsDisplay:YES]; + if ([[currentResponder description] rangeOfString:@"_NSFullScreenWindow"].length>0){ + currentResponder = textView; + } + if (([currentResponder isKindOfClass:[NSTextView class]])&&(![currentResponder isKindOfClass:[LinkingEditor class]])) { + currentResponder = field; + } + + [splitView setNextKeyView:notesTableView]; + [field setNextKeyView:textView]; + [textView setNextKeyView:field]; + [window setAutorecalculatesKeyViewLoop:NO]; + [window makeFirstResponder:currentResponder]; + + [textView switchFindPanelDelegate]; + [textView setUsesFindPanel:YES]; + + + [mainView setNeedsDisplay:YES]; + if (![NSApp isActive]) { + [NSApp activateIgnoringOtherApps:YES]; + } /*} - @catch (NSException * e) { - NSLog(@"fullscreen issues >%@<",[e name]); - }*/ + @catch (NSException * e) { + NSLog(@"fullscreen issues >%@<",[e name]); + }*/ } } + - (IBAction)openFileInEditor:(id)sender { NSIndexSet *indexes = [notesTableView selectedRowIndexes]; NSString *path = nil; @@ -2782,14 +2896,17 @@ - (IBAction)setUserColorScheme:(id)sender{ - (void)updateColorScheme{ @try { + if (!IsLionOrLater) { + + [window setBackgroundColor:backgrndColor];//[NSColor blueColor] + [dualFieldView setBackgroundColor:backgrndColor]; + } [mainView setBackgroundColor:backgrndColor]; - [window setBackgroundColor:backgrndColor];//[NSColor blueColor] [notesTableView setBackgroundColor:backgrndColor]; [dividerShader updateColors:backgrndColor]; [self updateFieldAttributes]; [NotesTableHeaderCell setForegroundColor:foregrndColor]; - [dualFieldView setBackgroundColor:backgrndColor]; //[editorStatusView setBackgroundColor:backgrndColor]; // [editorStatusView setNeedsDisplay:YES]; // [field setTextColor:foregrndColor]; @@ -3127,6 +3244,7 @@ - (IBAction)selectPreviewMode:(id)sender } - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)client{ + if (isEd) { // NSLog(@"window will return client is :%@",client); @@ -3158,7 +3276,7 @@ - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)client{ return theFieldEditor; //[super windowWillReturnFieldEditor:sender toObject:client]; -} +} - (void)updateRTL { @@ -3171,7 +3289,6 @@ - (void)updateRTL - (void)refreshNotesList { - [notesTableView setBackgroundColor:[prefsController backgroundTextColor]]; [notesTableView setNeedsDisplay:YES]; } diff --git a/AugmentedScrollView.m b/AugmentedScrollView.m index daeff913..fd8a11e5 100755 --- a/AugmentedScrollView.m +++ b/AugmentedScrollView.m @@ -66,6 +66,7 @@ - (void)awakeFromNib { - (void)settingChangedForSelectorString:(NSString*)selectorString { + if (!IsLionOrLater) { if ([selectorString isEqualToString:SEL_STR(setHorizontalLayout:sender:)]) { /*if ((showDragSquare = [[GlobalPrefs defaultPrefs] horizontalLayout])) { @@ -77,6 +78,7 @@ - (void)settingChangedForSelectorString:(NSString*)selectorString { }*/ [self tile]; } + } } - (void)dealloc { @@ -106,15 +108,18 @@ - (void)_positionDragSquare { - (void)tile { [super tile]; - if (![[self verticalScroller] isHidden]) { - NSRect vsRect = [[self verticalScroller] frame]; - NSRect conRect = [[self contentView] frame]; - NSView *wdContent = [[self contentView] retain]; - conRect.size.width = conRect.size.width + vsRect.size.width; - [wdContent setFrame:conRect]; - [wdContent release]; - [[self verticalScroller] setFrame:vsRect]; + if (!IsLionOrLater) { + if (![[self verticalScroller] isHidden]) { + NSRect vsRect = [[self verticalScroller] frame]; + NSRect conRect = [[self contentView] frame]; + NSView *wdContent = [[self contentView] retain]; + conRect.size.width = conRect.size.width + vsRect.size.width; + [wdContent setFrame:conRect]; + [wdContent release]; + [[self verticalScroller] setFrame:vsRect]; + + } } /*if (showDragSquare) { [self _positionDragSquare]; diff --git a/AutoHyperlinks.framework/AutoHyperlinks b/AutoHyperlinks.framework/AutoHyperlinks deleted file mode 100755 index 64bc524c..00000000 Binary files a/AutoHyperlinks.framework/AutoHyperlinks and /dev/null differ diff --git a/AutoHyperlinks.framework/AutoHyperlinks b/AutoHyperlinks.framework/AutoHyperlinks new file mode 120000 index 00000000..0aa46e77 --- /dev/null +++ b/AutoHyperlinks.framework/AutoHyperlinks @@ -0,0 +1 @@ +Versions/Current/AutoHyperlinks \ No newline at end of file diff --git a/AutoHyperlinks.framework/Headers b/AutoHyperlinks.framework/Headers new file mode 120000 index 00000000..a177d2a6 --- /dev/null +++ b/AutoHyperlinks.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/AutoHyperlinks.framework/Headers/AHHyperlinkScanner.h b/AutoHyperlinks.framework/Headers/AHHyperlinkScanner.h deleted file mode 100644 index bbaf2ad1..00000000 --- a/AutoHyperlinks.framework/Headers/AHHyperlinkScanner.h +++ /dev/null @@ -1,152 +0,0 @@ -/* - * The AutoHyperlinks Framework is the legal property of its developers (DEVELOPERS), whose names are listed in the - * copyright file included with this source distribution. - * - * 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 the AutoHyperlinks Framework nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY ITS DEVELOPERS ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL ITS DEVELOPERS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "AHLinkLexer.h" - -typedef void* yyscan_t; - -extern long AHlex( yyscan_t yyscanner ); -extern long AHlex_init( yyscan_t * ptr_yy_globals ); -extern long AHlex_destroy ( yyscan_t yyscanner ); -extern long AHget_leng ( yyscan_t scanner ); -extern void AHset_in ( FILE * in_str , yyscan_t scanner ); - -typedef struct AH_buffer_state *AH_BUFFER_STATE; -extern void AH_switch_to_buffer(AH_BUFFER_STATE, yyscan_t scanner); -extern AH_BUFFER_STATE AH_scan_string (const char *, yyscan_t scanner); -extern void AH_delete_buffer(AH_BUFFER_STATE, yyscan_t scanner); - -@class AHMarkedHyperlink; - -@interface AHHyperlinkScanner : NSObject -{ - NSDictionary *m_urlSchemes; - NSString *m_scanString; - NSAttributedString *m_scanAttrString; - BOOL m_strictChecking; - NSUInteger m_scanLocation; - NSUInteger m_scanStringLength; -} - - -/*! - * @brief Allocs and inits a new lax AHHyperlinkScanner with the given NSString - * - * @param inString the scanner's string - * @return a new AHHyperlinkScanner - */ -+ (id)hyperlinkScannerWithString:(NSString *)inString; - -/*! - * @brief Allocs and inits a new strict AHHyperlinkScanner with the given NSString - * - * @param inString the scanner's string - * @return a new AHHyperlinkScanner - */ -+ (id)strictHyperlinkScannerWithString:(NSString *)inString; - -/*! - * @brief Allocs and inits a new lax AHHyperlinkScanner with the given attributed string - * - * @param inString the scanner's string - * @return a new AHHyperlinkScanner - */ -+ (id)hyperlinkScannerWithAttributedString:(NSAttributedString *)inString; - -/*! - * @brief Allocs and inits a new strict AHHyperlinkScanner with the given attributed string - * - * @param inString the scanner's string - * @return a new AHHyperlinkScanner - */ -+ (id)strictHyperlinkScannerWithAttributedString:(NSAttributedString *)inString; - -/*! - * @brief Determine the validity of a given string with a custom strictness - * - * @param inString The string to be verified - * @param useStrictChecking Use strict rules or not - * @param index a pointer to the index the string starts at, for easy incrementing. - * @return Boolean - */ -+ (BOOL)isStringValidURI:(NSString *)inString usingStrict:(BOOL)useStrictChecking fromIndex:(NSUInteger *)index withStatus:(AH_URI_VERIFICATION_STATUS *)validStatus; - -/*! - * @brief Init - * - * Inits a new AHHyperlinkScanner object for a NSString with the set strict checking option. - * - * @param inString the NSString to be scanned. - * @param flag Sets strict checking preference. - * @return A new AHHyperlinkScanner. - */ -- (id)initWithString:(NSString *)inString usingStrictChecking:(BOOL)flag; - -/*! - * @brief Init - * - * Inits a new AHHyperlinkScanner object for a NSAttributedString with the set strict checking option. - * - * param inString the NSString to be scanned. - * @param flag Sets strict checking preference. - * @return A new AHHyperlinkScanner. - */ - - (id)initWithAttributedString:(NSAttributedString *)inString usingStrictChecking:(BOOL)flag; - - -/*! - * @brief Determine the validity of the scanner's string using the set strictness - * - * @return Boolean - */ -- (BOOL)isValidURI; - -/*! - * @brief Returns a AHMarkedHyperlink representing the next URI in the scanner's string - * - * @return A new AHMarkedHyperlink. - */ -- (AHMarkedHyperlink *)nextURI; - -/*! - * @brief Fetches all the URIs from the scanner's string - * - * @return An array of AHMarkedHyperlinks representing each matched URL in the string or nil if no matches. - */ -- (NSArray *)allURIs; - -/*! - * @brief Scans an attributed string for URIs then adds the link attribs and objects. - * @param inString The NSAttributedString to be linkified - * @return An autoreleased NSAttributedString. - */ -- (NSAttributedString *)linkifiedString; - -- (NSUInteger)scanLocation; -- (void)setScanLocation:(NSUInteger)location; - -@end diff --git a/AutoHyperlinks.framework/Headers/AHLinkLexer.h b/AutoHyperlinks.framework/Headers/AHLinkLexer.h deleted file mode 100644 index a1012396..00000000 --- a/AutoHyperlinks.framework/Headers/AHLinkLexer.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * The AutoHyperlinks Framework is the legal property of its developers (DEVELOPERS), whose names are listed in the - * copyright file included with this source distribution. - * - * 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 the AutoHyperlinks Framework nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY ITS DEVELOPERS ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL ITS DEVELOPERS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#if __LP64__ || NS_BUILD_32_LIKE_64 -typedef long NSInteger; -typedef unsigned long NSUInteger; -#else -typedef int NSInteger; -typedef unsigned int NSUInteger; -#endif - -typedef enum { - AH_URL_INVALID = -1, - AH_URL_VALID = 0, - AH_MAILTO_VALID, - AH_FILE_VALID, - AH_URL_DEGENERATE, - AH_MAILTO_DEGENERATE -} AH_URI_VERIFICATION_STATUS; - -#define YY_EXTRA_TYPE NSUInteger diff --git a/AutoHyperlinks.framework/Headers/AHMarkedHyperlink.h b/AutoHyperlinks.framework/Headers/AHMarkedHyperlink.h deleted file mode 100644 index 34a362e5..00000000 --- a/AutoHyperlinks.framework/Headers/AHMarkedHyperlink.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * The AutoHyperlinks Framework is the legal property of its developers (DEVELOPERS), whose names are listed in the - * copyright file included with this source distribution. - * - * 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 the AutoHyperlinks Framework nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY ITS DEVELOPERS ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL ITS DEVELOPERS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "AHLinkLexer.h" - - -@interface AHMarkedHyperlink : NSObject { - NSRange linkRange; - NSURL *linkURL; - NSString *pString; - AH_URI_VERIFICATION_STATUS urlStatus; -} - --(id)initWithString:(NSString *)inString withValidationStatus:(AH_URI_VERIFICATION_STATUS)status parentString:(NSString *)pInString andRange:(NSRange)inRange; --(NSString *)parentString; --(NSRange)range; --(NSURL *)URL; --(AH_URI_VERIFICATION_STATUS)validationStatus; - --(void)setRange:(NSRange)inRange; --(void)setURL:(NSURL *)inURL; --(void)setURLFromString:(NSString *)inString; --(void)setValidationStatus:(AH_URI_VERIFICATION_STATUS)status; --(void)setParentString:(NSString *)pInString; - - -@end diff --git a/AutoHyperlinks.framework/Headers/AutoHyperlinks.h b/AutoHyperlinks.framework/Headers/AutoHyperlinks.h deleted file mode 100644 index cc1821e0..00000000 --- a/AutoHyperlinks.framework/Headers/AutoHyperlinks.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * The AutoHyperlinks Framework is the legal property of its developers (DEVELOPERS), whose names are listed in the - * copyright file included with this source distribution. - * - * 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 the AutoHyperlinks Framework nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY ITS DEVELOPERS ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL ITS DEVELOPERS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "AHHyperlinkScanner.h" -#import "AHMarkedHyperlink.h" diff --git a/AutoHyperlinks.framework/Resources b/AutoHyperlinks.framework/Resources new file mode 120000 index 00000000..953ee36f --- /dev/null +++ b/AutoHyperlinks.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/AutoHyperlinks.framework/Resources/Info.plist b/AutoHyperlinks.framework/Resources/Info.plist deleted file mode 100644 index 4d8f8ec3..00000000 Binary files a/AutoHyperlinks.framework/Resources/Info.plist and /dev/null differ diff --git a/AutoHyperlinks.framework/Versions/A/AutoHyperlinks b/AutoHyperlinks.framework/Versions/A/AutoHyperlinks index 64bc524c..894f2260 100755 Binary files a/AutoHyperlinks.framework/Versions/A/AutoHyperlinks and b/AutoHyperlinks.framework/Versions/A/AutoHyperlinks differ diff --git a/AutoHyperlinks.framework/Versions/A/Headers/AHHyperlinkScanner.h b/AutoHyperlinks.framework/Versions/A/Headers/AHHyperlinkScanner.h old mode 100644 new mode 100755 diff --git a/AutoHyperlinks.framework/Versions/A/Headers/AHLinkLexer.h b/AutoHyperlinks.framework/Versions/A/Headers/AHLinkLexer.h old mode 100644 new mode 100755 diff --git a/AutoHyperlinks.framework/Versions/A/Headers/AHMarkedHyperlink.h b/AutoHyperlinks.framework/Versions/A/Headers/AHMarkedHyperlink.h old mode 100644 new mode 100755 diff --git a/AutoHyperlinks.framework/Versions/A/Headers/AutoHyperlinks.h b/AutoHyperlinks.framework/Versions/A/Headers/AutoHyperlinks.h old mode 100644 new mode 100755 diff --git a/AutoHyperlinks.framework/Versions/A/Resources/Info.plist b/AutoHyperlinks.framework/Versions/A/Resources/Info.plist old mode 100644 new mode 100755 diff --git a/AutoHyperlinks.framework/Versions/Current b/AutoHyperlinks.framework/Versions/Current new file mode 120000 index 00000000..8c7e5a66 --- /dev/null +++ b/AutoHyperlinks.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/AutoHyperlinks.framework/Versions/Current/AutoHyperlinks b/AutoHyperlinks.framework/Versions/Current/AutoHyperlinks deleted file mode 100755 index 64bc524c..00000000 Binary files a/AutoHyperlinks.framework/Versions/Current/AutoHyperlinks and /dev/null differ diff --git a/AutoHyperlinks.framework/Versions/Current/Headers/AHHyperlinkScanner.h b/AutoHyperlinks.framework/Versions/Current/Headers/AHHyperlinkScanner.h deleted file mode 100644 index bbaf2ad1..00000000 --- a/AutoHyperlinks.framework/Versions/Current/Headers/AHHyperlinkScanner.h +++ /dev/null @@ -1,152 +0,0 @@ -/* - * The AutoHyperlinks Framework is the legal property of its developers (DEVELOPERS), whose names are listed in the - * copyright file included with this source distribution. - * - * 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 the AutoHyperlinks Framework nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY ITS DEVELOPERS ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL ITS DEVELOPERS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "AHLinkLexer.h" - -typedef void* yyscan_t; - -extern long AHlex( yyscan_t yyscanner ); -extern long AHlex_init( yyscan_t * ptr_yy_globals ); -extern long AHlex_destroy ( yyscan_t yyscanner ); -extern long AHget_leng ( yyscan_t scanner ); -extern void AHset_in ( FILE * in_str , yyscan_t scanner ); - -typedef struct AH_buffer_state *AH_BUFFER_STATE; -extern void AH_switch_to_buffer(AH_BUFFER_STATE, yyscan_t scanner); -extern AH_BUFFER_STATE AH_scan_string (const char *, yyscan_t scanner); -extern void AH_delete_buffer(AH_BUFFER_STATE, yyscan_t scanner); - -@class AHMarkedHyperlink; - -@interface AHHyperlinkScanner : NSObject -{ - NSDictionary *m_urlSchemes; - NSString *m_scanString; - NSAttributedString *m_scanAttrString; - BOOL m_strictChecking; - NSUInteger m_scanLocation; - NSUInteger m_scanStringLength; -} - - -/*! - * @brief Allocs and inits a new lax AHHyperlinkScanner with the given NSString - * - * @param inString the scanner's string - * @return a new AHHyperlinkScanner - */ -+ (id)hyperlinkScannerWithString:(NSString *)inString; - -/*! - * @brief Allocs and inits a new strict AHHyperlinkScanner with the given NSString - * - * @param inString the scanner's string - * @return a new AHHyperlinkScanner - */ -+ (id)strictHyperlinkScannerWithString:(NSString *)inString; - -/*! - * @brief Allocs and inits a new lax AHHyperlinkScanner with the given attributed string - * - * @param inString the scanner's string - * @return a new AHHyperlinkScanner - */ -+ (id)hyperlinkScannerWithAttributedString:(NSAttributedString *)inString; - -/*! - * @brief Allocs and inits a new strict AHHyperlinkScanner with the given attributed string - * - * @param inString the scanner's string - * @return a new AHHyperlinkScanner - */ -+ (id)strictHyperlinkScannerWithAttributedString:(NSAttributedString *)inString; - -/*! - * @brief Determine the validity of a given string with a custom strictness - * - * @param inString The string to be verified - * @param useStrictChecking Use strict rules or not - * @param index a pointer to the index the string starts at, for easy incrementing. - * @return Boolean - */ -+ (BOOL)isStringValidURI:(NSString *)inString usingStrict:(BOOL)useStrictChecking fromIndex:(NSUInteger *)index withStatus:(AH_URI_VERIFICATION_STATUS *)validStatus; - -/*! - * @brief Init - * - * Inits a new AHHyperlinkScanner object for a NSString with the set strict checking option. - * - * @param inString the NSString to be scanned. - * @param flag Sets strict checking preference. - * @return A new AHHyperlinkScanner. - */ -- (id)initWithString:(NSString *)inString usingStrictChecking:(BOOL)flag; - -/*! - * @brief Init - * - * Inits a new AHHyperlinkScanner object for a NSAttributedString with the set strict checking option. - * - * param inString the NSString to be scanned. - * @param flag Sets strict checking preference. - * @return A new AHHyperlinkScanner. - */ - - (id)initWithAttributedString:(NSAttributedString *)inString usingStrictChecking:(BOOL)flag; - - -/*! - * @brief Determine the validity of the scanner's string using the set strictness - * - * @return Boolean - */ -- (BOOL)isValidURI; - -/*! - * @brief Returns a AHMarkedHyperlink representing the next URI in the scanner's string - * - * @return A new AHMarkedHyperlink. - */ -- (AHMarkedHyperlink *)nextURI; - -/*! - * @brief Fetches all the URIs from the scanner's string - * - * @return An array of AHMarkedHyperlinks representing each matched URL in the string or nil if no matches. - */ -- (NSArray *)allURIs; - -/*! - * @brief Scans an attributed string for URIs then adds the link attribs and objects. - * @param inString The NSAttributedString to be linkified - * @return An autoreleased NSAttributedString. - */ -- (NSAttributedString *)linkifiedString; - -- (NSUInteger)scanLocation; -- (void)setScanLocation:(NSUInteger)location; - -@end diff --git a/AutoHyperlinks.framework/Versions/Current/Headers/AHLinkLexer.h b/AutoHyperlinks.framework/Versions/Current/Headers/AHLinkLexer.h deleted file mode 100644 index a1012396..00000000 --- a/AutoHyperlinks.framework/Versions/Current/Headers/AHLinkLexer.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - * The AutoHyperlinks Framework is the legal property of its developers (DEVELOPERS), whose names are listed in the - * copyright file included with this source distribution. - * - * 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 the AutoHyperlinks Framework nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY ITS DEVELOPERS ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL ITS DEVELOPERS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#if __LP64__ || NS_BUILD_32_LIKE_64 -typedef long NSInteger; -typedef unsigned long NSUInteger; -#else -typedef int NSInteger; -typedef unsigned int NSUInteger; -#endif - -typedef enum { - AH_URL_INVALID = -1, - AH_URL_VALID = 0, - AH_MAILTO_VALID, - AH_FILE_VALID, - AH_URL_DEGENERATE, - AH_MAILTO_DEGENERATE -} AH_URI_VERIFICATION_STATUS; - -#define YY_EXTRA_TYPE NSUInteger diff --git a/AutoHyperlinks.framework/Versions/Current/Headers/AHMarkedHyperlink.h b/AutoHyperlinks.framework/Versions/Current/Headers/AHMarkedHyperlink.h deleted file mode 100644 index 34a362e5..00000000 --- a/AutoHyperlinks.framework/Versions/Current/Headers/AHMarkedHyperlink.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * The AutoHyperlinks Framework is the legal property of its developers (DEVELOPERS), whose names are listed in the - * copyright file included with this source distribution. - * - * 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 the AutoHyperlinks Framework nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY ITS DEVELOPERS ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL ITS DEVELOPERS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "AHLinkLexer.h" - - -@interface AHMarkedHyperlink : NSObject { - NSRange linkRange; - NSURL *linkURL; - NSString *pString; - AH_URI_VERIFICATION_STATUS urlStatus; -} - --(id)initWithString:(NSString *)inString withValidationStatus:(AH_URI_VERIFICATION_STATUS)status parentString:(NSString *)pInString andRange:(NSRange)inRange; --(NSString *)parentString; --(NSRange)range; --(NSURL *)URL; --(AH_URI_VERIFICATION_STATUS)validationStatus; - --(void)setRange:(NSRange)inRange; --(void)setURL:(NSURL *)inURL; --(void)setURLFromString:(NSString *)inString; --(void)setValidationStatus:(AH_URI_VERIFICATION_STATUS)status; --(void)setParentString:(NSString *)pInString; - - -@end diff --git a/AutoHyperlinks.framework/Versions/Current/Headers/AutoHyperlinks.h b/AutoHyperlinks.framework/Versions/Current/Headers/AutoHyperlinks.h deleted file mode 100644 index cc1821e0..00000000 --- a/AutoHyperlinks.framework/Versions/Current/Headers/AutoHyperlinks.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * The AutoHyperlinks Framework is the legal property of its developers (DEVELOPERS), whose names are listed in the - * copyright file included with this source distribution. - * - * 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 the AutoHyperlinks Framework nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY ITS DEVELOPERS ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL ITS DEVELOPERS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "AHHyperlinkScanner.h" -#import "AHMarkedHyperlink.h" diff --git a/AutoHyperlinks.framework/Versions/Current/Resources/Info.plist b/AutoHyperlinks.framework/Versions/Current/Resources/Info.plist deleted file mode 100644 index 4d8f8ec3..00000000 Binary files a/AutoHyperlinks.framework/Versions/Current/Resources/Info.plist and /dev/null differ diff --git a/English.lproj/BlorPasswordRetriever.nib/designable.nib b/English.lproj/BlorPasswordRetriever.nib/designable.nib index 51ce8328..d7f4d434 100644 --- a/English.lproj/BlorPasswordRetriever.nib/designable.nib +++ b/English.lproj/BlorPasswordRetriever.nib/designable.nib @@ -1,34 +1,31 @@ - + - 1060 - 10C540 - 740 - 1038.25 - 458.00 + 1050 + 10J869 + 1306 + 1038.35 + 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 740 + 1306 - - YES - - - - YES + + NSTextField + NSView + NSWindowTemplate + NSTextFieldCell + NSButtonCell + NSImageCell + NSImageView + NSButton + NSCustomObject + + com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES + + + BlorPasswordRetriever @@ -48,13 +45,11 @@ View - {1.79769e+308, 1.79769e+308} {378, 110} 256 - - YES + 266 @@ -136,18 +131,14 @@ 268 - - YES - - YES - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - NSFilenamesPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT TIFF v4.0 pasteboard type - - + + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + {{20, 90}, {62, 62}} YES @@ -211,18 +202,17 @@ - - {507, 172} + + {{7, 11}, {507, 172}} - {{0, 0}, {1680, 1028}} + {{0, 0}, {1440, 878}} {378, 132} - {1.79769e+308, 1.79769e+308} + {1e+13, 1e+13} - + - - YES + window @@ -287,13 +277,12 @@ 340 - + - - YES + 0 - + @@ -312,79 +301,71 @@ 307 - - YES + - + get passphrase 308 - - YES + - + 318 - - YES + - + 319 - - YES + - + 320 - - YES + - + 328 - - YES + - + 330 - - YES + - + 331 - - YES + - + @@ -423,843 +404,88 @@ Application - - - - YES - - YES - 307.IBEditorWindowLastContentRect - 307.IBPluginDependency - 307.IBPropertyAccessControl - 307.IBWindowTemplateEditedContentRect - 307.ImportedFromIB2 - 307.windowTemplate.hasMinSize - 307.windowTemplate.minSize - 308.IBPluginDependency - 308.ImportedFromIB2 - 318.IBPluginDependency - 318.IBPropertyAccessControl - 318.ImportedFromIB2 - 319.IBPluginDependency - 319.IBPropertyAccessControl - 319.ImportedFromIB2 - 320.IBPluginDependency - 320.IBPropertyAccessControl - 320.ImportedFromIB2 - 328.IBPluginDependency - 328.IBPropertyAccessControl - 328.ImportedFromIB2 - 330.IBPluginDependency - 330.IBPropertyAccessControl - 330.ImportedFromIB2 - 331.CustomClassName - 331.IBPluginDependency - 331.IBPropertyAccessControl - 331.ImportedFromIB2 - - - YES - {{221, 370}, {507, 172}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{221, 370}, {507, 172}} - - - {378, 110} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - YES - - - YES - + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{221, 370}, {507, 172}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{221, 370}, {507, 172}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - - YES - - + 347 - - YES - - BlorPasswordRetriever - NSObject - - YES - - YES - cancelAction: - importAction: - - - YES - id - id - - - - YES - - YES - cancelButton - helpStringField - importButton - passphraseField - window - - - YES - NSButton - NSTextField - NSButton - NSTextField - NSWindow - - - - IBProjectSource - BlorPasswordRetriever.h - - - - BlorPasswordRetriever - NSObject - - IBUserSource - - - + FirstResponder : id - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSObject - - YES - - YES - didAdjustSubviews: - willAdjustSubviews: - - - YES - RBSplitView - RBSplitView + + : + + : + id - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - RBSplitSubview - NSView - - IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - - - RBSplitView - - - - - YES - - NSActionCell - NSCell - - IBFrameworkSource - AppKit.framework/Headers/NSActionCell.h - - - - NSApplication - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSApplication.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSApplicationScripting.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSColorPanel.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSHelpManager.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSPageLayout.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSUserInterfaceItemSearching.h - - - - NSButton - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSButton.h - - - - NSButtonCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSButtonCell.h - - - - NSCell - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSCell.h - - - - NSControl - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSControl.h - - - - NSFormatter - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFormatter.h - - - - NSImageCell - NSCell - - IBFrameworkSource - AppKit.framework/Headers/NSImageCell.h - - - - NSImageView - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSImageView.h - - - - NSMenu - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSMenu.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSAccessibility.h - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDictionaryController.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDragging.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontManager.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontPanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSKeyValueBinding.h - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSNibLoading.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSOutlineView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSPasteboard.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSSavePanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSTableView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSToolbarItem.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSView.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObjectScripting.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSPortCoder.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptObjectSpecifiers.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptWhoseTests.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLDownload.h - - - - NSObject - - IBFrameworkSource - PrintCore.framework/Headers/PDEPluginInterface.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFAuthorizationView.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFCertificatePanel.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFChooseIdentityPanel.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUAppcast.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUUpdater.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebDownload.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebEditingDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebFrameLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebJavaPlugIn.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPlugin.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPluginContainer.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPolicyDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebResourceLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebScriptObject.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebUIDelegate.h - - - - NSPanel - NSWindow - IBFrameworkSource - AppKit.framework/Headers/NSPanel.h - - - - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSInterfaceStyle.h - - - - NSResponder - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSResponder.h - - - - NSSecureTextField - NSTextField - - IBFrameworkSource - AppKit.framework/Headers/NSSecureTextField.h - - - - NSTextField - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSTextField.h - - - - NSTextFieldCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSTextFieldCell.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSClipView.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSMenuItem.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSRulerView.h - - - - NSView - NSResponder - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSDrawer.h - - - - NSWindow - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSWindow.h - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSWindowScripting.h + IBUserSource + - + 0 + IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - + com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES - ../Notation.xcodeproj 3 + + NSApplicationIcon + {128, 128} + diff --git a/English.lproj/BlorPasswordRetriever.nib/keyedobjects.nib b/English.lproj/BlorPasswordRetriever.nib/keyedobjects.nib index f16d3af0..6044fe1c 100644 Binary files a/English.lproj/BlorPasswordRetriever.nib/keyedobjects.nib and b/English.lproj/BlorPasswordRetriever.nib/keyedobjects.nib differ diff --git a/English.lproj/DeletionManager.nib/designable.nib b/English.lproj/DeletionManager.nib/designable.nib index 862fbd29..b8c3c466 100644 --- a/English.lproj/DeletionManager.nib/designable.nib +++ b/English.lproj/DeletionManager.nib/designable.nib @@ -1,30 +1,35 @@ - + - 1030 - 9L31a - 680 - 949.54 - 353.00 - - YES - + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 - - YES + + NSScroller + NSButton + NSScrollView + NSTextFieldCell + NSButtonCell + NSImageView + NSImageCell + NSTableView + NSCustomObject + NSView + NSWindowTemplate + NSTextField + NSTableColumn + + com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES + + + DeletionManager @@ -46,13 +51,11 @@ View - {3.40282e+38, 3.40282e+38} {371, 200} 256 - - YES + 266 @@ -62,12 +65,10 @@ 67239424 272629760 - VGhlIGZvbGxvd2luZyBmaWxlcyBubyBsb25nZXIgZXhpc3QgaW4gdGhlIG5vdGVzIGZvbGRlcuKAlHJl -c3RvcmUgdGhlbSB0byBkaXNrIG9yIGRlbGV0ZSB0aGVtIGZyb20gTm90YXRpb25hbCBWZWxvY2l0eSwg -dG9vPw + The following files no longer exist in the notes folder—restore them to disk or delete them from Notational Velocity, too? LucidaGrande - 1.300000e+01 + 13 1044 @@ -77,7 +78,7 @@ dG9vPw controlColor 3 - MC42NjY2NjY2OQA + MC42NjY2NjY2NjY3AA @@ -94,18 +95,14 @@ dG9vPw 268 - - YES - - YES - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - NSFilenamesPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT TIFF v4.0 pasteboard type - - + + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + {{24, 144}, {62, 62}} YES @@ -126,13 +123,11 @@ dG9vPw 274 - - YES + 2304 - - YES + 256 @@ -144,19 +139,18 @@ dG9vPw 256 {{129, 0}, {16, 17}} - - YES + - 3.110000e+02 - 4.000000e+01 - 1.000000e+03 + 311 + 40 + 1000 75628096 2048 LucidaGrande - 1.100000e+01 + 11 3100 @@ -188,9 +182,9 @@ dG9vPw YES - - 3.000000e+00 - 2.000000e+00 + + 3 + 2 3 MQA @@ -204,14 +198,17 @@ dG9vPw MC41AA - 1.700000e+01 + 17 306184192 + + 4 15 0 YES + 0 - + {{1, 1}, {314, 38}} @@ -226,7 +223,7 @@ dG9vPw _doScroller: - 9.473684e-01 + 0.9473684 @@ -236,9 +233,9 @@ dG9vPw 1 _doScroller: - 9.904762e-01 + 0.99047620000000003 - + {{20, 82}, {331, 40}} @@ -313,19 +310,18 @@ dG9vPw 25 - - {371, 222} + + {{7, 11}, {371, 222}} {{0, 0}, {1440, 878}} {371, 222} - {3.40282e+38, 3.40282e+38} + {1e+13, 1e+13} externallyDeletedNotesTable - + - - YES + tableView @@ -390,114 +386,103 @@ dG9vPw 354 - + - - YES + 0 - - YES - + -2 - - RmlsZSdzIE93bmVyA + + File's Owner -1 - + First Responder -3 - + Application 328 - - YES + - - + + Multiple Note External Deletion 329 - - YES + - + 330 - - YES + - + 331 - - YES + - + 332 - - YES + - + 333 - - YES + - + 334 - - YES + - + 335 - - YES + - + @@ -533,10 +518,9 @@ dG9vPw 349 - - YES + - + @@ -547,10 +531,9 @@ dG9vPw 351 - - YES + - + @@ -558,341 +541,88 @@ dG9vPw - - - - YES - - YES - -1.IBPluginDependency - -2.IBPluginDependency - -3.IBPluginDependency - -3.ImportedFromIB2 - 328.IBEditorWindowLastContentRect - 328.IBWindowTemplateEditedContentRect - 328.ImportedFromIB2 - 328.windowTemplate.hasMinSize - 328.windowTemplate.minSize - 329.IBPluginDependency - 329.ImportedFromIB2 - 330.IBPluginDependency - 330.ImportedFromIB2 - 331.IBPluginDependency - 331.ImportedFromIB2 - 332.IBPluginDependency - 332.ImportedFromIB2 - 333.IBPluginDependency - 333.ImportedFromIB2 - 334.IBPluginDependency - 334.IBPropertyAccessControl - 334.ImportedFromIB2 - 335.IBPluginDependency - 335.IBPropertyAccessControl - 335.ImportedFromIB2 - 343.IBPluginDependency - 344.IBPluginDependency - 345.IBPluginDependency - 346.IBPluginDependency - 346.IBShouldRemoveOnLegacySave - 347.IBPluginDependency - 347.IBShouldRemoveOnLegacySave - 348.IBPluginDependency - 348.IBShouldRemoveOnLegacySave - 349.IBPluginDependency - 349.ImportedFromIB2 - 350.IBPluginDependency - 351.IBPluginDependency - 351.ImportedFromIB2 - 352.IBPluginDependency - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - {{363, 663}, {371, 222}} - {{363, 663}, {371, 222}} - - - {371, 200} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - YES - - YES - - - YES - + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{363, 663}, {371, 222}} + com.apple.InterfaceBuilder.CocoaPlugin + {{363, 663}, {371, 222}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - YES - - - YES - - + 354 - - YES - - DeletionManager - NSObject - - YES - - YES - changeConfirmDeletion: - deleteAction: - restoreAction: - - - YES - id - id - id - - - - YES - - YES - confirmDeletionButton - tableView - window - - - YES - NSButton - NSTableView - NSPanel - - - - IBProjectSource - DeletionManager.h - - - - DeletionManager - NSObject - - IBUserSource - - - + FirstResponder - NSObject : id - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - FastListDataSource.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSObject - - YES - - YES - didAdjustSubviews: - willAdjustSubviews: - - - YES - RBSplitView - RBSplitView + + : + + : + id - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - NSObject IBUserSource - - NSTableView - - IBProjectSource - NotesTableView.h - - - - NSTableView - NSControl - - IBUserSource - - - - - NSWindow - NSResponder - - IBUserSource - - - - - RBSplitSubview - NSView - - IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h - - - - RBSplitSubview - NSView - - IBUserSource - - - - - RBSplitView - RBSplitSubview - - delegate - id - - - - - RBSplitView - - - - RBSplitView - RBSplitSubview - - IBUserSource - - - - + 0 - ../Notation.xcodeproj + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES 3 + + NSApplicationIcon + {128, 128} + diff --git a/English.lproj/DeletionManager.nib/keyedobjects.nib b/English.lproj/DeletionManager.nib/keyedobjects.nib index c1b26c23..b28f50a3 100644 Binary files a/English.lproj/DeletionManager.nib/keyedobjects.nib and b/English.lproj/DeletionManager.nib/keyedobjects.nib differ diff --git a/English.lproj/EncodingsManager.nib/designable.nib b/English.lproj/EncodingsManager.nib/designable.nib index 70669d01..2501d140 100644 --- a/English.lproj/EncodingsManager.nib/designable.nib +++ b/English.lproj/EncodingsManager.nib/designable.nib @@ -1,34 +1,36 @@ - + 1050 - 10C540 - 740 - 1038.25 - 458.00 + 10J869 + 1306 + 1038.35 + 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 740 + 1306 - - YES - - - - YES + + NSPopUpButton + NSScroller + NSButton + NSMenu + NSScrollView + NSTextFieldCell + NSButtonCell + NSMenuItem + NSCustomObject + NSTextView + NSView + NSWindowTemplate + NSTextField + NSPopUpButtonCell + + com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES + + + EncodingsManager @@ -50,23 +52,19 @@ View - {1.79769e+308, 1.79769e+308} {378, 210} 256 - - YES + 274 - - YES + 2304 - - YES + 2322 @@ -80,10 +78,9 @@ - - YES + - + 6 @@ -99,52 +96,34 @@ 3 MQA - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - 6 - System - selectedTextBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - + + + 6 + System + selectedTextBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA - - 6 - System - selectedTextColor - - 3 - MAA - + + + 6 + System + selectedTextColor + + 3 + MAA - + - - YES - - YES - NSColor - NSUnderline - - - YES - - 1 - MCAwIDEAA - - + + + 1 + MCAwIDEAA - + + 6 @@ -152,7 +131,7 @@ {114, 0} - + {{1, 1}, {370, 185}} @@ -184,7 +163,7 @@ 1 0.94565218687057495 - + {{20, 60}, {372, 187}} @@ -240,8 +219,7 @@ OtherViews - - YES + @@ -265,7 +243,7 @@ _popUpItemAction: - + 3 YES @@ -341,18 +319,17 @@ 25 - - {412, 366} + + {{7, 11}, {412, 366}} {{0, 0}, {1440, 878}} {378, 232} - {1.79769e+308, 1.79769e+308} + {1e+13, 1e+13} - + - - YES + window @@ -417,13 +394,12 @@ 327 - + - - YES + 0 - + @@ -448,35 +424,32 @@ 307 - - YES + - + Panel 308 - - YES + - + 311 - - YES + - + @@ -487,46 +460,41 @@ 313 - - YES + - + 318 - - YES + - + 319 - - YES + - + 320 - - YES + - + 329 - - YES + - + @@ -547,12 +515,11 @@ 314 - - YES + - + @@ -580,943 +547,82 @@ - - - - YES - - YES - -3.IBPluginDependency - -3.ImportedFromIB2 - 307.IBEditorWindowLastContentRect - 307.IBPluginDependency - 307.IBPropertyAccessControl - 307.IBWindowTemplateEditedContentRect - 307.ImportedFromIB2 - 307.windowTemplate.hasMinSize - 307.windowTemplate.minSize - 308.IBPluginDependency - 308.ImportedFromIB2 - 311.IBPluginDependency - 311.ImportedFromIB2 - 312.IBPluginDependency - 312.ImportedFromIB2 - 313.IBPluginDependency - 313.ImportedFromIB2 - 314.IBPluginDependency - 314.ImportedFromIB2 - 315.IBPluginDependency - 315.ImportedFromIB2 - 316.IBPluginDependency - 316.ImportedFromIB2 - 317.IBPluginDependency - 317.ImportedFromIB2 - 318.IBPluginDependency - 318.IBPropertyAccessControl - 318.ImportedFromIB2 - 319.IBPluginDependency - 319.IBPropertyAccessControl - 319.ImportedFromIB2 - 320.IBPluginDependency - 320.IBPropertyAccessControl - 320.ImportedFromIB2 - 333.IBShouldRemoveOnLegacySave - 334.IBShouldRemoveOnLegacySave - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - {{316, 314}, {412, 366}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{316, 314}, {412, 366}} - - - {378, 210} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - - - YES - - - YES - + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{316, 314}, {412, 366}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{316, 314}, {412, 366}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + - - YES - - - YES - - + 334 - - YES - - EncodingsManager - NSObject - - YES - - YES - cancelAction: - chooseEncoding: - okAction: - - - YES - id - id - id - - - - YES - - YES - encodingsPopUpButton - helpStringField - okButton - textView - window - - - YES - NSPopUpButton - NSTextField - NSButton - NSTextView - NSPanel - - - - IBProjectSource - EncodingsManager.h - - - - EncodingsManager - NSObject - - IBUserSource - - - + FirstResponder : id - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSObject - - YES - - YES - didAdjustSubviews: - willAdjustSubviews: - - - YES - RBSplitView - RBSplitView - - - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - NSObject - - IBUserSource - - - - - NSTextView - - YES - - YES - moveToLeftEndOfLine: - toggleAutomaticTextReplacement: - - - YES - id - id + + : + + : + id - - IBProjectSource - LinkingEditor.h - - - - NSTextView - NSText - - IBUserSource - - - - - NSWindow - NSResponder - - IBUserSource - - - - - RBSplitSubview - NSView - - IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h - - - - RBSplitSubview - NSView - - IBUserSource - - - - - RBSplitView - RBSplitSubview - - delegate - id - - - - - RBSplitView - - - - RBSplitView - RBSplitSubview IBUserSource - - - YES - - NSActionCell - NSCell - - IBFrameworkSource - AppKit.framework/Headers/NSActionCell.h - - - - NSApplication - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSApplication.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSApplicationScripting.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSColorPanel.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSHelpManager.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSPageLayout.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSUserInterfaceItemSearching.h - - - - NSButton - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSButton.h - - - - NSButtonCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSButtonCell.h - - - - NSCell - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSCell.h - - - - NSControl - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSControl.h - - - - NSFormatter - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFormatter.h - - - - NSMenu - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSMenu.h - - - - NSMenuItem - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSMenuItem.h - - - - NSMenuItemCell - NSButtonCell - - IBFrameworkSource - AppKit.framework/Headers/NSMenuItemCell.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSAccessibility.h - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDictionaryController.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDragging.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontManager.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontPanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSKeyValueBinding.h - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSNibLoading.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSOutlineView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSPasteboard.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSSavePanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSTableView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSToolbarItem.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSView.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObjectScripting.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSPortCoder.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptObjectSpecifiers.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptWhoseTests.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLDownload.h - - - - NSObject - - IBFrameworkSource - PrintCore.framework/Headers/PDEPluginInterface.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFAuthorizationView.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFCertificatePanel.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFChooseIdentityPanel.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUAppcast.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUUpdater.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebDownload.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebEditingDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebFrameLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebJavaPlugIn.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPlugin.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPluginContainer.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPolicyDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebResourceLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebScriptObject.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebUIDelegate.h - - - - NSPanel - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSPanel.h - - - - NSPopUpButton - NSButton - - IBFrameworkSource - AppKit.framework/Headers/NSPopUpButton.h - - - - NSPopUpButtonCell - NSMenuItemCell - - IBFrameworkSource - AppKit.framework/Headers/NSPopUpButtonCell.h - - - - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSInterfaceStyle.h - - - - NSResponder - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSResponder.h - - - - NSScrollView - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSScrollView.h - - - - NSScroller - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSScroller.h - - - - NSText - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSText.h - - - - NSTextField - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSTextField.h - - - - NSTextFieldCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSTextFieldCell.h - - - - NSTextView - NSText - - IBFrameworkSource - AppKit.framework/Headers/NSTextView.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSClipView.h - - - - NSView - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSRulerView.h - - - - NSView - NSResponder - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSDrawer.h - - - - NSWindow - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSWindow.h - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSWindowScripting.h - - - + 0 + IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx @@ -1525,12 +631,11 @@ com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES - ../Notation.xcodeproj 3 + + {9, 8} + {7, 2} + diff --git a/English.lproj/EncodingsManager.nib/keyedobjects.nib b/English.lproj/EncodingsManager.nib/keyedobjects.nib index de0d14b1..14a0084d 100644 Binary files a/English.lproj/EncodingsManager.nib/keyedobjects.nib and b/English.lproj/EncodingsManager.nib/keyedobjects.nib differ diff --git a/English.lproj/ExporterManager.nib/classes.nib b/English.lproj/ExporterManager.nib/classes.nib deleted file mode 100755 index 7ff35ef8..00000000 --- a/English.lproj/ExporterManager.nib/classes.nib +++ /dev/null @@ -1,19 +0,0 @@ -{ - IBClasses = ( - { - ACTIONS = {formatSelectorChanged = id; }; - CLASS = ExporterManager; - LANGUAGE = ObjC; - OUTLETS = {accessoryView = NSView; formatSelectorPopup = NSPopUpButton; }; - SUPERCLASS = NSObject; - }, - { - ACTIONS = {"" = id; }; - CLASS = FirstResponder; - LANGUAGE = ObjC; - SUPERCLASS = NSObject; - }, - {CLASS = NSDatePicker; LANGUAGE = ObjC; SUPERCLASS = NSControl; } - ); - IBVersion = 1; -} \ No newline at end of file diff --git a/English.lproj/ExporterManager.nib/designable.nib b/English.lproj/ExporterManager.nib/designable.nib new file mode 100644 index 00000000..88edcd7c --- /dev/null +++ b/English.lproj/ExporterManager.nib/designable.nib @@ -0,0 +1,365 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSTextField + NSCustomObject + NSMenu + NSMenuItem + NSPopUpButton + NSCustomView + NSPopUpButtonCell + NSTextFieldCell + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + ExporterManager + + + FirstResponder + + + NSApplication + + + + 256 + + + + 256 + {{98, 16}, {189, 26}} + + YES + + -2076049856 + 2048 + + LucidaGrande + 13 + 1044 + + + 109199615 + 1 + + LucidaGrande + 13 + 16 + + + + + + 400 + 75 + + + Plain Text + + 1048576 + 2147483647 + 1 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + _popUpItemAction: + 1 + + + YES + + + OtherViews + + + + + + Rich Text Format + + 1048576 + 2147483647 + + + _popUpItemAction: + 2 + + + + + HTML Document + + 1048576 + 2147483647 + + + _popUpItemAction: + 3 + + + + + Microsoft Word Document + + 1048576 + 2147483647 + + + _popUpItemAction: + 4 + + + + + Microsoft Word XML Document + + 1048576 + 2147483647 + + + _popUpItemAction: + 5 + + + + + 3 + YES + YES + 1 + + + + + 256 + {{17, 23}, {79, 17}} + + YES + + 67239424 + 71303168 + File Format: + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + {304, 60} + + + NSView + + NSResponder + + + + + + + accessoryView + + + + 350 + + + + formatSelectorPopup + + + + 351 + + + + formatSelectorChanged: + + + + 353 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 341 + + + + + + + View + + + 342 + + + + + + + + 347 + + + + + + + + 355 + + + + + + + + 356 + + + + + 343 + + + + + + + + + + + + 349 + + + + + 348 + + + + + 346 + + + + + 345 + + + + + 344 + + + + + -3 + + + Application + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + + 356 + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + {9, 8} + {7, 2} + + + diff --git a/English.lproj/ExporterManager.nib/info.nib b/English.lproj/ExporterManager.nib/info.nib deleted file mode 100755 index f28a987c..00000000 --- a/English.lproj/ExporterManager.nib/info.nib +++ /dev/null @@ -1,25 +0,0 @@ - - - - - IBDocumentLocation - 293 53 356 240 0 0 1680 1028 - IBEditorPositions - - 341 - 656 634 324 102 0 0 1680 1028 - - IBFramework Version - 446.1 - IBLockedTabItems - - 10 - - IBOpenObjects - - 341 - - IBSystem Version - 8L127 - - diff --git a/English.lproj/ExporterManager.nib/keyedobjects.nib b/English.lproj/ExporterManager.nib/keyedobjects.nib old mode 100755 new mode 100644 index e8dcbdd7..7a64e859 Binary files a/English.lproj/ExporterManager.nib/keyedobjects.nib and b/English.lproj/ExporterManager.nib/keyedobjects.nib differ diff --git a/English.lproj/FindPanel.nib/classes.nib b/English.lproj/FindPanel.nib/classes.nib deleted file mode 100755 index d67f2798..00000000 --- a/English.lproj/FindPanel.nib/classes.nib +++ /dev/null @@ -1,26 +0,0 @@ -{ - IBClasses = ( - { - ACTIONS = {"" = id; }; - CLASS = FirstResponder; - LANGUAGE = ObjC; - SUPERCLASS = NSObject; - }, - { - ACTIONS = {changeEntirePhrase = id; findNext = id; findPrevious = id; }; - CLASS = MultiTextFinder; - LANGUAGE = ObjC; - OUTLETS = { - entirePhraseButton = NSButton; - findStringField = NSTextField; - ignoreCaseButton = NSButton; - nextButton = NSButton; - previousButton = NSButton; - window = NSPanel; - }; - SUPERCLASS = NSObject; - }, - {CLASS = NSDatePicker; LANGUAGE = ObjC; SUPERCLASS = NSControl; } - ); - IBVersion = 1; -} \ No newline at end of file diff --git a/English.lproj/FindPanel.nib/designable.nib b/English.lproj/FindPanel.nib/designable.nib new file mode 100644 index 00000000..17844120 --- /dev/null +++ b/English.lproj/FindPanel.nib/designable.nib @@ -0,0 +1,472 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSTextField + NSView + NSWindowTemplate + NSCustomObject + NSButtonCell + NSButton + NSTextFieldCell + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + MultiTextFinder + + + FirstResponder + + + NSApplication + + + 19 + 2 + {{696, 526}, {465, 92}} + -260571136 + Find In Filtered Notes + NSPanel + + View + + {300, 92} + + + 256 + + + + 268 + {{17, 51}, {36, 18}} + + YES + + 67239424 + 71303168 + RmluZDoKA + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 266 + {{58, 49}, {253, 23}} + + YES + + -1804468671 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + + + + 265 + {{321, 44}, {130, 32}} + + YES + + 67239424 + 134217728 + Next Word + + + -2038284033 + 1 + + LucidaGrande + 13 + 16 + + + + 200 + 25 + + + + + 265 + {{321, 12}, {130, 32}} + + YES + + 67239424 + 134217728 + Previous Word + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 264 + {{72, 21}, {97, 18}} + + YES + + -2080244224 + 0 + Ignore Case + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 264 + {{187, 21}, {112, 18}} + + YES + + 67239424 + 0 + Entire phrase + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {{7, 11}, {465, 92}} + + + {{0, 0}, {1440, 878}} + {300, 108} + {1e+13, 1e+13} + + + + + + + window + + + + 344 + + + + initialFirstResponder + + + + 367 + + + + findStringField + + + + 369 + + + + ignoreCaseButton + + + + 370 + + + + entirePhraseButton + + + + 371 + + + + nextButton + + + + 372 + + + + previousButton + + + + 373 + + + + findNext: + + + + 374 + + + + findPrevious: + + + + 375 + + + + changeEntirePhrase: + + + + 376 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 342 + + + + + + Panel + + + 343 + + + + + + + + + + + + + 345 + + + + + + + + 347 + + + + + + + + 349 + + + + + + + + 350 + + + + + + + + 355 + + + + + + + + 362 + + + + + + + + 378 + + + + + 379 + + + + + 380 + + + + + 381 + + + + + 382 + + + + + 383 + + + + + -3 + + + Application + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + + 383 + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + NSSwitch + {15, 15} + + + diff --git a/English.lproj/FindPanel.nib/info.nib b/English.lproj/FindPanel.nib/info.nib deleted file mode 100755 index bd3ca866..00000000 --- a/English.lproj/FindPanel.nib/info.nib +++ /dev/null @@ -1,20 +0,0 @@ - - - - - IBDocumentLocation - 261 98 356 240 0 0 1680 1028 - IBFramework Version - 446.1 - IBLockedTabItems - - 10 - - IBOpenObjects - - 342 - - IBSystem Version - 8L127 - - diff --git a/English.lproj/FindPanel.nib/keyedobjects.nib b/English.lproj/FindPanel.nib/keyedobjects.nib old mode 100755 new mode 100644 index db6b8e2e..7bfb68c8 Binary files a/English.lproj/FindPanel.nib/keyedobjects.nib and b/English.lproj/FindPanel.nib/keyedobjects.nib differ diff --git a/English.lproj/ImporterAccessory.nib/classes.nib b/English.lproj/ImporterAccessory.nib/classes.nib deleted file mode 100644 index 1aaf4ad8..00000000 --- a/English.lproj/ImporterAccessory.nib/classes.nib +++ /dev/null @@ -1,77 +0,0 @@ - - - - - IBClasses - - - CLASS - RBSplitView - LANGUAGE - ObjC - OUTLETS - - delegate - id - - SUPERCLASS - RBSplitSubview - - - CLASS - AlienNoteImporter - LANGUAGE - ObjC - OUTLETS - - grabCreationDatesButton - NSButton - importAccessoryView - NSView - receptionDelegate - id - source - id - - SUPERCLASS - NSObject - - - CLASS - RBSplitSubview - LANGUAGE - ObjC - SUPERCLASS - NSView - - - ACTIONS - - - id - - CLASS - FirstResponder - LANGUAGE - ObjC - SUPERCLASS - NSObject - - - ACTIONS - - didAdjustSubviews - RBSplitView - willAdjustSubviews - RBSplitView - - CLASS - NSObject - LANGUAGE - ObjC - - - IBVersion - 1 - - diff --git a/English.lproj/ImporterAccessory.nib/designable.nib b/English.lproj/ImporterAccessory.nib/designable.nib new file mode 100644 index 00000000..c90ea805 --- /dev/null +++ b/English.lproj/ImporterAccessory.nib/designable.nib @@ -0,0 +1,176 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSCustomView + NSButtonCell + NSButton + NSCustomObject + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + AlienNoteImporter + + + FirstResponder + + + NSApplication + + + + 256 + + + + 268 + {{18, 18}, {181, 18}} + + YES + + 67239424 + 0 + Import file creation dates + + LucidaGrande + 13 + 1044 + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + {217, 54} + + + NSView + + NSResponder + + + + + + + grabCreationDatesButton + + + + 361 + + + + importAccessoryView + + + + 362 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 341 + + + + + + View + + + 357 + + + + + + + + 365 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + + 365 + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + NSSwitch + {15, 15} + + + diff --git a/English.lproj/ImporterAccessory.nib/info.nib b/English.lproj/ImporterAccessory.nib/info.nib deleted file mode 100644 index 05aff38b..00000000 --- a/English.lproj/ImporterAccessory.nib/info.nib +++ /dev/null @@ -1,20 +0,0 @@ - - - - - IBFramework Version - 680 - IBLastKnownRelativeProjectPath - ../Notation.xcodeproj - IBOldestOS - 3 - IBOpenObjects - - 341 - - IBSystem Version - 9L31a - targetFramework - IBCocoaFramework - - diff --git a/English.lproj/ImporterAccessory.nib/keyedobjects.nib b/English.lproj/ImporterAccessory.nib/keyedobjects.nib index 4eac914f..53b0cd5a 100644 Binary files a/English.lproj/ImporterAccessory.nib/keyedobjects.nib and b/English.lproj/ImporterAccessory.nib/keyedobjects.nib differ diff --git a/English.lproj/KeyDerivationManager.nib/designable.nib b/English.lproj/KeyDerivationManager.nib/designable.nib index 0a408513..9606bc2f 100644 --- a/English.lproj/KeyDerivationManager.nib/designable.nib +++ b/English.lproj/KeyDerivationManager.nib/designable.nib @@ -1,34 +1,29 @@ - + - 1030 - 10C540 - 740 - 1038.25 - 458.00 + 1050 + 10J869 + 1306 + 1038.35 + 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 740 + 1306 - - YES - - - - YES + + NSTextField + NSProgressIndicator + NSTextFieldCell + NSSliderCell + NSCustomView + NSSlider + NSCustomObject + + com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES + + + KeyDerivationManager @@ -41,8 +36,7 @@ 256 - - YES + 256 @@ -169,7 +163,7 @@ 16 100 - + {413, 75} @@ -177,10 +171,9 @@ NSResponder - + - - YES + view @@ -221,13 +214,12 @@ 345 - + - - YES + 0 - + @@ -252,61 +244,55 @@ 328 - - YES + - + View 329 - - YES + - + 330 - - YES + - + 331 - - YES + - + 332 - - YES + - + 333 - - YES + - + @@ -339,817 +325,78 @@ - - - - YES - - YES - -3.IBPluginDependency - -3.ImportedFromIB2 - 328.IBEditorWindowLastContentRect - 328.IBPluginDependency - 328.IBPropertyAccessControl - 328.ImportedFromIB2 - 329.CustomClassName - 329.IBPluginDependency - 329.ImportedFromIB2 - 330.IBPluginDependency - 330.IBPropertyAccessControl - 330.ImportedFromIB2 - 331.IBPluginDependency - 331.IBPropertyAccessControl - 331.ImportedFromIB2 - 332.IBPluginDependency - 332.IBPropertyAccessControl - 332.ImportedFromIB2 - 333.IBPluginDependency - 333.ImportedFromIB2 - 344.IBPluginDependency - 344.ImportedFromIB2 - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - {{246, 416}, {413, 75}} - com.apple.InterfaceBuilder.CocoaPlugin - - - KeyDerivationDelaySlider - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - - YES - + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{246, 416}, {413, 75}} + com.apple.InterfaceBuilder.CocoaPlugin + + + KeyDerivationDelaySlider + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - - YES - - + 351 - - YES + FirstResponder : id - - IBUserSource - - - - - KeyDerivationDelaySlider - NSSlider - - delegate - id - - - IBProjectSource - KeyDerivationDelaySlider.h - - - - KeyDerivationDelaySlider - NSSlider - - IBUserSource - - - - - KeyDerivationManager - NSObject - - sliderChanged: - id - - - YES - - YES - hashDurationField - iterationEstimatorProgress - slider - view - - - YES - NSTextField - NSProgressIndicator - KeyDerivationDelaySlider - NSView - - - - IBProjectSource - KeyDerivationManager.h - - - - KeyDerivationManager - NSObject - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSObject - - YES - - YES - didAdjustSubviews: - willAdjustSubviews: - - - YES - RBSplitView - RBSplitView + + : + + : + id - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - NSObject - - IBUserSource - - - - - RBSplitSubview - NSView - - IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h - - - - RBSplitSubview - NSView - - IBUserSource - - - - - RBSplitView - RBSplitSubview - - delegate - id - - - - - RBSplitView - - - - RBSplitView - RBSplitSubview IBUserSource - - - YES - - NSActionCell - NSCell - - IBFrameworkSource - AppKit.framework/Headers/NSActionCell.h - - - - NSApplication - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSApplication.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSApplicationScripting.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSColorPanel.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSHelpManager.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSPageLayout.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSUserInterfaceItemSearching.h - - - - NSCell - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSCell.h - - - - NSControl - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSControl.h - - - - NSFormatter - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFormatter.h - - - - NSMenu - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSMenu.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSAccessibility.h - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDictionaryController.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDragging.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontManager.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontPanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSKeyValueBinding.h - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSNibLoading.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSOutlineView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSPasteboard.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSSavePanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSTableView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSToolbarItem.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSView.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObjectScripting.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSPortCoder.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptObjectSpecifiers.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptWhoseTests.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLDownload.h - - - - NSObject - - IBFrameworkSource - PrintCore.framework/Headers/PDEPluginInterface.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFAuthorizationView.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFCertificatePanel.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFChooseIdentityPanel.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUAppcast.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUUpdater.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebDownload.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebEditingDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebFrameLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebJavaPlugIn.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPlugin.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPluginContainer.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPolicyDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebResourceLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebScriptObject.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebUIDelegate.h - - - - NSProgressIndicator - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSProgressIndicator.h - - - - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSInterfaceStyle.h - - - - NSResponder - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSResponder.h - - - - NSSlider - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSSlider.h - - - - NSSliderCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSSliderCell.h - - - - NSTextField - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSTextField.h - - - - NSTextFieldCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSTextFieldCell.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSClipView.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSMenuItem.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSRulerView.h - - - - NSView - NSResponder - - - + 0 + IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - + com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES - ../Notation.xcodeproj 3 diff --git a/English.lproj/KeyDerivationManager.nib/keyedobjects.nib b/English.lproj/KeyDerivationManager.nib/keyedobjects.nib index 11592769..e2b86743 100644 Binary files a/English.lproj/KeyDerivationManager.nib/keyedobjects.nib and b/English.lproj/KeyDerivationManager.nib/keyedobjects.nib differ diff --git a/English.lproj/MainMenu.xib b/English.lproj/MainMenu.xib index ea831268..448f8bff 100644 --- a/English.lproj/MainMenu.xib +++ b/English.lproj/MainMenu.xib @@ -1,17 +1,16 @@ - + - 1040 - 10J869 + 1050 + 10K540 1306 - 1038.35 + 1038.36 461.00 com.apple.InterfaceBuilder.CocoaPlugin 1306 - - YES + NSTextView NSScroller NSTableHeaderView @@ -31,17 +30,15 @@ NSWindowTemplate NSTextField NSUserDefaultsController - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin - + PluginDependencyRecalculationVersion - - YES + NSApplication @@ -77,8 +74,7 @@ MainMenu - - YES + nvALT @@ -96,8 +92,7 @@ submenuAction: nvALT - - YES + About nvALT @@ -171,9 +166,7 @@ Services - - YES - + _NSServicesMenu @@ -235,7 +228,7 @@ - + _NSAppleMenu @@ -251,8 +244,7 @@ 89 Note - - YES + Rename @@ -383,7 +375,7 @@ 96 - + @@ -399,8 +391,7 @@ Edit - - YES + Undo @@ -528,8 +519,7 @@ Find - - YES + Find… @@ -570,7 +560,7 @@ 7 - + @@ -584,8 +574,7 @@ submenuAction: Spelling - - YES + Spelling… @@ -613,7 +602,7 @@ - + @@ -627,8 +616,7 @@ submenuAction: Transformations - - YES + Make Upper Case @@ -656,10 +644,10 @@ - + - + @@ -674,8 +662,19 @@ 99 View - - YES + + + + YES + YES + Enter Full Screen + f + 1310720 + 2147483647 + + + 314 + Switch to Horizontal Layout @@ -704,8 +703,7 @@ submenuAction: Color Schemes - - YES + B/W @@ -734,7 +732,7 @@ - + @@ -759,8 +757,7 @@ 97 Columns - - YES + Item @@ -771,7 +768,7 @@ - + @@ -786,8 +783,7 @@ 98 Sort By - - YES + Item @@ -797,7 +793,7 @@ - + @@ -882,7 +878,7 @@ 101 - + @@ -897,8 +893,7 @@ 103 Bookmarks - - YES + Item @@ -908,7 +903,7 @@ - + @@ -924,8 +919,7 @@ Format - - YES + Plain Text Style @@ -946,23 +940,14 @@ 2 Bold - - YES - - YES - NSFont - NSOriginalFont - - - YES - - LucidaGrande-Bold - 14 - 16 - - + + + LucidaGrande-Bold + 14 + 16 - + + @@ -976,66 +961,55 @@ 1 Italic - - YES - - YES - NSFont - NSObliqueness - NSParagraphStyle + + + LucidaGrande + 14 + 16 - - YES - - LucidaGrande - 14 - 16 - - - - 4 - - YES - - 28 - - - 56 - - - 84 - - - 112 - - - 140 - - - 168 - - - 196 - - - 224 - - - 252 - - - 280 - - - 308 - - - 336 - + + + 4 + + + 28 + + + 56 + + + 84 - + + 112 + + + 140 + + + 168 + + + 196 + + + 224 + + + 252 + + + 280 + + + 308 + + + 336 + + - + @@ -1048,21 +1022,11 @@ Strikethrough - - YES - - YES - NSFont - NSOriginalFont - NSStrikethrough - - - YES - - - - - + + + + + @@ -1115,7 +1079,7 @@ 102 - + @@ -1128,8 +1092,7 @@ submenuAction: Preview - - YES + (Multi)Markdown @@ -1203,7 +1166,7 @@ - + @@ -1219,8 +1182,7 @@ Window - - YES + Minimize @@ -1268,7 +1230,7 @@ - + _NSWindowsMenu @@ -1283,8 +1245,7 @@ submenuAction: Help - - YES + Keyboard Shortcuts @@ -1370,10 +1331,10 @@ 2 - + - + _NSMainMenu @@ -1382,8 +1343,7 @@ 274 - - YES + 319 @@ -1415,7 +1375,7 @@ - + {147, 102} EmptyView @@ -1425,24 +1385,17 @@ NSFontManager - + 258 - - YES + 257 - - YES - - YES - NSStringPboardType - - + + NSStringPboardType + {{206, 6}, {145, 14}} - - YES 67239424 @@ -1482,7 +1435,6 @@ 266 {381, 23} - YES @@ -1505,10 +1457,8 @@ - + {381, 23} - - DFView NSResponder @@ -1527,8 +1477,7 @@ 256 - - YES + 256 @@ -1577,7 +1526,7 @@ - + {{7, 11}, {353, 106}} @@ -1587,8 +1536,7 @@ barMenu - - YES + Bookmarks @@ -1601,8 +1549,7 @@ 901 Bookmarks - - YES + Item @@ -1612,7 +1559,7 @@ - + @@ -1628,8 +1575,7 @@ Format - - YES + Plain Text Style @@ -1650,7 +1596,7 @@ 2 Bold - + @@ -1664,7 +1610,7 @@ 1 Italic - + @@ -1677,7 +1623,7 @@ Strikethrough - + @@ -1730,7 +1676,7 @@ 102 - + @@ -1791,6 +1737,15 @@ 91 + + + Insert Link + L + 1048576 + 2147483647 + + + YES @@ -1829,8 +1784,7 @@ submenuAction: Color Schemes - - YES + YES @@ -1862,7 +1816,7 @@ - + @@ -1896,14 +1850,14 @@ - Quit Notational Velocity + Quit nvALT q 1048576 2147483647 - + @@ -1915,21 +1869,19 @@ YES - + 274 - - YES + 2304 - - YES + 2322 {399, 14} - + @@ -1938,10 +1890,9 @@ - - YES + - + 6 @@ -1950,50 +1901,32 @@ 1 - 12007 + 67120871 0 - - YES - - YES - NSBackgroundColor - NSColor + + + 6 + System + selectedTextBackgroundColor + - - YES - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - + + 6 + System + selectedTextColor + - + - - YES - - YES - NSColor - NSUnderline - - - YES - - 1 - MCAwIDEAA - - + + + 1 + MCAwIDEAA - + + 6 @@ -2001,7 +1934,7 @@ {80, 0} - + {399, 304} @@ -2011,8 +1944,28 @@ MSAwLjA0OTMwMjU1MjY4IDAuMDYxMDkyMTM5MQA - {4, -5} - 1 + {4, 5} + + 12582912 + + + + + + TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym +SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA +AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA +AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA +AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA + + + + + + 3 + MCAwAA + + @@ -2020,6 +1973,7 @@ -2147479296 {{384, 0}, {15, 304}} + 2 _doScroller: @@ -2038,9 +1992,10 @@ 1 0.94565218687057495 - + {399, 304} - + + 528 @@ -2049,13 +2004,11 @@ 274 - - YES + 2304 - - YES + 4352 @@ -2068,19 +2021,17 @@ 256 {399, 17} - + - + -2147483392 {{383, 0}, {16, 17}} - - YES - + 3 2 @@ -2103,7 +2054,7 @@ YES 0 - + {{0, 17}, {399, 136}} @@ -2140,10 +2091,9 @@ 2304 - - YES + - + {399, 17} @@ -2151,8 +2101,8 @@ 4 - - + + {399, 153} 528 @@ -2160,13 +2110,12 @@ - + QSAAAEEgAABBgAAAQYAAAA - + - - YES + performMiniaturize: @@ -3219,15 +3168,36 @@ 1306 - + + + fsMenuItem + + + + 1308 + + + + toggleFullScreen: + + + + 1309 + + + + insertLink: + + + + 1315 + + - - YES + 0 - - YES - + @@ -3246,26 +3216,22 @@ 21 - - YES + - + notation 2 - - YES - + 29 - - YES + @@ -3275,30 +3241,28 @@ - + MainMenu 19 - - YES + - + 24 - - YES + - + @@ -3329,17 +3293,15 @@ 56 - - YES + - + 57 - - YES + @@ -3353,7 +3315,7 @@ - + @@ -3369,10 +3331,9 @@ 131 - - YES + - + @@ -3433,17 +3394,15 @@ 83 - - YES + - + 81 - - YES + @@ -3457,7 +3416,7 @@ - + @@ -3518,17 +3477,15 @@ 103 - - YES + - + 106 - - YES + @@ -3538,7 +3495,7 @@ - + @@ -3574,17 +3531,15 @@ 163 - - YES + - + 169 - - YES + @@ -3595,12 +3550,12 @@ - - + + @@ -3626,22 +3581,20 @@ 168 - - YES + - + 159 - - YES + - + @@ -3682,21 +3635,19 @@ 184 - - YES + - + 185 - - YES + - + @@ -3719,11 +3670,6 @@ - - 557 - - - 771 @@ -3737,21 +3683,19 @@ 1093 - - YES + - + 1094 - - YES + - + @@ -3772,17 +3716,15 @@ 382 - - YES + - + 383 - - YES + @@ -3797,25 +3739,24 @@ - + + 386 - - YES + - + 387 - - YES + - + @@ -3826,19 +3767,17 @@ 389 - - YES + - + 390 - - YES + - + @@ -3884,17 +3823,15 @@ 397 - - YES + - + 398 - - YES + @@ -3904,7 +3841,7 @@ - + @@ -3955,19 +3892,17 @@ 996 - - YES + - + 997 - - YES + - + @@ -3984,20 +3919,18 @@ 341 - - YES + - + editorStatus 342 - - YES + - + @@ -4009,51 +3942,46 @@ 1066 - - YES + - + fieldcustomview 1067 - - YES + - + 1079 - - YES + - + quit waiting 1080 - - YES + - + 1081 - - YES + - + @@ -4064,10 +3992,9 @@ 1083 - - YES + - + @@ -4119,8 +4046,7 @@ 1130 - - YES + @@ -4137,16 +4063,16 @@ - + + 1131 - - YES + - + @@ -4167,12 +4093,11 @@ 1159 - - YES + - + @@ -4233,17 +4158,15 @@ 1185 - - YES + - + 1186 - - YES + @@ -4253,7 +4176,7 @@ - + @@ -4304,19 +4227,17 @@ 1203 - - YES + - + 1204 - - YES + - + @@ -4337,21 +4258,19 @@ 1210 - - YES + - + 1211 - - YES + - + @@ -4377,17 +4296,15 @@ 1237 - - YES + - + 1238 - - YES + @@ -4396,7 +4313,7 @@ - + @@ -4442,10 +4359,9 @@ 1270 - - YES + - + Word Count Token @@ -4457,12 +4373,11 @@ 1016 - - YES + - + Scroll View - Linking Editor @@ -4486,13 +4401,12 @@ 1013 - - YES + - + @@ -4548,1190 +4462,524 @@ 1298 - - YES - + - - - - YES - - YES - -3.IBPluginDependency - 1000.IBPluginDependency - 1000.ImportedFromIB2 - 1013.CustomClassName - 1013.IBPluginDependency - 1013.IBViewBoundsToFrameTransform - 1013.ImportedFromIB2 - 1014.CustomClassName - 1014.IBPluginDependency - 1014.ImportedFromIB2 - 1016.CustomClassName - 1016.IBPluginDependency - 1016.IBViewBoundsToFrameTransform - 1016.ImportedFromIB2 - 1017.CustomClassName - 1017.IBPluginDependency - 1017.ImportedFromIB2 - 103.IBPluginDependency - 103.ImportedFromIB2 - 1053.IBPluginDependency - 1053.ImportedFromIB2 - 1055.IBPluginDependency - 1055.ImportedFromIB2 - 1057.IBPluginDependency - 1057.ImportedFromIB2 - 1058.IBPluginDependency - 1058.ImportedFromIB2 - 106.IBPluginDependency - 106.ImportedFromIB2 - 1061.IBPluginDependency - 1061.ImportedFromIB2 - 1062.IBPluginDependency - 1062.ImportedFromIB2 - 1066.IBEditorWindowLastContentRect - 1066.IBPluginDependency - 1066.ImportedFromIB2 - 1067.CustomClassName - 1067.IBPluginDependency - 1067.ImportedFromIB2 - 1079.IBEditorWindowLastContentRect - 1079.IBPluginDependency - 1079.IBWindowTemplateEditedContentRect - 1079.ImportedFromIB2 - 1080.IBPluginDependency - 1080.ImportedFromIB2 - 1081.IBPluginDependency - 1081.ImportedFromIB2 - 1082.IBPluginDependency - 1082.ImportedFromIB2 - 1083.IBPluginDependency - 1083.ImportedFromIB2 - 1087.IBPluginDependency - 1087.ImportedFromIB2 - 1093.IBPluginDependency - 1093.ImportedFromIB2 - 1094.IBPluginDependency - 1094.ImportedFromIB2 - 1095.IBPluginDependency - 1095.ImportedFromIB2 - 1096.IBPluginDependency - 1096.ImportedFromIB2 - 1097.IBPluginDependency - 1097.ImportedFromIB2 - 1102.IBPluginDependency - 1103.IBPluginDependency - 1104.IBPluginDependency - 1105.IBPluginDependency - 1106.IBPluginDependency - 1106.IBShouldRemoveOnLegacySave - 1107.IBPluginDependency - 1107.IBShouldRemoveOnLegacySave - 1108.CustomClassName - 1108.IBPluginDependency - 1108.IBShouldRemoveOnLegacySave - 1109.IBPluginDependency - 1109.IBShouldRemoveOnLegacySave - 111.IBPluginDependency - 111.ImportedFromIB2 - 1110.IBPluginDependency - 1110.IBShouldRemoveOnLegacySave - 1115.IBPluginDependency - 1116.IBPluginDependency - 1118.IBPluginDependency - 1127.IBPluginDependency - 1130.IBEditorWindowLastContentRect - 1130.IBPluginDependency - 1131.IBPluginDependency - 1135.IBPluginDependency - 1138.IBPluginDependency - 1139.IBPluginDependency - 1159.IBEditorWindowLastContentRect - 1159.IBPluginDependency - 1160.IBPluginDependency - 1160.ImportedFromIB2 - 1161.IBPluginDependency - 1161.ImportedFromIB2 - 1162.IBPluginDependency - 1162.ImportedFromIB2 - 1163.IBEditorWindowLastContentRect - 1163.IBPluginDependency - 1163.IBViewBoundsToFrameTransform - 1166.IBPluginDependency - 1166.ImportedFromIB2 - 1168.IBPluginDependency - 1168.ImportedFromIB2 - 1170.IBPluginDependency - 1170.ImportedFromIB2 - 1172.IBPluginDependency - 1172.ImportedFromIB2 - 1174.IBPluginDependency - 1176.IBPluginDependency - 1180.IBPluginDependency - 1180.ImportedFromIB2 - 1183.IBPluginDependency - 1183.ImportedFromIB2 - 1185.IBPluginDependency - 1185.ImportedFromIB2 - 1186.IBEditorWindowLastContentRect - 1186.IBPluginDependency - 1186.ImportedFromIB2 - 1187.IBPluginDependency - 1187.ImportedFromIB2 - 1188.IBPluginDependency - 1188.ImportedFromIB2 - 1189.IBPluginDependency - 1189.ImportedFromIB2 - 1190.IBPluginDependency - 1190.ImportedFromIB2 - 1191.IBPluginDependency - 1191.ImportedFromIB2 - 1192.IBPluginDependency - 1192.ImportedFromIB2 - 1193.IBPluginDependency - 1193.ImportedFromIB2 - 1194.IBPluginDependency - 1194.ImportedFromIB2 - 1195.IBPluginDependency - 1195.ImportedFromIB2 - 1203.IBPluginDependency - 1203.ImportedFromIB2 - 1204.IBEditorWindowLastContentRect - 1204.IBPluginDependency - 1204.ImportedFromIB2 - 1205.IBPluginDependency - 1205.ImportedFromIB2 - 1206.IBPluginDependency - 1206.ImportedFromIB2 - 1207.IBPluginDependency - 1210.IBPluginDependency - 1211.IBEditorWindowLastContentRect - 1211.IBPluginDependency - 1212.IBPluginDependency - 1212.ImportedFromIB2 - 1213.IBPluginDependency - 1213.ImportedFromIB2 - 1214.IBPluginDependency - 1214.ImportedFromIB2 - 1221.IBPluginDependency - 1237.IBPluginDependency - 1238.IBEditorWindowLastContentRect - 1238.IBPluginDependency - 1239.IBPluginDependency - 1240.IBPluginDependency - 1241.IBPluginDependency - 1242.IBPluginDependency - 1243.IBPluginDependency - 1244.IBPluginDependency - 1255.IBPluginDependency - 1255.ImportedFromIB2 - 1270.CustomClassName - 1270.IBPluginDependency - 1270.IBViewBoundsToFrameTransform - 1271.IBPluginDependency - 1284.IBPluginDependency - 1285.IBPluginDependency - 1286.IBPluginDependency - 129.IBPluginDependency - 129.ImportedFromIB2 - 1292.IBPluginDependency - 1293.IBPluginDependency - 1298.IBPluginDependency - 130.IBPluginDependency - 130.ImportedFromIB2 - 131.IBPluginDependency - 131.ImportedFromIB2 - 134.IBPluginDependency - 134.ImportedFromIB2 - 136.IBPluginDependency - 136.ImportedFromIB2 - 143.IBPluginDependency - 143.ImportedFromIB2 - 144.IBPluginDependency - 144.ImportedFromIB2 - 145.IBPluginDependency - 145.ImportedFromIB2 - 149.IBPluginDependency - 149.ImportedFromIB2 - 150.IBPluginDependency - 150.ImportedFromIB2 - 154.IBPluginDependency - 154.ImportedFromIB2 - 156.IBPluginDependency - 156.ImportedFromIB2 - 157.IBPluginDependency - 157.ImportedFromIB2 - 158.IBPluginDependency - 158.ImportedFromIB2 - 159.IBEditorWindowLastContentRect - 159.IBPluginDependency - 159.ImportedFromIB2 - 160.IBPluginDependency - 160.ImportedFromIB2 - 161.IBPluginDependency - 161.ImportedFromIB2 - 162.IBPluginDependency - 162.ImportedFromIB2 - 163.IBPluginDependency - 163.ImportedFromIB2 - 167.IBPluginDependency - 167.ImportedFromIB2 - 168.IBPluginDependency - 168.ImportedFromIB2 - 169.IBEditorWindowLastContentRect - 169.IBPluginDependency - 169.ImportedFromIB2 - 171.IBPluginDependency - 171.ImportedFromIB2 - 172.IBPluginDependency - 172.ImportedFromIB2 - 173.IBPluginDependency - 173.ImportedFromIB2 - 184.IBPluginDependency - 184.ImportedFromIB2 - 185.IBPluginDependency - 185.ImportedFromIB2 - 187.IBPluginDependency - 187.ImportedFromIB2 - 189.IBPluginDependency - 189.ImportedFromIB2 - 19.IBPluginDependency - 19.ImportedFromIB2 - 191.IBPluginDependency - 191.ImportedFromIB2 - 196.IBPluginDependency - 196.ImportedFromIB2 - 197.IBPluginDependency - 197.ImportedFromIB2 - 2.CustomClassName - 2.IBPluginDependency - 2.ImportedFromIB2 - 21.IBEditorWindowLastContentRect - 21.IBPluginDependency - 21.IBWindowTemplateEditedContentRect - 21.ImportedFromIB2 - 21.NSWindowTemplate.visibleAtLaunch - 213.ImportedFromIB2 - 23.IBPluginDependency - 23.ImportedFromIB2 - 24.IBEditorWindowLastContentRect - 24.IBPluginDependency - 24.ImportedFromIB2 - 29.IBEditorWindowLastContentRect - 29.IBPluginDependency - 29.ImportedFromIB2 - 341.IBPluginDependency - 341.ImportedFromIB2 - 342.IBPluginDependency - 342.ImportedFromIB2 - 382.IBPluginDependency - 382.ImportedFromIB2 - 383.IBEditorWindowLastContentRect - 383.IBPluginDependency - 383.ImportedFromIB2 - 386.IBPluginDependency - 386.ImportedFromIB2 - 387.IBEditorWindowLastContentRect - 387.IBPluginDependency - 387.ImportedFromIB2 - 388.IBPluginDependency - 388.ImportedFromIB2 - 389.IBPluginDependency - 389.ImportedFromIB2 - 390.IBEditorWindowLastContentRect - 390.IBPluginDependency - 390.ImportedFromIB2 - 391.IBPluginDependency - 391.ImportedFromIB2 - 392.IBPluginDependency - 392.ImportedFromIB2 - 393.IBPluginDependency - 393.ImportedFromIB2 - 394.IBPluginDependency - 394.ImportedFromIB2 - 395.IBPluginDependency - 395.ImportedFromIB2 - 396.IBPluginDependency - 396.ImportedFromIB2 - 397.IBPluginDependency - 397.ImportedFromIB2 - 398.IBEditorWindowLastContentRect - 398.IBPluginDependency - 398.ImportedFromIB2 - 452.ImportedFromIB2 - 489.IBPluginDependency - 489.ImportedFromIB2 - 5.IBPluginDependency - 5.ImportedFromIB2 - 507.IBPluginDependency - 507.ImportedFromIB2 - 508.IBPluginDependency - 508.ImportedFromIB2 - 520.IBPluginDependency - 520.ImportedFromIB2 - 521.IBPluginDependency - 521.ImportedFromIB2 - 522.IBPluginDependency - 522.ImportedFromIB2 - 534.IBPluginDependency - 534.ImportedFromIB2 - 550.IBPluginDependency - 550.ImportedFromIB2 - 553.IBPluginDependency - 553.ImportedFromIB2 - 554.IBPluginDependency - 554.ImportedFromIB2 - 557.IBPluginDependency - 557.ImportedFromIB2 - 56.IBPluginDependency - 56.ImportedFromIB2 - 563.IBPluginDependency - 563.ImportedFromIB2 - 564.IBPluginDependency - 564.ImportedFromIB2 - 565.IBPluginDependency - 565.ImportedFromIB2 - 57.IBEditorWindowLastContentRect - 57.IBPluginDependency - 57.ImportedFromIB2 - 574.IBPluginDependency - 574.ImportedFromIB2 - 575.IBPluginDependency - 575.ImportedFromIB2 - 576.IBPluginDependency - 576.ImportedFromIB2 - 577.IBPluginDependency - 577.ImportedFromIB2 - 58.IBPluginDependency - 58.ImportedFromIB2 - 77.IBPluginDependency - 77.ImportedFromIB2 - 771.IBPluginDependency - 771.ImportedFromIB2 - 78.IBPluginDependency - 78.ImportedFromIB2 - 79.IBPluginDependency - 79.ImportedFromIB2 - 81.IBEditorWindowLastContentRect - 81.IBPluginDependency - 81.ImportedFromIB2 - 83.IBPluginDependency - 83.ImportedFromIB2 - 92.IBPluginDependency - 92.ImportedFromIB2 - 977.IBPluginDependency - 977.ImportedFromIB2 - 990.IBPluginDependency - 990.ImportedFromIB2 - 991.IBPluginDependency - 991.ImportedFromIB2 - 994.IBPluginDependency - 994.ImportedFromIB2 - 996.IBPluginDependency - 996.ImportedFromIB2 - 997.IBEditorWindowLastContentRect - 997.IBPluginDependency - 997.ImportedFromIB2 - 998.IBPluginDependency - 998.ImportedFromIB2 - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AugmentedScrollView - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwxcAAA - - - NotesTableView - com.apple.InterfaceBuilder.CocoaPlugin - - ETScrollView - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAw5cAAA - - - LinkingEditor - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{212, 748}, {381, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - DualField - com.apple.InterfaceBuilder.CocoaPlugin - - {{329, 739}, {353, 106}} - com.apple.InterfaceBuilder.CocoaPlugin - {{329, 739}, {353, 106}} - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - HeaderViewWithMenu - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{502, 140}, {283, 293}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{785, 190}, {180, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{1277, 760}, {163, 96}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{856, 673}, {210, 163}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{785, 410}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{575, 370}, {180, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{508, 655}, {249, 113}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - WordCountToken - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwaAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{459, 180}, {238, 83}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{254, 495}, {214, 273}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - ETContentView - com.apple.InterfaceBuilder.CocoaPlugin - - {{702, 301}, {397, 464}} - com.apple.InterfaceBuilder.CocoaPlugin - {{702, 301}, {397, 464}} - - - - com.apple.InterfaceBuilder.CocoaPlugin - - {{578, 675}, {194, 93}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{37, 768}, {673, 20}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{298, 525}, {277, 243}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{575, 675}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{563, 646}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{442, 605}, {210, 163}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{49, 555}, {264, 213}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{204, 555}, {222, 213}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{348, 745}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - + + 1307 + + + + + 1312 + + + + + 1310 + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + AugmentedScrollView + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwxcAAA + + NotesTableView + com.apple.InterfaceBuilder.CocoaPlugin + ETScrollView + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAw5cAAA + + LinkingEditor + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + DualField + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{329, 739}, {353, 106}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + HeaderViewWithMenu + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + WordCountToken + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwaAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + ETContentView + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{702, 301}, {397, 464}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - - + - 1306 + 1317 - - YES + AppController NSObject - - YES - - YES - bringFocusToControlField: - copyNoteLink: - deleteNote: - editNoteExternally: - exportNote: - fieldAction: - importNotes: - lockPreview: - multiTag: - openFileInEditor: - printNote: - printPreview: - renameNote: - revealNote: - savePreview: - selectPreviewMode: - setBWColorScheme: - setLCColorScheme: - setUserColorScheme: - sharePreview: - showHelpDocument: - showPreferencesWindow: - switchViewLayout: - syncWaitQuit: - tagNote: - toggleCollapse: - toggleFullscreen: - toggleNVActivation: - togglePreview: - toggleSourceView: - toggleWordCount: + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + bringFocusToControlField: + id - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + copyNoteLink: + id - - - YES - - YES - bringFocusToControlField: - copyNoteLink: - deleteNote: - editNoteExternally: - exportNote: - fieldAction: - importNotes: - lockPreview: - multiTag: - openFileInEditor: - printNote: - printPreview: - renameNote: - revealNote: - savePreview: - selectPreviewMode: - setBWColorScheme: - setLCColorScheme: - setUserColorScheme: - sharePreview: - showHelpDocument: - showPreferencesWindow: - switchViewLayout: - syncWaitQuit: - tagNote: - toggleCollapse: - toggleFullscreen: - toggleNVActivation: - togglePreview: - toggleSourceView: - toggleWordCount: + + deleteNote: + id - - YES - - bringFocusToControlField: - id - - - copyNoteLink: - id - - - deleteNote: - id - - - editNoteExternally: - id - - - exportNote: - id - - - fieldAction: - id - - - importNotes: - id - - - lockPreview: - id - - - multiTag: - id - - - openFileInEditor: - id - - - printNote: - id - - - printPreview: - id - - - renameNote: - id - - - revealNote: - id - - - savePreview: - id - - - selectPreviewMode: - id - - - setBWColorScheme: - id - - - setLCColorScheme: - id - - - setUserColorScheme: - id - - - sharePreview: - id - - - showHelpDocument: - id - - - showPreferencesWindow: - id - - - switchViewLayout: - id - - - syncWaitQuit: - id - - - tagNote: - id - - - toggleCollapse: - id - - - toggleFullscreen: - id - - - toggleNVActivation: - id - - - togglePreview: - id - - - toggleSourceView: - id - - - toggleWordCount: - id - + + editNoteExternally: + id - - - YES - - YES - editorStatusView - field - lockNoteItem - mainView - multiMarkdownPreview - notesScrollView - notesTableView - previewToggler - printPreviewItem - savePreviewItem - sparkleUpdateItem - statBarMenu - syncWaitPanel - syncWaitSpinner - textScrollView - textView - textilePreview - window - wordCounter + + exportNote: + id - - YES - EmptyView - DualField - NSMenuItem - ETContentView - NSMenuItem - AugmentedScrollView - NotesTableView - NSMenuItem - NSMenuItem - NSMenuItem - NSMenuItem - NSMenu - NSPanel - NSProgressIndicator - NSScrollView - LinkingEditor - NSMenuItem - NSWindow - WordCountToken + + fieldAction: + id - - - YES - - YES - editorStatusView - field - lockNoteItem - mainView - multiMarkdownPreview - notesScrollView - notesTableView - previewToggler - printPreviewItem - savePreviewItem - sparkleUpdateItem - statBarMenu - syncWaitPanel - syncWaitSpinner - textScrollView - textView - textilePreview - window - wordCounter + + importNotes: + id - - YES - - editorStatusView - EmptyView - - - field - DualField - - - lockNoteItem - NSMenuItem - - - mainView - ETContentView - - - multiMarkdownPreview - NSMenuItem - - - notesScrollView - AugmentedScrollView - - - notesTableView - NotesTableView - - - previewToggler - NSMenuItem - - - printPreviewItem - NSMenuItem - - - savePreviewItem - NSMenuItem - - - sparkleUpdateItem - NSMenuItem - - - statBarMenu - NSMenu - - - syncWaitPanel - NSPanel - - - syncWaitSpinner - NSProgressIndicator - - - textScrollView - NSScrollView - - - textView - LinkingEditor - - - textilePreview - NSMenuItem - - - window - NSWindow - - - wordCounter - WordCountToken - + + lockPreview: + id - + + multiTag: + id + + + openFileInEditor: + id + + + printNote: + id + + + printPreview: + id + + + renameNote: + id + + + revealNote: + id + + + savePreview: + id + + + selectPreviewMode: + id + + + setBWColorScheme: + id + + + setLCColorScheme: + id + + + setUserColorScheme: + id + + + sharePreview: + id + + + showHelpDocument: + id + + + showPreferencesWindow: + id + + + switchFullScreen: + id + + + switchViewLayout: + id + + + syncWaitQuit: + id + + + tagNote: + id + + + toggleCollapse: + id + + + toggleNVActivation: + id + + + togglePreview: + id + + + toggleSourceView: + id + + + toggleWordCount: + id + + + + EmptyView + DualField + NSMenuItem + NSMenuItem + ETContentView + NSMenuItem + AugmentedScrollView + NotesTableView + NSMenuItem + NSMenuItem + NSMenuItem + NSMenuItem + NSMenu + NSPanel + NSProgressIndicator + NSScrollView + LinkingEditor + NSMenuItem + NSWindow + WordCountToken + + + + editorStatusView + EmptyView + + + field + DualField + + + fsMenuItem + NSMenuItem + + + lockNoteItem + NSMenuItem + + + mainView + ETContentView + + + multiMarkdownPreview + NSMenuItem + + + notesScrollView + AugmentedScrollView + + + notesTableView + NotesTableView + + + previewToggler + NSMenuItem + + + printPreviewItem + NSMenuItem + + + savePreviewItem + NSMenuItem + + + sparkleUpdateItem + NSMenuItem + + + statBarMenu + NSMenu + + + syncWaitPanel + NSPanel + + + syncWaitSpinner + NSProgressIndicator + + + textScrollView + NSScrollView + + + textView + LinkingEditor + + + textilePreview + NSMenuItem + + + window + NSWindow + + + wordCounter + WordCountToken + + IBProjectSource ./Classes/AppController.h @@ -5809,80 +5057,50 @@ FirstResponder - - YES - - YES - bold: - defaultStyle: - deleteToBeginningOfLine: - deleteWordBackward: - italic: - shiftLeftAction: - shiftRightAction: - strikethroughNV: + + id + id + id + id + id + id + id + id + + + + bold: + id - - YES - id - id - id - id - id - id - id - id + + defaultStyle: + id - - - YES - - YES - bold: - defaultStyle: - deleteToBeginningOfLine: - deleteWordBackward: - italic: - shiftLeftAction: - shiftRightAction: - strikethroughNV: + + deleteToBeginningOfLine: + id - - YES - - bold: - id - - - defaultStyle: - id - - - deleteToBeginningOfLine: - id - - - deleteWordBackward: - id - - - italic: - id - - - shiftLeftAction: - id - - - shiftRightAction: - id - - - strikethroughNV: - id - + + deleteWordBackward: + id - + + italic: + id + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + strikethroughNV: + id + + IBUserSource @@ -5899,70 +5117,39 @@ LinkingEditor NSTextView - - YES - - YES - shiftLeftAction: - shiftRightAction: - - - YES - id - id - - - - YES - - YES - shiftLeftAction: - shiftRightAction: - - - YES - - shiftLeftAction: - id - - - shiftRightAction: - id - + + id + id + id + + + + insertLink: + id - - - YES - - YES - controlField - notesTableView + + shiftLeftAction: + id - - YES - NSTextField - NotesTableView + + shiftRightAction: + id - - - YES - - YES - controlField - notesTableView + + + NSTextField + NotesTableView + + + + controlField + NSTextField - - YES - - controlField - NSTextField - - - notesTableView - NotesTableView - + + notesTableView + NotesTableView - + IBProjectSource ./Classes/LinkingEditor.h @@ -5970,66 +5157,40 @@ NSDocument - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: + + id + id + id + id + id + id + + + + printDocument: + id - - YES - id - id - id - id - id - id + + revertDocumentToSaved: + id - - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: + + runPageLayout: + id - - YES - - printDocument: - id - - - revertDocumentToSaved: - id - - - runPageLayout: - id - - - saveDocument: - id - - - saveDocumentAs: - id - - - saveDocumentTo: - id - + + saveDocument: + id - + + saveDocumentAs: + id + + + saveDocumentTo: + id + + IBProjectSource ./Classes/NSDocument.h @@ -6038,38 +5199,20 @@ NotesTableView NSTableView - - YES - - YES - actionHideShowColumn: - toggleNoteBodyPreviews: - - - YES - id - id - - - - YES - - YES - actionHideShowColumn: - toggleNoteBodyPreviews: + + id + id + + + + actionHideShowColumn: + id - - YES - - actionHideShowColumn: - id - - - toggleNoteBodyPreviews: - id - + + toggleNoteBodyPreviews: + id - + controlField NSTextField @@ -6120,36 +5263,19 @@ ./Classes/WordCountToken.h - + 0 IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - + YES 3 - - YES - - YES - NSMenuCheckmark - NSMenuMixedState - - - YES - {9, 8} - {7, 2} - - + + {9, 8} + {7, 2} + diff --git a/English.lproj/MarkupPreview.xib b/English.lproj/MarkupPreview.xib index f714f7a0..c3e44abf 100644 --- a/English.lproj/MarkupPreview.xib +++ b/English.lproj/MarkupPreview.xib @@ -1,26 +1,16 @@ - + 1050 10J869 - 1305 + 1306 1038.35 461.00 - - YES - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.WebKitIBPlugin - - - YES - 1305 - 30 - - - - YES + + 1306 + 30 + + NSTextView NSScroller NSButton @@ -35,21 +25,13 @@ NSView NSTextField NSCustomView - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin com.apple.WebKitIBPlugin - - - YES - - YES - - - - - YES + + + PreviewController @@ -62,14 +44,12 @@ 268 - - YES + 268 {{4, 61}, {12, 13}} - YES @@ -103,8 +83,6 @@ 264 {{0, 47}, {256, 14}} - - YES 68288064 @@ -131,25 +109,21 @@ - + {256, 78} - NSView - + 268 - - YES + 268 {{-3, 43}, {244, 14}} - - YES 68288064 @@ -164,10 +138,8 @@ - + {238, 65} - - NSView @@ -181,71 +153,57 @@ {350, 400} - + 256 - - YES + 4114 {{0, 34}, {445, 494}} - - - YES + 1 256 - - YES + 274 - - YES - - YES - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple URL pasteboard type - Apple Web Archive pasteboard type - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - WebURLsWithTitlesPboardType - public.png - public.url - public.url-name - - + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple URL pasteboard type + Apple Web Archive pasteboard type + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + WebURLsWithTitlesPboardType + public.png + public.url + public.url-name + {445, 494} - previewWebView - - YES - - - + NO YES - + {445, 494} - Preview @@ -257,18 +215,15 @@ 256 - - YES + 274 - - YES + 2304 - - YES + 2322 @@ -283,10 +238,9 @@ - - YES + - + 134 @@ -302,54 +256,35 @@ 3 MQA - - YES - - YES - NSBackgroundColor - NSColor + + + 6 + System + selectedTextBackgroundColor + - - YES - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - 3 - MAA - + + 6 + System + selectedTextColor + + 3 + MAA - + - - YES - - YES - NSColor - NSCursor - NSUnderline + + + 1 + MCAwIDEAA - - YES - - 1 - MCAwIDEAA - - - {8, -8} - 13 - - + + {8, -8} + 13 - + + 6 @@ -357,7 +292,7 @@ {223, 0} - + {445, 494} @@ -391,7 +326,7 @@ 1 0.94565218687057495 - + {445, 494} @@ -400,7 +335,7 @@ - + {445, 494} @@ -408,7 +343,7 @@ - + LucidaGrande @@ -417,17 +352,15 @@ 6 YES - - YES + - + 289 {{300, 7}, {28, 19}} - YES 0.80000000000000004 @@ -460,8 +393,6 @@ 289 {{404, 7}, {28, 19}} - - YES 0.80000000000000004 2 @@ -489,7 +420,6 @@ 289 {{370, 7}, {28, 19}} - YES 0.80000000000000004 @@ -518,7 +448,6 @@ 289 {{334, 7}, {28, 19}} - YES 0.80000000000000004 @@ -547,7 +476,6 @@ 292 {{10, 7}, {99, 19}} - YES @@ -569,10 +497,8 @@ 75 - + {{7, 11}, {445, 528}} - - {{0, 0}, {1920, 1058}} @@ -580,10 +506,9 @@ {1e+13, 1e+13} PreviewPanel - + - - YES + shareNotification @@ -768,13 +693,12 @@ 287 - + - - YES + 0 - + @@ -799,31 +723,28 @@ 133 - - YES + - + Share URL 157 - - YES + - + Confirm Share 189 - - YES + - + @@ -834,10 +755,9 @@ 192 - - YES + - + @@ -848,10 +768,9 @@ 200 - - YES + - + @@ -862,82 +781,74 @@ 214 - - YES + - + Panel - Preview 215 - - YES + - + 216 - - YES + - + 217 - - YES + - + 218 - - YES + - + 219 - - YES + - + 220 - - YES + - + 225 - - YES + - + @@ -963,10 +874,9 @@ 261 - - YES + - + @@ -977,10 +887,9 @@ 263 - - YES + - + @@ -991,10 +900,9 @@ 265 - - YES + - + @@ -1005,10 +913,9 @@ 267 - - YES + - + @@ -1019,10 +926,9 @@ 284 - - YES + - + @@ -1030,394 +936,96 @@ - + - - YES - - YES - -2.IBAttributePlaceholdersKey - 133.IBEditorWindowLastContentRect - 133.IBPluginDependency - 133.IBViewBoundsToFrameTransform - 157.IBEditorWindowLastContentRect - 157.IBPluginDependency - 157.IBViewBoundsToFrameTransform - 189.IBPluginDependency - 189.IBViewBoundsToFrameTransform - 190.IBPluginDependency - 192.IBPluginDependency - 192.IBViewBoundsToFrameTransform - 193.IBPluginDependency - 200.IBPluginDependency - 200.IBViewBoundsToFrameTransform - 201.IBPluginDependency - 214.IBPluginDependency - 214.NSWindowTemplate.visibleAtLaunch - 215.IBPluginDependency - 216.IBPluginDependency - 217.IBPluginDependency - 218.IBPluginDependency - 225.IBPluginDependency - 226.IBPluginDependency - 227.IBPluginDependency - 228.IBPluginDependency - 229.IBPluginDependency - 261.IBAttributePlaceholdersKey - 261.IBPluginDependency - 261.IBViewIntegration.shadowBlurRadius - 261.IBViewIntegration.shadowColor - 261.IBViewIntegration.shadowOffsetHeight - 261.IBViewIntegration.shadowOffsetWidth - 262.IBPluginDependency - 263.IBAttributePlaceholdersKey - 263.IBPluginDependency - 264.IBPluginDependency - 265.IBAttributePlaceholdersKey - 265.IBPluginDependency - 266.IBPluginDependency - 267.IBAttributePlaceholdersKey - 267.IBPluginDependency - 268.IBPluginDependency - 284.IBPluginDependency - 285.IBPluginDependency + + + {{471, 675}, {206, 55}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{499, 564}, {238, 65}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCPAAAwjAAAA - - YES - - YES - - - - {{471, 675}, {206, 55}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{499, 564}, {238, 65}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCPAAAwjAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDNAAAwkAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAADAQAAAwlwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.WebKitIBPlugin - - ToolTip - - ToolTip - - Lock note to preview - + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDNAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAADAQAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + ToolTip + + ToolTip + + Lock note to preview - com.apple.InterfaceBuilder.CocoaPlugin - - - - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Save Preview - + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Save Preview - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Share on Peggd - + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Share on Peggd - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Print/PDF - + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Print/PDF - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - - + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - - + 287 - - - YES - - PreviewController - NSWindowController - - YES - - YES - cancelShare: - hideShareURL: - makePreviewNotSticky: - makePreviewSticky: - openShareURL: - printPreview: - saveHTML: - shareAsk: - shareNote: - switchTabs: - - - YES - id - id - id - id - id - id - id - id - id - id - - - - YES - - YES - cancelShare: - hideShareURL: - makePreviewNotSticky: - makePreviewSticky: - openShareURL: - printPreview: - saveHTML: - shareAsk: - shareNote: - switchTabs: - - - YES - - cancelShare: - id - - - hideShareURL: - id - - - makePreviewNotSticky: - id - - - makePreviewSticky: - id - - - openShareURL: - id - - - printPreview: - id - - - saveHTML: - id - - - shareAsk: - id - - - shareNote: - id - - - switchTabs: - id - - - - - YES - - YES - accessoryView - includeTemplate - preview - printPreviewButton - saveButton - shareButton - shareConfirmation - shareNotification - sourceView - stickyPreviewButton - tabSwitcher - tabView - templateNote - urlTextField - - - YES - NSView - NSButton - WebView - NSButton - NSButton - NSButton - NSView - NSView - NSTextView - NSButton - NSButton - NSTabView - NSTextField - NSTextField - - - - YES - - YES - accessoryView - includeTemplate - preview - printPreviewButton - saveButton - shareButton - shareConfirmation - shareNotification - sourceView - stickyPreviewButton - tabSwitcher - tabView - templateNote - urlTextField - - - YES - - accessoryView - NSView - - - includeTemplate - NSButton - - - preview - WebView - - - printPreviewButton - NSButton - - - saveButton - NSButton - - - shareButton - NSButton - - - shareConfirmation - NSView - - - shareNotification - NSView - - - sourceView - NSTextView - - - stickyPreviewButton - NSButton - - - tabSwitcher - NSButton - - - tabView - NSTabView - - - templateNote - NSTextField - - - urlTextField - NSTextField - - - - - IBProjectSource - ./Classes/PreviewController.h - - - - WebView - - reloadFromOrigin: - id - - - reloadFromOrigin: - - reloadFromOrigin: - id - - - - IBProjectSource - ./Classes/WebView.h - - - - + 0 IBCocoaFramework @@ -1428,32 +1036,15 @@ com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES 3 - - YES - - YES - HUDIconLock - HUDIconPrint - HUDIconSave - HUDIconShare - TabClose_Front_Pressed - TabClose_Front_Rollover - - - YES - {512, 512} - {512, 512} - {512, 512} - {512, 512} - {12, 13} - {12, 13} - - + + {512, 512} + {512, 512} + {512, 512} + {512, 512} + {12, 13} + {12, 13} + diff --git a/English.lproj/NotationPrefsView.nib/designable.nib b/English.lproj/NotationPrefsView.nib/designable.nib index 61a031f8..cc167e29 100644 --- a/English.lproj/NotationPrefsView.nib/designable.nib +++ b/English.lproj/NotationPrefsView.nib/designable.nib @@ -1,34 +1,47 @@ - + - 1030 - 10J567 - 740 + 1050 + 10J869 + 1306 1038.35 - 462.00 + 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 740 + 1306 - - YES - - - - YES + + NSMatrix + NSMenuItem + NSMenu + NSScroller + NSButton + NSTableHeaderView + NSCustomObject + NSImageView + NSTableView + NSCustomView + NSImageCell + NSTextField + NSWindowTemplate + NSTextFieldCell + NSStepperCell + NSButtonCell + NSTableColumn + NSBox + NSPopUpButtonCell + NSView + NSScrollView + NSTabViewItem + NSPopUpButton + NSStepper + NSTabView + + com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES + + + NotationPrefsViewController @@ -41,22 +54,19 @@ 256 - - YES + 274 {{-12, -10}, {393, 362}} - - YES + sync 256 - - YES + 256 @@ -220,18 +230,14 @@ -2147483380 - - YES - - YES - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - NSFilenamesPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT TIFF v4.0 pasteboard type - - + + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + {{330, 239}, {16, 16}} YES @@ -316,8 +322,7 @@ YES OtherViews - - YES + minute @@ -355,7 +360,7 @@ 30 - + 1 1 @@ -410,18 +415,14 @@ 268 - - YES - - YES - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - NSFilenamesPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT TIFF v4.0 pasteboard type - - + + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + {{27, 17}, {18, 18}} YES @@ -455,7 +456,7 @@ - + {{10, 33}, {373, 316}} @@ -468,18 +469,15 @@ 256 - - YES + 256 - - YES + 2304 - - YES + 256 @@ -502,8 +500,7 @@ - - YES + 73.755369999999999 60.147950000000002 @@ -540,7 +537,7 @@ YES - + 3 2 @@ -563,7 +560,7 @@ YES 0 - + {{1, 17}, {77, 74}} @@ -595,10 +592,9 @@ 2304 - - YES + - + {{1, 0}, {77, 17}} @@ -607,7 +603,7 @@ 4 - + {{80, 73}, {90, 92}} @@ -616,19 +612,16 @@ - QSAAAEEgAABBgAAAQYAAAA 256 - - YES + 2304 - - YES + 256 @@ -651,8 +644,7 @@ - - YES + 73.62012 55.62012 @@ -679,7 +671,7 @@ YES - + 3 2 @@ -694,7 +686,7 @@ YES 0 - + {{1, 17}, {77, 74}} @@ -726,10 +718,9 @@ 2304 - - YES + - + {{1, 0}, {77, 17}} @@ -738,7 +729,7 @@ 4 - + {{199, 73}, {90, 92}} @@ -747,7 +738,6 @@ - QSAAAEEgAABBgAAAQYAAAA @@ -1005,8 +995,7 @@ OtherViews - - YES + @@ -1058,7 +1047,7 @@ 3 - + 3 YES @@ -1066,7 +1055,7 @@ 1 - + {{10, 33}, {373, 316}} @@ -1079,8 +1068,7 @@ 256 - - YES + 256 @@ -1107,8 +1095,7 @@ YES 2 1 - - YES + -2080244224 0 @@ -1142,7 +1129,7 @@ 200 25 - + {172, 18} {4, 2} 1143472128 @@ -1157,10 +1144,8 @@ 549453824 {18, 18} - - YES - - YES + + @@ -1231,8 +1216,8 @@ gIE+wROVPyCgoT9NlUsAAAAAAAAAAD+AAAA/gAAAPoCAgT8JRt8/gAAAP4AAAD+AAAA/gAAAP4AAAD+A AAA - - + + 3 MCAwAA @@ -1445,7 +1430,7 @@ AAA 25 - + {{10, 33}, {373, 316}} @@ -1453,18 +1438,17 @@ AAA - + 0 YES YES - - YES + - + - + {368, 346} NSView @@ -1482,13 +1466,11 @@ AAA View - {1.79769e+308, 1.79769e+308} {213, 107} 256 - - YES + 256 @@ -1508,17 +1490,16 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A - + {{1, 1}, {360, 240}} - {{0, 0}, {1920, 1178}} + {{0, 0}, {1440, 878}} {213, 129} - {1.79769e+308, 1.79769e+308} + {1e+13, 1e+13} - + - - YES + nextKeyView @@ -1895,13 +1876,12 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 267 - + - - YES + 0 - + @@ -1926,38 +1906,34 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 5 - - YES + - + View 6 - - YES + - + 7 - - YES + - + 8 - - YES + @@ -1970,164 +1946,147 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A - + 9 - - YES + - + 10 - - YES + - + 11 - - YES + - + 12 - - YES + - + 13 - - YES + - + 14 - - YES + - + 15 - - YES + - + 16 - - YES + - + 18 - - YES + - + 19 - - YES + - + 20 - - YES + - + 21 - - YES + - + 92 - - YES + - + 93 - - YES + - + 98 - - YES + - + 22 - - YES + - + 23 - - YES + @@ -2140,18 +2099,17 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A - + 24 - - YES + - + @@ -2167,116 +2125,103 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 29 - - YES + - + 30 - - YES + - + 32 - - YES + - + 34 - - YES + - + 110 - - YES + - + 111 - - YES + - + 112 - - YES + - + 128 - - YES + - + 129 - - YES + - + 130 - - YES + - + 133 - - YES + - + 36 - - YES + - + 37 - - YES + @@ -2291,66 +2236,60 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A - + 39 - - YES + - + 40 - - YES + - + 41 - - YES + - + 42 - - YES + - + 43 - - YES + - + 108 - - YES + 256 {{2, 2}, {125, 1}} - + @@ -2361,83 +2300,74 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 113 - - YES + - + 179 - - YES + - + 184 - - YES + - + 188 - - YES + - + 194 - - YES + - + 199 - - YES + - + 121 - - YES + - + web hosting options 122 - - YES + - + 125 - - YES + - + @@ -2483,10 +2413,9 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 224 - - YES + - + @@ -2587,10 +2516,9 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 244 - - YES + - + @@ -2626,14 +2554,13 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 99 - - YES + - + @@ -2664,13 +2591,12 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 190 - - YES + - + @@ -2726,10 +2652,9 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 257 - - YES + - + @@ -2740,10 +2665,9 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 259 - - YES + - + @@ -2754,10 +2678,9 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A 263 - - YES + - + @@ -2765,1492 +2688,274 @@ ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A - + - - YES - - YES - -3.IBPluginDependency - -3.ImportedFromIB2 - 10.CustomClassName - 10.IBPluginDependency - 10.ImportedFromIB2 - 100.IBPluginDependency - 100.ImportedFromIB2 - 101.IBPluginDependency - 101.ImportedFromIB2 - 102.IBPluginDependency - 102.ImportedFromIB2 - 103.IBPluginDependency - 103.ImportedFromIB2 - 108.IBPluginDependency - 108.ImportedFromIB2 - 109.IBPluginDependency - 109.ImportedFromIB2 - 11.IBPluginDependency - 11.ImportedFromIB2 - 110.IBPluginDependency - 110.ImportedFromIB2 - 111.IBPluginDependency - 111.ImportedFromIB2 - 112.IBPluginDependency - 112.ImportedFromIB2 - 113.IBPluginDependency - 113.ImportedFromIB2 - 12.IBPluginDependency - 12.ImportedFromIB2 - 121.IBPluginDependency - 121.ImportedFromIB2 - 121.windowTemplate.hasMinSize - 121.windowTemplate.minSize - 122.IBPluginDependency - 122.ImportedFromIB2 - 125.IBPluginDependency - 125.ImportedFromIB2 - 127.IBPluginDependency - 127.ImportedFromIB2 - 128.IBPluginDependency - 128.ImportedFromIB2 - 129.IBPluginDependency - 129.ImportedFromIB2 - 13.CustomClassName - 13.IBPluginDependency - 13.ImportedFromIB2 - 130.IBPluginDependency - 130.ImportedFromIB2 - 133.IBPluginDependency - 133.ImportedFromIB2 - 14.IBPluginDependency - 14.ImportedFromIB2 - 15.IBPluginDependency - 15.ImportedFromIB2 - 16.IBAttributePlaceholdersKey - 16.IBPluginDependency - 16.ImportedFromIB2 - 179.IBPluginDependency - 179.ImportedFromIB2 - 18.IBPluginDependency - 18.ImportedFromIB2 - 184.IBPluginDependency - 184.ImportedFromIB2 - 188.IBPluginDependency - 188.ImportedFromIB2 - 19.IBAttributePlaceholdersKey - 19.IBPluginDependency - 19.ImportedFromIB2 - 190.IBPluginDependency - 190.ImportedFromIB2 - 191.IBPluginDependency - 191.ImportedFromIB2 - 192.IBPluginDependency - 192.ImportedFromIB2 - 193.IBPluginDependency - 193.ImportedFromIB2 - 194.IBPluginDependency - 194.ImportedFromIB2 - 196.IBPluginDependency - 196.ImportedFromIB2 - 199.IBPluginDependency - 199.ImportedFromIB2 - 20.IBAttributePlaceholdersKey - 20.IBPluginDependency - 20.ImportedFromIB2 - 21.IBAttributePlaceholdersKey - 21.IBPluginDependency - 21.ImportedFromIB2 - 216.IBPluginDependency - 217.IBPluginDependency - 218.IBPluginDependency - 219.IBPluginDependency - 22.IBPluginDependency - 22.ImportedFromIB2 - 220.IBPluginDependency - 221.IBPluginDependency - 222.IBPluginDependency - 223.IBPluginDependency - 224.IBPluginDependency - 225.IBPluginDependency - 226.IBPluginDependency - 227.IBPluginDependency - 228.IBPluginDependency - 229.IBPluginDependency - 23.IBPluginDependency - 23.ImportedFromIB2 - 230.IBPluginDependency - 231.IBPluginDependency - 232.IBPluginDependency - 233.IBPluginDependency - 234.IBPluginDependency - 235.IBPluginDependency - 236.IBPluginDependency - 237.IBPluginDependency - 238.IBPluginDependency - 239.IBPluginDependency - 24.IBPluginDependency - 24.ImportedFromIB2 - 240.IBPluginDependency - 241.IBPluginDependency - 242.IBPluginDependency - 243.IBPluginDependency - 244.IBPluginDependency - 245.IBPluginDependency - 246.IBPluginDependency - 247.IBPluginDependency - 248.IBPluginDependency - 249.IBPluginDependency - 249.IBShouldRemoveOnLegacySave - 25.IBPluginDependency - 25.ImportedFromIB2 - 250.IBPluginDependency - 250.IBShouldRemoveOnLegacySave - 251.IBPluginDependency - 251.IBShouldRemoveOnLegacySave - 252.IBPluginDependency - 252.IBShouldRemoveOnLegacySave - 253.IBPluginDependency - 253.IBShouldRemoveOnLegacySave - 254.IBPluginDependency - 254.IBShouldRemoveOnLegacySave - 255.IBPluginDependency - 255.IBShouldRemoveOnLegacySave - 256.IBPluginDependency - 256.IBShouldRemoveOnLegacySave - 257.IBPluginDependency - 258.IBPluginDependency - 259.IBPluginDependency - 26.IBPluginDependency - 26.ImportedFromIB2 - 260.IBPluginDependency - 263.IBAttributePlaceholdersKey - 263.IBPluginDependency - 263.ImportedFromIB2 - 264.IBPluginDependency - 29.IBPluginDependency - 29.ImportedFromIB2 - 30.IBPluginDependency - 30.ImportedFromIB2 - 32.IBPluginDependency - 32.ImportedFromIB2 - 34.IBPluginDependency - 34.ImportedFromIB2 - 36.IBPluginDependency - 36.ImportedFromIB2 - 37.IBPluginDependency - 37.ImportedFromIB2 - 39.IBAttributePlaceholdersKey - 39.IBPluginDependency - 39.ImportedFromIB2 - 40.IBPluginDependency - 40.ImportedFromIB2 - 41.IBPluginDependency - 41.ImportedFromIB2 - 42.IBPluginDependency - 42.ImportedFromIB2 - 43.CustomClassName - 43.IBPluginDependency - 43.ImportedFromIB2 - 5.IBEditorWindowLastContentRect - 5.IBPluginDependency - 5.ImportedFromIB2 - 6.IBPluginDependency - 6.ImportedFromIB2 - 7.IBPluginDependency - 7.ImportedFromIB2 - 8.IBPluginDependency - 8.ImportedFromIB2 - 9.IBPluginDependency - 9.ImportedFromIB2 - 92.IBPluginDependency - 92.ImportedFromIB2 - 93.IBPluginDependency - 93.ImportedFromIB2 - 98.IBPluginDependency - 98.ImportedFromIB2 - 99.IBPluginDependency - 99.ImportedFromIB2 - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - FileKindListView - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - {213, 107} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - FileKindListView - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - ToolTip - - ToolTip - - Add new file type - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - ToolTip - - ToolTip - - Remove file extension - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - ToolTip - - ToolTip - - Add new file extension - - - com.apple.InterfaceBuilder.CocoaPlugin - - - ToolTip - - ToolTip - - Remove file type - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - ToolTip - - ToolTip - - Set as default file extension for new notes - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - - YES - + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + FileKindListView + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + FileKindListView + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Add new file type + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Remove file extension + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Add new file extension - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - - {{390, 475}, {368, 346}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - YES - - - YES - - + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Remove file type + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Set as default file extension for new notes + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + {{390, 475}, {368, 346}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + - - YES - - - YES - - + 267 - - - YES - - FileKindListView - NSTableView - - storageFormatPopupButton - NSPopUpButton - - - IBProjectSource - NotationPrefsViewController.h - - - - FileKindListView - NSTableView - - IBUserSource - - - - - FirstResponder - NSObject - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - FastListDataSource.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSObject - - YES - - YES - didAdjustSubviews: - willAdjustSubviews: - - - YES - RBSplitView - RBSplitView - - - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - NSObject - - IBUserSource - - - - - NSTableHeaderView - - IBProjectSource - HeaderViewWIthMenu.h - - - - NSTableHeaderView - NSView - - IBUserSource - - - - - NSTableView - - IBProjectSource - NotesTableView.h - - - - NSTableView - NSControl - - IBUserSource - - - - - NSWindow - NSResponder - - IBUserSource - - - - - NotationPrefsViewController - NSObject - - YES - - YES - addedExtension: - addedType: - changePassphrase: - changedFileDeletionWarningSettings: - changedFileStorageFormat: - changedKeyLength: - changedKeychainSettings: - changedSecureTextEntry: - makeDefaultExtension: - removeFromKeychain: - removedExtension: - removedType: - syncFrequencyChange: - toggledEncryption: - toggledSyncing: - visitSimplenoteSite: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - - - - YES - - YES - allowedExtensionsTable - allowedTypesTable - changePasswordButton - confirmFileDeletionButton - enableEncryptionButton - enabledSyncButton - fileAttributesHelpText - keyLengthField - keyLengthStepper - makeDefaultExtensionButton - newExtensionButton - newTypeButton - passwordSettingsMatrix - removeExtensionButton - removeFromKeychainButton - removeTypeButton - secureTextEntryButton - storageFormatPopupButton - syncAccountField - syncEncAlertField - syncEncAlertView - syncPasswordField - syncingFrequency - verifyStatusField - verifyStatusImageView - view - webOptionsWindow - - - YES - NSTableView - NSTableView - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSStepper - NSButton - NSButton - NSButton - NSMatrix - NSButton - NSButton - NSButton - NSButton - NSPopUpButton - NSTextField - NSTextField - NSImageView - NSTextField - NSPopUpButton - NSTextField - NSImageView - NSView - NSWindow - - - - - - NotationPrefsViewController - NSObject - - IBUserSource - - - - - RBSplitSubview - NSView - - IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h - - - - RBSplitSubview - NSView - - IBUserSource - - - - - RBSplitView - RBSplitSubview - - delegate - id - - - - - RBSplitView - - - - RBSplitView - RBSplitSubview - - IBUserSource - - - - - - YES - - NSActionCell - NSCell - - IBFrameworkSource - AppKit.framework/Headers/NSActionCell.h - - - - NSApplication - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSApplication.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSApplicationScripting.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSColorPanel.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSHelpManager.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSPageLayout.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSUserInterfaceItemSearching.h - - - - NSBox - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSBox.h - - - - NSButton - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSButton.h - - - - NSButtonCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSButtonCell.h - - - - NSCell - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSCell.h - - - - NSControl - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSControl.h - - - - NSFormatter - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFormatter.h - - - - NSImageCell - NSCell - - IBFrameworkSource - AppKit.framework/Headers/NSImageCell.h - - - - NSImageView - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSImageView.h - - - - NSMatrix - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSMatrix.h - - - - NSMenu - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSMenu.h - - - - NSMenuItem - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSMenuItem.h - - - - NSMenuItemCell - NSButtonCell - - IBFrameworkSource - AppKit.framework/Headers/NSMenuItemCell.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSAccessibility.h - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDictionaryController.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDragging.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontManager.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontPanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSKeyValueBinding.h - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSNibLoading.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSOutlineView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSPasteboard.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSSavePanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSTableView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSToolbarItem.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSView.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObjectScripting.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSPortCoder.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptObjectSpecifiers.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptWhoseTests.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLDownload.h - - - - NSObject - - IBFrameworkSource - PrintCore.framework/Headers/PDEPluginInterface.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFAuthorizationView.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFCertificatePanel.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFChooseIdentityPanel.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUAppcast.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUUpdater.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebDownload.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebEditingDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebFrameLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebJavaPlugIn.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPlugin.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPluginContainer.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPolicyDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebResourceLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebScriptObject.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebUIDelegate.h - - - - NSPanel - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSPanel.h - - - - NSPopUpButton - NSButton - - IBFrameworkSource - AppKit.framework/Headers/NSPopUpButton.h - - - - NSPopUpButtonCell - NSMenuItemCell - - IBFrameworkSource - AppKit.framework/Headers/NSPopUpButtonCell.h - - - - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSInterfaceStyle.h - - - - NSResponder - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSResponder.h - - - - NSScrollView - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSScrollView.h - - - - NSScroller - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSScroller.h - - - - NSSecureTextField - NSTextField - - IBFrameworkSource - AppKit.framework/Headers/NSSecureTextField.h - - - - NSStepper - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSStepper.h - - - - NSStepperCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSStepperCell.h - - - - NSTabView - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSTabView.h - - - - NSTabViewItem - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSTabViewItem.h - - - - NSTableColumn - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSTableColumn.h - - - - NSTableHeaderView - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSTableHeaderView.h - - - - NSTableView - NSControl - - - - NSTextField - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSTextField.h - - - - NSTextFieldCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSTextFieldCell.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSClipView.h - - - - NSView - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSRulerView.h - - - - NSView - NSResponder - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSDrawer.h - - - - NSWindow - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSWindow.h - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSWindowScripting.h - - - - + 0 + IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - + com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES - ../Notation.xcodeproj 3 + + {23, 22} + {23, 22} + {22, 22} + {22, 22} + {9, 8} + {7, 2} + {15, 15} + {22, 22} + {22, 22} + {18, 18} + {16, 16} + diff --git a/English.lproj/NotationPrefsView.nib/keyedobjects.nib b/English.lproj/NotationPrefsView.nib/keyedobjects.nib index 2f43e20e..73b3d23f 100644 Binary files a/English.lproj/NotationPrefsView.nib/keyedobjects.nib and b/English.lproj/NotationPrefsView.nib/keyedobjects.nib differ diff --git a/English.lproj/PTKeyComboPanel.nib/classes.nib b/English.lproj/PTKeyComboPanel.nib/classes.nib deleted file mode 100755 index 0b908963..00000000 --- a/English.lproj/PTKeyComboPanel.nib/classes.nib +++ /dev/null @@ -1,18 +0,0 @@ -{ - IBClasses = ( - {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, - {CLASS = PTKeyBroadcaster; LANGUAGE = ObjC; SUPERCLASS = NSButton; }, - { - ACTIONS = {cancel = id; clear = id; ok = id; }; - CLASS = PTKeyComboPanel; - LANGUAGE = ObjC; - OUTLETS = { - mComboField = NSTextField; - mKeyBcaster = PTKeyBroadcaster; - mTitleField = NSTextField; - }; - SUPERCLASS = NSWindowController; - } - ); - IBVersion = 1; -} \ No newline at end of file diff --git a/English.lproj/PTKeyComboPanel.nib/designable.nib b/English.lproj/PTKeyComboPanel.nib/designable.nib new file mode 100644 index 00000000..10b24aba --- /dev/null +++ b/English.lproj/PTKeyComboPanel.nib/designable.nib @@ -0,0 +1,547 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSTextField + NSView + NSWindowTemplate + NSTextFieldCell + NSButtonCell + NSImageCell + NSImageView + NSButton + NSCustomObject + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + PTKeyComboPanel + + + FirstResponder + + + NSApplication + + + 1 + 2 + {{290, 345}, {394, 165}} + 1886912512 + + NSWindow + + View + + {213, 107} + + + 256 + + + + 256 + {{152, 60}, {173, 22}} + + YES + + -2072904127 + 138413056 + + + LucidaGrande + 13 + 1044 + + none + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + 3 + MAA + + + + + + + 256 + {{130, 12}, {84, 32}} + + YES + + 67239424 + 137887744 + None + + + -2038284033 + 1 + + Helvetica + 13 + 16 + + + + + + 200 + 25 + + + + + 256 + {{214, 12}, {82, 32}} + + YES + + 67239424 + 137887744 + Cancel + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 256 + {{69, 90}, {308, 55}} + + YES + + 67239424 + 4194304 + Press a key combination to %@. + + LucidaGrande-Bold + 13 + 2072 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + + + + + + 256 + {{69, 62}, {81, 17}} + + YES + + 67239424 + 71303168 + Keystroke: + + + + + + + + + 256 + {{296, 12}, {84, 32}} + + YES + + 67239424 + 134217728 + OK + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 256 + {{44, 60}, {22, 20}} + + YES + + 67239424 + 0 + + + + 1211945471 + 2 + + NSRadioButton + + + + + + 200 + 25 + + + + + 256 + + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + {{20, 113}, {32, 32}} + + YES + + 130560 + 33554432 + + NSImage + PTKeyboardIcon + + 0 + 2 + 0 + NO + + YES + + + {{7, 11}, {394, 165}} + + + {{0, 0}, {1440, 878}} + {213, 129} + {1e+13, 1e+13} + + + + + + + ok: + + + + 31 + + + + clear: + + + + 34 + + + + window + + + + 41 + + + + mKeyBcaster + + + + 45 + + + + mComboField + + + + 46 + + + + mTitleField + + + + 47 + + + + cancel: + + + + 51 + + + + initialFirstResponder + + + + 52 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 19 + + + + + + Panel + + + 20 + + + + + + + + + + + + + + + 22 + + + + + + + + 23 + + + + + + + + 24 + + + + + + + + 26 + + + + + + + + 27 + + + + + + + + 28 + + + + + + + + 33 + + + + + + + + 48 + + + + + + + + 54 + + + + + 55 + + + + + 56 + + + + + 57 + + + + + 58 + + + + + 59 + + + + + 60 + + + + + 61 + + + + + -3 + + + Application + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + PTKeyBroadcaster + + ToolTip + + ToolTip + + CkJhc2VkIG9uIENvY29hSG90S2V5TGliCmh0dHA6Ly93d3cucm9ndWVhbW9lYmEuY29tLwo + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + + 61 + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + PTKeyboardIcon + {32, 32} + + + diff --git a/English.lproj/PTKeyComboPanel.nib/info.nib b/English.lproj/PTKeyComboPanel.nib/info.nib deleted file mode 100755 index 249bb07f..00000000 --- a/English.lproj/PTKeyComboPanel.nib/info.nib +++ /dev/null @@ -1,26 +0,0 @@ - - - - - IBDocumentLocation - 157 48 356 240 0 0 1680 1028 - IBFramework Version - 446.1 - IBGroupedObjects - - 10 - - 22 - 27 - - - IBLastGroupID - 11 - IBOpenObjects - - 19 - - IBSystem Version - 8L127 - - diff --git a/English.lproj/PTKeyComboPanel.nib/keyedobjects.nib b/English.lproj/PTKeyComboPanel.nib/keyedobjects.nib old mode 100755 new mode 100644 index ccb5c784..bc7823bf Binary files a/English.lproj/PTKeyComboPanel.nib/keyedobjects.nib and b/English.lproj/PTKeyComboPanel.nib/keyedobjects.nib differ diff --git a/English.lproj/PassphraseChanger.nib/designable.nib b/English.lproj/PassphraseChanger.nib/designable.nib index 7e1f62aa..3cf8e870 100644 --- a/English.lproj/PassphraseChanger.nib/designable.nib +++ b/English.lproj/PassphraseChanger.nib/designable.nib @@ -1,34 +1,30 @@ - + - 1060 - 10C540 - 740 - 1038.25 - 458.00 + 1050 + 10J869 + 1306 + 1038.35 + 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 740 + 1306 - - YES - - - - YES + + NSTextField + NSView + NSWindowTemplate + NSTextFieldCell + NSCustomView + NSButtonCell + NSButton + NSCustomObject + + com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES + + + PassphraseChangerController @@ -53,18 +49,15 @@ View - {1.79769e+308, 1.79769e+308} {213, 107} 256 - - YES + 264 - - YES + 266 @@ -319,7 +312,7 @@ NSView NSResponder - + {{0, -85}, {506, 300}} NSView @@ -327,8 +320,7 @@ 289 - - YES + 256 @@ -371,23 +363,22 @@ 25 - + {{314, 0}, {192, 60}} NSView - - {506, 215} + + {{7, 11}, {506, 215}} - {{0, 0}, {1920, 1178}} + {{0, 0}, {1440, 878}} {213, 129} - {1.79769e+308, 1.79769e+308} + {1e+13, 1e+13} - + - - YES + showPasswordAssistantPanel: @@ -580,13 +571,12 @@ 391 - + - - YES + 0 - + @@ -611,56 +601,50 @@ 343 - - YES + - + Select a passphrase 344 - - YES + - + 384 - - YES + - + 354 - - YES + - + 355 - - YES + - + 385 - - YES + @@ -673,106 +657,95 @@ - + 346 - - YES + - + 351 - - YES + - + 353 - - YES + - + 356 - - YES + - + 357 - - YES + - + 358 - - YES + - + 360 - - YES + - + 373 - - YES + - + 374 - - YES + - + 381 - - YES + - + 382 - - YES + - + @@ -851,913 +824,112 @@ Application - - - - YES - - YES - 342.ImportedFromIB2 - 343.IBEditorWindowLastContentRect - 343.IBPluginDependency - 343.IBPropertyAccessControl - 343.IBWindowTemplateEditedContentRect - 343.ImportedFromIB2 - 343.windowTemplate.hasMinSize - 343.windowTemplate.minSize - 344.IBPluginDependency - 344.ImportedFromIB2 - 346.IBPluginDependency - 346.IBPropertyAccessControl - 346.ImportedFromIB2 - 351.IBPluginDependency - 351.IBPropertyAccessControl - 351.ImportedFromIB2 - 353.IBPluginDependency - 353.IBPropertyAccessControl - 353.ImportedFromIB2 - 354.IBPluginDependency - 354.IBPropertyAccessControl - 354.ImportedFromIB2 - 355.IBPluginDependency - 355.IBPropertyAccessControl - 355.ImportedFromIB2 - 356.IBPluginDependency - 356.ImportedFromIB2 - 357.CustomClassName - 357.IBPluginDependency - 357.ImportedFromIB2 - 358.CustomClassName - 358.IBPluginDependency - 358.ImportedFromIB2 - 360.IBPluginDependency - 360.IBPropertyAccessControl - 360.ImportedFromIB2 - 373.IBPluginDependency - 373.IBPropertyAccessControl - 373.ImportedFromIB2 - 374.CustomClassName - 374.IBPluginDependency - 374.ImportedFromIB2 - 381.IBPluginDependency - 381.ImportedFromIB2 - 382.IBPluginDependency - 382.IBPropertyAccessControl - 382.ImportedFromIB2 - 383.IBPluginDependency - 383.ImportedFromIB2 - 384.IBPluginDependency - 384.IBPropertyAccessControl - 384.ImportedFromIB2 - 385.IBPluginDependency - 385.ImportedFromIB2 - - - YES - - {{218, 172}, {506, 215}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{218, 172}, {506, 215}} - - - {213, 107} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - - YES - + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{218, 172}, {506, 215}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{218, 172}, {506, 215}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - - YES - - + 405 - - YES + FirstResponder : id - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSObject - - YES - - YES - didAdjustSubviews: - willAdjustSubviews: - - - YES - RBSplitView - RBSplitView - - - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - PassphraseChangerController - NSObject - - YES - - YES - cancelNewPassword: - discloseAdvancedSettings: - okNewPassword: - - - YES - id - id - id - - - - YES - - YES - advancedHelpField - advancedView - cancelChangedButton - changePassphraseWindow - currentPasswordField - disclosureButton - dismissalButtonsView - newPasswordField - okChangeButton - rememberChangeButton - upperButtonsView - verifyChangedPasswordField - - - YES - NSTextField - NSView - NSButton - NSPanel - NSSecureTextField - NSButton - NSView - NSSecureTextField - NSButton - NSButton - NSView - NSSecureTextField - - - - IBUserSource - - - - - RBSplitSubview - NSView - - IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - - - RBSplitView - - - - SFPasswordAssistantInspectorController - NSObject - - showPasswordAssistantPanel: - id - - - YES - - YES - _baseWindow - _newPassword - _originalPassword - _verifyPassword - - - YES - NSWindow - NSTextField - NSTextField - NSTextField + + : + + : + id - - IBProjectSource - SFPasswordAssistantInspectorController.h - - - - SFPasswordAssistantInspectorController - NSObject IBUserSource - - - YES - - NSActionCell - NSCell - - IBFrameworkSource - AppKit.framework/Headers/NSActionCell.h - - - - NSApplication - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSApplication.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSApplicationScripting.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSColorPanel.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSHelpManager.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSPageLayout.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSUserInterfaceItemSearching.h - - - - NSButton - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSButton.h - - - - NSButtonCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSButtonCell.h - - - - NSCell - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSCell.h - - - - NSControl - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSControl.h - - - - NSFormatter - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFormatter.h - - - - NSMenu - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSMenu.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSAccessibility.h - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDictionaryController.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDragging.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontManager.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontPanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSKeyValueBinding.h - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSNibLoading.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSOutlineView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSPasteboard.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSSavePanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSTableView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSToolbarItem.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSView.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObjectScripting.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSPortCoder.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptObjectSpecifiers.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptWhoseTests.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLDownload.h - - - - NSObject - - IBFrameworkSource - PrintCore.framework/Headers/PDEPluginInterface.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFAuthorizationView.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFCertificatePanel.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFChooseIdentityPanel.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUAppcast.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUUpdater.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebDownload.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebEditingDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebFrameLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebJavaPlugIn.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPlugin.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPluginContainer.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPolicyDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebResourceLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebScriptObject.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebUIDelegate.h - - - - NSPanel - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSPanel.h - - - - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSInterfaceStyle.h - - - - NSResponder - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSResponder.h - - - - NSSecureTextField - NSTextField - - IBFrameworkSource - AppKit.framework/Headers/NSSecureTextField.h - - - - NSTextField - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSTextField.h - - - - NSTextFieldCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSTextFieldCell.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSClipView.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSMenuItem.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSRulerView.h - - - - NSView - NSResponder - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSDrawer.h - - - - NSWindow - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSWindow.h - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSWindowScripting.h - - - + 0 + IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - + com.apple.InterfaceBuilder.CocoaPlugin.macosx @@ -1765,10 +937,13 @@ com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - + YES - ../Notation.xcodeproj 3 + + {23, 22} + {23, 22} + diff --git a/English.lproj/PassphraseChanger.nib/keyedobjects.nib b/English.lproj/PassphraseChanger.nib/keyedobjects.nib index 251c56e2..90ed5bf8 100644 Binary files a/English.lproj/PassphraseChanger.nib/keyedobjects.nib and b/English.lproj/PassphraseChanger.nib/keyedobjects.nib differ diff --git a/English.lproj/PassphrasePicker.nib/designable.nib b/English.lproj/PassphrasePicker.nib/designable.nib index 0648d7be..012e9069 100644 --- a/English.lproj/PassphrasePicker.nib/designable.nib +++ b/English.lproj/PassphrasePicker.nib/designable.nib @@ -1,34 +1,34 @@ - + - 1060 - 10C540 - 740 - 1038.25 - 458.00 + 1050 + 11A480b + 1864 + 1127 + 561.00 com.apple.InterfaceBuilder.CocoaPlugin - 740 + 1864 - - YES - - - - YES + + NSTextField + NSView + NSWindowTemplate + NSBox + NSTextFieldCell + NSCustomView + NSButtonCell + NSButton + NSCustomObject + + com.apple.InterfaceBuilder.CocoaPlugin - + - YES - - YES - - - YES - + PluginDependencyRecalculationVersion + - - YES + PassphrasePickerController @@ -51,23 +51,22 @@ View - {1.79769e+308, 1.79769e+308} - {214.545, 107} + + {214.54499999999999, 107} 256 - - YES + 264 - - YES + 266 {{17, 247}, {440, 41}} + YES 67239424 @@ -104,6 +103,7 @@ 264 {{17, 207}, {440, 23}} + YES 67239424 @@ -120,6 +120,7 @@ 264 {{20, 236}, {434, 5}} + {0, 0} 67239424 @@ -150,6 +151,7 @@ 264 {{17, 174}, {79, 22}} + YES 67239424 @@ -166,6 +168,7 @@ 264 {{51, 144}, {45, 22}} + YES 67239424 @@ -182,6 +185,7 @@ 264 {{431, 177}, {23, 22}} + YES 67239424 @@ -214,6 +218,7 @@ 264 {{101, 177}, {326, 22}} + YES -1804468671 @@ -236,6 +241,7 @@ 264 {{101, 147}, {353, 22}} + YES -1804468671 @@ -253,6 +259,7 @@ 264 {{99, 123}, {265, 18}} + YES 67239424 @@ -280,6 +287,7 @@ 264 {{20, 85}, {13, 13}} + YES 67239424 @@ -303,6 +311,7 @@ 264 {{38, 82}, {128, 17}} + YES 67239424 @@ -323,23 +332,25 @@ -2147483392 {{41, 0}, {413, 74}} + NSView - + {{0, -65}, {474, 308}} + NSView 289 - - YES + 256 {{96, 12}, {82, 32}} + YES 604110336 @@ -361,6 +372,7 @@ 256 {{14, 12}, {82, 32}} + YES 67239424 @@ -377,23 +389,30 @@ 25 - + {{282, 0}, {192, 60}} + NSView - + {474, 243} + - {{0, 0}, {1920, 1178}} - {214.545, 129} - {1.79769e+308, 1.79769e+308} + {{0, 0}, {1440, 878}} + {214.54499999999999, 129} + {10000000000000, 10000000000000} + YES - + + + 256 + {{2, 2}, {125, 1}} + + - - YES + showPasswordAssistantPanel: @@ -570,13 +589,12 @@ 396 - + - - YES + 0 - + @@ -601,56 +619,50 @@ 343 - - YES + - + Select a passphrase 344 - - YES + - + 376 - - YES + - + 354 - - YES + - + 355 - - YES + - + 389 - - YES + @@ -663,115 +675,93 @@ - + 346 - - YES + - + 347 - - YES + - + 348 - - YES - - - 256 - {{2, 2}, {125, 1}} - - + - - 349 - - - 351 - - YES + - + 353 - - YES + - + 356 - - YES + - + 357 - - YES + - + 358 - - YES + - + 360 - - YES + - + 374 - - YES + - + 375 - - YES + - + @@ -845,936 +835,104 @@ Application - - - - YES - - YES - 342.ImportedFromIB2 - 343.IBEditorWindowLastContentRect - 343.IBPluginDependency - 343.IBPropertyAccessControl - 343.IBWindowTemplateEditedContentRect - 343.ImportedFromIB2 - 343.windowTemplate.hasMinSize - 343.windowTemplate.minSize - 344.IBPluginDependency - 344.ImportedFromIB2 - 346.IBPluginDependency - 346.IBPropertyAccessControl - 346.ImportedFromIB2 - 347.IBPluginDependency - 347.IBPropertyAccessControl - 347.ImportedFromIB2 - 348.IBPluginDependency - 348.IBPropertyAccessControl - 348.ImportedFromIB2 - 349.IBPluginDependency - 349.ImportedFromIB2 - 351.IBPluginDependency - 351.IBPropertyAccessControl - 351.ImportedFromIB2 - 353.IBPluginDependency - 353.IBPropertyAccessControl - 353.ImportedFromIB2 - 354.IBPluginDependency - 354.IBPropertyAccessControl - 354.ImportedFromIB2 - 355.IBPluginDependency - 355.IBPropertyAccessControl - 355.ImportedFromIB2 - 356.IBPluginDependency - 356.ImportedFromIB2 - 357.CustomClassName - 357.IBPluginDependency - 357.ImportedFromIB2 - 358.CustomClassName - 358.IBPluginDependency - 358.ImportedFromIB2 - 360.IBPluginDependency - 360.IBPropertyAccessControl - 360.ImportedFromIB2 - 374.IBPluginDependency - 374.ImportedFromIB2 - 375.IBPluginDependency - 375.IBPropertyAccessControl - 375.ImportedFromIB2 - 376.IBPluginDependency - 376.IBPropertyAccessControl - 376.ImportedFromIB2 - 385.IBPluginDependency - 385.ImportedFromIB2 - 389.IBPluginDependency - 389.ImportedFromIB2 - - - YES - - {{221, 301}, {474, 243}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{221, 301}, {474, 243}} - - - {214.545, 107} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - - YES - + + 349 + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{221, 301}, {474, 243}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - - YES - - + 409 - - YES + FirstResponder : id - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSObject - - YES - - YES - didAdjustSubviews: - willAdjustSubviews: - - - YES - RBSplitView - RBSplitView - - - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - PassphrasePickerController - NSObject - - YES - - YES - cancelNewPassword: - discloseAdvancedSettings: - okNewPassword: - - - YES - id - id - id - - - - YES - - YES - advancedHelpField - advancedView - cancelNewButton - disclosureButton - dismissalButtonsView - newPassphraseWindow - newPasswordField - okNewButton - rememberNewButton - upperButtonsView - verifyNewPasswordField - window - - - YES - NSTextField - NSView - NSButton - NSButton - NSView - NSPanel - NSSecureTextField - NSButton - NSButton - NSView - NSSecureTextField - NSPanel - - - - IBUserSource - - - - - RBSplitSubview - NSView - - IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - - - RBSplitView - - - - SFPasswordAssistantInspectorController - NSObject - - showPasswordAssistantPanel: - id - - - YES - - YES - _baseWindow - _newPassword - _originalPassword - _verifyPassword - - - YES - NSWindow - NSTextField - NSTextField - NSTextField + + : + + : + id - - IBProjectSource - SFPasswordAssistantInspectorController.h - - - - SFPasswordAssistantInspectorController - NSObject IBUserSource - - - YES - - NSActionCell - NSCell - - IBFrameworkSource - AppKit.framework/Headers/NSActionCell.h - - - - NSApplication - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSApplication.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSApplicationScripting.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSColorPanel.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSHelpManager.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSPageLayout.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSUserInterfaceItemSearching.h - - - - NSBox - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSBox.h - - - - NSButton - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSButton.h - - - - NSButtonCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSButtonCell.h - - - - NSCell - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSCell.h - - - - NSControl - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSControl.h - - - - NSFormatter - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFormatter.h - - - - NSMenu - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSMenu.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSAccessibility.h - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDictionaryController.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDragging.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontManager.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontPanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSKeyValueBinding.h - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSNibLoading.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSOutlineView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSPasteboard.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSSavePanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSTableView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSToolbarItem.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSView.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObjectScripting.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSPortCoder.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptObjectSpecifiers.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptWhoseTests.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLDownload.h - - - - NSObject - - IBFrameworkSource - PrintCore.framework/Headers/PDEPluginInterface.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFAuthorizationView.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFCertificatePanel.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFChooseIdentityPanel.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUAppcast.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUUpdater.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebDownload.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebEditingDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebFrameLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebJavaPlugIn.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPlugin.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPluginContainer.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPolicyDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebResourceLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebScriptObject.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebUIDelegate.h - - - - NSPanel - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSPanel.h - - - - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSInterfaceStyle.h - - - - NSResponder - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSResponder.h - - - - NSSecureTextField - NSTextField - - IBFrameworkSource - AppKit.framework/Headers/NSSecureTextField.h - - - - NSTextField - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSTextField.h - - - - NSTextFieldCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSTextFieldCell.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSClipView.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSMenuItem.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSRulerView.h - - - - NSView - NSResponder - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSDrawer.h - - - - NSWindow - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSWindow.h - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSWindowScripting.h - - - + 0 + IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - + YES - ../Notation.xcodeproj 3 + + {15, 15} + {23, 22} + {23, 22} + diff --git a/English.lproj/PassphrasePicker.nib/keyedobjects.nib b/English.lproj/PassphrasePicker.nib/keyedobjects.nib index ecdc12ab..4263afcb 100644 Binary files a/English.lproj/PassphrasePicker.nib/keyedobjects.nib and b/English.lproj/PassphrasePicker.nib/keyedobjects.nib differ diff --git a/English.lproj/PassphraseRetriever.nib/designable.nib b/English.lproj/PassphraseRetriever.nib/designable.nib index 30fb240a..98817fc8 100644 --- a/English.lproj/PassphraseRetriever.nib/designable.nib +++ b/English.lproj/PassphraseRetriever.nib/designable.nib @@ -1,30 +1,31 @@ - + - 1040 - 9L31a - 680 - 949.54 - 353.00 - - YES - + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 - - YES + + NSTextField + NSView + NSWindowTemplate + NSTextFieldCell + NSButtonCell + NSImageCell + NSImageView + NSButton + NSCustomObject + + com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES + + + PassphraseRetriever @@ -44,13 +45,11 @@ View - {3.40282e+38, 3.40282e+38} {378, 110} 256 - - YES + 266 @@ -63,7 +62,7 @@ Please enter the passphrase to access notes in BLAH BLAH BLAH BLAH PATH BLAH BLAH LucidaGrande - 1.300000e+01 + 13 1044 @@ -73,7 +72,7 @@ controlColor 3 - MC42NjY2NjY2OQA + MC42NjY2NjY2NjY3AA @@ -132,18 +131,14 @@ 268 - - YES - - YES - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - NSFilenamesPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT TIFF v4.0 pasteboard type - - + + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + {{20, 112}, {62, 62}} YES @@ -257,18 +252,17 @@ 25 - - {507, 194} + + {{7, 11}, {507, 194}} - {{0, 0}, {1920, 1178}} + {{0, 0}, {1440, 878}} {378, 132} - {3.40282e+38, 3.40282e+38} + {1e+13, 1e+13} - + - - YES + window @@ -349,51 +343,46 @@ 339 - + - - YES + 0 - - YES - + -2 - - RmlsZSdzIE93bmVyA + + File's Owner -1 - + First Responder -3 - + Application 307 - - YES + - - + + get passphrase 308 - - YES + @@ -402,79 +391,71 @@ - + 318 - - YES + - + 319 - - YES + - + 320 - - YES + - + 328 - - YES + - + 330 - - YES + - + 331 - - YES + - + 332 - - YES + - + 336 - - YES + - + @@ -517,332 +498,91 @@ - - - - YES - - YES - -1.IBPluginDependency - -2.IBPluginDependency - -3.IBPluginDependency - -3.ImportedFromIB2 - 307.IBEditorWindowLastContentRect - 307.IBWindowTemplateEditedContentRect - 307.ImportedFromIB2 - 307.windowTemplate.hasMinSize - 307.windowTemplate.minSize - 308.IBPluginDependency - 308.ImportedFromIB2 - 318.IBPluginDependency - 318.IBPropertyAccessControl - 318.ImportedFromIB2 - 319.IBPluginDependency - 319.IBPropertyAccessControl - 319.ImportedFromIB2 - 320.IBPluginDependency - 320.IBPropertyAccessControl - 320.ImportedFromIB2 - 328.IBPluginDependency - 328.ImportedFromIB2 - 330.IBPluginDependency - 330.IBPropertyAccessControl - 330.ImportedFromIB2 - 331.CustomClassName - 331.IBPluginDependency - 331.IBPropertyAccessControl - 331.ImportedFromIB2 - 332.IBPluginDependency - 332.IBPropertyAccessControl - 332.ImportedFromIB2 - 336.IBPluginDependency - 336.IBPropertyAccessControl - 336.ImportedFromIB2 - 341.IBPluginDependency - 342.IBPluginDependency - 343.IBPluginDependency - 344.IBPluginDependency - 345.IBPluginDependency - 346.IBPluginDependency - 347.IBPluginDependency - 348.IBPluginDependency - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - {{203, 226}, {507, 194}} - {{203, 226}, {507, 194}} - - - {378, 110} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - NSSecureTextField - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - - YES - - YES - - - YES - + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{203, 226}, {507, 194}} + com.apple.InterfaceBuilder.CocoaPlugin + {{203, 226}, {507, 194}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - YES - - - YES - - + 348 - - YES + FirstResponder - NSObject : id - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - FastListDataSource.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSObject - - YES - - YES - didAdjustSubviews: - willAdjustSubviews: - - - YES - RBSplitView - RBSplitView + + : + + : + id - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - NSObject IBUserSource - - PassphraseRetriever - NSObject - - YES - - YES - cancelAction: - differentNotes: - okAction: - - - YES - id - id - id - - - - YES - - YES - cancelButton - differentFolderButton - helpStringField - okButton - passphraseField - rememberKeychainButton - window - - - YES - NSButton - NSButton - NSTextField - NSButton - NSTextField - NSButton - NSPanel - - - - IBProjectSource - PassphraseRetriever.h - - - - PassphraseRetriever - NSObject - - IBUserSource - - - - - RBSplitSubview - NSView - - IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h - - - - RBSplitSubview - NSView - - IBUserSource - - - - - RBSplitView - RBSplitSubview - - delegate - id - - - - - RBSplitView - - - - RBSplitView - RBSplitSubview - - IBUserSource - - - - + 0 - ../Notation.xcodeproj + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES 3 + + {128, 128} + {15, 15} + diff --git a/English.lproj/PassphraseRetriever.nib/keyedobjects.nib b/English.lproj/PassphraseRetriever.nib/keyedobjects.nib index 6e748b11..e38e6a1c 100644 Binary files a/English.lproj/PassphraseRetriever.nib/keyedobjects.nib and b/English.lproj/PassphraseRetriever.nib/keyedobjects.nib differ diff --git a/English.lproj/Preferences.xib b/English.lproj/Preferences.xib index 621a41c4..f7febf80 100644 --- a/English.lproj/Preferences.xib +++ b/English.lproj/Preferences.xib @@ -1,17 +1,16 @@ - + 1050 - 10J869 - 1305 - 1038.35 + 10K540 + 1306 + 1038.36 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 1305 + 1306 - - YES + NSUserDefaultsController NSPopUpButton NSButton @@ -30,17 +29,15 @@ NSWindowTemplate NSTextField NSPopUpButtonCell - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin - + PluginDependencyRecalculationVersion - - YES + PrefsWindowController @@ -71,20 +68,20 @@ - {{0, 0}, {1920, 1058}} + {{0, 0}, {1440, 878}} {399, 129} {1e+13, 1e+13} - + 256 - - YES + 12 {{0, 39}, {368, 5}} + {0, 0} @@ -120,6 +117,8 @@ 268 {{160, 15}, {192, 14}} + + YES 68288064 @@ -156,6 +155,7 @@ 264 {{34, 9}, {121, 25}} + YES @@ -180,6 +180,7 @@ 264 {{32, 48}, {269, 18}} + YES @@ -208,6 +209,7 @@ 264 {{68, 239}, {101, 17}} + YES @@ -225,6 +227,7 @@ 264 {{171, 233}, {95, 26}} + YES @@ -263,8 +266,7 @@ YES OtherViews - - YES + Small @@ -303,7 +305,7 @@ - + 3 3 @@ -317,6 +319,7 @@ 264 {{32, 97}, {242, 18}} + YES @@ -340,6 +343,7 @@ 264 {{32, 72}, {223, 18}} + YES @@ -363,6 +367,7 @@ 264 {{32, 160}, {286, 18}} + YES @@ -386,6 +391,7 @@ -2147483384 {{271, 237}, {61, 22}} + YES @@ -410,6 +416,7 @@ 264 {{8, 195}, {161, 20}} + YES @@ -427,6 +434,7 @@ 264 {{174, 196}, {89, 22}} + YES @@ -446,6 +454,7 @@ 264 {{265, 188}, {73, 32}} + YES @@ -470,6 +479,7 @@ 264 {{49, 121}, {286, 33}} + YES @@ -486,8 +496,10 @@ - + {368, 277} + + NSView NSResponder @@ -495,8 +507,7 @@ 256 - - YES + 256 @@ -550,8 +561,7 @@ YES OtherViews - - YES + @@ -575,7 +585,7 @@ _popUpItemAction: - + 3 YES @@ -593,7 +603,7 @@ NSResponder - + {368, 406} @@ -604,12 +614,70 @@ 256 - - YES + + + + 268 + {{118, 53}, {226, 28}} + + + + YES + + 67239424 + 272629760 + Match opening characters, like a left bracket, with closing characters. + + + + + + + + + 264 + {{100, 58}, {22, 18}} + + + + YES + + 67239424 + 0 + + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{20, 59}, {77, 17}} + + + + YES + + 67239424 + 71303168 + Auto-pair: + + + + + + 268 - {{153, 15}, {194, 26}} + {{153, 16}, {194, 26}} @@ -640,8 +708,7 @@ YES OtherViews - - YES + @@ -665,7 +732,7 @@ _popUpItemAction: - + 1 @@ -677,7 +744,7 @@ 264 - {{118, 83}, {247, 42}} + {{118, 120}, {247, 42}} @@ -695,7 +762,7 @@ 268 - {{17, 22}, {134, 17}} + {{17, 23}, {134, 17}} @@ -704,7 +771,7 @@ 67239424 272629760 External Text Editor: - + LucidaGrande 13 16 @@ -717,15 +784,14 @@ 264 - {{100, 302}, {219, 38}} + {{100, 339}, {219, 38}} YES 2 1 - - YES + 67239424 0 @@ -757,7 +823,7 @@ 200 25 - + {219, 18} {4, 2} 1143472128 @@ -772,10 +838,8 @@ 549453824 {18, 18} - - YES - - YES + + @@ -866,8 +930,8 @@ nCoAAAAAuE1yAAAAAAAAAAAAAAAAAAAAAAB0ZXh0AAAAAENvcHlyaWdodCBBcHBsZSBDb21wdXRlciwg SW5jLiwgMjAwNQAAAAA - - + + 3 MCAwAA @@ -886,7 +950,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{32, 318}, {65, 22}} + {{32, 355}, {65, 22}} @@ -904,7 +968,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{118, 266}, {229, 30}} + {{118, 303}, {229, 30}} @@ -922,10 +986,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{100, 57}, {146, 18}} + {{100, 94}, {146, 18}} - + YES 67239424 @@ -945,7 +1009,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{20, 58}, {77, 17}} + {{20, 95}, {77, 17}} @@ -963,7 +1027,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{100, 351}, {137, 18}} + {{100, 388}, {137, 18}} @@ -986,7 +1050,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{100, 375}, {246, 18}} + {{100, 412}, {246, 18}} @@ -1010,7 +1074,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{17, 371}, {80, 22}} + {{17, 408}, {80, 22}} @@ -1028,7 +1092,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{39, 348}, {58, 21}} + {{39, 385}, {58, 21}} @@ -1046,7 +1110,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{17, 133}, {80, 34}} + {{17, 170}, {80, 34}} @@ -1064,7 +1128,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{100, 129}, {235, 18}} + {{100, 166}, {235, 18}} @@ -1087,7 +1151,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{100, 149}, {255, 18}} + {{100, 186}, {255, 18}} @@ -1111,7 +1175,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{39, 203}, {58, 17}} + {{39, 240}, {58, 17}} @@ -1129,7 +1193,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{100, 182}, {242, 18}} + {{100, 219}, {242, 18}} @@ -1152,7 +1216,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{100, 237}, {157, 18}} + {{100, 274}, {157, 18}} @@ -1176,7 +1240,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{100, 202}, {183, 18}} + {{100, 239}, {183, 18}} @@ -1197,8 +1261,8 @@ SW5jLiwgMjAwNQAAAAA 25 - - {368, 413} + + {368, 450} @@ -1210,14 +1274,13 @@ SW5jLiwgMjAwNQAAAAA 256 - - YES + 268 - {{92, 78}, {172, 18}} + {{107, 83}, {172, 18}} - + YES -2080244224 @@ -1238,14 +1301,14 @@ SW5jLiwgMjAwNQAAAAA 268 - {{95, 98}, {169, 18}} + {{22, 105}, {257, 18}} YES -2080244224 67108864 - Show Grid Lines in List: + Always Show Grid Lines in Notes List: 1210864127 @@ -1320,9 +1383,9 @@ SW5jLiwgMjAwNQAAAAA 131072 - 1000 - 350 - 604.16666666666663 + 1200 + 300 + 605 0.0 0 1 @@ -1330,37 +1393,20 @@ SW5jLiwgMjAwNQAAAAA NO - - - 268 - {{50, 45}, {212, 17}} - - - YES - - 67239424 - 4194304 - Keep Note Body Width Readable: - - - - - - 264 - {{259, 43}, {22, 18}} + {{37, 43}, {242, 18}} YES 67239424 - 0 - + 67108864 + Keep Note Body Width Readable: - 1215582719 + 1210864127 2 @@ -1372,7 +1418,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{35, 130}, {326, 14}} + {{35, 135}, {326, 14}} YES @@ -1389,7 +1435,7 @@ SW5jLiwgMjAwNQAAAAA 268 - {{115, 229}, {130, 18}} + {{127, 230}, {130, 18}} YES @@ -1477,7 +1523,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{151, 156}, {94, 17}} + {{163, 158}, {94, 17}} YES @@ -1494,16 +1540,12 @@ SW5jLiwgMjAwNQAAAAA 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - - {{251, 152}, {52, 24}} + + {{263, 154}, {52, 24}} YES @@ -1513,7 +1555,7 @@ SW5jLiwgMjAwNQAAAAA 264 - {{122, 188}, {123, 17}} + {{134, 190}, {123, 17}} YES @@ -1530,16 +1572,12 @@ SW5jLiwgMjAwNQAAAAA 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - - {{251, 184}, {52, 24}} + + {{263, 186}, {52, 24}} YES @@ -1549,16 +1587,12 @@ SW5jLiwgMjAwNQAAAAA 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - - {{251, 226}, {52, 24}} + + {{263, 227}, {52, 24}} YES @@ -1568,7 +1602,7 @@ SW5jLiwgMjAwNQAAAAA MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA - + {420, 319} NSView @@ -1577,10 +1611,9 @@ SW5jLiwgMjAwNQAAAAA YES - + - - YES + generalView @@ -2225,44 +2258,56 @@ SW5jLiwgMjAwNQAAAAA 568 - + + + autoPairButton + + + + 576 + + + + changedAutoPairing: + + + + 577 + + - - YES + 0 - - YES - + -2 - + File's Owner -1 - + First Responder -3 - + Application 5 - - YES + - - + + Preferences Window @@ -2273,8 +2318,7 @@ SW5jLiwgMjAwNQAAAAA 155 - - YES + @@ -2289,128 +2333,115 @@ SW5jLiwgMjAwNQAAAAA - - + + general view 157 - - YES + - + 158 - - YES + - + 172 - - YES + - + 174 - - YES + - + 175 - - YES + - + 178 - - YES + - + 287 - - YES + - + 288 - - YES + - + 289 - - YES + - + 323 - - YES + - + 250 - - YES + - - + + database view 251 - - YES + - + 252 - - YES + - + @@ -2421,8 +2452,7 @@ SW5jLiwgMjAwNQAAAAA 268 - - YES + @@ -2442,19 +2472,21 @@ SW5jLiwgMjAwNQAAAAA - - + + + + + editing view 271 - - YES + - + @@ -2470,91 +2502,81 @@ SW5jLiwgMjAwNQAAAAA 274 - - YES + - + 275 - - YES + - + 276 - - YES + - + 278 - - YES + - + 279 - - YES + - + 280 - - YES + - + 282 - - YES + - + 283 - - YES + - + 307 - - YES + - + 311 - - YES + - + @@ -2565,10 +2587,9 @@ SW5jLiwgMjAwNQAAAAA 326 - - YES + - + @@ -2619,10 +2640,9 @@ SW5jLiwgMjAwNQAAAAA 337 - - YES + - + @@ -2683,13 +2703,12 @@ SW5jLiwgMjAwNQAAAAA 159 - - YES + - + @@ -2715,12 +2734,11 @@ SW5jLiwgMjAwNQAAAAA 253 - - YES + - + @@ -2741,8 +2759,7 @@ SW5jLiwgMjAwNQAAAAA 352 - - YES + @@ -2755,41 +2772,37 @@ SW5jLiwgMjAwNQAAAAA - - - - + + + fonts colors view 387 - - YES + - + 388 - - YES + - + 389 - - YES + - + @@ -2810,28 +2823,25 @@ SW5jLiwgMjAwNQAAAAA 429 - - YES + - + 430 - - YES + - + 431 - - YES + - + @@ -2857,15 +2867,14 @@ SW5jLiwgMjAwNQAAAAA 436 - + 454 - - YES + - + @@ -2876,10 +2885,9 @@ SW5jLiwgMjAwNQAAAAA 467 - - YES + - + @@ -2895,10 +2903,9 @@ SW5jLiwgMjAwNQAAAAA 415 - - YES + - + @@ -2919,10 +2926,9 @@ SW5jLiwgMjAwNQAAAAA 397 - - YES + - + @@ -2933,10 +2939,9 @@ SW5jLiwgMjAwNQAAAAA 401 - - YES + - + @@ -2947,10 +2952,9 @@ SW5jLiwgMjAwNQAAAAA 440 - - YES + - + @@ -2958,27 +2962,12 @@ SW5jLiwgMjAwNQAAAAA - - 441 - - - YES - - - - - - 442 - - - 470 - - YES + - + @@ -2989,10 +2978,9 @@ SW5jLiwgMjAwNQAAAAA 472 - - YES + - + @@ -3003,10 +2991,9 @@ SW5jLiwgMjAwNQAAAAA 487 - - YES + - + @@ -3017,10 +3004,9 @@ SW5jLiwgMjAwNQAAAAA 492 - - YES + - + @@ -3031,28 +3017,25 @@ SW5jLiwgMjAwNQAAAAA 522 - - YES + - + 523 - - YES + - + 524 - - YES + - + @@ -3073,10 +3056,9 @@ SW5jLiwgMjAwNQAAAAA 536 - - YES + - + @@ -3087,19 +3069,17 @@ SW5jLiwgMjAwNQAAAAA 542 - - YES + - + 543 - - YES + - + @@ -3112,27 +3092,12 @@ SW5jLiwgMjAwNQAAAAA - - 549 - - - YES - - - - - - 550 - - - 552 - - YES + - + @@ -3143,30 +3108,27 @@ SW5jLiwgMjAwNQAAAAA 561 - - YES + - + 562 - - YES + - + 563 - - YES + - + @@ -3184,600 +3146,391 @@ SW5jLiwgMjAwNQAAAAA - + + 549 + + + + + + + + 550 + + + + + 569 + + + + + + + + 570 + + + + + + + + 571 + + + + + 572 + + + + + 574 + + + + + + + + 575 + + + + - - YES - - YES - -3.IBPluginDependency - -3.ImportedFromIB2 - 155.IBEditorWindowLastContentRect - 155.IBPluginDependency - 155.ImportedFromIB2 - 157.IBPluginDependency - 157.IBPropertyAccessControl - 157.ImportedFromIB2 - 158.IBPluginDependency - 158.IBPropertyAccessControl - 158.ImportedFromIB2 - 159.IBEditorWindowLastContentRect - 159.IBPluginDependency - 159.ImportedFromIB2 - 160.IBPluginDependency - 160.ImportedFromIB2 - 161.IBPluginDependency - 161.ImportedFromIB2 - 162.IBPluginDependency - 162.ImportedFromIB2 - 163.IBPluginDependency - 163.ImportedFromIB2 - 172.IBPluginDependency - 172.IBPropertyAccessControl - 172.ImportedFromIB2 - 174.IBPluginDependency - 174.IBPropertyAccessControl - 174.ImportedFromIB2 - 175.IBPluginDependency - 175.IBPropertyAccessControl - 175.ImportedFromIB2 - 178.IBPluginDependency - 178.ImportedFromIB2 - 250.IBEditorWindowLastContentRect - 250.IBPluginDependency - 250.IBPropertyAccessControl - 250.ImportedFromIB2 - 251.IBPluginDependency - 251.ImportedFromIB2 - 252.IBPluginDependency - 252.IBPropertyAccessControl - 252.ImportedFromIB2 - 253.IBPluginDependency - 253.ImportedFromIB2 - 254.IBPluginDependency - 254.ImportedFromIB2 - 255.IBPluginDependency - 255.ImportedFromIB2 - 256.IBPluginDependency - 256.ImportedFromIB2 - 257.IBPluginDependency - 257.ImportedFromIB2 - 268.IBEditorWindowLastContentRect - 268.IBPluginDependency - 268.ImportedFromIB2 - 271.IBPluginDependency - 271.IBViewBoundsToFrameTransform - 271.ImportedFromIB2 - 272.IBPluginDependency - 272.ImportedFromIB2 - 273.IBPluginDependency - 273.ImportedFromIB2 - 274.IBPluginDependency - 274.IBViewBoundsToFrameTransform - 274.ImportedFromIB2 - 275.IBPluginDependency - 275.IBViewBoundsToFrameTransform - 275.ImportedFromIB2 - 276.IBPluginDependency - 276.ImportedFromIB2 - 278.IBPluginDependency - 278.ImportedFromIB2 - 279.IBPluginDependency - 279.IBViewBoundsToFrameTransform - 279.ImportedFromIB2 - 280.IBPluginDependency - 280.ImportedFromIB2 - 282.IBPluginDependency - 282.IBViewBoundsToFrameTransform - 282.ImportedFromIB2 - 283.IBPluginDependency - 283.IBViewBoundsToFrameTransform - 283.ImportedFromIB2 - 287.IBPluginDependency - 287.IBPropertyAccessControl - 287.ImportedFromIB2 - 288.IBPluginDependency - 288.IBPropertyAccessControl - 288.ImportedFromIB2 - 289.IBPluginDependency - 289.ImportedFromIB2 - 307.IBPluginDependency - 307.IBViewBoundsToFrameTransform - 307.ImportedFromIB2 - 311.IBPluginDependency - 311.IBViewBoundsToFrameTransform - 311.ImportedFromIB2 - 323.IBPluginDependency - 323.IBPropertyAccessControl - 323.ImportedFromIB2 - 325.IBPluginDependency - 326.IBPluginDependency - 327.IBPluginDependency - 328.IBPluginDependency - 329.IBPluginDependency - 330.IBPluginDependency - 331.IBPluginDependency - 332.IBPluginDependency - 333.IBPluginDependency - 335.IBPluginDependency - 336.IBPluginDependency - 337.IBPluginDependency - 340.IBPluginDependency - 341.IBPluginDependency - 342.IBPluginDependency - 344.IBPluginDependency - 345.IBPluginDependency - 346.IBPluginDependency - 347.IBPluginDependency - 348.IBPluginDependency - 349.IBPluginDependency - 350.IBPluginDependency - 351.IBPluginDependency - 352.IBEditorWindowLastContentRect - 352.IBPluginDependency - 352.IBViewBoundsToFrameTransform - 352.ImportedFromIB2 - 354.IBPluginDependency - 354.IBPropertyAccessControl - 354.IBViewBoundsToFrameTransform - 354.ImportedFromIB2 - 387.IBPluginDependency - 387.IBPropertyAccessControl - 387.IBViewBoundsToFrameTransform - 387.ImportedFromIB2 - 388.IBPluginDependency - 388.IBPropertyAccessControl - 388.IBViewBoundsToFrameTransform - 388.ImportedFromIB2 - 389.IBPluginDependency - 389.IBPropertyAccessControl - 389.IBViewBoundsToFrameTransform - 389.ImportedFromIB2 - 390.IBPluginDependency - 391.IBPluginDependency - 392.IBPluginDependency - 396.IBPluginDependency - 396.IBPropertyAccessControl - 396.IBViewBoundsToFrameTransform - 396.ImportedFromIB2 - 397.IBPluginDependency - 397.IBPropertyAccessControl - 397.IBViewBoundsToFrameTransform - 397.ImportedFromIB2 - 398.IBPluginDependency - 400.IBPluginDependency - 400.IBPropertyAccessControl - 400.IBViewBoundsToFrameTransform - 400.ImportedFromIB2 - 401.IBPluginDependency - 401.IBPropertyAccessControl - 401.IBViewBoundsToFrameTransform - 401.ImportedFromIB2 - 402.IBPluginDependency - 415.IBPluginDependency - 415.IBViewBoundsToFrameTransform - 416.IBPluginDependency - 429.IBPluginDependency - 429.IBPropertyAccessControl - 429.IBViewBoundsToFrameTransform - 429.ImportedFromIB2 - 430.IBPluginDependency - 430.IBViewBoundsToFrameTransform - 430.ImportedFromIB2 - 431.IBPluginDependency - 431.IBViewBoundsToFrameTransform - 432.IBPluginDependency - 432.IBViewBoundsToFrameTransform - 433.IBPluginDependency - 434.IBPluginDependency - 435.IBPluginDependency - 440.IBPluginDependency - 440.IBViewBoundsToFrameTransform - 440.ImportedFromIB2 - 441.IBPluginDependency - 441.IBViewBoundsToFrameTransform - 442.IBPluginDependency - 443.IBPluginDependency - 454.IBPluginDependency - 454.IBViewBoundsToFrameTransform - 455.IBPluginDependency - 467.IBPluginDependency - 467.IBPropertyAccessControl - 467.IBViewBoundsToFrameTransform - 467.ImportedFromIB2 - 468.IBPluginDependency - 470.IBPluginDependency - 470.IBViewBoundsToFrameTransform - 471.IBPluginDependency - 472.IBPluginDependency - 472.IBViewBoundsToFrameTransform - 472.ImportedFromIB2 - 473.IBPluginDependency - 487.IBPluginDependency - 487.IBViewBoundsToFrameTransform - 487.ImportedFromIB2 - 488.IBPluginDependency - 492.IBPluginDependency - 492.IBViewBoundsToFrameTransform - 492.ImportedFromIB2 - 493.IBPluginDependency - 5.IBEditorWindowLastContentRect - 5.IBPluginDependency - 5.IBPropertyAccessControl - 5.IBWindowTemplateEditedContentRect - 5.ImportedFromIB2 - 522.IBPluginDependency - 522.IBViewBoundsToFrameTransform - 522.ImportedFromIB2 - 523.IBPluginDependency - 523.IBViewBoundsToFrameTransform - 523.ImportedFromIB2 - 524.IBPluginDependency - 524.IBViewBoundsToFrameTransform - 524.ImportedFromIB2 - 525.IBPluginDependency - 526.IBPluginDependency - 527.IBPluginDependency - 536.IBPluginDependency - 536.IBViewBoundsToFrameTransform - 536.ImportedFromIB2 - 537.IBPluginDependency - 542.IBPluginDependency - 542.ImportedFromIB2 - 543.IBPluginDependency - 543.ImportedFromIB2 - 544.IBPluginDependency - 545.IBPluginDependency - 549.IBPluginDependency - 549.IBViewBoundsToFrameTransform - 550.IBPluginDependency - 552.IBPluginDependency - 552.IBViewBoundsToFrameTransform - 553.IBPluginDependency - 561.IBPluginDependency - 562.IBPluginDependency - 6.IBPluginDependency - 6.ImportedFromIB2 + + com.apple.InterfaceBuilder.CocoaPlugin + + {{92, 271}, {368, 277}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + {{520, 405}, {122, 73}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{369, 230}, {368, 406}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{196, 240}, {368, 290}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAw2QAAA - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - {{92, 271}, {368, 277}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - {{520, 405}, {122, 73}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - {{369, 230}, {368, 406}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{196, 240}, {368, 290}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAw2QAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCAAAAw2QAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC7AAAwzgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw3AAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCHAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwqgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAww8AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{96, 240}, {420, 265}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - AUNcAABCAAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABC5AAAwkwAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABDgoAAwlQAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCBAAAwkAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - AUNcAABDGgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCgAAAwy0AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - AUNcAABC9AAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABC3gAAww0AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqAAAwkwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCAAAAwoAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCCAAAwgAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDIAAAwdgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - AQAAAABCHAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDggAAwlgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCTAAAwlwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBoAAAwggAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCDAAAwrAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDSQAAweAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCTAAAwfAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDnwAAweAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDrYAAweAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - {{329, 268}, {399, 334}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{329, 268}, {399, 334}} - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwqgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCHAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC7AAAwzgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqAAAwkwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqAAAwkwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCAAAAw2QAAA - - - YES - - - + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC7AAAwzgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw3AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCHAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAww8AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{96, 240}, {420, 265}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABCAAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABC5AAAwkwAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDgoAAwlQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCBAAAwkAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABDGgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCgAAAwy0AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABC9AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABC3gAAww0AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCAAAAwoAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCCAAAwgAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDIAAAwdgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABCHAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDggAAwlgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBoAAAwggAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCDAAAwrAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSQAAweAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAwfAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDnwAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDrYAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + {{329, 268}, {399, 334}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{329, 268}, {399, 334}} + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCHAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC7AAAwzgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + - - YES - - - + - 568 + 577 - - YES + FirstResponder @@ -3799,343 +3552,229 @@ SW5jLiwgMjAwNQAAAAA NotationPrefsViewController NSObject - - YES - - YES - addedExtension: - addedType: - changePassphrase: - changedFileDeletionWarningSettings: - changedFileStorageFormat: - changedKeyLength: - changedKeychainSettings: - changedSecureTextEntry: - makeDefaultExtension: - removeFromKeychain: - removedExtension: - removedType: - syncFrequencyChange: - toggledEncryption: - toggledSyncing: - visitSimplenoteSite: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + addedExtension: + id - - - YES - - YES - addedExtension: - addedType: - changePassphrase: - changedFileDeletionWarningSettings: - changedFileStorageFormat: - changedKeyLength: - changedKeychainSettings: - changedSecureTextEntry: - makeDefaultExtension: - removeFromKeychain: - removedExtension: - removedType: - syncFrequencyChange: - toggledEncryption: - toggledSyncing: - visitSimplenoteSite: - - - YES - - addedExtension: - id - - - addedType: - id - - - changePassphrase: - id - - - changedFileDeletionWarningSettings: - id - - - changedFileStorageFormat: - id - - - changedKeyLength: - id - - - changedKeychainSettings: - id - - - changedSecureTextEntry: - id - - - makeDefaultExtension: - id - - - removeFromKeychain: - id - - - removedExtension: - id - - - removedType: - id - - - syncFrequencyChange: - id - - - toggledEncryption: - id - - - toggledSyncing: - id - - - visitSimplenoteSite: - id - + + addedType: + id - - - YES - - YES - allowedExtensionsTable - allowedTypesTable - changePasswordButton - confirmFileDeletionButton - enableEncryptionButton - enabledSyncButton - fileAttributesHelpText - keyLengthField - keyLengthStepper - makeDefaultExtensionButton - newExtensionButton - newTypeButton - passwordSettingsMatrix - removeExtensionButton - removeFromKeychainButton - removeTypeButton - secureTextEntryButton - storageFormatPopupButton - syncAccountField - syncEncAlertField - syncEncAlertView - syncPasswordField - syncingFrequency - verifyStatusField - verifyStatusImageView - view - webOptionsWindow - - - YES - NSTableView - NSTableView - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSStepper - NSButton - NSButton - NSButton - NSMatrix - NSButton - NSButton - NSButton - NSButton - NSPopUpButton - NSTextField - NSTextField - NSImageView - NSTextField - NSPopUpButton - NSTextField - NSImageView - NSView - NSWindow - - - - YES - - YES - allowedExtensionsTable - allowedTypesTable - changePasswordButton - confirmFileDeletionButton - enableEncryptionButton - enabledSyncButton - fileAttributesHelpText - keyLengthField - keyLengthStepper - makeDefaultExtensionButton - newExtensionButton - newTypeButton - passwordSettingsMatrix - removeExtensionButton - removeFromKeychainButton - removeTypeButton - secureTextEntryButton - storageFormatPopupButton - syncAccountField - syncEncAlertField - syncEncAlertView - syncPasswordField - syncingFrequency - verifyStatusField - verifyStatusImageView - view - webOptionsWindow - - - YES - - allowedExtensionsTable - NSTableView - - - allowedTypesTable - NSTableView - - - changePasswordButton - NSButton - - - confirmFileDeletionButton - NSButton - - - enableEncryptionButton - NSButton - - - enabledSyncButton - NSButton - - - fileAttributesHelpText - NSTextField - - - keyLengthField - NSTextField - - - keyLengthStepper - NSStepper - - - makeDefaultExtensionButton - NSButton - - - newExtensionButton - NSButton - - - newTypeButton - NSButton - - - passwordSettingsMatrix - NSMatrix - - - removeExtensionButton - NSButton - - - removeFromKeychainButton - NSButton - - - removeTypeButton - NSButton - - - secureTextEntryButton - NSButton - - - storageFormatPopupButton - NSPopUpButton - - - syncAccountField - NSTextField - - - syncEncAlertField - NSTextField - - - syncEncAlertView - NSImageView - - - syncPasswordField - NSTextField - - - syncingFrequency - NSPopUpButton - - - verifyStatusField - NSTextField - - - verifyStatusImageView - NSImageView - - - view - NSView - - - webOptionsWindow - NSWindow - + + changePassphrase: + id - + + changedFileDeletionWarningSettings: + id + + + changedFileStorageFormat: + id + + + changedKeyLength: + id + + + changedKeychainSettings: + id + + + changedSecureTextEntry: + id + + + makeDefaultExtension: + id + + + removeFromKeychain: + id + + + removedExtension: + id + + + removedType: + id + + + syncFrequencyChange: + id + + + toggledEncryption: + id + + + toggledSyncing: + id + + + visitSimplenoteSite: + id + + + + NSTableView + NSTableView + NSButton + NSButton + NSButton + NSButton + NSTextField + NSTextField + NSStepper + NSButton + NSButton + NSButton + NSMatrix + NSButton + NSButton + NSButton + NSButton + NSPopUpButton + NSTextField + NSTextField + NSImageView + NSTextField + NSPopUpButton + NSTextField + NSImageView + NSView + NSWindow + + + + allowedExtensionsTable + NSTableView + + + allowedTypesTable + NSTableView + + + changePasswordButton + NSButton + + + confirmFileDeletionButton + NSButton + + + enableEncryptionButton + NSButton + + + enabledSyncButton + NSButton + + + fileAttributesHelpText + NSTextField + + + keyLengthField + NSTextField + + + keyLengthStepper + NSStepper + + + makeDefaultExtensionButton + NSButton + + + newExtensionButton + NSButton + + + newTypeButton + NSButton + + + passwordSettingsMatrix + NSMatrix + + + removeExtensionButton + NSButton + + + removeFromKeychainButton + NSButton + + + removeTypeButton + NSButton + + + secureTextEntryButton + NSButton + + + storageFormatPopupButton + NSPopUpButton + + + syncAccountField + NSTextField + + + syncEncAlertField + NSTextField + + + syncEncAlertView + NSImageView + + + syncPasswordField + NSTextField + + + syncingFrequency + NSPopUpButton + + + verifyStatusField + NSTextField + + + verifyStatusImageView + NSImageView + + + view + NSView + + + webOptionsWindow + NSWindow + + IBProjectSource ./Classes/NotationPrefsViewController.h @@ -4144,475 +3783,335 @@ SW5jLiwgMjAwNQAAAAA PrefsWindowController NSObject - - YES - - YES - changeBodyFont: - changedAltRows: - changedAutoSuggestLinks: - changedBackgroundTextColorWell: - changedExternalEditorsMenu: - changedForegroundTextColorWell: - changedHighlightSearchTerms: - changedMakeURLsClickable: - changedNoteDeletion: - changedNotesFolderLocation: - changedQuitBehavior: - changedRTL: - changedSearchHighlightColorWell: - changedShowGrid: - changedSoftTabs: - changedSpellChecking: - changedStyledTextBehavior: - changedTabBehavior: - changedTableText: - changedTitleCompletion: - changedUseMarkdownImport: - changedUseReadability: - setAppShortcut: - setMaxWidth: - toggleHideDockIcon: - toggleKeepsTextWidthInWindow: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + changeBodyFont: + id - - - YES - - YES - changeBodyFont: - changedAltRows: - changedAutoSuggestLinks: - changedBackgroundTextColorWell: - changedExternalEditorsMenu: - changedForegroundTextColorWell: - changedHighlightSearchTerms: - changedMakeURLsClickable: - changedNoteDeletion: - changedNotesFolderLocation: - changedQuitBehavior: - changedRTL: - changedSearchHighlightColorWell: - changedShowGrid: - changedSoftTabs: - changedSpellChecking: - changedStyledTextBehavior: - changedTabBehavior: - changedTableText: - changedTitleCompletion: - changedUseMarkdownImport: - changedUseReadability: - setAppShortcut: - setMaxWidth: - toggleHideDockIcon: - toggleKeepsTextWidthInWindow: - - - YES - - changeBodyFont: - id - - - changedAltRows: - id - - - changedAutoSuggestLinks: - id - - - changedBackgroundTextColorWell: - id - - - changedExternalEditorsMenu: - id - - - changedForegroundTextColorWell: - id - - - changedHighlightSearchTerms: - id - - - changedMakeURLsClickable: - id - - - changedNoteDeletion: - id - - - changedNotesFolderLocation: - id - - - changedQuitBehavior: - id - - - changedRTL: - id - - - changedSearchHighlightColorWell: - id - - - changedShowGrid: - id - - - changedSoftTabs: - id - - - changedSpellChecking: - id - - - changedStyledTextBehavior: - id - - - changedTabBehavior: - id - - - changedTableText: - id - - - changedTitleCompletion: - id - - - changedUseMarkdownImport: - id - - - changedUseReadability: - id - - - setAppShortcut: - id - - - setMaxWidth: - id - - - toggleHideDockIcon: - id - - - toggleKeepsTextWidthInWindow: - id - + + changedAltRows: + id - - - YES - - YES - altRowsButton - appList - appShortcutField - autoSuggestLinksButton - backgroundColorWell - bodyTextFontField - checkSpellingButton - completeNoteTitlesButton - confirmDeletionButton - databaseView - editingView - externalEditorMenuButton - folderLocationsMenuButton - fontsColorsView - foregroundColorWell - generalView - highlightSearchTermsButton - makeURLsClickable - maxWidthSlider - notationPrefsView - notationPrefsViewController - quitWhenClosingButton - rtlButton - searchHighlightColorWell - showGridButton - softTabsButton - styledTextButton - tabKeyRadioMatrix - tableTextMenuButton - tableTextSizeField - togDockButton - togDockLabel - useMarkdownImportButton - useReadabilityButton - window - - - YES - NSButton - NSComboBox - NSTextField - NSButton - NSColorWell - NSTextField - NSButton - NSButton - NSButton - NSView - NSView - NSPopUpButton - NSPopUpButton - NSView - NSColorWell - NSView - NSButton - NSButton - NSSlider - NSView - NotationPrefsViewController - NSButton - NSButton - NSColorWell - NSButton - NSButton - NSButton - NSMatrix - NSPopUpButton - NSTextField - NSButton - NSTextField - NSButton - NSButton - NSWindow - - - - YES - - YES - altRowsButton - appList - appShortcutField - autoSuggestLinksButton - backgroundColorWell - bodyTextFontField - checkSpellingButton - completeNoteTitlesButton - confirmDeletionButton - databaseView - editingView - externalEditorMenuButton - folderLocationsMenuButton - fontsColorsView - foregroundColorWell - generalView - highlightSearchTermsButton - makeURLsClickable - maxWidthSlider - notationPrefsView - notationPrefsViewController - quitWhenClosingButton - rtlButton - searchHighlightColorWell - showGridButton - softTabsButton - styledTextButton - tabKeyRadioMatrix - tableTextMenuButton - tableTextSizeField - togDockButton - togDockLabel - useMarkdownImportButton - useReadabilityButton - window - - - YES - - altRowsButton - NSButton - - - appList - NSComboBox - - - appShortcutField - NSTextField - - - autoSuggestLinksButton - NSButton - - - backgroundColorWell - NSColorWell - - - bodyTextFontField - NSTextField - - - checkSpellingButton - NSButton - - - completeNoteTitlesButton - NSButton - - - confirmDeletionButton - NSButton - - - databaseView - NSView - - - editingView - NSView - - - externalEditorMenuButton - NSPopUpButton - - - folderLocationsMenuButton - NSPopUpButton - - - fontsColorsView - NSView - - - foregroundColorWell - NSColorWell - - - generalView - NSView - - - highlightSearchTermsButton - NSButton - - - makeURLsClickable - NSButton - - - maxWidthSlider - NSSlider - - - notationPrefsView - NSView - - - notationPrefsViewController - NotationPrefsViewController - - - quitWhenClosingButton - NSButton - - - rtlButton - NSButton - - - searchHighlightColorWell - NSColorWell - - - showGridButton - NSButton - - - softTabsButton - NSButton - - - styledTextButton - NSButton - - - tabKeyRadioMatrix - NSMatrix - - - tableTextMenuButton - NSPopUpButton - - - tableTextSizeField - NSTextField - - - togDockButton - NSButton - - - togDockLabel - NSTextField - - - useMarkdownImportButton - NSButton - - - useReadabilityButton - NSButton - - - window - NSWindow - + + changedAutoPairing: + id - + + changedAutoSuggestLinks: + id + + + changedBackgroundTextColorWell: + id + + + changedExternalEditorsMenu: + id + + + changedForegroundTextColorWell: + id + + + changedHighlightSearchTerms: + id + + + changedMakeURLsClickable: + id + + + changedNoteDeletion: + id + + + changedNotesFolderLocation: + id + + + changedQuitBehavior: + id + + + changedRTL: + id + + + changedSearchHighlightColorWell: + id + + + changedShowGrid: + id + + + changedSoftTabs: + id + + + changedSpellChecking: + id + + + changedStyledTextBehavior: + id + + + changedTabBehavior: + id + + + changedTableText: + id + + + changedTitleCompletion: + id + + + changedUseMarkdownImport: + id + + + changedUseReadability: + id + + + setAppShortcut: + id + + + setMaxWidth: + id + + + toggleHideDockIcon: + id + + + toggleKeepsTextWidthInWindow: + id + + + + NSButton + NSComboBox + NSTextField + NSButton + NSButton + NSColorWell + NSTextField + NSButton + NSButton + NSButton + NSView + NSView + NSPopUpButton + NSPopUpButton + NSView + NSColorWell + NSView + NSButton + NSButton + NSSlider + NSView + NotationPrefsViewController + NSButton + NSButton + NSColorWell + NSButton + NSButton + NSButton + NSMatrix + NSPopUpButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSWindow + + + + altRowsButton + NSButton + + + appList + NSComboBox + + + appShortcutField + NSTextField + + + autoPairButton + NSButton + + + autoSuggestLinksButton + NSButton + + + backgroundColorWell + NSColorWell + + + bodyTextFontField + NSTextField + + + checkSpellingButton + NSButton + + + completeNoteTitlesButton + NSButton + + + confirmDeletionButton + NSButton + + + databaseView + NSView + + + editingView + NSView + + + externalEditorMenuButton + NSPopUpButton + + + folderLocationsMenuButton + NSPopUpButton + + + fontsColorsView + NSView + + + foregroundColorWell + NSColorWell + + + generalView + NSView + + + highlightSearchTermsButton + NSButton + + + makeURLsClickable + NSButton + + + maxWidthSlider + NSSlider + + + notationPrefsView + NSView + + + notationPrefsViewController + NotationPrefsViewController + + + quitWhenClosingButton + NSButton + + + rtlButton + NSButton + + + searchHighlightColorWell + NSColorWell + + + showGridButton + NSButton + + + softTabsButton + NSButton + + + styledTextButton + NSButton + + + tabKeyRadioMatrix + NSMatrix + + + tableTextMenuButton + NSPopUpButton + + + tableTextSizeField + NSTextField + + + togDockButton + NSButton + + + togDockLabel + NSTextField + + + useMarkdownImportButton + NSButton + + + useReadabilityButton + NSButton + + + window + NSWindow + + IBProjectSource ./Classes/PrefsWindowController.h - + 0 IBCocoaFramework @@ -4624,26 +4123,12 @@ SW5jLiwgMjAwNQAAAAA com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES 3 - - YES - - YES - NSMenuCheckmark - NSMenuMixedState - NSSwitch - - - YES - {9, 8} - {7, 2} - {15, 15} - - + + {9, 8} + {7, 2} + {15, 15} + diff --git a/English.lproj/SaveHTMLPreview.nib/designable.nib b/English.lproj/SaveHTMLPreview.nib/designable.nib index f39809b5..18778c42 100644 --- a/English.lproj/SaveHTMLPreview.nib/designable.nib +++ b/English.lproj/SaveHTMLPreview.nib/designable.nib @@ -1,37 +1,28 @@ - + 1050 10J869 - 1305 + 1306 1038.35 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 1305 + 1306 - - YES + NSCustomView NSTextField NSButtonCell NSTextFieldCell NSButton NSCustomObject - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - - - YES + + + PreviewController @@ -44,15 +35,12 @@ 268 - - YES + 268 {{25, 9}, {244, 34}} - - YES 67239424 @@ -84,7 +72,6 @@ 268 {{26, 49}, {242, 18}} - YES @@ -112,17 +99,15 @@ 25 - + {286, 75} - NSView - + - - YES + accessoryView @@ -147,13 +132,12 @@ 47 - + - - YES + 0 - + @@ -178,21 +162,19 @@ 7 - - YES + - + View 42 - - YES + - + @@ -203,10 +185,9 @@ 45 - - YES + - + @@ -214,244 +195,39 @@ - + - - YES - - YES - 42.IBPluginDependency - 42.IBViewBoundsToFrameTransform - 43.IBPluginDependency - 45.IBPluginDependency - 46.IBPluginDependency - 7.IBEditorWindowLastContentRect - 7.IBPluginDependency - 7.IBUserGuides - 7.WindowOrigin - 7.editorWindowContentRectSynchronizationRect + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCiAAAwggAAA - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCiAAAwggAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{297, 274}, {286, 58}} - com.apple.InterfaceBuilder.CocoaPlugin - - YES - - {332, 343} - {{403, 401}, {264, 327}} - - - - YES - - - + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{297, 274}, {286, 58}} + com.apple.InterfaceBuilder.CocoaPlugin + + {332, 343} + {{403, 401}, {264, 327}} + + - - YES - - - + 47 - - - YES - - PreviewController - NSWindowController - - YES - - YES - cancelShare: - hideShareURL: - openShareURL: - saveHTML: - shareAsk: - shareNote: - switchTabs: - - - YES - id - id - id - id - id - id - id - - - - YES - - YES - cancelShare: - hideShareURL: - openShareURL: - saveHTML: - shareAsk: - shareNote: - switchTabs: - - - YES - - cancelShare: - id - - - hideShareURL: - id - - - openShareURL: - id - - - saveHTML: - id - - - shareAsk: - id - - - shareNote: - id - - - switchTabs: - id - - - - - YES - - YES - accessoryView - includeTemplate - preview - shareConfirmation - shareNotification - sourceView - tabView - templateNote - urlTextField - - - YES - NSView - NSButton - WebView - NSView - NSView - NSTextView - NSTabView - NSTextField - NSTextField - - - - YES - - YES - accessoryView - includeTemplate - preview - shareConfirmation - shareNotification - sourceView - tabView - templateNote - urlTextField - - - YES - - accessoryView - NSView - - - includeTemplate - NSButton - - - preview - WebView - - - shareConfirmation - NSView - - - shareNotification - NSView - - - sourceView - NSTextView - - - tabView - NSTabView - - - templateNote - NSTextField - - - urlTextField - NSTextField - - - - - IBProjectSource - ./Classes/PreviewController.h - - - - WebView - - reloadFromOrigin: - id - - - reloadFromOrigin: - - reloadFromOrigin: - id - - - - IBProjectSource - ./Classes/WebView.h - - - - + 0 IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES 3 diff --git a/English.lproj/SaveHTMLPreview.nib/keyedobjects.nib b/English.lproj/SaveHTMLPreview.nib/keyedobjects.nib index 08a0f01f..456da000 100644 Binary files a/English.lproj/SaveHTMLPreview.nib/keyedobjects.nib and b/English.lproj/SaveHTMLPreview.nib/keyedobjects.nib differ diff --git a/English.lproj/SavedSearches.nib/designable.nib b/English.lproj/SavedSearches.nib/designable.nib index d6485b9b..c7e79dcc 100644 --- a/English.lproj/SavedSearches.nib/designable.nib +++ b/English.lproj/SavedSearches.nib/designable.nib @@ -1,14 +1,14 @@ - 1060 + 1050 10J869 - 1305 + 1306 1038.35 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 1305 + 1306 NSView @@ -66,7 +66,6 @@ 256 {286, 159} - YES @@ -191,7 +190,6 @@ {286, 159} - @@ -202,7 +200,6 @@ 256 {{286, 0}, {11, 159}} - 256 _doScroller: @@ -213,7 +210,6 @@ -2147483392 {{-100, -100}, {132, 11}} - 257 _doScroller: @@ -222,7 +218,6 @@ {{10, 39}, {297, 159}} - 16 @@ -235,7 +230,6 @@ 292 {{9, 6}, {25, 25}} - YES @@ -259,7 +253,6 @@ 292 {{36, 6}, {23, 25}} - YES 604110336 @@ -280,9 +273,8 @@ {{7, 11}, {317, 207}} - - {{0, 0}, {1920, 1058}} + {{0, 0}, {1440, 878}} {255, 83} {1e+13, 1e+13} bookmarksWindow @@ -478,6 +470,7 @@ com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -511,9 +504,15 @@ com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin @@ -522,23 +521,12 @@ 388 - - - - BookmarksTable - NSTableView - - IBProjectSource - ./Classes/BookmarksTable.h - - - - + 0 IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - + YES 3 diff --git a/English.lproj/SavedSearches.nib/keyedobjects.nib b/English.lproj/SavedSearches.nib/keyedobjects.nib index 96c90868..d2a5cd12 100644 Binary files a/English.lproj/SavedSearches.nib/keyedobjects.nib and b/English.lproj/SavedSearches.nib/keyedobjects.nib differ diff --git a/English.lproj/URLGetter.nib/designable.nib b/English.lproj/URLGetter.nib/designable.nib index c864d370..1ee34596 100644 --- a/English.lproj/URLGetter.nib/designable.nib +++ b/English.lproj/URLGetter.nib/designable.nib @@ -1,34 +1,30 @@ - + - 1060 - 10C540 - 740 - 1038.25 - 458.00 + 1050 + 10J869 + 1306 + 1038.35 + 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 740 + 1306 - - YES - - - - YES + + NSTextField + NSView + NSWindowTemplate + NSProgressIndicator + NSTextFieldCell + NSButtonCell + NSButton + NSCustomObject + + com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES + + + URLGetter @@ -50,13 +46,11 @@ View - {1.79769e+308, 1.79769e+308} {213, 107} 256 - - YES + 1282 @@ -145,18 +139,17 @@ 25 - - {460, 122} + + {{7, 11}, {460, 122}} - {{0, 0}, {1920, 1178}} + {{0, 0}, {1440, 878}} {213, 129} - {1.79769e+308, 1.79769e+308} + {1e+13, 1e+13} - + - - YES + progress @@ -205,13 +198,12 @@ 340 - + - - YES + 0 - + @@ -230,23 +222,21 @@ 328 - - YES + - + Panel 329 - - YES + - + @@ -257,28 +247,25 @@ 332 - - YES + - + 333 - - YES + - + 334 - - YES + - + @@ -302,817 +289,74 @@ Application - - - - YES - - YES - 328.IBEditorWindowLastContentRect - 328.IBPluginDependency - 328.IBPropertyAccessControl - 328.IBWindowTemplateEditedContentRect - 328.ImportedFromIB2 - 328.windowTemplate.hasMinSize - 328.windowTemplate.minSize - 329.IBPluginDependency - 329.ImportedFromIB2 - 331.IBPluginDependency - 331.IBPropertyAccessControl - 331.ImportedFromIB2 - 332.IBPluginDependency - 332.IBPropertyAccessControl - 332.ImportedFromIB2 - 333.IBPluginDependency - 333.IBPropertyAccessControl - 333.ImportedFromIB2 - 334.IBPluginDependency - 334.IBPropertyAccessControl - 334.ImportedFromIB2 - - - YES - {{268, 535}, {460, 122}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{268, 535}, {460, 122}} - - - {213, 107} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - - YES - - - YES - + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{268, 535}, {460, 122}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{268, 535}, {460, 122}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - - YES - - + 344 - - YES + FirstResponder : id - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSObject - - YES - - YES - didAdjustSubviews: - willAdjustSubviews: - - - YES - RBSplitView - RBSplitView - - - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - RBSplitSubview - NSView - - IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h - - - - RBSplitView - RBSplitSubview - - delegate - id - - - - - RBSplitView - - - - URLGetter - NSObject - - YES - - YES - cancelDownload: - startProgressIndication: - - - YES - id - id - - - - YES - - YES - cancelButton - delegate - objectURLStatus - progress - progressStatus - userData - window - - - YES - NSButton - id - NSTextField - NSProgressIndicator - NSTextField - id - NSPanel + + : + + : + id - - IBProjectSource - URLGetter.h - - - - URLGetter - NSObject IBUserSource - - - YES - - NSActionCell - NSCell - - IBFrameworkSource - AppKit.framework/Headers/NSActionCell.h - - - - NSApplication - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSApplication.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSApplicationScripting.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSColorPanel.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSHelpManager.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSPageLayout.h - - - - NSApplication - - IBFrameworkSource - AppKit.framework/Headers/NSUserInterfaceItemSearching.h - - - - NSButton - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSButton.h - - - - NSButtonCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSButtonCell.h - - - - NSCell - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSCell.h - - - - NSControl - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSControl.h - - - - NSFormatter - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFormatter.h - - - - NSMenu - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSMenu.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSAccessibility.h - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDictionaryController.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSDragging.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontManager.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSFontPanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSKeyValueBinding.h - - - - NSObject - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSNibLoading.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSOutlineView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSPasteboard.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSSavePanel.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSTableView.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSToolbarItem.h - - - - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSView.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObjectScripting.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSPortCoder.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptClassDescription.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptObjectSpecifiers.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSScriptWhoseTests.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLDownload.h - - - - NSObject - - IBFrameworkSource - PrintCore.framework/Headers/PDEPluginInterface.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFAuthorizationView.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFCertificatePanel.h - - - - NSObject - - IBFrameworkSource - SecurityInterface.framework/Headers/SFChooseIdentityPanel.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUAppcast.h - - - - NSObject - - IBFrameworkSource - Sparkle.framework/Headers/SUUpdater.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebDownload.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebEditingDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebFrameLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebJavaPlugIn.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPlugin.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPluginContainer.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebPolicyDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebResourceLoadDelegate.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebScriptObject.h - - - - NSObject - - IBFrameworkSource - WebKit.framework/Headers/WebUIDelegate.h - - - - NSPanel - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSPanel.h - - - - NSProgressIndicator - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSProgressIndicator.h - - - - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSInterfaceStyle.h - - - - NSResponder - NSObject - - IBFrameworkSource - AppKit.framework/Headers/NSResponder.h - - - - NSTextField - NSControl - - IBFrameworkSource - AppKit.framework/Headers/NSTextField.h - - - - NSTextFieldCell - NSActionCell - - IBFrameworkSource - AppKit.framework/Headers/NSTextFieldCell.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSClipView.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSMenuItem.h - - - - NSView - - IBFrameworkSource - AppKit.framework/Headers/NSRulerView.h - - - - NSView - NSResponder - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSDrawer.h - - - - NSWindow - NSResponder - - IBFrameworkSource - AppKit.framework/Headers/NSWindow.h - - - - NSWindow - - IBFrameworkSource - AppKit.framework/Headers/NSWindowScripting.h - - - + 0 + IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - + com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES - ../Notation.xcodeproj 3 diff --git a/English.lproj/URLGetter.nib/keyedobjects.nib b/English.lproj/URLGetter.nib/keyedobjects.nib index b5daaa83..8f60e90d 100644 Binary files a/English.lproj/URLGetter.nib/keyedobjects.nib and b/English.lproj/URLGetter.nib/keyedobjects.nib differ diff --git a/GlobalPrefs.h b/GlobalPrefs.h index 6c192118..5410a6f5 100755 --- a/GlobalPrefs.h +++ b/GlobalPrefs.h @@ -198,6 +198,8 @@ BOOL ColorsEqualWith8BitChannels(NSColor *c1, NSColor *c2); - (BOOL)showGrid; - (void)setAlternatingRows:(BOOL)value sender:(id)sender; - (BOOL)alternatingRows; +- (void)setUseAutoPairing:(BOOL)value; +- (BOOL)useAutoPairing; @end @interface NSObject (GlobalPrefsDelegate) diff --git a/GlobalPrefs.m b/GlobalPrefs.m index 3af52c8a..d6f38f2d 100755 --- a/GlobalPrefs.m +++ b/GlobalPrefs.m @@ -84,6 +84,7 @@ static NSString *RTLKey = @"rtl"; static NSString *ShowWordCount = @"ShowWordCount"; static NSString *markupPreviewMode = @"markupPreviewMode"; +static NSString *UseAutoPairing = @"UseAutoPairing"; //static NSString *PasteClipboardOnNewNoteKey = @"PasteClipboardOnNewNote"; //these 4 strings manually localized @@ -153,6 +154,7 @@ - (id)init { [NSNumber numberWithBool:NO], UseReadabilityKey, [NSNumber numberWithBool:YES], ShowGridKey, [NSNumber numberWithBool:NO], AlternatingRowsKey, + [NSNumber numberWithBool:NO], UseAutoPairing, [NSArchiver archivedDataWithRootObject: [NSFont fontWithName:@"Helvetica" size:12.0f]], NoteBodyFontKey, @@ -466,6 +468,13 @@ - (BOOL)alternatingRows { return [defaults boolForKey:AlternatingRowsKey]; } +- (void)setUseAutoPairing:(BOOL)value{ + [defaults setBool:value forKey:UseAutoPairing]; +} + +- (BOOL)useAutoPairing{ + return [defaults boolForKey:UseAutoPairing]; +} - (void)setShouldHighlightSearchTerms:(BOOL)shouldHighlight sender:(id)sender { [defaults setBool:shouldHighlight forKey:HighlightSearchTermsKey]; diff --git a/Images/nvMenu.bak.png b/Images/nvMenu.bak.png deleted file mode 100644 index 1e063c6f..00000000 Binary files a/Images/nvMenu.bak.png and /dev/null differ diff --git a/Images/nvMenu.png b/Images/nvMenu.png index dbc7c493..1e063c6f 100644 Binary files a/Images/nvMenu.png and b/Images/nvMenu.png differ diff --git a/Images/nvMenuC.bak.png b/Images/nvMenuC.bak.png deleted file mode 100644 index c73b62e8..00000000 Binary files a/Images/nvMenuC.bak.png and /dev/null differ diff --git a/Images/nvMenuC.png b/Images/nvMenuC.png index 039c17e3..c73b62e8 100644 Binary files a/Images/nvMenuC.png and b/Images/nvMenuC.png differ diff --git a/Images/nvMenuDark.bak.png b/Images/nvMenuDark.bak.png deleted file mode 100644 index 4dbabcaa..00000000 Binary files a/Images/nvMenuDark.bak.png and /dev/null differ diff --git a/Images/nvMenuDark.png b/Images/nvMenuDark.png index 483bad6d..4dbabcaa 100644 Binary files a/Images/nvMenuDark.png and b/Images/nvMenuDark.png differ diff --git a/Info.plist b/Info.plist index e9b78413..dc3909e0 100755 --- a/Info.plist +++ b/Info.plist @@ -159,7 +159,7 @@ CFBundleVersion - 60 + 73 LSApplicationCategoryType public.app-category.productivity LSArchitecturePriority @@ -169,7 +169,7 @@ ppc LSMinimumSystemVersion - 10.4.4 + 10.4.11 LSMinimumSystemVersionByArchitecture i386 @@ -216,6 +216,10 @@ OSAScriptingDefinition Notation.sdef + SmartCrashReports_CompanyName + Notational.net + SmartCrashReports_EmailTicket + SCR-51ED0F7B2A SUCheckAtStartup SUFeedURL @@ -224,10 +228,6 @@ dsa_pub.pem SUScheduledCheckInterval 345600 - SmartCrashReports_CompanyName - Notational.net - SmartCrashReports_EmailTicket - SCR-51ED0F7B2A UTExportedTypeDeclarations UTImportedTypeDeclarations diff --git a/LinkingEditor.h b/LinkingEditor.h index 73a25341..27c09c78 100755 --- a/LinkingEditor.h +++ b/LinkingEditor.h @@ -81,6 +81,7 @@ //elasticwork - (void)switchFindPanelDelegate; - (IBAction)findInFullscreen; +- (IBAction)insertLink:(id)sender; // @end diff --git a/LinkingEditor.m b/LinkingEditor.m index a5c18e74..0102ba34 100755 --- a/LinkingEditor.m +++ b/LinkingEditor.m @@ -912,6 +912,62 @@ - (void)insertTabIgnoringFieldEditor:(id)sender { } } +- (void)insertText:(id)string { + BOOL interpretEvent = YES; + if (([prefsController useAutoPairing])&&([[NSArray arrayWithObjects:@"\"",@"[",@"{",@"(",@"]",@"}",@")", nil] containsObject:string])){ + NSString *appendString = string; + NSRange selRange = [self selectedRange]; + NSString *postString =@""; + postString = [[self string] substringFromIndex:selRange.location+selRange.length]; + if (!postString) { + postString=@""; + } + if (([[NSArray arrayWithObjects:@"]",@"}",@")", nil] containsObject:appendString])&&([postString hasPrefix:appendString])&&(selRange.length==0)) { + interpretEvent=NO; + selRange.length=1; + [self setSelectedRange:selRange]; + [super insertText:appendString]; + }else if ([[NSArray arrayWithObjects:@"\"",@"[",@"{",@"(", nil] containsObject:appendString]){ + NSString *oppositeAppend = appendString; + + if ([appendString isEqualToString:@"["]) { + oppositeAppend = @"]"; + }else if ([appendString isEqualToString:@"{"]) { + oppositeAppend = @"}"; + }else if ([appendString isEqualToString:@"("]) { + oppositeAppend = @")"; + } + + interpretEvent=NO; + if (([postString hasPrefix:oppositeAppend])&&(![[[self string]substringToIndex:selRange.location] hasSuffix:appendString])) { + //NSLog(@"gotchas2"); + interpretEvent=YES; + } + if (!interpretEvent) { + int extra = appendString.length; + if (selRange.length>0) { + NSString *selString = [[self string] substringWithRange:selRange]; + appendString = [NSString stringWithFormat:@"%@%@%@",appendString,selString,oppositeAppend]; + extra = extra+selString.length+oppositeAppend.length; + }else { + if (([appendString isEqualToString:@"\""])&&([postString hasPrefix:@"\""])) { + appendString = @""; + oppositeAppend = @""; + } + appendString = [appendString stringByAppendingString:oppositeAppend]; + } + [super insertText:appendString]; + [self setSelectedRange:NSMakeRange(selRange.location+extra, 0)]; + } + + } + } + if (interpretEvent){ + [super insertText:string]; + } +} + + - (void)deleteBackward:(id)sender { NSRange charRange = [self rangeForUserTextChange]; @@ -1440,11 +1496,16 @@ - (void)setupFontMenu { NSMenu *theMenu = [[[NSMenu alloc] initWithTitle:@"NVFontMenu"] autorelease]; NSMenuItem *theMenuItem; if(IsLeopardOrLater){ - theMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Toggle Fullscreen Mode",@"toggle fs menu item title") action:@selector(toggleFullscreen:) keyEquivalent:@""] autorelease]; + + theMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Enter Full Screen",@"toggle fs menu item title") action:@selector(switchFullScreen:) keyEquivalent:@""] autorelease]; [theMenuItem setTarget:[NSApp delegate]]; [theMenu addItem:theMenuItem]; - [theMenu addItem:[NSMenuItem separatorItem]]; } + theMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Insert Link",@"insert link menu item title") action:@selector(insertLink:) keyEquivalent:@""] autorelease]; + [theMenuItem setTarget:self]; + [theMenu addItem:theMenuItem]; + [theMenu addItem:[NSMenuItem separatorItem]]; + theMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Cut",@"cut menu item title") action:@selector(cut:) keyEquivalent:@""] autorelease]; [theMenuItem setTarget:self]; [theMenu addItem:theMenuItem]; @@ -1494,13 +1555,17 @@ - (void)setupFontMenu { NSMenu *editMenu = [[NSApp mainMenu] numberOfItems] > 2 ? [[[NSApp mainMenu] itemAtIndex:2] submenu] : nil; if (IsSnowLeopardOrLater) { + theMenuItem = [[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Use Automatic Text Replacement", "use-text-replacement command in the edit menu") action:@selector(toggleAutomaticTextReplacement:) keyEquivalent:@""]; [theMenuItem setTarget:self]; [editMenu addItem:theMenuItem]; [theMenuItem release]; } - + theMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Insert Link",@"insert link menu item title") action:@selector(insertLink:) keyEquivalent:@"L"] autorelease]; + [theMenuItem setTarget:self]; + [editMenu addItem:theMenuItem]; + [editMenu addItem:[NSMenuItem separatorItem]]; #if PASSWORD_SUGGESTIONS @@ -1565,6 +1630,24 @@ - (void)dealloc { //elasticwork + +- (IBAction)insertLink:(id)sender{ + if ([[self window] firstResponder]!=self) { + [[self window] makeFirstResponder:self]; + } + NSRange selRange = [self selectedRange]; + if (selRange.length>0) { + NSString *selString = [[self string] substringWithRange:selRange]; + selString = [NSString stringWithFormat:@"%@%@%@",@"[[",selString,@"]]"]; + [super insertText:selString]; + + }else{ + [super insertText:@"[[]]"]; + [self setSelectedRange:NSMakeRange([self selectedRange].location-2, 0)]; + } + +} + - (void)switchFindPanelDelegate{ NSTextFinder *textFinder = [NSTextFinder sharedTextFinder]; if ([[[self window] contentView] isInFullScreenMode]) { diff --git a/NSTextFinder.h b/NSTextFinder.h index 6d76f6b2..d20dcb73 100755 --- a/NSTextFinder.h +++ b/NSTextFinder.h @@ -6,13 +6,16 @@ * */ +enum {LAST_FIND_UNKNOWN, LAST_FIND_NO, LAST_FIND_YES}; +//#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_7 +#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7 +//#if NSFoundationVersionNumber < NSFoundationVersionNumber10_7 #import -enum {LAST_FIND_UNKNOWN, LAST_FIND_NO, LAST_FIND_YES}; @interface NSTextFinder : NSObject { - #if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 +#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5 //10.6 NSComboBox *findComboBox; NSComboBox *replaceComboBox; @@ -37,7 +40,7 @@ enum {LAST_FIND_UNKNOWN, LAST_FIND_NO, LAST_FIND_YES}; NSMutableArray *recentFindOptions; NSMutableArray *recentReplaceStrings; NSInteger numberOfRecentStrings; - #else +#else // 10.4 NSTextField *findTextField; NSTextField *replaceTextField; @@ -52,11 +55,11 @@ enum {LAST_FIND_UNKNOWN, LAST_FIND_NO, LAST_FIND_YES}; NSPopUpButton *matchPopUp; NSTextView *fieldEditor; NSString *findString; - @public +@public BOOL lastFindWasSuccessful; BOOL findStringChangedInUI; BOOL findStringNeedsToBeRefreshedFromPB; - #endif +#endif } + (id)sharedTextFinder; @@ -162,3 +165,5 @@ enum {LAST_FIND_UNKNOWN, LAST_FIND_NO, LAST_FIND_YES}; @end #endif + +#endif diff --git a/Notation.xcodeproj/project.pbxproj b/Notation.xcodeproj/project.pbxproj index 08fba998..fc8ee28f 100755 --- a/Notation.xcodeproj/project.pbxproj +++ b/Notation.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 45; + objectVersion = 46; objects = { /* Begin PBXBuildFile section */ @@ -126,25 +126,35 @@ 21FF94F70B5AD23B00DB6A2F /* ExporterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 21FF94F50B5AD23B00DB6A2F /* ExporterManager.m */; }; 57F27F7B11973A7F00C63ACF /* Notation.sdef in Resources */ = {isa = PBXBuildFile; fileRef = 57F27F7A11973A7F00C63ACF /* Notation.sdef */; }; 57F27FB91197407400C63ACF /* SearchCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 57F27FB81197407400C63ACF /* SearchCommand.m */; }; + 5C0C545F13A54E920008BC90 /* Preferences.xib in Resources */ = {isa = PBXBuildFile; fileRef = 219195E409D3A20F00586B15 /* Preferences.xib */; }; + 5C0C546113A54ED90008BC90 /* PassphrasePicker.nib in Resources */ = {isa = PBXBuildFile; fileRef = 214495740ADCC06300E2A2B6 /* PassphrasePicker.nib */; }; 5C1830CA132EA675005E2210 /* MarkupPreview.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5C1830CC132EA675005E2210 /* MarkupPreview.xib */; }; 5C1830CD132EA687005E2210 /* SaveHTMLPreview.nib in Resources */ = {isa = PBXBuildFile; fileRef = 5C1830CF132EA687005E2210 /* SaveHTMLPreview.nib */; }; 5C2CC185134989A8006FFE56 /* nvMenu.png in Resources */ = {isa = PBXBuildFile; fileRef = 5C2CC182134989A8006FFE56 /* nvMenu.png */; }; 5C2CC186134989A8006FFE56 /* nvMenuC.png in Resources */ = {isa = PBXBuildFile; fileRef = 5C2CC183134989A8006FFE56 /* nvMenuC.png */; }; 5C2CC18A134989D7006FFE56 /* nvMenuDark.png in Resources */ = {isa = PBXBuildFile; fileRef = 5C2CC189134989D7006FFE56 /* nvMenuDark.png */; }; 5C2FAD2B1333970200FBFD34 /* ETScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C2CD036132ED47900CA0D7C /* ETScrollView.m */; }; + 5C48A28213A54FBD006B73DD /* PassphraseChanger.nib in Resources */ = {isa = PBXBuildFile; fileRef = 214495810ADCC07E00E2A2B6 /* PassphraseChanger.nib */; }; + 5C48A28513A54FCA006B73DD /* PassphraseRetriever.nib in Resources */ = {isa = PBXBuildFile; fileRef = 21973A230AFE447A0046683E /* PassphraseRetriever.nib */; }; + 5C48A28713A54FD6006B73DD /* KeyDerivationManager.nib in Resources */ = {isa = PBXBuildFile; fileRef = 21544FB80B06331800C0D1D5 /* KeyDerivationManager.nib */; }; + 5C48A28913A54FE1006B73DD /* BlorPasswordRetriever.nib in Resources */ = {isa = PBXBuildFile; fileRef = 211344BA0B3551BD0081B064 /* BlorPasswordRetriever.nib */; }; + 5C48A28B13A54FEB006B73DD /* PTKeyComboPanel.nib in Resources */ = {isa = PBXBuildFile; fileRef = 21F1CD990B3A3F88001FB5F6 /* PTKeyComboPanel.nib */; }; + 5C48A28D13A54FF4006B73DD /* ExporterManager.nib in Resources */ = {isa = PBXBuildFile; fileRef = 21FF94ED0B5AD22800DB6A2F /* ExporterManager.nib */; }; + 5C48A28F13A54FFC006B73DD /* ImporterAccessory.nib in Resources */ = {isa = PBXBuildFile; fileRef = 216BA24110746E3900F62D93 /* ImporterAccessory.nib */; }; + 5C48A29113A55006006B73DD /* SavedSearches.nib in Resources */ = {isa = PBXBuildFile; fileRef = 2110C0CF0B65F09E00F5C52E /* SavedSearches.nib */; }; + 5C48A29313A5500F006B73DD /* URLGetter.nib in Resources */ = {isa = PBXBuildFile; fileRef = 21E6B0950B6E6D0B001ABEDC /* URLGetter.nib */; }; + 5C48A29513A55016006B73DD /* FindPanel.nib in Resources */ = {isa = PBXBuildFile; fileRef = 213621E70B92413F008C0830 /* FindPanel.nib */; }; + 5C48A29813A55057006B73DD /* PassphrasePicker.nib in Resources */ = {isa = PBXBuildFile; fileRef = 214495740ADCC06300E2A2B6 /* PassphrasePicker.nib */; }; + 5C48A29A13A55061006B73DD /* PassphraseChanger.nib in Resources */ = {isa = PBXBuildFile; fileRef = 214495810ADCC07E00E2A2B6 /* PassphraseChanger.nib */; }; + 5C48A29C13A55078006B73DD /* PassphraseRetriever.nib in Resources */ = {isa = PBXBuildFile; fileRef = 21973A230AFE447A0046683E /* PassphraseRetriever.nib */; }; + 5C48A29D13A55078006B73DD /* KeyDerivationManager.nib in Resources */ = {isa = PBXBuildFile; fileRef = 21544FB80B06331800C0D1D5 /* KeyDerivationManager.nib */; }; + 5C48A2A013A5508C006B73DD /* KeyDerivationManager.nib in Resources */ = {isa = PBXBuildFile; fileRef = 21544FB80B06331800C0D1D5 /* KeyDerivationManager.nib */; }; + 5C48A2A113A5508C006B73DD /* BlorPasswordRetriever.nib in Resources */ = {isa = PBXBuildFile; fileRef = 211344BA0B3551BD0081B064 /* BlorPasswordRetriever.nib */; }; 5C49E365131C5CC500696B68 /* Credits.html in Resources */ = {isa = PBXBuildFile; fileRef = 5C49E364131C5CC500696B68 /* Credits.html */; }; 5C4B353E1307220E00014119 /* TransparentScrollerKnobTop.tif in Resources */ = {isa = PBXBuildFile; fileRef = 5C4B35361307220E00014119 /* TransparentScrollerKnobTop.tif */; }; 5C4B35401307220E00014119 /* TransparentScrollerSlotBottom.tif in Resources */ = {isa = PBXBuildFile; fileRef = 5C4B35381307220E00014119 /* TransparentScrollerSlotBottom.tif */; }; 5C4B35421307220E00014119 /* TransparentScrollerSlotVerticalFill.tif in Resources */ = {isa = PBXBuildFile; fileRef = 5C4B353A1307220E00014119 /* TransparentScrollerSlotVerticalFill.tif */; }; 5C4B356A1307225000014119 /* ETTransparentScroller.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C4B35691307225000014119 /* ETTransparentScroller.m */; }; - 5C671531133294F30020CCBC /* Atalhos Incrivelmente Úteis.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96D56132EA29D0079B3FD /* Atalhos Incrivelmente Úteis.nvhelp */; }; - 5C671532133294F30020CCBC /* Como funciona isso?.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96D5C132EA29D0079B3FD /* Como funciona isso?.nvhelp */; }; - 5C671533133294F30020CCBC /* Este é o título de uma nota.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96D64132EA29D0079B3FD /* Este é o título de uma nota.nvhelp */; }; - 5C671534133294F30020CCBC /* Informações de Contato.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96D6F132EA29D0079B3FD /* Informações de Contato.nvhelp */; }; - 5C671539133295280020CCBC /* Atalhos Incrivelmente Úteis.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96D56132EA29D0079B3FD /* Atalhos Incrivelmente Úteis.nvhelp */; }; - 5C67153A133295280020CCBC /* Como funciona isso?.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96D5C132EA29D0079B3FD /* Como funciona isso?.nvhelp */; }; - 5C67153B133295280020CCBC /* Este é o título de uma nota.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96D64132EA29D0079B3FD /* Este é o título de uma nota.nvhelp */; }; - 5C67153C133295280020CCBC /* Informações de Contato.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96D6F132EA29D0079B3FD /* Informações de Contato.nvhelp */; }; 5C94376F132A0C9E00B08B80 /* greyscrollervertbottom3.tif in Resources */ = {isa = PBXBuildFile; fileRef = 5C94376C132A0C9D00B08B80 /* greyscrollervertbottom3.tif */; }; 5C943771132A0C9E00B08B80 /* greyscrollerverttop3.tif in Resources */ = {isa = PBXBuildFile; fileRef = 5C94376E132A0C9D00B08B80 /* greyscrollerverttop3.tif */; }; 5C96F4FF131C2F9500A2E4AC /* TabClose_Front_Pressed.tif in Resources */ = {isa = PBXBuildFile; fileRef = 5C96F4FC131C2F9500A2E4AC /* TabClose_Front_Pressed.tif */; }; @@ -195,7 +205,6 @@ 5CF33C721308B478002B5499 /* NotesTableHeaderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CF33C711308B478002B5499 /* NotesTableHeaderCell.m */; }; 5CF96C43132EA1890079B3FD /* Ceci est le titre d'une note.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96C0B132EA1880079B3FD /* Ceci est le titre d'une note.nvhelp */; }; 5CF96C45132EA1890079B3FD /* Contact.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96C0F132EA1880079B3FD /* Contact.nvhelp */; }; - 5CF96CB0132EA1890079B3FD /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 8D1107310486CEB800E47090 /* Info.plist */; }; 5CF96CBD132EA1890079B3FD /* PassphrasePicker.nib in Resources */ = {isa = PBXBuildFile; fileRef = 214495740ADCC06300E2A2B6 /* PassphrasePicker.nib */; }; 5CF96CDD132EA1980079B3FD /* Kontaktdaten.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96CCA132EA1970079B3FD /* Kontaktdaten.nvhelp */; }; 5CF96D93132EA29D0079B3FD /* Atalhos Incrivelmente Úteis.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 5CF96D56132EA29D0079B3FD /* Atalhos Incrivelmente Úteis.nvhelp */; }; @@ -237,7 +246,6 @@ 5CF96DE7132EA29D0079B3FD /* Notes.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 215DEA4609EF6446009A710B /* Notes.tiff */; }; 5CF96DE8132EA29D0079B3FD /* General.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 215DEA3D09EF5323009A710B /* General.tiff */; }; 5CF96DEA132EA29D0079B3FD /* Add_Pressed.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 219196BB09D4F20000586B15 /* Add_Pressed.tiff */; }; - 5CF96DEB132EA29D0079B3FD /* Add.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 219196BC09D4F20000586B15 /* Add.tiff */; }; 5CF96DEC132EA29D0079B3FD /* Remove_Pressed.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 219196BD09D4F20000586B15 /* Remove_Pressed.tiff */; }; 5CF96DED132EA29D0079B3FD /* Remove.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 219196BE09D4F20000586B15 /* Remove.tiff */; }; 5CF96DEF132EA29D0079B3FD /* MakeDefault.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 21A38EE312EA864400CEB5F0 /* MakeDefault.tiff */; }; @@ -260,7 +268,6 @@ 8D11072D0486CEB800E47090 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; }; 8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; }; 93099628138BD61000368C45 /* tp2md.rb in Resources */ = {isa = PBXBuildFile; fileRef = 93099627138BD61000368C45 /* tp2md.rb */; }; - 937E6782138C24980099DF47 /* AutoHyperlinks.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 937E6781138C24980099DF47 /* AutoHyperlinks.framework */; }; 937E6783138C250E0099DF47 /* AutoHyperlinks.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 937E6781138C24980099DF47 /* AutoHyperlinks.framework */; }; 93A158BC133C304D00E1E7DA /* Markdownify.nvhelp in Resources */ = {isa = PBXBuildFile; fileRef = 93A158BB133C304D00E1E7DA /* Markdownify.nvhelp */; }; 93A158BE133C497400E1E7DA /* Notality.icns in Resources */ = {isa = PBXBuildFile; fileRef = 93A158BD133C497400E1E7DA /* Notality.icns */; }; @@ -556,6 +563,11 @@ 57F27F7A11973A7F00C63ACF /* Notation.sdef */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = Notation.sdef; sourceTree = ""; }; 57F27FB71197407400C63ACF /* SearchCommand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchCommand.h; sourceTree = ""; }; 57F27FB81197407400C63ACF /* SearchCommand.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchCommand.m; sourceTree = ""; }; + 5C0C545A13A54E560008BC90 /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/DeletionManager.nib; sourceTree = ""; }; + 5C0C545C13A54E5A0008BC90 /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/DeletionManager.nib; sourceTree = ""; }; + 5C0C545D13A54E670008BC90 /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/EncodingsManager.nib; sourceTree = ""; }; + 5C0C545E13A54E920008BC90 /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/EncodingsManager.nib; sourceTree = ""; }; + 5C0C546013A54ED90008BC90 /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/NotationPrefsView.nib; sourceTree = ""; }; 5C1830CB132EA675005E2210 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MarkupPreview.xib; sourceTree = ""; }; 5C1830CE132EA687005E2210 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/SaveHTMLPreview.nib; sourceTree = ""; }; 5C1830D3132EA6A4005E2210 /* fr */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = fr; path = fr.lproj/SaveHTMLPreview.nib; sourceTree = ""; }; @@ -566,6 +578,29 @@ 5C2CC189134989D7006FFE56 /* nvMenuDark.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nvMenuDark.png; path = Images/nvMenuDark.png; sourceTree = ""; }; 5C2CD035132ED47900CA0D7C /* ETScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ETScrollView.h; sourceTree = ""; }; 5C2CD036132ED47900CA0D7C /* ETScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ETScrollView.m; sourceTree = ""; }; + 5C48A28113A54FBD006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/PassphrasePicker.nib; sourceTree = ""; }; + 5C48A28413A54FCA006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/PassphraseChanger.nib; sourceTree = ""; }; + 5C48A28613A54FD6006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/PassphraseRetriever.nib; sourceTree = ""; }; + 5C48A28813A54FE1006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/KeyDerivationManager.nib; sourceTree = ""; }; + 5C48A28A13A54FEB006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/BlorPasswordRetriever.nib; sourceTree = ""; }; + 5C48A28C13A54FF4006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/PTKeyComboPanel.nib; sourceTree = ""; }; + 5C48A28E13A54FFC006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/ExporterManager.nib; sourceTree = ""; }; + 5C48A29013A55006006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/ImporterAccessory.nib; sourceTree = ""; }; + 5C48A29213A5500F006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/SavedSearches.nib; sourceTree = ""; }; + 5C48A29413A55016006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/URLGetter.nib; sourceTree = ""; }; + 5C48A29613A5501F006B73DD /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/FindPanel.nib; sourceTree = ""; }; + 5C48A29713A55057006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/NotationPrefsView.nib; sourceTree = ""; }; + 5C48A29913A55061006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/PassphrasePicker.nib; sourceTree = ""; }; + 5C48A29B13A55078006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/PassphraseChanger.nib; sourceTree = ""; }; + 5C48A29E13A5508C006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/KeyDerivationManager.nib; sourceTree = ""; }; + 5C48A29F13A5508C006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/PassphraseRetriever.nib; sourceTree = ""; }; + 5C48A2A213A550B0006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/BlorPasswordRetriever.nib; sourceTree = ""; }; + 5C48A2A313A550B0006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/ExporterManager.nib; sourceTree = ""; }; + 5C48A2A413A550B0006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/FindPanel.nib; sourceTree = ""; }; + 5C48A2A513A550B0006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/ImporterAccessory.nib; sourceTree = ""; }; + 5C48A2A613A550B0006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/PTKeyComboPanel.nib; sourceTree = ""; }; + 5C48A2A713A550B0006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/SavedSearches.nib; sourceTree = ""; }; + 5C48A2A813A550B0006B73DD /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/URLGetter.nib; sourceTree = ""; }; 5C49E364131C5CC500696B68 /* Credits.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = Credits.html; sourceTree = ""; }; 5C49E553131C72FD00696B68 /* dsa_pub.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = dsa_pub.pem; sourceTree = ""; }; 5C4B35351307220E00014119 /* TransparentScrollerKnobBottom.tif */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = TransparentScrollerKnobBottom.tif; sourceTree = ""; }; @@ -630,6 +665,16 @@ 5CC2DF0A13083BCF006772D9 /* StatusItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StatusItemView.m; sourceTree = ""; }; 5CCEEF1B130B599B00E15B77 /* DFView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DFView.h; sourceTree = ""; }; 5CCEEF1C130B599B00E15B77 /* DFView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DFView.m; sourceTree = ""; }; + 5CDBA8E413A5449900E7494E /* it */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = it; path = it.lproj/MarkupPreview.xib; sourceTree = ""; }; + 5CDBA8E513A5449900E7494E /* pt */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = pt; path = pt.lproj/MarkupPreview.xib; sourceTree = ""; }; + 5CDBA8E613A5449900E7494E /* fr */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = fr; path = fr.lproj/MarkupPreview.xib; sourceTree = ""; }; + 5CDBA8E713A5449900E7494E /* de */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = de; path = de.lproj/MarkupPreview.xib; sourceTree = ""; }; + 5CDBA8EA13A5450200E7494E /* zh */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = zh; path = zh.lproj/MainMenu.xib; sourceTree = ""; }; + 5CDBA8EB13A547B700E7494E /* zh */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = zh; path = zh.lproj/Preferences.xib; sourceTree = ""; }; + 5CDBA8F413A5492700E7494E /* zh */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = zh; path = zh.lproj/MarkupPreview.xib; sourceTree = ""; }; + 5CDBA8F613A5493100E7494E /* it */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = it; path = it.lproj/SaveHTMLPreview.nib; sourceTree = ""; }; + 5CDBA8F713A5493100E7494E /* zh */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = zh; path = zh.lproj/SaveHTMLPreview.nib; sourceTree = ""; }; + 5CDBA8F813A5493900E7494E /* zh */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = zh; path = zh.lproj/TagEditingManager.xib; sourceTree = ""; }; 5CE6624913185202002039D0 /* NSTextFinder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSTextFinder.h; sourceTree = ""; }; 5CE6624A13185202002039D0 /* NSTextFinder_LastFind.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSTextFinder_LastFind.m; sourceTree = ""; }; 5CF01B02132975910083D66E /* greyscrollervertbottom.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = greyscrollervertbottom.tiff; sourceTree = ""; }; @@ -715,6 +760,9 @@ 5CFC3A4E13327EF9000B4792 /* de */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = de; path = de.lproj/TagEditingManager.xib; sourceTree = ""; }; 5CFC3A4F13327EF9000B4792 /* fr */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = fr; path = fr.lproj/TagEditingManager.xib; sourceTree = ""; }; 5CFC3A5013327EF9000B4792 /* pt */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = pt; path = pt.lproj/TagEditingManager.xib; sourceTree = ""; }; + 5CFF810713A52EE2008A93A3 /* it */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = it; path = it.lproj/MainMenu.xib; sourceTree = ""; }; + 5CFF810813A53625008A93A3 /* it */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = it; path = it.lproj/TagEditingManager.xib; sourceTree = ""; }; + 5CFF810913A536F7008A93A3 /* it */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = it; path = it.lproj/Preferences.xib; sourceTree = ""; }; 8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; 8D1107320486CEB800E47090 /* nvALT.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = nvALT.app; sourceTree = BUILT_PRODUCTS_DIR; }; 93099627138BD61000368C45 /* tp2md.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = tp2md.rb; sourceTree = ""; }; @@ -756,7 +804,6 @@ 21D583620B78F0CC00245E29 /* ApplicationServices.framework in Frameworks */, 219D254A1113FE34005E7DF5 /* SystemConfiguration.framework in Frameworks */, 21B54C021134F2E800E163A1 /* IOKit.framework in Frameworks */, - 937E6782138C24980099DF47 /* AutoHyperlinks.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -780,9 +827,9 @@ 21D60126098FDB46007440DF /* GlobalPrefs.h */, 21D60127098FDB46007440DF /* GlobalPrefs.m */, 2114C11409575BD400614E74 /* AppController.h */, + 2114C11509575BD400614E74 /* AppController.m */, 93B90E771386018200BEC5FB /* ExternalEditorListController.h */, 93B90E781386018200BEC5FB /* ExternalEditorListController.m */, - 2114C11509575BD400614E74 /* AppController.m */, 2191982009D607C600586B15 /* PrefsWindowController.h */, 2191982109D607C600586B15 /* PrefsWindowController.m */, 21A2F95C09DF3FDC001AF0B5 /* NotationPrefs.h */, @@ -1339,9 +1386,12 @@ /* Begin PBXProject section */ 29B97313FDCFA39411CA2CEA /* Project object */ = { isa = PBXProject; + attributes = { + LastUpgradeCheck = 0420; + ORGANIZATIONNAME = elasticthreads; + }; buildConfigurationList = 212B842709780B5000F3597F /* Build configuration list for PBXProject "Notation" */; - compatibilityVersion = "Xcode 3.1"; - developmentRegion = English; + compatibilityVersion = "Xcode 3.2"; hasScannedForEncodings = 1; knownRegions = ( English, @@ -1352,6 +1402,9 @@ fr, pt, de, + it, + "zh-Hans-CN", + zh, ); mainGroup = 29B97314FDCFA39411CA2CEA /* Notation */; projectDirPath = ""; @@ -1425,7 +1478,6 @@ 5C943771132A0C9E00B08B80 /* greyscrollerverttop3.tif in Resources */, 5CF96C43132EA1890079B3FD /* Ceci est le titre d'une note.nvhelp in Resources */, 5CF96C45132EA1890079B3FD /* Contact.nvhelp in Resources */, - 5CF96CB0132EA1890079B3FD /* Info.plist in Resources */, 5CF96CBD132EA1890079B3FD /* PassphrasePicker.nib in Resources */, 5CF96CDD132EA1980079B3FD /* Kontaktdaten.nvhelp in Resources */, 5CF96D93132EA29D0079B3FD /* Atalhos Incrivelmente Úteis.nvhelp in Resources */, @@ -1467,7 +1519,6 @@ 5CF96DE7132EA29D0079B3FD /* Notes.tiff in Resources */, 5CF96DE8132EA29D0079B3FD /* General.tiff in Resources */, 5CF96DEA132EA29D0079B3FD /* Add_Pressed.tiff in Resources */, - 5CF96DEB132EA29D0079B3FD /* Add.tiff in Resources */, 5CF96DEC132EA29D0079B3FD /* Remove_Pressed.tiff in Resources */, 5CF96DED132EA29D0079B3FD /* Remove.tiff in Resources */, 5CF96DEF132EA29D0079B3FD /* MakeDefault.tiff in Resources */, @@ -1488,14 +1539,6 @@ 5CF96E0A132EA29D0079B3FD /* EncodingsManager.nib in Resources */, 5CF96E0B132EA29D0079B3FD /* Preferences.xib in Resources */, 5CF96E0C132EA29D0079B3FD /* NotationPrefsView.nib in Resources */, - 5C671531133294F30020CCBC /* Atalhos Incrivelmente Úteis.nvhelp in Resources */, - 5C671532133294F30020CCBC /* Como funciona isso?.nvhelp in Resources */, - 5C671533133294F30020CCBC /* Este é o título de uma nota.nvhelp in Resources */, - 5C671534133294F30020CCBC /* Informações de Contato.nvhelp in Resources */, - 5C671539133295280020CCBC /* Atalhos Incrivelmente Úteis.nvhelp in Resources */, - 5C67153A133295280020CCBC /* Como funciona isso?.nvhelp in Resources */, - 5C67153B133295280020CCBC /* Este é o título de uma nota.nvhelp in Resources */, - 5C67153C133295280020CCBC /* Informações de Contato.nvhelp in Resources */, 93A158BC133C304D00E1E7DA /* Markdownify.nvhelp in Resources */, 93A158BE133C497400E1E7DA /* Notality.icns in Resources */, 5C2CC185134989A8006FFE56 /* nvMenu.png in Resources */, @@ -1507,6 +1550,24 @@ 93B3482B1371547800658F98 /* HUDIconShare.png in Resources */, 93B90E84138601C100BEC5FB /* LICENSE.txt in Resources */, 93099628138BD61000368C45 /* tp2md.rb in Resources */, + 5C0C545F13A54E920008BC90 /* Preferences.xib in Resources */, + 5C0C546113A54ED90008BC90 /* PassphrasePicker.nib in Resources */, + 5C48A28213A54FBD006B73DD /* PassphraseChanger.nib in Resources */, + 5C48A28513A54FCA006B73DD /* PassphraseRetriever.nib in Resources */, + 5C48A28713A54FD6006B73DD /* KeyDerivationManager.nib in Resources */, + 5C48A28913A54FE1006B73DD /* BlorPasswordRetriever.nib in Resources */, + 5C48A28B13A54FEB006B73DD /* PTKeyComboPanel.nib in Resources */, + 5C48A28D13A54FF4006B73DD /* ExporterManager.nib in Resources */, + 5C48A28F13A54FFC006B73DD /* ImporterAccessory.nib in Resources */, + 5C48A29113A55006006B73DD /* SavedSearches.nib in Resources */, + 5C48A29313A5500F006B73DD /* URLGetter.nib in Resources */, + 5C48A29513A55016006B73DD /* FindPanel.nib in Resources */, + 5C48A29813A55057006B73DD /* PassphrasePicker.nib in Resources */, + 5C48A29A13A55061006B73DD /* PassphraseChanger.nib in Resources */, + 5C48A29C13A55078006B73DD /* PassphraseRetriever.nib in Resources */, + 5C48A29D13A55078006B73DD /* KeyDerivationManager.nib in Resources */, + 5C48A2A013A5508C006B73DD /* KeyDerivationManager.nib in Resources */, + 5C48A2A113A5508C006B73DD /* BlorPasswordRetriever.nib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1645,6 +1706,8 @@ 5CF96C3F132EA1890079B3FD /* fr */, 5CF96CD6132EA1970079B3FD /* de */, 5CF96D8A132EA29D0079B3FD /* pt */, + 5C48A29213A5500F006B73DD /* zh */, + 5C48A2A713A550B0006B73DD /* it */, ); name = SavedSearches.nib; sourceTree = ""; @@ -1656,6 +1719,8 @@ 5CF96C09132EA1880079B3FD /* fr */, 5CF96CBE132EA1970079B3FD /* de */, 5CF96D58132EA29D0079B3FD /* pt */, + 5C48A28A13A54FEB006B73DD /* zh */, + 5C48A2A213A550B0006B73DD /* it */, ); name = BlorPasswordRetriever.nib; sourceTree = ""; @@ -1698,6 +1763,8 @@ 5CF96C12132EA1880079B3FD /* fr */, 5CF96CC3132EA1970079B3FD /* de */, 5CF96D61132EA29D0079B3FD /* pt */, + 5C0C545D13A54E670008BC90 /* it */, + 5C0C545E13A54E920008BC90 /* zh */, ); name = EncodingsManager.nib; sourceTree = ""; @@ -1709,6 +1776,8 @@ 5CF96C11132EA1880079B3FD /* fr */, 5CF96CC0132EA1970079B3FD /* de */, 5CF96D5E132EA29D0079B3FD /* pt */, + 5C0C545A13A54E560008BC90 /* it */, + 5C0C545C13A54E5A0008BC90 /* zh */, ); name = DeletionManager.nib; sourceTree = ""; @@ -1728,6 +1797,8 @@ 5CF96C14132EA1880079B3FD /* fr */, 5CF96CC5132EA1970079B3FD /* de */, 5CF96D69132EA29D0079B3FD /* pt */, + 5C48A29613A5501F006B73DD /* zh */, + 5C48A2A413A550B0006B73DD /* it */, ); name = FindPanel.nib; sourceTree = ""; @@ -1739,6 +1810,8 @@ 5CF96C1F132EA1880079B3FD /* fr */, 5CF96CD2132EA1970079B3FD /* de */, 5CF96D7E132EA29D0079B3FD /* pt */, + 5C48A28113A54FBD006B73DD /* zh */, + 5C48A29913A55061006B73DD /* it */, ); name = PassphrasePicker.nib; sourceTree = ""; @@ -1750,6 +1823,8 @@ 5CF96C1E132EA1880079B3FD /* fr */, 5CF96CD1132EA1970079B3FD /* de */, 5CF96D7B132EA29D0079B3FD /* pt */, + 5C48A28413A54FCA006B73DD /* zh */, + 5C48A29B13A55078006B73DD /* it */, ); name = PassphraseChanger.nib; sourceTree = ""; @@ -1761,6 +1836,8 @@ 5CF96C19132EA1880079B3FD /* fr */, 5CF96CC9132EA1970079B3FD /* de */, 5CF96D71132EA29D0079B3FD /* pt */, + 5C48A28813A54FE1006B73DD /* zh */, + 5C48A29E13A5508C006B73DD /* it */, ); name = KeyDerivationManager.nib; sourceTree = ""; @@ -1772,6 +1849,8 @@ 5CF96C17132EA1880079B3FD /* fr */, 5CF96CC7132EA1970079B3FD /* de */, 5CF96D6B132EA29D0079B3FD /* pt */, + 5C48A29013A55006006B73DD /* zh */, + 5C48A2A513A550B0006B73DD /* it */, ); name = ImporterAccessory.nib; sourceTree = ""; @@ -1783,6 +1862,8 @@ 5CF96C23132EA1880079B3FD /* fr */, 5CF96CD4132EA1970079B3FD /* de */, 5CF96D84132EA29D0079B3FD /* pt */, + 5CFF810913A536F7008A93A3 /* it */, + 5CDBA8EB13A547B700E7494E /* zh */, ); name = Preferences.xib; sourceTree = ""; @@ -1794,6 +1875,8 @@ 5CF96C20132EA1880079B3FD /* fr */, 5CF96CD3132EA1970079B3FD /* de */, 5CF96D81132EA29D0079B3FD /* pt */, + 5C48A28613A54FD6006B73DD /* zh */, + 5C48A29F13A5508C006B73DD /* it */, ); name = PassphraseRetriever.nib; sourceTree = ""; @@ -1829,6 +1912,8 @@ 5CF96C1D132EA1880079B3FD /* fr */, 5CF96CD0132EA1970079B3FD /* de */, 5CF96D78132EA29D0079B3FD /* pt */, + 5C0C546013A54ED90008BC90 /* zh */, + 5C48A29713A55057006B73DD /* it */, ); name = NotationPrefsView.nib; sourceTree = ""; @@ -1840,6 +1925,8 @@ 5CF96C42132EA1890079B3FD /* fr */, 5CF96CD9132EA1970079B3FD /* de */, 5CF96D90132EA29D0079B3FD /* pt */, + 5C48A29413A55016006B73DD /* zh */, + 5C48A2A813A550B0006B73DD /* it */, ); name = URLGetter.nib; sourceTree = ""; @@ -1851,6 +1938,8 @@ 5CF96C24132EA1880079B3FD /* fr */, 5CF96CD5132EA1970079B3FD /* de */, 5CF96D87132EA29D0079B3FD /* pt */, + 5C48A28C13A54FF4006B73DD /* zh */, + 5C48A2A613A550B0006B73DD /* it */, ); name = PTKeyComboPanel.nib; sourceTree = ""; @@ -1862,6 +1951,8 @@ 5CF96C13132EA1880079B3FD /* fr */, 5CF96CC4132EA1970079B3FD /* de */, 5CF96D66132EA29D0079B3FD /* pt */, + 5C48A28E13A54FFC006B73DD /* zh */, + 5C48A2A313A550B0006B73DD /* it */, ); name = ExporterManager.nib; sourceTree = ""; @@ -1870,6 +1961,11 @@ isa = PBXVariantGroup; children = ( 5C1830CB132EA675005E2210 /* English */, + 5CDBA8E413A5449900E7494E /* it */, + 5CDBA8E513A5449900E7494E /* pt */, + 5CDBA8E613A5449900E7494E /* fr */, + 5CDBA8E713A5449900E7494E /* de */, + 5CDBA8F413A5492700E7494E /* zh */, ); name = MarkupPreview.xib; sourceTree = ""; @@ -1881,6 +1977,8 @@ 5C1830D3132EA6A4005E2210 /* fr */, 5C1830D4132EA6A4005E2210 /* de */, 5C1830D5132EA6A4005E2210 /* pt */, + 5CDBA8F613A5493100E7494E /* it */, + 5CDBA8F713A5493100E7494E /* zh */, ); name = SaveHTMLPreview.nib; sourceTree = ""; @@ -1892,6 +1990,8 @@ 5CFC3A4E13327EF9000B4792 /* de */, 5CFC3A4F13327EF9000B4792 /* fr */, 5CFC3A5013327EF9000B4792 /* pt */, + 5CFF810813A53625008A93A3 /* it */, + 5CDBA8F813A5493900E7494E /* zh */, ); name = TagEditingManager.xib; sourceTree = ""; @@ -1903,6 +2003,8 @@ 5CF96BFE132EA03E0079B3FD /* fr */, 5CF96BFF132EA03E0079B3FD /* de */, 5CF96C00132EA03E0079B3FD /* pt */, + 5CFF810713A52EE2008A93A3 /* it */, + 5CDBA8EA13A5450200E7494E /* zh */, ); name = MainMenu.xib; sourceTree = ""; @@ -2017,10 +2119,7 @@ "$(FRAMEWORK_SEARCH_PATHS_QUOTED_2)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_3)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_4)", - "\"$(SRCROOT)/French.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", "\"$(SRCROOT)\"", - "\"$(DEVELOPER_DIR)/Library/IBPlugins/BWToolkit\"", - "\"$(SRCROOT)/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", "\"$(DEVELOPER_FRAMEWORKS_DIR)\"", ); FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Versions/A/Frameworks\""; @@ -2030,7 +2129,6 @@ GCC_DYNAMIC_NO_PIC = NO; GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; GCC_FEEDBACK_DIRECTED_OPTIMIZATION = Off; GCC_GENERATE_DEBUGGING_SYMBOLS = YES; GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = NO; @@ -2071,10 +2169,10 @@ "-weak_framework", PDFKit, ); - PREBINDING = NO; PRODUCT_NAME = nvALT; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; + SDKROOT = macosx; + "SDKROOT[arch=x86_64]" = macosx; + STRIP_INSTALLED_PRODUCT = NO; STRIP_STYLE = "non-global"; WARNING_CFLAGS = "-pg"; WARNING_LDFLAGS = "-pg"; @@ -2086,7 +2184,7 @@ 212B842509780B5000F3597F /* Deployment */ = { isa = XCBuildConfiguration; buildSettings = { - COPY_PHASE_STRIP = YES; + COPY_PHASE_STRIP = NO; DEAD_CODE_STRIPPING = YES; DEPLOYMENT_POSTPROCESSING = YES; FRAMEWORK_SEARCH_PATHS = ( @@ -2095,10 +2193,7 @@ "$(FRAMEWORK_SEARCH_PATHS_QUOTED_2)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_3)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_4)", - "\"$(SRCROOT)/French.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", "\"$(SRCROOT)\"", - "\"$(DEVELOPER_DIR)/Library/IBPlugins/BWToolkit\"", - "\"$(SRCROOT)/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", "\"$(DEVELOPER_FRAMEWORKS_DIR)\"", ); FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Versions/A/Frameworks\""; @@ -2106,7 +2201,6 @@ GCC_DEBUGGING_SYMBOLS = full; GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GCC_OPTIMIZATION_LEVEL = s; GCC_PFE_FILE_C_DIALECTS = "c objective-c"; @@ -2136,10 +2230,9 @@ "MACOSX_DEPLOYMENT_TARGET[sdk=macosx10.6][arch=x86_64]" = 10.5; ONLY_ACTIVE_ARCH = NO; OTHER_LDFLAGS = ""; - PREBINDING = NO; PRODUCT_NAME = nvALT; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; + SDKROOT = macosx; + "SDKROOT[arch=x86_64]" = macosx; SECTORDER_FLAGS = ( "-sectorder", __TEXT, @@ -2148,7 +2241,7 @@ "-e", start, ); - STRIP_INSTALLED_PRODUCT = YES; + STRIP_INSTALLED_PRODUCT = NO; STRIP_STYLE = all; WRAPPER_EXTENSION = app; ZERO_LINK = NO; @@ -2158,16 +2251,14 @@ 212B842609780B5000F3597F /* Default */ = { isa = XCBuildConfiguration; buildSettings = { + COPY_PHASE_STRIP = NO; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_2)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_3)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_4)", - "\"$(SRCROOT)/French.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", "\"$(SRCROOT)\"", - "\"$(DEVELOPER_DIR)/Library/IBPlugins/BWToolkit\"", - "\"$(SRCROOT)/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", "\"$(DEVELOPER_FRAMEWORKS_DIR)\"", ); FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Versions/A/Frameworks\""; @@ -2204,8 +2295,9 @@ PDFKit, ); PRODUCT_NAME = nvALT; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; + SDKROOT = macosx; + "SDKROOT[arch=x86_64]" = macosx; + STRIP_INSTALLED_PRODUCT = NO; WRAPPER_EXTENSION = app; }; name = Default; @@ -2214,37 +2306,51 @@ isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; - DEAD_CODE_STRIPPING = YES; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = NO; GCC_DEBUGGING_SYMBOLS = full; GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; GCC_MODEL_TUNING = ""; - GCC_OPTIMIZATION_LEVEL = 3; + GCC_OPTIMIZATION_LEVEL = 1; GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; + GCC_TREAT_NONCONFORMANT_CODE_ERRORS_AS_WARNINGS = NO; + GCC_TREAT_WARNINGS_AS_ERRORS = NO; GCC_VERSION = ""; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; GCC_WARN_ABOUT_MISSING_NEWLINE = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + GCC_WARN_ABOUT_POINTER_SIGNEDNESS = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = NO; + GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = YES; GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; + GCC_WARN_EFFECTIVE_CPLUSPLUS_VIOLATIONS = YES; + GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES; + GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; + GCC_WARN_INHIBIT_ALL_WARNINGS = NO; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; GCC_WARN_MISSING_PARENTHESES = YES; + GCC_WARN_MULTIPLE_DEFINITION_TYPES_FOR_SELECTOR = YES; + GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES; GCC_WARN_SHADOW = YES; GCC_WARN_SIGN_COMPARE = YES; GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_LABEL = YES; + GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.5; "MACOSX_DEPLOYMENT_TARGET[sdk=macosx10.6][arch=x86_64]" = 10.5; ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; + RUN_CLANG_STATIC_ANALYZER = YES; + SDKROOT = macosx10.6; + "SDKROOT[arch=x86_64]" = macosx; + STRIP_INSTALLED_PRODUCT = NO; }; name = Development; }; @@ -2253,41 +2359,51 @@ buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; DEAD_CODE_STRIPPING = YES; + DEPLOYMENT_POSTPROCESSING = YES; GCC_DEBUGGING_SYMBOLS = full; GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; + GCC_TREAT_NONCONFORMANT_CODE_ERRORS_AS_WARNINGS = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = NO; GCC_VERSION = ""; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = NO; GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES; GCC_WARN_ABOUT_GLOBAL_CONSTRUCTORS = NO; GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = YES; GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - GCC_WARN_ABOUT_POINTER_SIGNEDNESS = NO; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + GCC_WARN_ABOUT_POINTER_SIGNEDNESS = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = NO; GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; GCC_WARN_EFFECTIVE_CPLUSPLUS_VIOLATIONS = NO; GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO; + GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; + GCC_WARN_INHIBIT_ALL_WARNINGS = YES; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; GCC_WARN_MISSING_PARENTHESES = YES; - GCC_WARN_SHADOW = YES; + GCC_WARN_MULTIPLE_DEFINITION_TYPES_FOR_SELECTOR = YES; + GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES; + GCC_WARN_SHADOW = NO; GCC_WARN_SIGN_COMPARE = YES; GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_LABEL = YES; + GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.5; "MACOSX_DEPLOYMENT_TARGET[sdk=macosx10.6][arch=x86_64]" = 10.5; PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES; - RUN_CLANG_STATIC_ANALYZER = YES; + RUN_CLANG_STATIC_ANALYZER = NO; SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; + SDKROOT = macosx10.6; + "SDKROOT[arch=x86_64]" = macosx; }; name = Deployment; }; @@ -2300,171 +2416,87 @@ GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; + GCC_TREAT_NONCONFORMANT_CODE_ERRORS_AS_WARNINGS = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; GCC_WARN_ABOUT_MISSING_NEWLINE = YES; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + GCC_WARN_ABOUT_POINTER_SIGNEDNESS = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; + GCC_WARN_EFFECTIVE_CPLUSPLUS_VIOLATIONS = YES; + GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; GCC_WARN_MISSING_PARENTHESES = YES; + GCC_WARN_MULTIPLE_DEFINITION_TYPES_FOR_SELECTOR = YES; + GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES; GCC_WARN_SHADOW = YES; GCC_WARN_SIGN_COMPARE = YES; GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_LABEL = YES; + GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.5; "MACOSX_DEPLOYMENT_TARGET[sdk=macosx10.6][arch=x86_64]" = 10.5; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; + SDKROOT = macosx10.6; + "SDKROOT[arch=x86_64]" = macosx; }; name = Default; }; - 5C8DD68E130F2BC2000AF682 /* Deployment temp */ = { + 5C9CB58B134A7F0400073277 /* ForBuilding */ = { isa = XCBuildConfiguration; buildSettings = { ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; - GCC_DEBUGGING_SYMBOLS = full; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = ""; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - GCC_WARN_ABOUT_POINTER_SIGNEDNESS = NO; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; - GCC_WARN_MISSING_PARENTHESES = YES; - GCC_WARN_SHADOW = YES; - GCC_WARN_SIGN_COMPARE = YES; - GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_LABEL = YES; - GCC_WARN_UNUSED_VALUE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.5; - "MACOSX_DEPLOYMENT_TARGET[sdk=macosx10.6][arch=x86_64]" = 10.5; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; - }; - name = "Deployment temp"; - }; - 5C8DD68F130F2BC2000AF682 /* Deployment temp */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = YES; DEAD_CODE_STRIPPING = YES; DEPLOYMENT_POSTPROCESSING = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_2)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_3)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_4)", - "\"$(SRCROOT)/French.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", - "\"$(SRCROOT)\"", - "\"$(DEVELOPER_DIR)/Library/IBPlugins/BWToolkit\"", - "\"$(SRCROOT)/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", - "\"$(DEVELOPER_FRAMEWORKS_DIR)\"", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Versions/A/Frameworks\""; - FRAMEWORK_SEARCH_PATHS_QUOTED_2 = "\"$(SRCROOT)\""; - GCC_DEBUGGING_SYMBOLS = full; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_FIX_AND_CONTINUE = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_PFE_FILE_C_DIALECTS = "c objective-c"; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = Notation_Prefix.pch; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvmgcc42; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; - GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES; - GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; - GCC_WARN_MISSING_PARENTHESES = YES; - GCC_WARN_SHADOW = YES; - GCC_WARN_SIGN_COMPARE = YES; - GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = NO; - GCC_WARN_UNUSED_LABEL = YES; - GCC_WARN_UNUSED_PARAMETER = NO; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ICU/icu; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Applications"; - LIBRARY_SEARCH_PATHS = "$(LIBRARY_SEARCH_PATHS)"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - "MACOSX_DEPLOYMENT_TARGET[sdk=macosx10.6][arch=x86_64]" = 10.5; - ONLY_ACTIVE_ARCH = NO; - OTHER_LDFLAGS = ""; - PREBINDING = NO; - PRODUCT_NAME = nvALT; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; - SECTORDER_FLAGS = ( - "-sectorder", - __TEXT, - __text, - Notation.launchorder, - "-e", - start, - ); - STRIP_INSTALLED_PRODUCT = YES; - STRIP_STYLE = all; - WRAPPER_EXTENSION = app; - ZERO_LINK = NO; - }; - name = "Deployment temp"; - }; - 5C9CB58B134A7F0400073277 /* ForBuildingIn3 */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; GCC_DEBUGGING_SYMBOLS = full; GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; + GCC_TREAT_NONCONFORMANT_CODE_ERRORS_AS_WARNINGS = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = NO; GCC_VERSION = ""; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - GCC_WARN_ABOUT_POINTER_SIGNEDNESS = NO; + GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; + GCC_WARN_ABOUT_POINTER_SIGNEDNESS = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; + GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; GCC_WARN_INHIBIT_ALL_WARNINGS = YES; GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; GCC_WARN_MISSING_PARENTHESES = YES; + GCC_WARN_MULTIPLE_DEFINITION_TYPES_FOR_SELECTOR = YES; + GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES; GCC_WARN_SHADOW = YES; GCC_WARN_SIGN_COMPARE = YES; GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_LABEL = YES; + GCC_WARN_UNUSED_PARAMETER = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; MACOSX_DEPLOYMENT_TARGET = 10.5; - "MACOSX_DEPLOYMENT_TARGET[sdk=macosx10.6][arch=x86_64]" = 10.5; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; + "MACOSX_DEPLOYMENT_TARGET[sdk=macosx10.6][arch=x86_64]" = 10.6; + SDKROOT = macosx10.6; + "SDKROOT[arch=x86_64]" = macosx10.6; }; - name = ForBuildingIn3; + name = ForBuilding; }; - 5C9CB58C134A7F0400073277 /* ForBuildingIn3 */ = { + 5C9CB58C134A7F0400073277 /* ForBuilding */ = { isa = XCBuildConfiguration; buildSettings = { - COPY_PHASE_STRIP = YES; + COPY_PHASE_STRIP = NO; DEAD_CODE_STRIPPING = YES; DEPLOYMENT_POSTPROCESSING = YES; FRAMEWORK_SEARCH_PATHS = ( @@ -2473,10 +2505,7 @@ "$(FRAMEWORK_SEARCH_PATHS_QUOTED_2)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_3)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_4)", - "\"$(SRCROOT)/French.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", "\"$(SRCROOT)\"", - "\"$(DEVELOPER_DIR)/Library/IBPlugins/BWToolkit\"", - "\"$(SRCROOT)/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", "\"$(DEVELOPER_FRAMEWORKS_DIR)\"", ); FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Versions/A/Frameworks\""; @@ -2484,7 +2513,6 @@ GCC_DEBUGGING_SYMBOLS = full; GCC_ENABLE_CPP_EXCEPTIONS = NO; GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_FIX_AND_CONTINUE = NO; GCC_GENERATE_DEBUGGING_SYMBOLS = NO; GCC_PFE_FILE_C_DIALECTS = "c objective-c"; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -2512,10 +2540,9 @@ "MACOSX_DEPLOYMENT_TARGET[sdk=macosx10.6][arch=x86_64]" = 10.5; ONLY_ACTIVE_ARCH = NO; OTHER_LDFLAGS = ""; - PREBINDING = NO; PRODUCT_NAME = nvALT; - SDKROOT = macosx10.5; - "SDKROOT[arch=x86_64]" = macosx10.5; + SDKROOT = macosx10.6; + "SDKROOT[arch=x86_64]" = macosx10.6; SECTORDER_FLAGS = ( "-sectorder", __TEXT, @@ -2524,137 +2551,12 @@ "-e", start, ); - STRIP_INSTALLED_PRODUCT = YES; + STRIP_INSTALLED_PRODUCT = NO; STRIP_STYLE = all; WRAPPER_EXTENSION = app; ZERO_LINK = NO; }; - name = ForBuildingIn3; - }; - 5CA10DB1131C1AE900DE1F91 /* Development3 */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; - DEAD_CODE_STRIPPING = YES; - GCC_DEBUGGING_SYMBOLS = full; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_MODEL_TUNING = ""; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_THREADSAFE_STATICS = NO; - GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = NO; - GCC_TREAT_NONCONFORMANT_CODE_ERRORS_AS_WARNINGS = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = ""; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_GLOBAL_CONSTRUCTORS = YES; - GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; - GCC_WARN_ABOUT_MISSING_NEWLINE = YES; - GCC_WARN_ABOUT_MISSING_PROTOTYPES = NO; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_ALLOW_INCOMPLETE_PROTOCOL = YES; - GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; - GCC_WARN_EFFECTIVE_CPLUSPLUS_VIOLATIONS = YES; - GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES; - GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = YES; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; - GCC_WARN_MISSING_PARENTHESES = YES; - GCC_WARN_MULTIPLE_DEFINITION_TYPES_FOR_SELECTOR = NO; - GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES; - GCC_WARN_PEDANTIC = NO; - GCC_WARN_PROTOTYPE_CONVERSION = NO; - GCC_WARN_SHADOW = YES; - GCC_WARN_SIGN_COMPARE = YES; - GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNKNOWN_PRAGMAS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_LABEL = YES; - GCC_WARN_UNUSED_PARAMETER = YES; - GCC_WARN_UNUSED_VALUE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.5; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx10.5; - }; - name = Development3; - }; - 5CA10DB2131C1AE900DE1F91 /* Development3 */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - DEAD_CODE_STRIPPING = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_2)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_3)", - "$(FRAMEWORK_SEARCH_PATHS_QUOTED_4)", - "\"$(SRCROOT)/French.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", - "\"$(SRCROOT)\"", - "\"$(DEVELOPER_DIR)/Library/IBPlugins/BWToolkit\"", - "\"$(SRCROOT)/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Frameworks\"", - "\"$(DEVELOPER_FRAMEWORKS_DIR)\"", - ); - FRAMEWORK_SEARCH_PATHS_QUOTED_1 = "\"$(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Versions/A/Frameworks\""; - FRAMEWORK_SEARCH_PATHS_QUOTED_2 = "\"$(SRCROOT)\""; - FRAMEWORK_SEARCH_PATHS_QUOTED_3 = "\"$(SRCROOT)\""; - FRAMEWORK_SEARCH_PATHS_QUOTED_4 = "\"$(SRCROOT)\""; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_CPP_EXCEPTIONS = NO; - GCC_ENABLE_CPP_RTTI = NO; - GCC_ENABLE_FIX_AND_CONTINUE = YES; - GCC_FEEDBACK_DIRECTED_OPTIMIZATION = Off; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PFE_FILE_C_DIALECTS = "c objective-c"; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = Notation_Prefix.pch; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - GCC_VERSION = com.apple.compilers.llvmgcc42; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_CHECK_SWITCH_STATEMENTS = YES; - GCC_WARN_FOUR_CHARACTER_CONSTANTS = YES; - GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES; - GCC_WARN_MISSING_PARENTHESES = YES; - GCC_WARN_SHADOW = YES; - GCC_WARN_SIGN_COMPARE = YES; - GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; - GCC_WARN_UNINITIALIZED_AUTOS = NO; - GCC_WARN_UNUSED_FUNCTION = NO; - GCC_WARN_UNUSED_LABEL = YES; - GCC_WARN_UNUSED_PARAMETER = NO; - GCC_WARN_UNUSED_VARIABLE = YES; - GENERATE_PROFILING_CODE = YES; - HEADER_SEARCH_PATHS = ICU/icu; - INFOPLIST_FILE = Info.plist; - INSTALL_PATH = "$(HOME)/Applications"; - LD_GENERATE_MAP_FILE = YES; - LIBRARY_SEARCH_PATHS = "$(LIBRARY_SEARCH_PATHS)"; - MACOSX_DEPLOYMENT_TARGET = 10.5; - OTHER_CFLAGS = ( - "-pg", - "-whatsloaded", - ); - OTHER_LDFLAGS = ( - "-pg", - "-whatsloaded", - "-weak_framework", - PDFKit, - ); - PREBINDING = NO; - PRODUCT_NAME = nvALT; - SDKROOT = macosx10.5; - STRIP_STYLE = "non-global"; - WARNING_CFLAGS = "-pg"; - WARNING_LDFLAGS = "-pg"; - WRAPPER_EXTENSION = app; - ZERO_LINK = NO; - }; - name = Development3; + name = ForBuilding; }; /* End XCBuildConfiguration section */ @@ -2663,27 +2565,23 @@ isa = XCConfigurationList; buildConfigurations = ( 212B842509780B5000F3597F /* Deployment */, - 5C8DD68F130F2BC2000AF682 /* Deployment temp */, - 5C9CB58C134A7F0400073277 /* ForBuildingIn3 */, + 5C9CB58C134A7F0400073277 /* ForBuilding */, 212B842409780B5000F3597F /* Development */, - 5CA10DB2131C1AE900DE1F91 /* Development3 */, 212B842609780B5000F3597F /* Default */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; + defaultConfigurationName = Development; }; 212B842709780B5000F3597F /* Build configuration list for PBXProject "Notation" */ = { isa = XCConfigurationList; buildConfigurations = ( 212B842909780B5000F3597F /* Deployment */, - 5C8DD68E130F2BC2000AF682 /* Deployment temp */, - 5C9CB58B134A7F0400073277 /* ForBuildingIn3 */, + 5C9CB58B134A7F0400073277 /* ForBuilding */, 212B842809780B5000F3597F /* Development */, - 5CA10DB1131C1AE900DE1F91 /* Development3 */, 212B842A09780B5000F3597F /* Default */, ); defaultConfigurationIsVisible = 0; - defaultConfigurationName = Deployment; + defaultConfigurationName = Development; }; /* End XCConfigurationList section */ }; diff --git a/NotationController.h b/NotationController.h index 2bf62ef1..43bd41bb 100755 --- a/NotationController.h +++ b/NotationController.h @@ -183,7 +183,7 @@ typedef struct _NoteCatalogEntry { - (float)titleColumnWidth; - (void)regeneratePreviewsForColumn:(NSTableColumn*)col visibleFilteredRows:(NSRange)rows forceUpdate:(BOOL)force; - (void)regenerateAllPreviews; -- (void)invalidateAllLabelPreviewImages; +//- (void)invalidateAllLabelPreviewImages; //for setting up the nstableviews - (id)labelsListDataSource; diff --git a/NotationFileManager.m b/NotationFileManager.m index bb0be2ae..34573ca8 100755 --- a/NotationFileManager.m +++ b/NotationFileManager.m @@ -26,6 +26,9 @@ #include #include +#import +#include + NSString *NotesDatabaseFileName = @"Notes & Settings"; @implementation NotationController (NotationFileManager) diff --git a/Notation_Prefix.pch b/Notation_Prefix.pch index fc01c5af..d4a98dcd 100755 --- a/Notation_Prefix.pch +++ b/Notation_Prefix.pch @@ -1,16 +1,25 @@ // // Prefix header for all source files of the 'Notation' target in the 'Notation' project // +//NSLog(@"lion:%f", NSFoundationVersionNumber);//632.100000 +#include #include #ifndef MAC_OS_X_VERSION_10_6 #define MAC_OS_X_VERSION_10_6 1060 #endif +#ifndef MAC_OS_X_VERSION_10_7 +#define MAC_OS_X_VERSION_10_7 1070 +#endif + #if __OBJC__ #import #endif +#ifndef NSFoundationVersionNumber10_7 +#define NSFoundationVersionNumber10_7 830.00 +#endif #ifndef NSFoundationVersionNumber10_6 #define NSFoundationVersionNumber10_6 751.00 #endif @@ -73,9 +82,11 @@ typedef char _COMPILE_ASSERT_SYMBOL(__LINE__, msg) [ ((test) ? 1 : -1) ] #define VERIFY_SALT "Salt for verifying master key in a single iteration" #define LOG_SESSION_SALT "Salt for encrypting a write-ahead-log session" + #define IsLeopardOrLater (floor(NSFoundationVersionNumber) >= NSFoundationVersionNumber10_5) #define IsSnowLeopardOrLater (floor(NSFoundationVersionNumber) >= NSFoundationVersionNumber10_6) -#define IsLionOrLater (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber10_6) +#define IsLionOrLater (floor(NSFoundationVersionNumber) >= NSFoundationVersionNumber10_7) + #define NOTES_MENU_ID 89 #define VIEW_MENU_ID 99 diff --git a/NotesTableView.m b/NotesTableView.m index ae9167d7..167d77c3 100755 --- a/NotesTableView.m +++ b/NotesTableView.m @@ -176,6 +176,7 @@ - (void)awakeFromNib { name:NSWindowDidResignMainNotification object:[self window]]; //[self setb] [[self enclosingScrollView] setDrawsBackground:NO]; + // [self setBackgroundColor:[NSColor clearColor]]; outletObjectAwoke(self); } @@ -229,6 +230,7 @@ - (void)_setActiveStyleState:(BOOL)activeStyle { - (void)updateTitleDereferencorState { NSWindow *win = [self window]; [self _setActiveStyleState: [win isMainWindow] && ([win firstResponder] == self || [self currentEditor]) ]; + } - (BOOL)becomeFirstResponder { @@ -265,6 +267,7 @@ - (void)menuNeedsUpdate:(NSMenu *)menu { } - (void)drawGridInClipRect:(NSRect)clipRect { + //draw lines manually to avoid interfering with title-focusrings and selection highlighting on leopard+ if (![self dataSource]) { return; @@ -320,7 +323,6 @@ - (void)_configureAttributesForCurrentLayout { if (IsLeopardOrLater) [self setSelectionHighlightStyle:isOneRow ? NSTableViewSelectionHighlightStyleRegular : NSTableViewSelectionHighlightStyleSourceList]; - [self setBackgroundColor: horiz ? [NSColor colorWithCalibratedWhite:0.98 alpha:1.0] : [NSColor whiteColor]]; NSLayoutManager *lm = [[NSLayoutManager alloc] init]; tableFontHeight = [lm defaultLineHeightForFont:font]; @@ -331,8 +333,7 @@ - (void)_configureAttributesForCurrentLayout { [self setIntercellSpacing:NSMakeSize(12, 2)]; - [self setGridStyleMask:horiz ? NSTableViewSolidHorizontalGridLineMask : NSTableViewGridNone]; - //[self setGridColor:[NSColor colorWithCalibratedWhite:0.882 alpha:1.0]]; + //[self setGridStyleMask:horiz ? NSTableViewSolidHorizontalGridLineMask : NSTableViewGridNone]; } - (void)settingChangedForSelectorString:(NSString*)selectorString { @@ -566,6 +567,7 @@ - (IBAction)actionHideShowColumn:(id)sender { - (IBAction)toggleNoteBodyPreviews:(id)sender { [globalPrefs setTableColumnsShowPreview: ![globalPrefs tableColumnsShowPreview] sender:self]; [self _configureAttributesForCurrentLayout]; + [self setNeedsDisplay:YES]; } - (NSMenu *)menuForColumnSorting { @@ -744,7 +746,9 @@ - (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)isLocal { } - (void)mouseDown:(NSEvent*)event { - + if ([event clickCount]==1) { + [[self delegate] setIsEditing:NO]; + } //this seems like it should happen automatically, but it does not. if (![NSApp isActive]) { [NSApp activateIgnoringOtherApps:YES]; @@ -996,7 +1000,9 @@ - (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)command { [self editRowAtColumnWithIdentifier:NoteLabelsColumnString]; return YES; - } + }else{ + [[self delegate] setIsEditing:NO]; + } } else if (command == @selector(insertBacktab:)) { if ([globalPrefs horizontalLayout] && lastEventActivatedTagEdit) { @@ -1004,8 +1010,12 @@ - (BOOL)textView:(NSTextView *)aTextView doCommandBySelector:(SEL)command { [self editRowAtColumnWithIdentifier:NoteTitleColumnString]; return YES; - } - } + }else{ + [[self delegate] setIsEditing:NO]; + } + }else if (command == @selector(insertNewline:)) { + [[self delegate] setIsEditing:NO]; + } return NO; } @@ -1096,8 +1106,9 @@ - (BOOL)lastEventActivatedTagEdit { return lastEventActivatedTagEdit; } -- (void)editColumn:(NSInteger)columnIndex row:(NSInteger)rowIndex withEvent:(NSEvent *)event select:(BOOL)flag { - +- (void)editColumn:(NSInteger)columnIndex row:(NSInteger)rowIndex withEvent:(NSEvent *)event select:(BOOL)flag { + + [[self delegate] setIsEditing:YES]; BOOL isTitleCol = [self columnWithIdentifier:NoteTitleColumnString] == columnIndex; //if event's mouselocation is inside rowIndex cell's tag rect and this edit is in horizontal mode in the title column @@ -1149,7 +1160,9 @@ - (void)textDidEndEditing:(NSNotification *)aNotification { [self updateTitleDereferencorState]; } + - (BOOL)abortEditing { + [[self delegate] setIsEditing:NO]; BOOL result = [super abortEditing]; [self updateTitleDereferencorState]; return result; @@ -1241,7 +1254,11 @@ - (void)noteFirstVisibleRow { } - (void)drawRect:(NSRect)rect { - + if(([globalPrefs showGrid])||(([globalPrefs horizontalLayout])&&(![globalPrefs alternatingRows]))){ + [self setGridStyleMask:NSTableViewSolidHorizontalGridLineMask]; + }else{ + [self setGridStyleMask:NSTableViewGridNone]; + } //force fully live resizing of columns while resizing window [super drawRect:rect]; @@ -1286,11 +1303,8 @@ - (void)setBackgroundColor:(NSColor *)color{ }else { fWhite -= 0.20f; } - if ([globalPrefs showGrid]) { - [self setGridColor:[NSColor colorWithCalibratedWhite:fWhite alpha:1.0f]]; - } else { - [self setGridColor:[NSColor colorWithCalibratedWhite:fWhite alpha:0.0f]]; - } + [self setGridColor:[NSColor colorWithCalibratedWhite:fWhite alpha:1.0f]]; + } # pragma mark alternating rows (Brett) diff --git a/PrefsWindowController.h b/PrefsWindowController.h index ab057ea5..ce37b59d 100755 --- a/PrefsWindowController.h +++ b/PrefsWindowController.h @@ -56,6 +56,7 @@ IBOutlet NSWindow *window; IBOutlet NSView *editingView, *generalView, *fontsColorsView, *databaseView, *notationPrefsView; IBOutlet NSButton *rtlButton; + IBOutlet NSButton *autoPairButton; GlobalPrefs *prefsController; } @@ -85,6 +86,7 @@ - (IBAction)changedUseReadability:(id)sender; - (IBAction)changedShowGrid:(id)sender; - (IBAction)changedAltRows:(id)sender; +- (IBAction)changedAutoPairing:(id)sender; - (void)_selectDefaultExternalEditor; diff --git a/PrefsWindowController.m b/PrefsWindowController.m index b232f2ee..888ef22e 100755 --- a/PrefsWindowController.m +++ b/PrefsWindowController.m @@ -442,7 +442,7 @@ - (void)awakeFromNib { [altRowsButton setState:[prefsController alternatingRows]]; [showGridButton setState:[prefsController showGrid]]; - + [autoPairButton setState:[prefsController useAutoPairing]]; items = [[NSMutableDictionary alloc] init]; [self addToolbarItemWithName:@"General"]; @@ -623,6 +623,11 @@ - (IBAction)changedAltRows:(id)sender { [[NSApp delegate] refreshNotesList]; } +- (IBAction)changedAutoPairing:(id)sender{ + [prefsController setUseAutoPairing:[autoPairButton state]]; + // [[NSApp delegate] refreshNotesList]; +} + - (IBAction)changedShowGrid:(id)sender { [prefsController setShowGrid:[showGridButton state] sender:self]; [[NSApp delegate] refreshNotesList]; diff --git a/Sparkle.framework/Headers b/Sparkle.framework/Headers new file mode 120000 index 00000000..a177d2a6 --- /dev/null +++ b/Sparkle.framework/Headers @@ -0,0 +1 @@ +Versions/Current/Headers \ No newline at end of file diff --git a/Sparkle.framework/Resources b/Sparkle.framework/Resources new file mode 120000 index 00000000..953ee36f --- /dev/null +++ b/Sparkle.framework/Resources @@ -0,0 +1 @@ +Versions/Current/Resources \ No newline at end of file diff --git a/Sparkle.framework/Sparkle b/Sparkle.framework/Sparkle deleted file mode 100755 index 0db0a8f0..00000000 Binary files a/Sparkle.framework/Sparkle and /dev/null differ diff --git a/Sparkle.framework/Sparkle b/Sparkle.framework/Sparkle new file mode 120000 index 00000000..b2c52731 --- /dev/null +++ b/Sparkle.framework/Sparkle @@ -0,0 +1 @@ +Versions/Current/Sparkle \ No newline at end of file diff --git a/Sparkle.framework/Versions/A/Resources/fr.lproj/fr.lproj b/Sparkle.framework/Versions/A/Resources/fr.lproj/fr.lproj new file mode 120000 index 00000000..88614fe2 --- /dev/null +++ b/Sparkle.framework/Versions/A/Resources/fr.lproj/fr.lproj @@ -0,0 +1 @@ +/Users/andym/Development/Build Products/Release/Sparkle.framework/Resources/fr.lproj \ No newline at end of file diff --git a/Sparkle.framework/Versions/A/Resources/fr_CA.lproj b/Sparkle.framework/Versions/A/Resources/fr_CA.lproj new file mode 120000 index 00000000..88614fe2 --- /dev/null +++ b/Sparkle.framework/Versions/A/Resources/fr_CA.lproj @@ -0,0 +1 @@ +/Users/andym/Development/Build Products/Release/Sparkle.framework/Resources/fr.lproj \ No newline at end of file diff --git a/Sparkle.framework/Versions/Current b/Sparkle.framework/Versions/Current new file mode 120000 index 00000000..8c7e5a66 --- /dev/null +++ b/Sparkle.framework/Versions/Current @@ -0,0 +1 @@ +A \ No newline at end of file diff --git a/StatusItemView.m b/StatusItemView.m index 8fc9df1a..4265c6e5 100644 --- a/StatusItemView.m +++ b/StatusItemView.m @@ -9,7 +9,7 @@ #import "StatusItemView.h" #import "AppController.h" -NSString *imageName = @"nvMenu"; +NSString *imageName = @"nvMenuDark"; @implementation StatusItemView @@ -31,9 +31,15 @@ - (void)dealloc - (void)drawRect:(NSRect)rect { if (clicked) { + imageName=@"nvMenuC"; [[NSColor selectedMenuItemColor] set]; NSRectFill(rect); }else { + if ([NSApp isActive]) { + imageName = @"nvMenuDark"; + }else{ + imageName = @"nvMenuDark"; + } [[NSColor clearColor] set]; NSRectFill(rect); } @@ -81,7 +87,7 @@ - (void)setInactiveIcon:(id)sender{ } - (void)setActiveIcon:(id)sender{ - imageName = @"nvMenu"; + imageName=@"nvMenuDark";; [self setNeedsDisplay:YES]; } diff --git a/de.lproj/MainMenu.xib b/de.lproj/MainMenu.xib index 2464cb1a..145885df 100644 --- a/de.lproj/MainMenu.xib +++ b/de.lproj/MainMenu.xib @@ -1,17 +1,16 @@ - + - 1040 - 10J869 - 1305 - 1038.35 + 1050 + 10K540 + 1306 + 1038.36 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 1305 + 1306 - - YES + NSUserDefaultsController NSScroller NSTableHeaderView @@ -31,17 +30,15 @@ NSView NSTextField NSTextView - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin - + PluginDependencyRecalculationVersion - - YES + NSApplication @@ -68,19 +65,19 @@ {{7, 11}, {397, 464}} + - {{0, 0}, {1920, 1058}} + {{0, 0}, {1440, 878}} {213, 129} {1e+13, 1e+13} NotationWindow MainMenu - - YES + - nvALT2 + nvALT 1048576 2147483647 @@ -94,12 +91,11 @@ submenuAction: - nvALT2 - - YES + nvALT + - Über nvALT2 + Über nvALT 2147483647 @@ -168,9 +164,7 @@ submenuAction: Dienste - - YES - + _NSServicesMenu @@ -187,7 +181,7 @@ - nvALT2 ausblenden + nvALT ausblenden h 1048576 2147483647 @@ -225,14 +219,14 @@ - nvALT2 beenden + nvALT beenden q 1048576 2147483647 - + _NSAppleMenu @@ -248,8 +242,7 @@ 89 Notiz - - YES + Umbenennen @@ -380,7 +373,7 @@ 96 - + @@ -394,8 +387,7 @@ submenuAction: Bearbeiten - - YES + Widerrufen @@ -521,8 +513,7 @@ submenuAction: Suchen - - YES + Suchen... @@ -563,7 +554,7 @@ 7 - + @@ -577,8 +568,7 @@ submenuAction: Rechtschreibung und Grammatik - - YES + Rechtschreibung und Grammatik einblenden… @@ -606,7 +596,7 @@ - + @@ -619,8 +609,7 @@ submenuAction: Transformationen - - YES + Großbuchstaben @@ -645,10 +634,10 @@ - + - + @@ -663,8 +652,19 @@ 99 View - - YES + + + + YES + YES + Enter Full Screen + f + 1310720 + 2147483647 + + + 314 + Zu horizontaler Darstellung wechseln @@ -693,8 +693,7 @@ submenuAction: Color Schemes - - YES + YES @@ -726,7 +725,7 @@ - + @@ -751,8 +750,7 @@ 97 Spalten - - YES + Item @@ -762,7 +760,7 @@ - + @@ -777,8 +775,7 @@ 98 Sortieren nach - - YES + Item @@ -788,7 +785,7 @@ - + @@ -873,7 +870,7 @@ 101 - + @@ -888,8 +885,7 @@ 103 Lesezeichen - - YES + Item @@ -899,7 +895,7 @@ - + @@ -915,8 +911,7 @@ Format - - YES + Einfacher Text @@ -937,28 +932,18 @@ 2 Fett - - YES - - YES - NSFont - NSOriginalFont - NSParagraphStyle + + + LucidaGrande-Bold + 14 + 16 - - YES - - LucidaGrande-Bold - 14 - 16 - - - - 4 - - + + + 4 + - + @@ -972,28 +957,18 @@ 1 Kursiv - - YES - - YES - NSFont - NSOriginalFont - NSParagraphStyle + + + Helvetica-Oblique + 14 + 16 - - YES - - Helvetica-Oblique - 14 - 16 - - - - 4 - - + + + 4 + - + @@ -1006,30 +981,19 @@ Durchgestrichen - - YES - - YES - NSFont - NSOriginalFont - NSParagraphStyle - NSStrikethrough + + + LucidaGrande + 14 + 16 - - YES - - LucidaGrande - 14 - 16 - - - - 4 - - - + + + 4 + - + + @@ -1082,7 +1046,7 @@ 102 - + @@ -1095,8 +1059,7 @@ submenuAction: Preview - - YES + (Multi)Markdown @@ -1170,7 +1133,7 @@ - + @@ -1184,8 +1147,7 @@ submenuAction: Fenster - - YES + Im Dock ablegen @@ -1233,7 +1195,7 @@ - + _NSWindowsMenu @@ -1248,8 +1210,7 @@ submenuAction: Hilfe - - YES + Tastenkürzel @@ -1335,10 +1296,10 @@ 2 - + - + _NSMainMenu @@ -1347,8 +1308,7 @@ 274 - - YES + 319 @@ -1380,7 +1340,7 @@ - + {147, 102} EmptyView NSView @@ -1391,18 +1351,13 @@ 258 - - YES + 257 - - YES - - YES - NSStringPboardType - - + + NSStringPboardType + {{206, 6}, {145, 14}} YES @@ -1466,7 +1421,7 @@ - + {381, 23} @@ -1488,8 +1443,7 @@ 256 - - YES + 256 @@ -1536,17 +1490,16 @@ - + {353, 107} - {{0, 0}, {1920, 1058}} + {{0, 0}, {1440, 878}} {213, 129} {1e+13, 1e+13} barMenu - - YES + Lesezeichen @@ -1559,8 +1512,7 @@ 901 Lesezeichen - - YES + Item @@ -1570,7 +1522,7 @@ - + @@ -1586,8 +1538,7 @@ Format - - YES + Einfacher Text @@ -1608,7 +1559,7 @@ 2 Fett - + @@ -1622,7 +1573,7 @@ 1 Kursiv - + @@ -1635,7 +1586,7 @@ Durchgestrichen - + @@ -1688,7 +1639,7 @@ 102 - + @@ -1749,6 +1700,15 @@ 91 + + + Insert Link + L + 1048576 + 2147483647 + + + YES @@ -1787,8 +1747,7 @@ submenuAction: Color Schemes - - YES + YES @@ -1820,7 +1779,7 @@ - + @@ -1854,14 +1813,14 @@ - Notational Velocity beenden + nvALT beenden q 1048576 2147483647 - + @@ -1872,13 +1831,11 @@ 274 - - YES + 2304 - - YES + 4352 @@ -1901,9 +1858,7 @@ - - YES - + 3 2 @@ -1926,7 +1881,7 @@ YES 0 - + {{0, 17}, {399, 136}} @@ -1961,10 +1916,9 @@ 2304 - - YES + - + {399, 17} @@ -1973,7 +1927,7 @@ 4 - + {399, 153} 528 @@ -1987,39 +1941,33 @@ 274 - - YES + 2304 - - YES + 2322 - - YES - - YES - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + Apple URL pasteboard type + CorePasteboardFlavorType 0x6D6F6F76 + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + NeXT font pasteboard type + NeXT ruler pasteboard type + WebURLsWithTitlesPboardType + public.url + {399, 14} @@ -2031,10 +1979,9 @@ - - YES + - + 6 @@ -2047,46 +1994,28 @@ 0 - - YES - - YES - NSBackgroundColor - NSColor + + + 6 + System + selectedTextBackgroundColor + - - YES - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - + + 6 + System + selectedTextColor + - + - - YES - - YES - NSColor - NSUnderline + + + 1 + MCAwIDEAA - - YES - - 1 - MCAwIDEAA - - - - + + 6 @@ -2094,7 +2023,7 @@ {80, 0} - + {399, 304} @@ -2126,7 +2055,7 @@ 1 0.94565218687057495 - + {399, 304} 528 @@ -2137,10 +2066,9 @@ YES - + - - YES + performMiniaturize: @@ -3185,15 +3113,28 @@ 1305 - + + + fsMenuItem + + + + 1307 + + + + insertLink: + + + + 1309 + + - - YES + 0 - - YES - + @@ -3212,8 +3153,7 @@ 29 - - YES + @@ -3223,30 +3163,28 @@ - + MainMenu 19 - - YES + - + 24 - - YES + - + @@ -3277,17 +3215,15 @@ 56 - - YES + - + 57 - - YES + @@ -3301,7 +3237,7 @@ - + @@ -3317,10 +3253,9 @@ 131 - - YES + - + @@ -3381,17 +3316,15 @@ 83 - - YES + - + 81 - - YES + @@ -3405,7 +3338,7 @@ - + @@ -3466,17 +3399,15 @@ 103 - - YES + - + 106 - - YES + @@ -3486,7 +3417,7 @@ - + @@ -3522,17 +3453,15 @@ 163 - - YES + - + 169 - - YES + @@ -3548,7 +3477,7 @@ - + @@ -3574,22 +3503,20 @@ 168 - - YES + - + 159 - - YES + - + @@ -3630,21 +3557,19 @@ 184 - - YES + - + 185 - - YES + - + @@ -3685,17 +3610,15 @@ 382 - - YES + - + 383 - - YES + @@ -3710,25 +3633,24 @@ - + + 386 - - YES + - + 387 - - YES + - + @@ -3739,19 +3661,17 @@ 389 - - YES + - + 390 - - YES + - + @@ -3797,17 +3717,15 @@ 397 - - YES + - + 398 - - YES + @@ -3817,7 +3735,7 @@ - + @@ -3868,19 +3786,17 @@ 996 - - YES + - + 997 - - YES + - + @@ -3897,20 +3813,18 @@ 341 - - YES + - + editorStatus 342 - - YES + - + @@ -3922,51 +3836,46 @@ 1066 - - YES + - + fieldcustomview 1067 - - YES + - + 1079 - - YES + - + quit waiting 1080 - - YES + - + 1081 - - YES + - + @@ -3977,10 +3886,9 @@ 1083 - - YES + - + @@ -4012,21 +3920,19 @@ 1105 - - YES + - + 1106 - - YES + - + @@ -4067,8 +3973,7 @@ 1124 - - YES + @@ -4085,7 +3990,8 @@ - + + @@ -4116,21 +4022,19 @@ 1141 - - YES + - + 1142 - - YES + - + @@ -4156,21 +4060,19 @@ 1162 - - YES + - + 1163 - - YES + - + @@ -4236,19 +4138,17 @@ 1199 - - YES + - + 1200 - - YES + - + @@ -4259,17 +4159,15 @@ 1202 - - YES + - + 1203 - - YES + @@ -4279,7 +4177,7 @@ - + @@ -4330,31 +4228,27 @@ 1220 - - YES + - + notation 1221 - - YES - + 1229 - - YES + - + Augmented Scroll View - Notes Table View @@ -4381,12 +4275,11 @@ 1225 - - YES + - + Scroll View - Linking Editor @@ -4408,17 +4301,15 @@ 1264 - - YES + - + 1265 - - YES + @@ -4427,7 +4318,7 @@ - + @@ -4463,10 +4354,9 @@ 1280 - - YES + - + Word Count Token @@ -4515,1185 +4405,680 @@ - - - - YES - - YES - -3.IBPluginDependency - 1000.IBPluginDependency - 1000.ImportedFromIB2 - 103.IBPluginDependency - 103.ImportedFromIB2 - 1053.IBPluginDependency - 1053.ImportedFromIB2 - 1055.IBPluginDependency - 1055.ImportedFromIB2 - 1057.IBPluginDependency - 1057.ImportedFromIB2 - 1058.IBPluginDependency - 1058.ImportedFromIB2 - 1059.IBPluginDependency - 1059.ImportedFromIB2 - 106.IBEditorWindowLastContentRect - 106.IBPluginDependency - 106.ImportedFromIB2 - 1061.IBPluginDependency - 1061.ImportedFromIB2 - 1062.IBPluginDependency - 1062.ImportedFromIB2 - 1066.IBEditorWindowLastContentRect - 1066.IBPluginDependency - 1066.ImportedFromIB2 - 1067.CustomClassName - 1067.IBPluginDependency - 1067.ImportedFromIB2 - 1079.IBEditorWindowLastContentRect - 1079.IBPluginDependency - 1079.IBWindowTemplateEditedContentRect - 1079.ImportedFromIB2 - 1080.IBPluginDependency - 1080.ImportedFromIB2 - 1081.IBPluginDependency - 1081.ImportedFromIB2 - 1082.IBPluginDependency - 1082.ImportedFromIB2 - 1083.IBPluginDependency - 1083.ImportedFromIB2 - 1088.IBPluginDependency - 1089.IBPluginDependency - 1090.IBPluginDependency - 1091.IBPluginDependency - 1105.IBPluginDependency - 1106.IBEditorWindowLastContentRect - 1106.IBPluginDependency - 1107.IBPluginDependency - 1108.IBPluginDependency - 1109.IBPluginDependency - 111.IBPluginDependency - 111.ImportedFromIB2 - 1114.IBPluginDependency - 1115.IBPluginDependency - 1117.IBPluginDependency - 1119.IBPluginDependency - 1124.IBEditorWindowLastContentRect - 1124.IBPluginDependency - 1125.IBEditorWindowLastContentRect - 1125.IBPluginDependency - 1125.IBViewBoundsToFrameTransform - 1133.IBPluginDependency - 1138.IBPluginDependency - 1139.IBPluginDependency - 1140.IBPluginDependency - 1141.IBPluginDependency - 1142.IBEditorWindowLastContentRect - 1142.IBPluginDependency - 1143.IBPluginDependency - 1143.ImportedFromIB2 - 1144.IBPluginDependency - 1144.ImportedFromIB2 - 1145.IBPluginDependency - 1145.ImportedFromIB2 - 1161.IBPluginDependency - 1162.IBPluginDependency - 1163.IBEditorWindowLastContentRect - 1163.IBPluginDependency - 1164.IBPluginDependency - 1164.ImportedFromIB2 - 1165.IBPluginDependency - 1165.ImportedFromIB2 - 1166.IBPluginDependency - 1166.ImportedFromIB2 - 1182.IBPluginDependency - 1182.ImportedFromIB2 - 1184.IBPluginDependency - 1184.ImportedFromIB2 - 1185.IBPluginDependency - 1185.ImportedFromIB2 - 1187.IBPluginDependency - 1187.ImportedFromIB2 - 1188.IBPluginDependency - 1188.ImportedFromIB2 - 1189.IBPluginDependency - 1189.ImportedFromIB2 - 1193.IBPluginDependency - 1195.IBPluginDependency - 1195.ImportedFromIB2 - 1197.IBPluginDependency - 1199.IBPluginDependency - 1199.ImportedFromIB2 - 1200.IBEditorWindowLastContentRect - 1200.IBPluginDependency - 1200.ImportedFromIB2 - 1201.IBPluginDependency - 1201.ImportedFromIB2 - 1202.IBPluginDependency - 1202.ImportedFromIB2 - 1203.IBEditorWindowLastContentRect - 1203.IBPluginDependency - 1203.ImportedFromIB2 - 1204.IBPluginDependency - 1204.ImportedFromIB2 - 1205.IBPluginDependency - 1205.ImportedFromIB2 - 1206.IBPluginDependency - 1206.ImportedFromIB2 - 1207.IBPluginDependency - 1207.ImportedFromIB2 - 1208.IBPluginDependency - 1208.ImportedFromIB2 - 1209.IBPluginDependency - 1209.ImportedFromIB2 - 1210.IBPluginDependency - 1210.ImportedFromIB2 - 1211.IBPluginDependency - 1211.ImportedFromIB2 - 1212.IBPluginDependency - 1212.ImportedFromIB2 - 1220.IBEditorWindowLastContentRect - 1220.IBPluginDependency - 1220.IBWindowTemplateEditedContentRect - 1220.ImportedFromIB2 - 1220.NSWindowTemplate.visibleAtLaunch - 1221.CustomClassName - 1221.IBPluginDependency - 1221.ImportedFromIB2 - 1225.IBPluginDependency - 1225.IBViewBoundsToFrameTransform - 1225.ImportedFromIB2 - 1226.CustomClassName - 1226.IBPluginDependency - 1226.ImportedFromIB2 - 1227.CustomClassName - 1227.IBPluginDependency - 1227.IBShouldRemoveOnLegacySave - 1228.IBPluginDependency - 1228.IBShouldRemoveOnLegacySave - 1229.CustomClassName - 1229.IBPluginDependency - 1229.IBViewBoundsToFrameTransform - 1229.ImportedFromIB2 - 1230.CustomClassName - 1230.IBPluginDependency - 1230.ImportedFromIB2 - 1231.CustomClassName - 1231.IBPluginDependency - 1231.IBShouldRemoveOnLegacySave - 1232.IBPluginDependency - 1232.IBShouldRemoveOnLegacySave - 1233.IBPluginDependency - 1233.IBShouldRemoveOnLegacySave - 1264.IBPluginDependency - 1265.IBEditorWindowLastContentRect - 1265.IBPluginDependency - 1266.IBPluginDependency - 1267.IBPluginDependency - 1268.IBPluginDependency - 1269.IBPluginDependency - 1270.IBPluginDependency - 1271.IBPluginDependency - 1280.CustomClassName - 1280.IBPluginDependency - 1280.IBViewBoundsToFrameTransform - 1281.IBPluginDependency - 1286.IBPluginDependency - 1286.ImportedFromIB2 - 129.IBPluginDependency - 129.ImportedFromIB2 - 1292.IBPluginDependency - 1293.IBPluginDependency - 1294.IBPluginDependency - 1298.IBPluginDependency - 1299.IBPluginDependency - 130.IBEditorWindowLastContentRect - 130.IBPluginDependency - 130.ImportedFromIB2 - 1300.IBPluginDependency - 131.IBPluginDependency - 131.ImportedFromIB2 - 134.IBPluginDependency - 134.ImportedFromIB2 - 136.IBPluginDependency - 136.ImportedFromIB2 - 143.IBPluginDependency - 143.ImportedFromIB2 - 144.IBPluginDependency - 144.ImportedFromIB2 - 145.IBPluginDependency - 145.ImportedFromIB2 - 149.IBPluginDependency - 149.ImportedFromIB2 - 150.IBPluginDependency - 150.ImportedFromIB2 - 154.IBPluginDependency - 154.ImportedFromIB2 - 156.IBPluginDependency - 156.ImportedFromIB2 - 157.IBPluginDependency - 157.ImportedFromIB2 - 158.IBPluginDependency - 158.ImportedFromIB2 - 159.IBEditorWindowLastContentRect - 159.IBPluginDependency - 159.ImportedFromIB2 - 160.IBPluginDependency - 160.ImportedFromIB2 - 161.IBPluginDependency - 161.ImportedFromIB2 - 162.IBPluginDependency - 162.ImportedFromIB2 - 163.IBPluginDependency - 163.ImportedFromIB2 - 167.IBPluginDependency - 167.ImportedFromIB2 - 168.IBPluginDependency - 168.ImportedFromIB2 - 169.IBEditorWindowLastContentRect - 169.IBPluginDependency - 169.ImportedFromIB2 - 171.IBPluginDependency - 171.ImportedFromIB2 - 172.IBPluginDependency - 172.ImportedFromIB2 - 173.IBPluginDependency - 173.ImportedFromIB2 - 184.IBPluginDependency - 184.ImportedFromIB2 - 185.IBEditorWindowLastContentRect - 185.IBPluginDependency - 185.ImportedFromIB2 - 187.IBPluginDependency - 187.ImportedFromIB2 - 189.IBPluginDependency - 189.ImportedFromIB2 - 19.IBPluginDependency - 19.ImportedFromIB2 - 191.IBPluginDependency - 191.ImportedFromIB2 - 196.IBPluginDependency - 196.ImportedFromIB2 - 197.IBPluginDependency - 197.ImportedFromIB2 - 213.ImportedFromIB2 - 23.IBPluginDependency - 23.ImportedFromIB2 - 24.IBEditorWindowLastContentRect - 24.IBPluginDependency - 24.ImportedFromIB2 - 29.IBEditorWindowLastContentRect - 29.IBPluginDependency - 29.ImportedFromIB2 - 341.IBEditorWindowLastContentRect - 341.IBPluginDependency - 341.ImportedFromIB2 - 342.IBPluginDependency - 342.ImportedFromIB2 - 382.IBPluginDependency - 382.ImportedFromIB2 - 383.IBEditorWindowLastContentRect - 383.IBPluginDependency - 383.ImportedFromIB2 - 386.IBPluginDependency - 386.ImportedFromIB2 - 387.IBEditorWindowLastContentRect - 387.IBPluginDependency - 387.ImportedFromIB2 - 388.IBPluginDependency - 388.ImportedFromIB2 - 389.IBPluginDependency - 389.ImportedFromIB2 - 390.IBEditorWindowLastContentRect - 390.IBPluginDependency - 390.ImportedFromIB2 - 391.IBPluginDependency - 391.ImportedFromIB2 - 392.IBPluginDependency - 392.ImportedFromIB2 - 393.IBPluginDependency - 393.ImportedFromIB2 - 394.IBPluginDependency - 394.ImportedFromIB2 - 395.IBPluginDependency - 395.ImportedFromIB2 - 396.IBPluginDependency - 396.ImportedFromIB2 - 397.IBPluginDependency - 397.ImportedFromIB2 - 398.IBEditorWindowLastContentRect - 398.IBPluginDependency - 398.ImportedFromIB2 - 452.ImportedFromIB2 - 489.IBPluginDependency - 489.ImportedFromIB2 - 5.IBPluginDependency - 5.ImportedFromIB2 - 507.IBPluginDependency - 507.ImportedFromIB2 - 508.IBPluginDependency - 508.ImportedFromIB2 - 520.IBPluginDependency - 520.ImportedFromIB2 - 521.IBPluginDependency - 521.ImportedFromIB2 - 522.IBPluginDependency - 522.ImportedFromIB2 - 534.IBPluginDependency - 534.ImportedFromIB2 - 550.IBPluginDependency - 550.ImportedFromIB2 - 553.IBPluginDependency - 553.ImportedFromIB2 - 554.IBPluginDependency - 554.ImportedFromIB2 - 557.IBPluginDependency - 557.ImportedFromIB2 - 56.IBPluginDependency - 56.ImportedFromIB2 - 563.IBPluginDependency - 563.ImportedFromIB2 - 564.IBPluginDependency - 564.ImportedFromIB2 - 565.IBPluginDependency - 565.ImportedFromIB2 - 57.IBEditorWindowLastContentRect - 57.IBPluginDependency - 57.ImportedFromIB2 - 574.IBPluginDependency - 574.ImportedFromIB2 - 575.IBPluginDependency - 575.ImportedFromIB2 - 576.IBPluginDependency - 576.ImportedFromIB2 - 577.IBPluginDependency - 577.ImportedFromIB2 - 58.IBPluginDependency - 58.ImportedFromIB2 - 77.IBPluginDependency - 77.ImportedFromIB2 - 771.IBPluginDependency - 771.ImportedFromIB2 - 78.IBPluginDependency - 78.ImportedFromIB2 - 79.IBPluginDependency - 79.ImportedFromIB2 - 81.IBEditorWindowLastContentRect - 81.IBPluginDependency - 81.ImportedFromIB2 - 83.IBPluginDependency - 83.ImportedFromIB2 - 92.IBPluginDependency - 92.ImportedFromIB2 - 977.IBPluginDependency - 977.ImportedFromIB2 - 990.IBPluginDependency - 990.ImportedFromIB2 - 991.IBPluginDependency - 991.ImportedFromIB2 - 994.IBPluginDependency - 994.ImportedFromIB2 - 996.IBPluginDependency - 996.ImportedFromIB2 - 997.IBEditorWindowLastContentRect - 997.IBPluginDependency - 997.ImportedFromIB2 - 998.IBPluginDependency - 998.ImportedFromIB2 - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{730, 271}, {278, 103}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{301, 165}, {381, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - DualField - com.apple.InterfaceBuilder.CocoaPlugin - - {{454, 517}, {353, 107}} - com.apple.InterfaceBuilder.CocoaPlugin - {{454, 517}, {353, 107}} - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{668, 81}, {165, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{502, 140}, {350, 293}} - com.apple.InterfaceBuilder.CocoaPlugin - {{965, 760}, {163, 96}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{852, 170}, {180, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{985, 573}, {180, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - {{852, 410}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{852, 250}, {262, 163}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{722, -2}, {397, 464}} - com.apple.InterfaceBuilder.CocoaPlugin - {{722, -2}, {397, 464}} - - - ETContentView - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAw5cAAA - - - LinkingEditor - com.apple.InterfaceBuilder.CocoaPlugin - - ETTransparentScroller - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - AugmentedScrollView - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwxcAAA - - - NotesTableView - com.apple.InterfaceBuilder.CocoaPlugin - - ETTransparentScroller - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - {{508, 655}, {249, 113}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - WordCountToken - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwaAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{366, 565}, {64, 6}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{583, 442}, {246, 83}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{270, 462}, {313, 273}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{668, 101}, {387, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - {{662, 281}, {240, 93}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{48, 735}, {659, 20}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{414, 575}, {147, 102}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{360, 512}, {344, 223}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{719, 197}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{719, 177}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{825, 629}, {262, 163}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{374, 579}, {301, 213}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{529, 579}, {253, 213}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{724, 769}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - + + 1306 + + + + + 1308 + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{730, 271}, {278, 103}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{301, 165}, {381, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + + DualField + com.apple.InterfaceBuilder.CocoaPlugin + + {{454, 517}, {353, 107}} + com.apple.InterfaceBuilder.CocoaPlugin + {{454, 517}, {353, 107}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{668, 81}, {165, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{502, 140}, {350, 293}} + com.apple.InterfaceBuilder.CocoaPlugin + {{965, 760}, {163, 96}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{852, 170}, {180, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{985, 573}, {180, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{852, 410}, {97, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{852, 250}, {262, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{722, -2}, {397, 464}} + com.apple.InterfaceBuilder.CocoaPlugin + {{722, -2}, {397, 464}} + + + ETContentView + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAw5cAAA + + + LinkingEditor + com.apple.InterfaceBuilder.CocoaPlugin + + ETTransparentScroller + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + AugmentedScrollView + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwxcAAA + + + NotesTableView + com.apple.InterfaceBuilder.CocoaPlugin + + ETTransparentScroller + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + {{508, 655}, {249, 113}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + WordCountToken + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwaAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{366, 565}, {64, 6}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{583, 442}, {246, 83}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{270, 462}, {313, 273}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{668, 101}, {387, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{662, 281}, {240, 93}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{48, 735}, {659, 20}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{414, 575}, {147, 102}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{360, 512}, {344, 223}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{719, 197}, {97, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{719, 177}, {97, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{825, 629}, {262, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{374, 579}, {301, 213}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{529, 579}, {253, 213}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{724, 769}, {97, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + - - YES - - - + - 1305 + 1309 - - YES + AppController NSObject - - YES - - YES - bringFocusToControlField: - copyNoteLink: - deleteNote: - editNoteExternally: - exportNote: - fieldAction: - importNotes: - lockPreview: - multiTag: - openFileInEditor: - printNote: - printPreview: - renameNote: - revealNote: - savePreview: - selectPreviewMode: - setBWColorScheme: - setLCColorScheme: - setUserColorScheme: - sharePreview: - showHelpDocument: - showPreferencesWindow: - switchViewLayout: - syncWaitQuit: - tagNote: - toggleCollapse: - toggleFullscreen: - toggleNVActivation: - togglePreview: - toggleSourceView: - toggleWordCount: + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + bringFocusToControlField: + id - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + copyNoteLink: + id - - - YES - - YES - bringFocusToControlField: - copyNoteLink: - deleteNote: - editNoteExternally: - exportNote: - fieldAction: - importNotes: - lockPreview: - multiTag: - openFileInEditor: - printNote: - printPreview: - renameNote: - revealNote: - savePreview: - selectPreviewMode: - setBWColorScheme: - setLCColorScheme: - setUserColorScheme: - sharePreview: - showHelpDocument: - showPreferencesWindow: - switchViewLayout: - syncWaitQuit: - tagNote: - toggleCollapse: - toggleFullscreen: - toggleNVActivation: - togglePreview: - toggleSourceView: - toggleWordCount: + + deleteNote: + id - - YES - - bringFocusToControlField: - id - - - copyNoteLink: - id - - - deleteNote: - id - - - editNoteExternally: - id - - - exportNote: - id - - - fieldAction: - id - - - importNotes: - id - - - lockPreview: - id - - - multiTag: - id - - - openFileInEditor: - id - - - printNote: - id - - - printPreview: - id - - - renameNote: - id - - - revealNote: - id - - - savePreview: - id - - - selectPreviewMode: - id - - - setBWColorScheme: - id - - - setLCColorScheme: - id - - - setUserColorScheme: - id - - - sharePreview: - id - - - showHelpDocument: - id - - - showPreferencesWindow: - id - - - switchViewLayout: - id - - - syncWaitQuit: - id - - - tagNote: - id - - - toggleCollapse: - id - - - toggleFullscreen: - id - - - toggleNVActivation: - id - - - togglePreview: - id - - - toggleSourceView: - id - - - toggleWordCount: - id - + + editNoteExternally: + id - - - YES - - YES - editorStatusView - field - lockNoteItem - mainView - multiMarkdownPreview - notesScrollView - notesTableView - previewToggler - printPreviewItem - savePreviewItem - sparkleUpdateItem - statBarMenu - syncWaitPanel - syncWaitSpinner - textScrollView - textView - textilePreview - window - wordCounter + + exportNote: + id - - YES - EmptyView - DualField - NSMenuItem - ETContentView - NSMenuItem - AugmentedScrollView - NotesTableView - NSMenuItem - NSMenuItem - NSMenuItem - NSMenuItem - NSMenu - NSPanel - NSProgressIndicator - NSScrollView - LinkingEditor - NSMenuItem - NSWindow - WordCountToken + + fieldAction: + id - - - YES - - YES - editorStatusView - field - lockNoteItem - mainView - multiMarkdownPreview - notesScrollView - notesTableView - previewToggler - printPreviewItem - savePreviewItem - sparkleUpdateItem - statBarMenu - syncWaitPanel - syncWaitSpinner - textScrollView - textView - textilePreview - window - wordCounter + + importNotes: + id - - YES - - editorStatusView - EmptyView - - - field - DualField - - - lockNoteItem - NSMenuItem - - - mainView - ETContentView - - - multiMarkdownPreview - NSMenuItem - - - notesScrollView - AugmentedScrollView - - - notesTableView - NotesTableView - - - previewToggler - NSMenuItem - - - printPreviewItem - NSMenuItem - - - savePreviewItem - NSMenuItem - - - sparkleUpdateItem - NSMenuItem - - - statBarMenu - NSMenu - - - syncWaitPanel - NSPanel - - - syncWaitSpinner - NSProgressIndicator - - - textScrollView - NSScrollView - - - textView - LinkingEditor - - - textilePreview - NSMenuItem - - - window - NSWindow - - - wordCounter - WordCountToken - + + lockPreview: + id - + + multiTag: + id + + + openFileInEditor: + id + + + printNote: + id + + + printPreview: + id + + + renameNote: + id + + + revealNote: + id + + + savePreview: + id + + + selectPreviewMode: + id + + + setBWColorScheme: + id + + + setLCColorScheme: + id + + + setUserColorScheme: + id + + + sharePreview: + id + + + showHelpDocument: + id + + + showPreferencesWindow: + id + + + switchFullScreen: + id + + + switchViewLayout: + id + + + syncWaitQuit: + id + + + tagNote: + id + + + toggleCollapse: + id + + + toggleNVActivation: + id + + + togglePreview: + id + + + toggleSourceView: + id + + + toggleWordCount: + id + + + + EmptyView + DualField + NSMenuItem + NSMenuItem + ETContentView + NSMenuItem + AugmentedScrollView + NotesTableView + NSMenuItem + NSMenuItem + NSMenuItem + NSMenuItem + NSMenu + NSPanel + NSProgressIndicator + NSScrollView + LinkingEditor + NSMenuItem + NSWindow + WordCountToken + + + + editorStatusView + EmptyView + + + field + DualField + + + fsMenuItem + NSMenuItem + + + lockNoteItem + NSMenuItem + + + mainView + ETContentView + + + multiMarkdownPreview + NSMenuItem + + + notesScrollView + AugmentedScrollView + + + notesTableView + NotesTableView + + + previewToggler + NSMenuItem + + + printPreviewItem + NSMenuItem + + + savePreviewItem + NSMenuItem + + + sparkleUpdateItem + NSMenuItem + + + statBarMenu + NSMenu + + + syncWaitPanel + NSPanel + + + syncWaitSpinner + NSProgressIndicator + + + textScrollView + NSScrollView + + + textView + LinkingEditor + + + textilePreview + NSMenuItem + + + window + NSWindow + + + wordCounter + WordCountToken + + IBProjectSource ./Classes/AppController.h @@ -5763,80 +5148,50 @@ FirstResponder - - YES - - YES - bold: - defaultStyle: - deleteToBeginningOfLine: - deleteWordBackward: - italic: - shiftLeftAction: - shiftRightAction: - underlineNV: + + id + id + id + id + id + id + id + id + + + + bold: + id - - YES - id - id - id - id - id - id - id - id + + defaultStyle: + id - - - YES - - YES - bold: - defaultStyle: - deleteToBeginningOfLine: - deleteWordBackward: - italic: - shiftLeftAction: - shiftRightAction: - underlineNV: + + deleteToBeginningOfLine: + id - - YES - - bold: - id - - - defaultStyle: - id - - - deleteToBeginningOfLine: - id - - - deleteWordBackward: - id - - - italic: - id - - - shiftLeftAction: - id - - - shiftRightAction: - id - - - underlineNV: - id - + + deleteWordBackward: + id - + + italic: + id + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + underlineNV: + id + + IBUserSource @@ -5845,70 +5200,39 @@ LinkingEditor NSTextView - - YES - - YES - shiftLeftAction: - shiftRightAction: - - - YES - id - id - - - - YES - - YES - shiftLeftAction: - shiftRightAction: - - - YES - - shiftLeftAction: - id - - - shiftRightAction: - id - + + id + id + id + + + + insertLink: + id - - - YES - - YES - controlField - notesTableView + + shiftLeftAction: + id - - YES - NSTextField - NotesTableView + + shiftRightAction: + id - - - YES - - YES - controlField - notesTableView + + + NSTextField + NotesTableView + + + + controlField + NSTextField - - YES - - controlField - NSTextField - - - notesTableView - NotesTableView - + + notesTableView + NotesTableView - + IBProjectSource ./Classes/LinkingEditor.h @@ -5916,66 +5240,40 @@ NSDocument - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: + + id + id + id + id + id + id + + + + printDocument: + id - - YES - id - id - id - id - id - id + + revertDocumentToSaved: + id - - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: + + runPageLayout: + id - - YES - - printDocument: - id - - - revertDocumentToSaved: - id - - - runPageLayout: - id - - - saveDocument: - id - - - saveDocumentAs: - id - - - saveDocumentTo: - id - + + saveDocument: + id - + + saveDocumentAs: + id + + + saveDocumentTo: + id + + IBProjectSource ./Classes/NSDocument.h @@ -5984,38 +5282,20 @@ NotesTableView NSTableView - - YES - - YES - actionHideShowColumn: - toggleNoteBodyPreviews: - - - YES - id - id - - - - YES - - YES - actionHideShowColumn: - toggleNoteBodyPreviews: + + id + id + + + + actionHideShowColumn: + id - - YES - - actionHideShowColumn: - id - - - toggleNoteBodyPreviews: - id - + + toggleNoteBodyPreviews: + id - + controlField NSTextField @@ -6066,36 +5346,23 @@ ./Classes/WordCountToken.h - + 0 IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - + com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES 3 - - YES - - YES - NSMenuCheckmark - NSMenuMixedState - - - YES - {9, 8} - {7, 2} - - + + {9, 8} + {7, 2} + diff --git a/de.lproj/MarkupPreview.xib b/de.lproj/MarkupPreview.xib new file mode 100644 index 00000000..a1634a79 --- /dev/null +++ b/de.lproj/MarkupPreview.xib @@ -0,0 +1,1054 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + 1306 + 30 + + + NSTextView + NSScroller + NSButton + NSScrollView + NSButtonCell + NSTextFieldCell + NSTabView + WebView + NSCustomObject + NSTabViewItem + NSWindowTemplate + NSView + NSTextField + NSCustomView + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + + + + PreviewController + + + FirstResponder + + + NSApplication + + + + 268 + + + + 268 + {{4, 61}, {12, 13}} + + + YES + + 67239424 + 134512640 + + + LucidaGrande + 9 + 3614 + + + 138690815 + 6 + + NSImage + TabClose_Front_Rollover + + + NSImage + TabClose_Front_Pressed + + + Gw + 400 + 75 + + + + + 264 + {{0, 47}, {256, 14}} + + YES + + 68288064 + 138544128 + URL in clipboard + + LucidaGrande + 11 + 3100 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {256, 78} + + + NSView + + + + 268 + + + + 268 + {{-3, 43}, {244, 14}} + + YES + + 68288064 + 138544128 + Share note online via Peggd? + + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {238, 65} + + NSView + + + 27 + 2 + {{948, 217}, {445, 528}} + -461896704 + Preview + NSPanel + + {350, 400} + + + 256 + + + + 4114 + {{0, 34}, {445, 494}} + + + + + 1 + + + 256 + + + + 274 + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple URL pasteboard type + Apple Web Archive pasteboard type + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + WebURLsWithTitlesPboardType + public.png + public.url + public.url-name + + {445, 494} + + + + + + previewWebView + + + NO + YES + + + {445, 494} + + + + Preview + + + + + 2 + + + 256 + + + + 274 + + + + 2304 + + + + 2322 + {{0, 61}, {445, 14}} + + + + + + + + + + + + + + 134 + + + + 445 + 1 + + + 11521 + 0 + + + 3 + MQA + + + + 6 + System + selectedTextBackgroundColor + + + + 6 + System + selectedTextColor + + 3 + MAA + + + + + + + 1 + MCAwIDEAA + + + {8, -8} + 13 + + + + + + 6 + {463, 1e+07} + {223, 0} + + + + {445, 494} + + + + + + {4, -5} + 1 + + 4 + + + + -2147483392 + {{429, 1}, {15, 492}} + + + _doScroller: + 1 + 0.85256409645080566 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {445, 494} + + + 528 + + + + + + {445, 494} + + + Source + + + + + + + LucidaGrande + 13 + 1044 + + 6 + YES + + + + + + + 289 + {{300, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + LucidaGrande-Bold + 12 + 16 + + + -1228128001 + 402653357 + + NSImage + HUDIconLock + + + L + 400 + 75 + + + + + 289 + {{404, 7}, {28, 19}} + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 268435693 + + NSImage + HUDIconSave + + + S + 400 + 75 + + + + + 289 + {{370, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 173 + + NSImage + HUDIconShare + + + + 400 + 75 + + + + + 289 + {{334, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 402653357 + + NSImage + HUDIconPrint + + + P + 400 + 75 + + + + + 292 + {{10, 7}, {99, 19}} + + + YES + + -2080244224 + 134217728 + View Source + + LucidaGrande + 12 + 16 + + + -2038021889 + 164 + + + + 400 + 75 + + + + {{7, 11}, {445, 528}} + + + {{0, 0}, {1920, 1058}} + {350, 416} + {1e+13, 1e+13} + PreviewPanel + + + + + + + shareNotification + + + + 138 + + + + shareConfirmation + + + + 169 + + + + urlTextField + + + + 191 + + + + hideShareURL: + + + + 194 + + + + delegate + + + + 241 + + + + window + + + + 242 + + + + tabView + + + + 243 + + + + frameLoadDelegate + + + + 244 + + + + policyDelegate + + + + 245 + + + + resourceLoadDelegate + + + + 246 + + + + UIDelegate + + + + 247 + + + + preview + + + + 248 + + + + sourceView + + + + 249 + + + + makePreviewSticky: + + + + 269 + + + + saveHTML: + + + + 274 + + + + shareAsk: + + + + 275 + + + + printPreview: + + + + 278 + + + + printPreviewButton + + + + 280 + + + + shareButton + + + + 281 + + + + saveButton + + + + 282 + + + + stickyPreviewButton + + + + 283 + + + + switchTabs: + + + + 286 + + + + tabSwitcher + + + + 287 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 133 + + + + + + + Share URL + + + 157 + + + + + + Confirm Share + + + 189 + + + + + + + + 190 + + + + + 192 + + + + + + + + 193 + + + + + 200 + + + + + + + + 201 + + + + + 214 + + + + + + Panel - Preview + + + 215 + + + + + + + + + + + + + 216 + + + + + + + + + 217 + + + + + + + + 218 + + + + + + + + 219 + + + + + + + + 220 + + + + + + + + 225 + + + + + + + + + + 226 + + + + + 227 + + + + + 228 + + + + + 229 + + + + + 261 + + + + + + + + 262 + + + + + 263 + + + + + + + + 264 + + + + + 265 + + + + + + + + 266 + + + + + 267 + + + + + + + + 268 + + + + + 284 + + + + + + + + 285 + + + + + + + + {{471, 675}, {206, 55}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{499, 564}, {238, 65}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCPAAAwjAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDNAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAADAQAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + ToolTip + + ToolTip + + Lock note to preview + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Save Preview + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Share on Peggd + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Print/PDF + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 287 + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + {512, 512} + {512, 512} + {512, 512} + {512, 512} + {12, 13} + {12, 13} + + + diff --git a/de.lproj/Preferences.xib b/de.lproj/Preferences.xib index 895cf2df..dc140e2c 100644 --- a/de.lproj/Preferences.xib +++ b/de.lproj/Preferences.xib @@ -1,17 +1,16 @@ - + 1050 - 10J869 - 1305 - 1038.35 + 10K540 + 1306 + 1038.36 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 1305 + 1306 - - YES + NSUserDefaultsController NSPopUpButton NSButton @@ -30,17 +29,15 @@ NSWindowTemplate NSTextField NSPopUpButtonCell - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin - + PluginDependencyRecalculationVersion - - YES + PrefsWindowController @@ -69,16 +66,16 @@ {{7, 11}, {399, 334}} + - {{0, 0}, {1280, 778}} + {{0, 0}, {1440, 878}} {399, 129} {1e+13, 1e+13} 256 - - YES + 12 @@ -117,13 +114,13 @@ 268 - {{160, 15}, {186, 14}} + {{160, 15}, {192, 14}} YES 68288064 272630784 - This will immediately restart NV + This will immediately restart nvALT LucidaGrande 11 @@ -262,8 +259,7 @@ YES OtherViews - - YES + Klein @@ -302,7 +298,7 @@ - + 3 3 @@ -485,7 +481,7 @@ - + {464, 277} NSView @@ -494,8 +490,7 @@ 256 - - YES + 256 @@ -547,8 +542,7 @@ YES OtherViews - - YES + @@ -572,7 +566,7 @@ _popUpItemAction: - + 3 YES @@ -590,7 +584,7 @@ NSResponder - + {464, 406} NSView @@ -600,14 +594,72 @@ 256 - - YES + + + + 268 + {{176, 77}, {226, 28}} + + + YES + + 67239424 + 272629760 + Match opening characters, like a left bracket, with closing characters. + + + + + + + + + 264 + {{157, 82}, {22, 18}} + + + + YES + + 67239424 + 0 + + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{77, 83}, {77, 17}} + + + + YES + + 67239424 + 71303168 + Auto-pair: + + + + + + 268 - {{158, 15}, {194, 26}} + {{153, 16}, {194, 26}} + YES -2076049856 @@ -635,8 +687,7 @@ YES OtherViews - - YES + @@ -660,7 +711,7 @@ _popUpItemAction: - + 1 @@ -672,9 +723,10 @@ 264 - {{157, 67}, {146, 18}} + {{157, 49}, {146, 18}} + YES 67239424 @@ -694,7 +746,7 @@ 264 - {{77, 69}, {77, 17}} + {{77, 51}, {77, 17}} @@ -712,9 +764,10 @@ 264 - {{175, 93}, {247, 42}} + {{175, 116}, {247, 42}} + YES 67239424 @@ -729,7 +782,7 @@ 264 - {{74, 143}, {80, 34}} + {{74, 163}, {80, 34}} @@ -747,7 +800,7 @@ 264 - {{157, 139}, {235, 18}} + {{157, 159}, {235, 18}} @@ -770,7 +823,7 @@ 264 - {{157, 159}, {255, 18}} + {{157, 179}, {255, 18}} @@ -794,9 +847,10 @@ 268 - {{22, 22}, {134, 17}} + {{17, 23}, {134, 17}} + YES 67239424 @@ -815,14 +869,14 @@ 264 - {{157, 317}, {241, 38}} + {{157, 337}, {241, 38}} + YES 2 1 - - YES + 67239424 0 @@ -859,7 +913,7 @@ 200 25 - + {241, 18} {4, 2} 1143472128 @@ -886,9 +940,10 @@ 264 - {{46, 321}, {108, 34}} + {{46, 341}, {108, 34}} + YES 67239424 @@ -903,9 +958,10 @@ 264 - {{175, 281}, {272, 28}} + {{175, 301}, {272, 28}} + YES 67239424 @@ -920,9 +976,10 @@ 264 - {{157, 375}, {291, 18}} + {{157, 395}, {291, 18}} + YES -2080244224 @@ -943,9 +1000,10 @@ 264 - {{157, 400}, {289, 18}} + {{157, 420}, {289, 18}} + YES 67239424 @@ -966,9 +1024,10 @@ 264 - {{17, 384}, {137, 34}} + {{17, 404}, {137, 34}} + YES 67239424 @@ -983,9 +1042,10 @@ 264 - {{46, 372}, {108, 21}} + {{46, 392}, {108, 21}} + YES 67239424 @@ -1000,9 +1060,10 @@ 264 - {{96, 217}, {58, 17}} + {{96, 237}, {58, 17}} + YES 67239424 @@ -1017,9 +1078,10 @@ 264 - {{157, 196}, {214, 18}} + {{157, 216}, {214, 18}} + YES 67239424 @@ -1040,9 +1102,10 @@ 264 - {{157, 252}, {173, 18}} + {{157, 272}, {173, 18}} + YES -2080244224 @@ -1063,9 +1126,10 @@ 264 - {{157, 216}, {251, 18}} + {{157, 236}, {251, 18}} + YES 67239424 @@ -1083,10 +1147,11 @@ 25 - - {464, 438} + + {464, 458} + NSView @@ -1095,8 +1160,7 @@ 256 - - YES + 268 @@ -1367,15 +1431,11 @@ 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - + {{297, 161}, {52, 24}} YES @@ -1401,15 +1461,11 @@ 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - + {{297, 193}, {52, 24}} YES @@ -1419,15 +1475,11 @@ 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - + {{297, 235}, {52, 24}} YES @@ -1437,7 +1489,7 @@ MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA - + {464, 328} NSView NSResponder @@ -1445,10 +1497,9 @@ YES - + - - YES + generalView @@ -2085,44 +2136,56 @@ 471 - + + + changedAutoPairing: + + + + 478 + + + + autoPairButton + + + + 480 + + - - YES + 0 - - YES - + -2 - + File's Owner -1 - + First Responder -3 - + Application 5 - - YES + - - + + Preferences Window @@ -2133,8 +2196,7 @@ 155 - - YES + @@ -2149,128 +2211,115 @@ - - + + general view 157 - - YES + - + 158 - - YES + - + 172 - - YES + - + 174 - - YES + - + 175 - - YES + - + 178 - - YES + - + 287 - - YES + - + 288 - - YES + - + 289 - - YES + - + 323 - - YES + - + 250 - - YES + - - + + database view 251 - - YES + - + 252 - - YES + - + @@ -2281,8 +2330,7 @@ 268 - - YES + @@ -2299,22 +2347,24 @@ - + - - + + + + + editing view 271 - - YES + - + @@ -2330,91 +2380,81 @@ 274 - - YES + - + 275 - - YES + - + 276 - - YES + - + 278 - - YES + - + 279 - - YES + - + 280 - - YES + - + 282 - - YES + - + 283 - - YES + - + 307 - - YES + - + 311 - - YES + - + @@ -2425,10 +2465,9 @@ 326 - - YES + - + @@ -2479,10 +2518,9 @@ 337 - - YES + - + @@ -2543,13 +2581,12 @@ 159 - - YES + - + @@ -2575,12 +2612,11 @@ 253 - - YES + - + @@ -2601,8 +2637,7 @@ 352 - - YES + @@ -2621,35 +2656,32 @@ - - + + fonts colors view 353 - - YES + - + 354 - - YES + - + 355 - - YES + - + @@ -2660,10 +2692,9 @@ 357 - - YES + - + @@ -2679,19 +2710,17 @@ 360 - - YES + - + 361 - - YES + - + @@ -2727,28 +2756,25 @@ 379 - - YES + - + 380 - - YES + - + 381 - - YES + - + @@ -2774,15 +2800,14 @@ 389 - + 393 - - YES + - + @@ -2793,64 +2818,57 @@ 402 - - YES + - + 403 - - YES + - + 404 - - YES + - + 405 - - YES + - + 406 - - YES + - + 407 - - YES + - + 408 - - YES + - + @@ -2891,37 +2909,33 @@ 438 - - YES + - + 439 - - YES + - + 440 - - YES + - + 441 - - YES + - + @@ -2947,19 +2961,17 @@ 446 - - YES + - + 447 - - YES + - + @@ -2975,19 +2987,17 @@ 456 - - YES + - + 457 - - YES + - + @@ -3003,30 +3013,27 @@ 464 - - YES + - + 465 - - YES + - + 466 - - YES + - + @@ -3044,624 +3051,406 @@ - - - - YES - - YES - -3.IBPluginDependency - -3.ImportedFromIB2 - 155.IBEditorWindowLastContentRect - 155.IBPluginDependency - 155.ImportedFromIB2 - 157.IBPluginDependency - 157.ImportedFromIB2 - 158.IBPluginDependency - 158.ImportedFromIB2 - 159.IBEditorWindowLastContentRect - 159.IBPluginDependency - 159.ImportedFromIB2 - 160.IBPluginDependency - 160.ImportedFromIB2 - 161.IBPluginDependency - 161.ImportedFromIB2 - 162.IBPluginDependency - 162.ImportedFromIB2 - 163.IBPluginDependency - 163.ImportedFromIB2 - 172.IBPluginDependency - 172.IBViewBoundsToFrameTransform - 172.ImportedFromIB2 - 174.IBPluginDependency - 174.IBViewBoundsToFrameTransform - 174.ImportedFromIB2 - 175.IBPluginDependency - 175.IBViewBoundsToFrameTransform - 175.ImportedFromIB2 - 178.IBPluginDependency - 178.ImportedFromIB2 - 250.IBEditorWindowLastContentRect - 250.IBPluginDependency - 250.ImportedFromIB2 - 251.IBPluginDependency - 251.ImportedFromIB2 - 252.IBPluginDependency - 252.IBViewBoundsToFrameTransform - 252.ImportedFromIB2 - 253.IBEditorWindowLastContentRect - 253.IBPluginDependency - 253.ImportedFromIB2 - 254.IBPluginDependency - 254.ImportedFromIB2 - 255.IBPluginDependency - 255.ImportedFromIB2 - 256.IBPluginDependency - 256.ImportedFromIB2 - 257.IBPluginDependency - 257.ImportedFromIB2 - 268.IBEditorWindowLastContentRect - 268.IBPluginDependency - 268.ImportedFromIB2 - 271.IBPluginDependency - 271.IBViewBoundsToFrameTransform - 271.ImportedFromIB2 - 272.IBPluginDependency - 272.ImportedFromIB2 - 273.IBPluginDependency - 273.ImportedFromIB2 - 274.IBPluginDependency - 274.IBViewBoundsToFrameTransform - 274.ImportedFromIB2 - 275.IBPluginDependency - 275.IBViewBoundsToFrameTransform - 275.ImportedFromIB2 - 276.IBPluginDependency - 276.IBViewBoundsToFrameTransform - 276.ImportedFromIB2 - 278.IBPluginDependency - 278.IBViewBoundsToFrameTransform - 278.ImportedFromIB2 - 279.IBPluginDependency - 279.IBViewBoundsToFrameTransform - 279.ImportedFromIB2 - 280.IBPluginDependency - 280.IBViewBoundsToFrameTransform - 280.ImportedFromIB2 - 282.IBPluginDependency - 282.IBViewBoundsToFrameTransform - 282.ImportedFromIB2 - 283.IBPluginDependency - 283.IBViewBoundsToFrameTransform - 283.ImportedFromIB2 - 287.IBPluginDependency - 287.IBViewBoundsToFrameTransform - 287.ImportedFromIB2 - 288.IBPluginDependency - 288.IBViewBoundsToFrameTransform - 288.ImportedFromIB2 - 289.IBPluginDependency - 289.IBViewBoundsToFrameTransform - 289.ImportedFromIB2 - 307.IBPluginDependency - 307.IBViewBoundsToFrameTransform - 307.ImportedFromIB2 - 311.IBPluginDependency - 311.IBViewBoundsToFrameTransform - 311.ImportedFromIB2 - 323.IBPluginDependency - 323.IBViewBoundsToFrameTransform - 323.ImportedFromIB2 - 325.IBPluginDependency - 326.IBPluginDependency - 327.IBPluginDependency - 328.IBPluginDependency - 329.IBPluginDependency - 330.IBPluginDependency - 331.IBPluginDependency - 332.IBPluginDependency - 333.IBPluginDependency - 335.IBPluginDependency - 336.IBPluginDependency - 337.IBPluginDependency - 340.IBPluginDependency - 341.IBPluginDependency - 342.IBPluginDependency - 344.IBPluginDependency - 345.IBPluginDependency - 346.IBPluginDependency - 347.IBPluginDependency - 348.IBPluginDependency - 349.IBPluginDependency - 350.IBPluginDependency - 351.IBPluginDependency - 352.IBEditorWindowLastContentRect - 352.IBPluginDependency - 352.IBViewBoundsToFrameTransform - 352.ImportedFromIB2 - 353.IBPluginDependency - 353.IBPropertyAccessControl - 353.IBViewBoundsToFrameTransform - 353.ImportedFromIB2 - 354.IBPluginDependency - 354.IBPropertyAccessControl - 354.IBViewBoundsToFrameTransform - 354.ImportedFromIB2 - 355.IBPluginDependency - 355.IBPropertyAccessControl - 355.IBViewBoundsToFrameTransform - 355.ImportedFromIB2 - 356.IBPluginDependency - 356.IBPropertyAccessControl - 356.IBViewBoundsToFrameTransform - 356.ImportedFromIB2 - 357.IBPluginDependency - 357.IBViewBoundsToFrameTransform - 358.IBPluginDependency - 358.IBPropertyAccessControl - 358.IBViewBoundsToFrameTransform - 358.ImportedFromIB2 - 359.IBPluginDependency - 359.IBPropertyAccessControl - 359.IBViewBoundsToFrameTransform - 359.ImportedFromIB2 - 360.IBPluginDependency - 360.IBPropertyAccessControl - 360.IBViewBoundsToFrameTransform - 360.ImportedFromIB2 - 361.IBPluginDependency - 361.IBPropertyAccessControl - 361.IBViewBoundsToFrameTransform - 361.ImportedFromIB2 - 362.IBPluginDependency - 363.IBPluginDependency - 364.IBPluginDependency - 365.IBPluginDependency - 366.IBPluginDependency - 367.IBPluginDependency - 379.IBPluginDependency - 379.IBPropertyAccessControl - 379.IBViewBoundsToFrameTransform - 379.ImportedFromIB2 - 380.IBPluginDependency - 380.IBViewBoundsToFrameTransform - 380.ImportedFromIB2 - 381.IBPluginDependency - 381.IBViewBoundsToFrameTransform - 382.IBPluginDependency - 382.IBViewBoundsToFrameTransform - 383.IBPluginDependency - 384.IBPluginDependency - 385.IBPluginDependency - 393.IBPluginDependency - 393.IBViewBoundsToFrameTransform - 394.IBPluginDependency - 402.IBPluginDependency - 402.IBPropertyAccessControl - 402.IBViewBoundsToFrameTransform - 402.ImportedFromIB2 - 403.IBPluginDependency - 403.IBViewBoundsToFrameTransform - 403.ImportedFromIB2 - 404.IBPluginDependency - 404.IBViewBoundsToFrameTransform - 405.IBPluginDependency - 405.IBViewBoundsToFrameTransform - 406.IBPluginDependency - 406.IBViewBoundsToFrameTransform - 406.ImportedFromIB2 - 407.IBPluginDependency - 407.IBViewBoundsToFrameTransform - 407.ImportedFromIB2 - 408.IBPluginDependency - 408.IBViewBoundsToFrameTransform - 408.ImportedFromIB2 - 409.IBPluginDependency - 410.IBPluginDependency - 411.IBPluginDependency - 412.IBPluginDependency - 413.IBPluginDependency - 414.IBPluginDependency - 415.IBPluginDependency - 438.IBPluginDependency - 438.IBViewBoundsToFrameTransform - 438.ImportedFromIB2 - 439.IBPluginDependency - 439.IBViewBoundsToFrameTransform - 439.ImportedFromIB2 - 440.IBPluginDependency - 440.IBViewBoundsToFrameTransform - 440.ImportedFromIB2 - 441.IBPluginDependency - 441.IBViewBoundsToFrameTransform - 441.ImportedFromIB2 - 442.IBPluginDependency - 443.IBPluginDependency - 444.IBPluginDependency - 445.IBPluginDependency - 446.IBPluginDependency - 446.ImportedFromIB2 - 447.IBPluginDependency - 447.ImportedFromIB2 - 448.IBPluginDependency - 449.IBPluginDependency - 456.IBPluginDependency - 456.IBViewBoundsToFrameTransform - 457.IBPluginDependency - 457.IBViewBoundsToFrameTransform - 458.IBPluginDependency - 459.IBPluginDependency - 464.IBPluginDependency - 465.IBPluginDependency - 5.IBEditorWindowLastContentRect - 5.IBPluginDependency - 5.IBWindowTemplateEditedContentRect - 5.ImportedFromIB2 - 6.IBPluginDependency - 6.ImportedFromIB2 - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - {{598, 267}, {464, 277}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{490, 632}, {129, 73}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB8AAAwpAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB8AAAwjwAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB8AAAwwIAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - {{383, 173}, {464, 406}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDfwAAw8EAAA - - - {{576, 618}, {178, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{579, 235}, {464, 290}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAwyMAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCOAAAwyMAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDLwAAwuoAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAw0cAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAw2AAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw2AAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCOAAAw0cAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCwAAAwqIAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAwnQAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw2UAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDXwAAw1cAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDoIAAwx8AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAwpwAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAwqIAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCQAAAwtQAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{102, 591}, {464, 265}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABBiAAAwpIAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABDr4AAwqAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABDIgAAwpgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - AUOOgABC9AAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDAwAAww0AAA - - com.apple.InterfaceBuilder.CocoaPlugin - - - AUOOgABDGgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - AUOOgABDOgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABDQgAAwy0AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABDCQAAw00AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABDCgAAwpIAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDDAAAwiQAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDhQAAwhAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - AULUAABCQAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBoAAAwggAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCkgAAwrAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDlQAAwlgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCsgAAwlwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDbwAAweAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCsgAAwfAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDsgAAweAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDwIAAweAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwqgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCHAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC7AAAwzgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqAAAwkwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqAAAwkwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{622, 191}, {399, 334}} - com.apple.InterfaceBuilder.CocoaPlugin - {{622, 191}, {399, 334}} - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - + + 472 + + + + + + + + 473 + + + + + + + + 474 + + + + + + + + 475 + + + + + 476 + + + + + 477 + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{598, 267}, {464, 277}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{490, 632}, {129, 73}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB8AAAwpAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB8AAAwjwAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB8AAAwwIAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{383, 173}, {464, 406}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDfwAAw8EAAA + + + {{576, 618}, {178, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{579, 235}, {464, 290}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAwyMAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCOAAAwyMAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDLwAAwuoAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAw0cAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAw2AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw2AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCOAAAw0cAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCwAAAwqIAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAwnQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw2UAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDXwAAw1cAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDoIAAwx8AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAwpwAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAwqIAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCQAAAwtQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{102, 591}, {464, 265}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABBiAAAwpIAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDr4AAwqAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDIgAAwpgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + AUOOgABC9AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDAwAAww0AAA + + com.apple.InterfaceBuilder.CocoaPlugin + + + AUOOgABDGgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + AUOOgABDOgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDQgAAwy0AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDCQAAw00AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDCgAAwpIAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDDAAAwiQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDhQAAwhAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AULUAABCQAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBoAAAwggAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCkgAAwrAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDlQAAwlgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCsgAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDbwAAweAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCsgAAwfAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDsgAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDwIAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCHAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC7AAAwzgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{622, 191}, {399, 334}} + com.apple.InterfaceBuilder.CocoaPlugin + {{622, 191}, {399, 334}} + + com.apple.InterfaceBuilder.CocoaPlugin + + + - - YES - - - + - 471 + 480 - - YES + FirstResponder @@ -3683,343 +3472,229 @@ NotationPrefsViewController NSObject - - YES - - YES - addedExtension: - addedType: - changePassphrase: - changedFileDeletionWarningSettings: - changedFileStorageFormat: - changedKeyLength: - changedKeychainSettings: - changedSecureTextEntry: - makeDefaultExtension: - removeFromKeychain: - removedExtension: - removedType: - syncFrequencyChange: - toggledEncryption: - toggledSyncing: - visitSimplenoteSite: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + addedExtension: + id - - - YES - - YES - addedExtension: - addedType: - changePassphrase: - changedFileDeletionWarningSettings: - changedFileStorageFormat: - changedKeyLength: - changedKeychainSettings: - changedSecureTextEntry: - makeDefaultExtension: - removeFromKeychain: - removedExtension: - removedType: - syncFrequencyChange: - toggledEncryption: - toggledSyncing: - visitSimplenoteSite: - - - YES - - addedExtension: - id - - - addedType: - id - - - changePassphrase: - id - - - changedFileDeletionWarningSettings: - id - - - changedFileStorageFormat: - id - - - changedKeyLength: - id - - - changedKeychainSettings: - id - - - changedSecureTextEntry: - id - - - makeDefaultExtension: - id - - - removeFromKeychain: - id - - - removedExtension: - id - - - removedType: - id - - - syncFrequencyChange: - id - - - toggledEncryption: - id - - - toggledSyncing: - id - - - visitSimplenoteSite: - id - + + addedType: + id - - - YES - - YES - allowedExtensionsTable - allowedTypesTable - changePasswordButton - confirmFileDeletionButton - enableEncryptionButton - enabledSyncButton - fileAttributesHelpText - keyLengthField - keyLengthStepper - makeDefaultExtensionButton - newExtensionButton - newTypeButton - passwordSettingsMatrix - removeExtensionButton - removeFromKeychainButton - removeTypeButton - secureTextEntryButton - storageFormatPopupButton - syncAccountField - syncEncAlertField - syncEncAlertView - syncPasswordField - syncingFrequency - verifyStatusField - verifyStatusImageView - view - webOptionsWindow - - - YES - NSTableView - NSTableView - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSStepper - NSButton - NSButton - NSButton - NSMatrix - NSButton - NSButton - NSButton - NSButton - NSPopUpButton - NSTextField - NSTextField - NSImageView - NSTextField - NSPopUpButton - NSTextField - NSImageView - NSView - NSWindow - - - - YES - - YES - allowedExtensionsTable - allowedTypesTable - changePasswordButton - confirmFileDeletionButton - enableEncryptionButton - enabledSyncButton - fileAttributesHelpText - keyLengthField - keyLengthStepper - makeDefaultExtensionButton - newExtensionButton - newTypeButton - passwordSettingsMatrix - removeExtensionButton - removeFromKeychainButton - removeTypeButton - secureTextEntryButton - storageFormatPopupButton - syncAccountField - syncEncAlertField - syncEncAlertView - syncPasswordField - syncingFrequency - verifyStatusField - verifyStatusImageView - view - webOptionsWindow - - - YES - - allowedExtensionsTable - NSTableView - - - allowedTypesTable - NSTableView - - - changePasswordButton - NSButton - - - confirmFileDeletionButton - NSButton - - - enableEncryptionButton - NSButton - - - enabledSyncButton - NSButton - - - fileAttributesHelpText - NSTextField - - - keyLengthField - NSTextField - - - keyLengthStepper - NSStepper - - - makeDefaultExtensionButton - NSButton - - - newExtensionButton - NSButton - - - newTypeButton - NSButton - - - passwordSettingsMatrix - NSMatrix - - - removeExtensionButton - NSButton - - - removeFromKeychainButton - NSButton - - - removeTypeButton - NSButton - - - secureTextEntryButton - NSButton - - - storageFormatPopupButton - NSPopUpButton - - - syncAccountField - NSTextField - - - syncEncAlertField - NSTextField - - - syncEncAlertView - NSImageView - - - syncPasswordField - NSTextField - - - syncingFrequency - NSPopUpButton - - - verifyStatusField - NSTextField - - - verifyStatusImageView - NSImageView - - - view - NSView - - - webOptionsWindow - NSWindow - + + changePassphrase: + id - + + changedFileDeletionWarningSettings: + id + + + changedFileStorageFormat: + id + + + changedKeyLength: + id + + + changedKeychainSettings: + id + + + changedSecureTextEntry: + id + + + makeDefaultExtension: + id + + + removeFromKeychain: + id + + + removedExtension: + id + + + removedType: + id + + + syncFrequencyChange: + id + + + toggledEncryption: + id + + + toggledSyncing: + id + + + visitSimplenoteSite: + id + + + + NSTableView + NSTableView + NSButton + NSButton + NSButton + NSButton + NSTextField + NSTextField + NSStepper + NSButton + NSButton + NSButton + NSMatrix + NSButton + NSButton + NSButton + NSButton + NSPopUpButton + NSTextField + NSTextField + NSImageView + NSTextField + NSPopUpButton + NSTextField + NSImageView + NSView + NSWindow + + + + allowedExtensionsTable + NSTableView + + + allowedTypesTable + NSTableView + + + changePasswordButton + NSButton + + + confirmFileDeletionButton + NSButton + + + enableEncryptionButton + NSButton + + + enabledSyncButton + NSButton + + + fileAttributesHelpText + NSTextField + + + keyLengthField + NSTextField + + + keyLengthStepper + NSStepper + + + makeDefaultExtensionButton + NSButton + + + newExtensionButton + NSButton + + + newTypeButton + NSButton + + + passwordSettingsMatrix + NSMatrix + + + removeExtensionButton + NSButton + + + removeFromKeychainButton + NSButton + + + removeTypeButton + NSButton + + + secureTextEntryButton + NSButton + + + storageFormatPopupButton + NSPopUpButton + + + syncAccountField + NSTextField + + + syncEncAlertField + NSTextField + + + syncEncAlertView + NSImageView + + + syncPasswordField + NSTextField + + + syncingFrequency + NSPopUpButton + + + verifyStatusField + NSTextField + + + verifyStatusImageView + NSImageView + + + view + NSView + + + webOptionsWindow + NSWindow + + IBProjectSource ./Classes/NotationPrefsViewController.h @@ -4028,475 +3703,335 @@ PrefsWindowController NSObject - - YES - - YES - changeBodyFont: - changedAltRows: - changedAutoSuggestLinks: - changedBackgroundTextColorWell: - changedExternalEditorsMenu: - changedForegroundTextColorWell: - changedHighlightSearchTerms: - changedMakeURLsClickable: - changedNoteDeletion: - changedNotesFolderLocation: - changedQuitBehavior: - changedRTL: - changedSearchHighlightColorWell: - changedShowGrid: - changedSoftTabs: - changedSpellChecking: - changedStyledTextBehavior: - changedTabBehavior: - changedTableText: - changedTitleCompletion: - changedUseMarkdownImport: - changedUseReadability: - setAppShortcut: - setMaxWidth: - toggleHideDockIcon: - toggleKeepsTextWidthInWindow: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + changeBodyFont: + id - - - YES - - YES - changeBodyFont: - changedAltRows: - changedAutoSuggestLinks: - changedBackgroundTextColorWell: - changedExternalEditorsMenu: - changedForegroundTextColorWell: - changedHighlightSearchTerms: - changedMakeURLsClickable: - changedNoteDeletion: - changedNotesFolderLocation: - changedQuitBehavior: - changedRTL: - changedSearchHighlightColorWell: - changedShowGrid: - changedSoftTabs: - changedSpellChecking: - changedStyledTextBehavior: - changedTabBehavior: - changedTableText: - changedTitleCompletion: - changedUseMarkdownImport: - changedUseReadability: - setAppShortcut: - setMaxWidth: - toggleHideDockIcon: - toggleKeepsTextWidthInWindow: - - - YES - - changeBodyFont: - id - - - changedAltRows: - id - - - changedAutoSuggestLinks: - id - - - changedBackgroundTextColorWell: - id - - - changedExternalEditorsMenu: - id - - - changedForegroundTextColorWell: - id - - - changedHighlightSearchTerms: - id - - - changedMakeURLsClickable: - id - - - changedNoteDeletion: - id - - - changedNotesFolderLocation: - id - - - changedQuitBehavior: - id - - - changedRTL: - id - - - changedSearchHighlightColorWell: - id - - - changedShowGrid: - id - - - changedSoftTabs: - id - - - changedSpellChecking: - id - - - changedStyledTextBehavior: - id - - - changedTabBehavior: - id - - - changedTableText: - id - - - changedTitleCompletion: - id - - - changedUseMarkdownImport: - id - - - changedUseReadability: - id - - - setAppShortcut: - id - - - setMaxWidth: - id - - - toggleHideDockIcon: - id - - - toggleKeepsTextWidthInWindow: - id - + + changedAltRows: + id - - - YES - - YES - altRowsButton - appList - appShortcutField - autoSuggestLinksButton - backgroundColorWell - bodyTextFontField - checkSpellingButton - completeNoteTitlesButton - confirmDeletionButton - databaseView - editingView - externalEditorMenuButton - folderLocationsMenuButton - fontsColorsView - foregroundColorWell - generalView - highlightSearchTermsButton - makeURLsClickable - maxWidthSlider - notationPrefsView - notationPrefsViewController - quitWhenClosingButton - rtlButton - searchHighlightColorWell - showGridButton - softTabsButton - styledTextButton - tabKeyRadioMatrix - tableTextMenuButton - tableTextSizeField - togDockButton - togDockLabel - useMarkdownImportButton - useReadabilityButton - window - - - YES - NSButton - NSComboBox - NSTextField - NSButton - NSColorWell - NSTextField - NSButton - NSButton - NSButton - NSView - NSView - NSPopUpButton - NSPopUpButton - NSView - NSColorWell - NSView - NSButton - NSButton - NSSlider - NSView - NotationPrefsViewController - NSButton - NSButton - NSColorWell - NSButton - NSButton - NSButton - NSMatrix - NSPopUpButton - NSTextField - NSButton - NSTextField - NSButton - NSButton - NSWindow - - - - YES - - YES - altRowsButton - appList - appShortcutField - autoSuggestLinksButton - backgroundColorWell - bodyTextFontField - checkSpellingButton - completeNoteTitlesButton - confirmDeletionButton - databaseView - editingView - externalEditorMenuButton - folderLocationsMenuButton - fontsColorsView - foregroundColorWell - generalView - highlightSearchTermsButton - makeURLsClickable - maxWidthSlider - notationPrefsView - notationPrefsViewController - quitWhenClosingButton - rtlButton - searchHighlightColorWell - showGridButton - softTabsButton - styledTextButton - tabKeyRadioMatrix - tableTextMenuButton - tableTextSizeField - togDockButton - togDockLabel - useMarkdownImportButton - useReadabilityButton - window - - - YES - - altRowsButton - NSButton - - - appList - NSComboBox - - - appShortcutField - NSTextField - - - autoSuggestLinksButton - NSButton - - - backgroundColorWell - NSColorWell - - - bodyTextFontField - NSTextField - - - checkSpellingButton - NSButton - - - completeNoteTitlesButton - NSButton - - - confirmDeletionButton - NSButton - - - databaseView - NSView - - - editingView - NSView - - - externalEditorMenuButton - NSPopUpButton - - - folderLocationsMenuButton - NSPopUpButton - - - fontsColorsView - NSView - - - foregroundColorWell - NSColorWell - - - generalView - NSView - - - highlightSearchTermsButton - NSButton - - - makeURLsClickable - NSButton - - - maxWidthSlider - NSSlider - - - notationPrefsView - NSView - - - notationPrefsViewController - NotationPrefsViewController - - - quitWhenClosingButton - NSButton - - - rtlButton - NSButton - - - searchHighlightColorWell - NSColorWell - - - showGridButton - NSButton - - - softTabsButton - NSButton - - - styledTextButton - NSButton - - - tabKeyRadioMatrix - NSMatrix - - - tableTextMenuButton - NSPopUpButton - - - tableTextSizeField - NSTextField - - - togDockButton - NSButton - - - togDockLabel - NSTextField - - - useMarkdownImportButton - NSButton - - - useReadabilityButton - NSButton - - - window - NSWindow - + + changedAutoPairing: + id - + + changedAutoSuggestLinks: + id + + + changedBackgroundTextColorWell: + id + + + changedExternalEditorsMenu: + id + + + changedForegroundTextColorWell: + id + + + changedHighlightSearchTerms: + id + + + changedMakeURLsClickable: + id + + + changedNoteDeletion: + id + + + changedNotesFolderLocation: + id + + + changedQuitBehavior: + id + + + changedRTL: + id + + + changedSearchHighlightColorWell: + id + + + changedShowGrid: + id + + + changedSoftTabs: + id + + + changedSpellChecking: + id + + + changedStyledTextBehavior: + id + + + changedTabBehavior: + id + + + changedTableText: + id + + + changedTitleCompletion: + id + + + changedUseMarkdownImport: + id + + + changedUseReadability: + id + + + setAppShortcut: + id + + + setMaxWidth: + id + + + toggleHideDockIcon: + id + + + toggleKeepsTextWidthInWindow: + id + + + + NSButton + NSComboBox + NSTextField + NSButton + NSButton + NSColorWell + NSTextField + NSButton + NSButton + NSButton + NSView + NSView + NSPopUpButton + NSPopUpButton + NSView + NSColorWell + NSView + NSButton + NSButton + NSSlider + NSView + NotationPrefsViewController + NSButton + NSButton + NSColorWell + NSButton + NSButton + NSButton + NSMatrix + NSPopUpButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSWindow + + + + altRowsButton + NSButton + + + appList + NSComboBox + + + appShortcutField + NSTextField + + + autoPairButton + NSButton + + + autoSuggestLinksButton + NSButton + + + backgroundColorWell + NSColorWell + + + bodyTextFontField + NSTextField + + + checkSpellingButton + NSButton + + + completeNoteTitlesButton + NSButton + + + confirmDeletionButton + NSButton + + + databaseView + NSView + + + editingView + NSView + + + externalEditorMenuButton + NSPopUpButton + + + folderLocationsMenuButton + NSPopUpButton + + + fontsColorsView + NSView + + + foregroundColorWell + NSColorWell + + + generalView + NSView + + + highlightSearchTermsButton + NSButton + + + makeURLsClickable + NSButton + + + maxWidthSlider + NSSlider + + + notationPrefsView + NSView + + + notationPrefsViewController + NotationPrefsViewController + + + quitWhenClosingButton + NSButton + + + rtlButton + NSButton + + + searchHighlightColorWell + NSColorWell + + + showGridButton + NSButton + + + softTabsButton + NSButton + + + styledTextButton + NSButton + + + tabKeyRadioMatrix + NSMatrix + + + tableTextMenuButton + NSPopUpButton + + + tableTextSizeField + NSTextField + + + togDockButton + NSButton + + + togDockLabel + NSTextField + + + useMarkdownImportButton + NSButton + + + useReadabilityButton + NSButton + + + window + NSWindow + + IBProjectSource ./Classes/PrefsWindowController.h - + 0 IBCocoaFramework @@ -4508,28 +4043,13 @@ com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES 3 - - YES - - YES - NSMenuCheckmark - NSMenuMixedState - NSRadioButton - NSSwitch - - - YES - {9, 8} - {7, 2} - {16, 15} - {15, 15} - - + + {9, 8} + {7, 2} + {16, 15} + {15, 15} + diff --git a/fr.lproj/MainMenu-nssplitview.nib/designable.nib b/fr.lproj/MainMenu-nssplitview.nib/designable.nib deleted file mode 100644 index 67ccdce1..00000000 --- a/fr.lproj/MainMenu-nssplitview.nib/designable.nib +++ /dev/null @@ -1,3594 +0,0 @@ - - - - 1040 - 10C540 - 740 - 1038.25 - 458.00 - - com.apple.InterfaceBuilder.CocoaPlugin - 740 - - - YES - - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES - - NSApplication - - - FirstResponder - - - NSApplication - - - 15 - 2 - {{201, 181}, {399, 560}} - 1618477056 - Notation - NSWindow - - View - - {1.79769e+308, 1.79769e+308} - {213, 107} - - - 256 - - YES - - - 266 - {{8, 528}, {381, 22}} - - YES - - -1804468671 - 268436480 - - - LucidaGrande - 13 - 1044 - - - YES - - 6 - System - textBackgroundColor - - 3 - MQA - - - - 6 - System - textColor - - 3 - MAA - - - - - - - 274 - - YES - - - 274 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 4352 - {382, 140} - - YES - - - 256 - {382, 17} - - - - - - 256 - {{383, 0}, {16, 17}} - - - - YES - - 3 - 2 - - - 6 - System - gridColor - - 3 - MC41AA - - - 14 - -633307136 - - - 1 - 15 - 0 - YES - 0 - - - {{1, 17}, {382, 140}} - - - - - 6 - System - controlBackgroundColor - - 3 - MC42NjY2NjY2NjY3AA - - - 4 - - - - 256 - {{383, 17}, {15, 140}} - - - _doScroller: - 0.46979865771812079 - - - - -2147483392 - {{-100, -100}, {382, 15}} - - 1 - - _doScroller: - 0.96598640000000002 - - - - 2304 - - YES - - - {{1, 0}, {382, 17}} - - - - - 4 - - - - {399, 158} - - - 18 - - - - - - QSAAAEEgAABBgAAAQYAAAA - - - {399, 158} - - NSView - - - - 274 - - YES - - - 274 - - YES - - - 2304 - - YES - - - 2322 - - YES - - YES - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - - {384, 14} - - - - - - - - - - - YES - - - 6 - - - - 384 - 1 - - - 12263 - 0 - - - - YES - - YES - NSBackgroundColor - NSColor - - - YES - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - - - - - - YES - - YES - NSColor - NSUnderline - - - YES - - 1 - MCAwIDEAA - - - - - - - 6 - {838, 1e+07} - {297, 0} - - - - {{1, 1}, {382, 345}} - - - - - - {4, -5} - 1 - - 4 - - - - 256 - {{383, 1}, {15, 345}} - - - _doScroller: - 1 - - - - -2147483392 - {{-100, -100}, {87, 18}} - - YES - 1 - - _doScroller: - 1 - 0.94565220000000005 - - - {399, 347} - - - 146 - - - - - - {{0, 167}, {399, 347}} - - NSView - - - {399, 514} - - Notation - - - {399, 560} - - {{0, 0}, {1920, 1178}} - {213, 129} - {1.79769e+308, 1.79769e+308} - NotationWindow - - - MainMenu - - YES - - - Notational Velocity - - 1048576 - 2147483647 - - NSImage - NSMenuCheckmark - - - NSImage - NSMenuMixedState - - submenuAction: - - Notational Velocity - - YES - - - A propos de Notational Velocity - - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Préférences… - , - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Vérifier la présence de mises à jour... - - 1048576 - 2147483647 - - - 88 - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Services - - 1048576 - 2147483647 - - - submenuAction: - - - Services - - - YES - - _NSServicesMenu - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Masquer Notational Velocity - h - 1048576 - 2147483647 - - - - - - Masquer les autres - h - 1572864 - 2147483647 - - - - - - Tout afficher - - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Quitter Notational Velocity - q - 1048576 - 2147483647 - - - - - _NSAppleMenu - - - - - Note - - 1048576 - 2147483647 - - - submenuAction: - 89 - - Note - - YES - - - Renommer - r - 1048576 - 2147483647 - - - 90 - - - - Etiquetter - T - 1048576 - 2147483647 - - - 92 - - - - Supprimer - CA - 1048576 - 2147483647 - - - 91 - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Chercher ou créer - l - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Importer… - - 1048576 - 2147483647 - - - 93 - - - - Exporter… - e - 1048576 - 2147483647 - - - 94 - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Mise en page - P - 1048576 - 2147483647 - - - 95 - - - - Imprimer… - p - 1048576 - 2147483647 - - - 96 - - - - - - - Editer - - 1048576 - 2147483647 - - - submenuAction: - - Editer - - YES - - - Annuler - z - 1048576 - 2147483647 - - - - - - Refaire - Z - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Couper - x - 1048576 - 2147483647 - - - - - - Copier - c - 1048576 - 2147483647 - - - - - - Coller - v - 1048576 - 2147483647 - - - - - - Coller en tant que nouvelle note - V - 1048576 - 2147483647 - - - - - - Effacer - - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Sélectionner tout - a - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Chercher - - 1048576 - 2147483647 - - - submenuAction: - - Chercher - - YES - - - Chercher… - f - 1048576 - 2147483647 - - - 1 - - - - Chercher suivant - g - 1048576 - 2147483647 - - - 2 - - - - Chercher précédent - G - 1048576 - 2147483647 - - - 3 - - - - Chercher à partir de la sélection - e - 1048576 - 2147483647 - - - 7 - - - - - - - Orthographe - - 1048576 - 2147483647 - - - submenuAction: - - Orthographe - - YES - - - Orthographe… - : - 1048576 - 2147483647 - - - - - - Vérifier l'orthographe - ; - 1048576 - 2147483647 - - - - - - Vérifier en cours de frappe - - 1048576 - 2147483647 - - - - - - - - - - - - Affichage - - 1048576 - 2147483647 - - - submenuAction: - - Affichage - - YES - - - Colonnes - - 1048576 - 2147483647 - - - submenuAction: - 97 - - Colonnes - - YES - - - Item - - 1048576 - 2147483647 - - - - - - - - - Trier par - - 1048576 - 2147483647 - - - submenuAction: - 98 - - Trier par - - YES - - - Item - - 1048576 - 2147483647 - - - - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Note suivante - j - 1048576 - 2147483647 - - - 106 - - - - Noté précédente - k - 1048576 - 2147483647 - - - 107 - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Déselectionner note(s) - d - 1048576 - 2147483647 - - - 101 - - - - - - - Format - - 1048576 - 2147483647 - - - submenuAction: - - - Format - - - YES - - - Texte simple - t - 1048576 - 2147483647 - - - - - - Gras - b - 1048576 - 2147483647 - - - 2 - - Bold - - YES - - YES - NSFont - NSOriginalFont - - - YES - - LucidaGrande-Bold - 14 - 16 - - - - - - - - - Italique - i - 1048576 - 2147483647 - - - 1 - - Italic - - YES - - YES - NSFont - NSOriginalFont - - - YES - - LucidaGrande - 14 - 16 - - - - - - - - - Souligné - u - 1048576 - 2147483647 - - - - Underline - - YES - - YES - NSFont - NSOriginalFont - NSUnderline - - - YES - - - - - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Décaler à gauche - [ - 1048576 - 2147483647 - - - - - - Décaler à droite - ] - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Définir l'encodage du texte... - - 1048576 - 2147483647 - - - 102 - - - - - - - Signets - - 1048576 - 2147483647 - - - submenuAction: - 103 - - Signets - - YES - - - Item - - 1048576 - 2147483647 - - - - - - - - - Fenêtre - - 1048576 - 2147483647 - - - submenuAction: - - Fenêtre - - YES - - - Placer dans le Dock - m - 1048576 - 2147483647 - - - - - - Fermer - w - 1048576 - 2147483647 - - - - - - Zoomer - - 1048576 - 2147483647 - - - - - - YES - YES - - - 1048576 - 2147483647 - - - - - - Amener au premier plan - - 1048576 - 2147483647 - - - - - _NSWindowsMenu - - - - - Aide - - 1048576 - 2147483647 - - - submenuAction: - - Aide - - YES - - - Liste des raccourcis claviers - ? - 1048576 - 2147483647 - - - - - - - - _NSMainMenu - - - AppController - - - - 274 - - YES - - - 319 - {{0, 43}, {147, 23}} - - YES - - 67239424 - 138412032 - No Note Selected - - Helvetica - 18 - 16 - - - - 6 - System - controlColor - - - - 3 - MC40OTU5Njc3NQA - - - - - {147, 102} - EmptyView - NSView - - - NSFontManager - - - - - YES - - - performMiniaturize: - - - - 37 - - - - arrangeInFront: - - - - 39 - - - - runPageLayout: - - - - 87 - - - - showHelp: - - - - 122 - - - - terminate: - - - - 139 - - - - orderFrontStandardAboutPanel: - - - - 142 - - - - hideOtherApplications: - - - - 146 - - - - hide: - - - - 152 - - - - unhideAllApplications: - - - - 153 - - - - cut: - - - - 175 - - - - paste: - - - - 176 - - - - redo: - - - - 178 - - - - selectAll: - - - - 179 - - - - undo: - - - - 180 - - - - copy: - - - - 181 - - - - showGuessPanel: - - - - 188 - - - - checkSpelling: - - - - 190 - - - - toggleContinuousSpellChecking: - - - - 192 - - - - performZoom: - - - - 198 - - - - field - - - - 216 - - - - window - - - - 217 - - - - fieldAction: - - - - 218 - - - - delegate - - - - 219 - - - - initialFirstResponder - - - - 227 - - - - delegate - - - - 229 - - - - editorStatusView - - - - 348 - - - - labelText - - - - 350 - - - - nextKeyView - - - - 351 - - - - showPreferencesWindow: - - - - 381 - - - - deleteNote: - - - - 491 - - - - performClose: - - - - 496 - - - - renameNote: - - - - 526 - - - - fixFileEncoding: - - - - 536 - - - - bringFocusToControlField: - - - - 555 - - - - shiftLeftAction: - - - - 568 - - - - shiftRightAction: - - - - 569 - - - - delete: - - - - 773 - - - - defaultStyle: - - - - 978 - - - - bold: - - - - 981 - - - - italic: - - - - 982 - - - - underlineNV: - - - - 984 - - - - performFindPanelAction: - - - - 985 - - - - importNotes: - - - - 986 - - - - printNote: - - - - 987 - - - - exportNote: - - - - 988 - - - - tagNote: - - - - 995 - - - - controlField - - - - 1019 - - - - delegate - - - - 1020 - - - - notesTableView - - - - 1021 - - - - nextKeyView - - - - 1022 - - - - controlField - - - - 1023 - - - - delegate - - - - 1024 - - - - nextKeyView - - - - 1025 - - - - nextKeyView - - - - 1026 - - - - notesTableView - - - - 1027 - - - - textView - - - - 1030 - - - - notesTable - - - - 1031 - - - - nextKeyView - - - - 1032 - - - - incrementNoteSelection: - - - - 1035 - - - - incrementNoteSelection: - - - - 1036 - - - - paste: - - - - 1037 - - - - deselectAll: - - - - 1038 - - - - delegate - - - - 1040 - - - - delegate - - - - 1041 - - - - performFindPanelAction: - - - - 1042 - - - - performFindPanelAction: - - - - 1043 - - - - performFindPanelAction: - - - - 1044 - - - - sparkleUpdateItem - - - - 1052 - - - - nextKeyView - - - - 1082 - - - - splitView - - - - 1083 - - - - delegate - - - - 1084 - - - - - YES - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - 21 - - - YES - - - - notation - - - 2 - - - YES - - - - - - - 206 - - - YES - - - - - - 29 - - - YES - - - - - - - - - - - MainMenu - - - 19 - - - YES - - - - - - 24 - - - YES - - - - - - - - - - 5 - - - - - 23 - - - - - 92 - - - - - 197 - - - - - 489 - - - - - 56 - - - YES - - - - - - 57 - - - YES - - - - - - - - - - - - - - - - - - 58 - - - - - 129 - - - - - 131 - - - YES - - - - - - 130 - - - - - 134 - - - - - 136 - - - - - 143 - - - - - 144 - - - - - 145 - - - - - 149 - - - - - 150 - - - - - 196 - - - - - 990 - - - - - 991 - - - - - 83 - - - YES - - - - - - 81 - - - YES - - - - - - - - - - - - - - - - 77 - - - - - 78 - - - - - 79 - - - - - 392 - - - - - 393 - - - - - 394 - - - - - 395 - - - - - 396 - - - - - 553 - - - - - 554 - - - - - 994 - - - - - 103 - - - YES - - - - - - 106 - - - YES - - - - - - 111 - - - - - 163 - - - YES - - - - - - 169 - - - YES - - - - - - - - - - - - - - - - - - 156 - - - - - 157 - - - - - 158 - - - - - 160 - - - - - 168 - - - YES - - - - - - 159 - - - YES - - - - - - - - - 154 - - - - - 161 - - - - - 162 - - - - - 167 - - - - - 171 - - - - - 172 - - - - - 173 - - - - - 184 - - - YES - - - - - - 185 - - - YES - - - - - - - - 187 - - - - - 189 - - - - - 191 - - - - - 550 - - - - - 557 - - - - - 771 - - - - - 1000 - - - - - 382 - - - YES - - - - - - 383 - - - YES - - - - - - - - - - - - 386 - - - YES - - - - - - 387 - - - YES - - - - - - 388 - - - - - 389 - - - YES - - - - - - 390 - - - YES - - - - - - 391 - - - - - 507 - - - - - 508 - - - - - 520 - - - - - 521 - - - - - 522 - - - - - 397 - - - YES - - - - - - 398 - - - YES - - - - - - - - - - - - - - 534 - - - - - 563 - - - - - 564 - - - - - 565 - - - - - 574 - - - - - 575 - - - - - 576 - - - - - 577 - - - - - 977 - - - - - 996 - - - YES - - - - - - 997 - - - YES - - - - - - 998 - - - - - 213 - - - AppController - - - 341 - - - YES - - - - editorStatus - - - 342 - - - YES - - - - - - 452 - - - Font Manager - - - 1054 - - - - - 1055 - - - - - -3 - - - Application - - - 1061 - - - YES - - - - - - - 1063 - - - YES - - - - - - 1062 - - - YES - - - - - - 1013 - - - YES - - - - - - - - - 1014 - - - - - 1056 - - - - - 1057 - - - - - 1058 - - - - - 1016 - - - YES - - - - - - - - 1017 - - - - - 1059 - - - - - 1060 - - - - - - - YES - - YES - -3.IBPluginDependency - 1000.IBPluginDependency - 1000.ImportedFromIB2 - 1013.IBPluginDependency - 1013.ImportedFromIB2 - 1014.CustomClassName - 1014.IBPluginDependency - 1014.ImportedFromIB2 - 1016.CustomClassName - 1016.IBPluginDependency - 1016.ImportedFromIB2 - 1017.CustomClassName - 1017.IBPluginDependency - 1017.ImportedFromIB2 - 103.IBPluginDependency - 103.ImportedFromIB2 - 1054.IBPluginDependency - 1055.IBPluginDependency - 1056.IBPluginDependency - 1056.IBShouldRemoveOnLegacySave - 1057.IBPluginDependency - 1057.IBShouldRemoveOnLegacySave - 1058.IBPluginDependency - 1058.IBShouldRemoveOnLegacySave - 1059.IBPluginDependency - 1059.IBShouldRemoveOnLegacySave - 106.IBEditorWindowLastContentRect - 106.IBPluginDependency - 106.ImportedFromIB2 - 1060.IBPluginDependency - 1060.IBShouldRemoveOnLegacySave - 1061.IBEditorWindowLastContentRect - 1061.IBPluginDependency - 1062.IBPluginDependency - 1063.IBPluginDependency - 111.IBPluginDependency - 111.ImportedFromIB2 - 129.IBPluginDependency - 129.ImportedFromIB2 - 130.IBPluginDependency - 130.ImportedFromIB2 - 131.IBPluginDependency - 131.ImportedFromIB2 - 134.IBPluginDependency - 134.ImportedFromIB2 - 136.IBPluginDependency - 136.ImportedFromIB2 - 143.IBPluginDependency - 143.ImportedFromIB2 - 144.IBPluginDependency - 144.ImportedFromIB2 - 145.IBPluginDependency - 145.ImportedFromIB2 - 149.IBPluginDependency - 149.ImportedFromIB2 - 150.IBPluginDependency - 150.ImportedFromIB2 - 154.IBPluginDependency - 154.ImportedFromIB2 - 156.IBPluginDependency - 156.ImportedFromIB2 - 157.IBPluginDependency - 157.ImportedFromIB2 - 158.IBPluginDependency - 158.ImportedFromIB2 - 159.IBEditorWindowLastContentRect - 159.IBPluginDependency - 159.ImportedFromIB2 - 160.IBPluginDependency - 160.ImportedFromIB2 - 161.IBPluginDependency - 161.ImportedFromIB2 - 162.IBPluginDependency - 162.ImportedFromIB2 - 163.IBPluginDependency - 163.ImportedFromIB2 - 167.IBPluginDependency - 167.ImportedFromIB2 - 168.IBPluginDependency - 168.ImportedFromIB2 - 169.IBEditorWindowLastContentRect - 169.IBPluginDependency - 169.ImportedFromIB2 - 171.IBPluginDependency - 171.ImportedFromIB2 - 172.IBPluginDependency - 172.ImportedFromIB2 - 173.IBPluginDependency - 173.ImportedFromIB2 - 184.IBPluginDependency - 184.ImportedFromIB2 - 185.IBEditorWindowLastContentRect - 185.IBPluginDependency - 185.ImportedFromIB2 - 187.IBPluginDependency - 187.ImportedFromIB2 - 189.IBPluginDependency - 189.ImportedFromIB2 - 19.IBPluginDependency - 19.ImportedFromIB2 - 191.IBPluginDependency - 191.ImportedFromIB2 - 196.IBPluginDependency - 196.ImportedFromIB2 - 197.IBPluginDependency - 197.ImportedFromIB2 - 2.IBPluginDependency - 2.ImportedFromIB2 - 206.CustomClassName - 206.IBPluginDependency - 206.ImportedFromIB2 - 21.IBEditorWindowLastContentRect - 21.IBPluginDependency - 21.IBWindowTemplateEditedContentRect - 21.ImportedFromIB2 - 21.NSWindowTemplate.visibleAtLaunch - 21.windowTemplate.hasMinSize - 21.windowTemplate.minSize - 213.ImportedFromIB2 - 23.IBPluginDependency - 23.ImportedFromIB2 - 24.IBEditorWindowLastContentRect - 24.IBPluginDependency - 24.ImportedFromIB2 - 29.IBEditorWindowLastContentRect - 29.IBPluginDependency - 29.ImportedFromIB2 - 341.IBPluginDependency - 341.ImportedFromIB2 - 342.IBPluginDependency - 342.ImportedFromIB2 - 382.IBPluginDependency - 382.ImportedFromIB2 - 383.IBEditorWindowLastContentRect - 383.IBPluginDependency - 383.ImportedFromIB2 - 386.IBPluginDependency - 386.ImportedFromIB2 - 387.IBEditorWindowLastContentRect - 387.IBPluginDependency - 387.ImportedFromIB2 - 388.IBPluginDependency - 388.ImportedFromIB2 - 389.IBPluginDependency - 389.ImportedFromIB2 - 390.IBEditorWindowLastContentRect - 390.IBPluginDependency - 390.ImportedFromIB2 - 391.IBPluginDependency - 391.ImportedFromIB2 - 392.IBPluginDependency - 392.ImportedFromIB2 - 393.IBPluginDependency - 393.ImportedFromIB2 - 394.IBPluginDependency - 394.ImportedFromIB2 - 395.IBPluginDependency - 395.ImportedFromIB2 - 396.IBPluginDependency - 396.ImportedFromIB2 - 397.IBPluginDependency - 397.ImportedFromIB2 - 398.IBEditorWindowLastContentRect - 398.IBPluginDependency - 398.ImportedFromIB2 - 452.ImportedFromIB2 - 489.IBPluginDependency - 489.ImportedFromIB2 - 5.IBPluginDependency - 5.ImportedFromIB2 - 507.IBPluginDependency - 507.ImportedFromIB2 - 508.IBPluginDependency - 508.ImportedFromIB2 - 520.IBPluginDependency - 520.ImportedFromIB2 - 521.IBPluginDependency - 521.ImportedFromIB2 - 522.IBPluginDependency - 522.ImportedFromIB2 - 534.IBPluginDependency - 534.ImportedFromIB2 - 550.IBPluginDependency - 550.ImportedFromIB2 - 553.IBPluginDependency - 553.ImportedFromIB2 - 554.IBPluginDependency - 554.ImportedFromIB2 - 557.IBPluginDependency - 557.ImportedFromIB2 - 56.IBPluginDependency - 56.ImportedFromIB2 - 563.IBPluginDependency - 563.ImportedFromIB2 - 564.IBPluginDependency - 564.ImportedFromIB2 - 565.IBPluginDependency - 565.ImportedFromIB2 - 57.IBEditorWindowLastContentRect - 57.IBPluginDependency - 57.ImportedFromIB2 - 574.IBPluginDependency - 574.ImportedFromIB2 - 575.IBPluginDependency - 575.ImportedFromIB2 - 576.IBPluginDependency - 576.ImportedFromIB2 - 577.IBPluginDependency - 577.ImportedFromIB2 - 58.IBPluginDependency - 58.ImportedFromIB2 - 77.IBPluginDependency - 77.ImportedFromIB2 - 771.IBPluginDependency - 771.ImportedFromIB2 - 78.IBPluginDependency - 78.ImportedFromIB2 - 79.IBPluginDependency - 79.ImportedFromIB2 - 81.IBEditorWindowLastContentRect - 81.IBPluginDependency - 81.ImportedFromIB2 - 83.IBPluginDependency - 83.ImportedFromIB2 - 92.IBPluginDependency - 92.ImportedFromIB2 - 977.IBPluginDependency - 977.ImportedFromIB2 - 990.IBPluginDependency - 990.ImportedFromIB2 - 991.IBPluginDependency - 991.ImportedFromIB2 - 994.IBPluginDependency - 994.ImportedFromIB2 - 996.IBPluginDependency - 996.ImportedFromIB2 - 997.IBEditorWindowLastContentRect - 997.IBPluginDependency - 997.ImportedFromIB2 - 998.IBPluginDependency - 998.ImportedFromIB2 - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - NotesTableView - com.apple.InterfaceBuilder.CocoaPlugin - - FocusRingScrollView - com.apple.InterfaceBuilder.CocoaPlugin - - LinkingEditor - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{671, 550}, {260, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{810, 50}, {494, 563}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{719, 463}, {308, 83}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{412, 503}, {307, 233}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{719, 463}, {252, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - DualField - com.apple.InterfaceBuilder.CocoaPlugin - - {{24, 498}, {399, 560}} - com.apple.InterfaceBuilder.CocoaPlugin - {{24, 498}, {399, 560}} - - - - {213, 107} - - com.apple.InterfaceBuilder.CocoaPlugin - - {{602, 480}, {243, 93}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{111, 573}, {621, 20}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{470, 613}, {228, 123}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{698, 713}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{698, 693}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{468, 410}, {272, 163}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{395, 521}, {343, 213}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{550, 541}, {218, 193}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{618, 713}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - - YES - - - - - YES - - - YES - - - - 1084 - - - - YES - - AppController - NSObject - - YES - - YES - bringFocusToControlField: - deleteNote: - exportNote: - fieldAction: - importNotes: - printNote: - renameNote: - showPreferencesWindow: - tagNote: - - - YES - id - id - id - id - id - id - id - id - id - - - - YES - - YES - editorStatusView - field - notesTableView - sparkleUpdateItem - splitView - textView - window - - - YES - EmptyView - DualField - NotesTableView - NSMenuItem - NSSplitView - LinkingEditor - NSWindow - - - - IBProjectSource - AppController.h - - - - AppController - NSObject - - YES - - YES - fixFileEncoding: - newNoteWithClipboard: - - - YES - id - id - - - - IBUserSource - - - - - DualField - NSTextField - - notesTable - NSTableView - - - IBProjectSource - DualField.h - - - - DualField - NSTextField - - IBUserSource - - - - - EmptyView - NSView - - labelText - NSTextField - - - IBProjectSource - EmptyView.h - - - - EmptyView - NSView - - IBUserSource - - - - - FirstResponder - NSObject - - YES - - YES - bold: - defaultStyle: - deleteToBeginningOfLine: - deleteWordBackward: - italic: - shiftLeftAction: - shiftRightAction: - underlineNV: - - - YES - id - id - id - id - id - id - id - id - - - - IBUserSource - - - - - FocusRingScrollView - NSScrollView - - IBProjectSource - FocusRingScrollView.h - - - - FocusRingScrollView - NSScrollView - - IBUserSource - - - - - LinkingEditor - NSTextView - - YES - - YES - bold: - defaultStyle: - italic: - underlineNV: - - - YES - id - id - id - id - - - - YES - - YES - controlField - notesTableView - - - YES - NSTextField - NotesTableView - - - - IBProjectSource - LinkingEditor.h - - - - LinkingEditor - - YES - - YES - shiftLeftAction: - shiftRightAction: - - - YES - id - id - - - - IBProjectSource - LinkingEditor_Indentation.h - - - - LinkingEditor - NSTextView - - IBUserSource - - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NoteObject.h - - - - NSObject - - IBProjectSource - PassphrasePicker.h - - - - NSTableView - - IBProjectSource - NotesTableView.h - - - - NSTextView - - - - NSTextView - NSText - - performFindPanelAction: - id - - - IBUserSource - - - - - NSWindow - - IBProjectSource - PrefsWindowController.h - - - - NotesTableView - NSTableView - - YES - - YES - actionHideShowColumn: - incrementNoteSelection: - - - YES - id - id - - - - controlField - NSTextField - - - - - NotesTableView - NSTableView - - paste: - id - - - IBUserSource - - - - - - 0 - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - ../Notation.xcodeproj - 3 - - diff --git a/fr.lproj/MainMenu-nssplitview.nib/keyedobjects.nib b/fr.lproj/MainMenu-nssplitview.nib/keyedobjects.nib deleted file mode 100644 index 532ea7da..00000000 Binary files a/fr.lproj/MainMenu-nssplitview.nib/keyedobjects.nib and /dev/null differ diff --git a/fr.lproj/MainMenu.xib b/fr.lproj/MainMenu.xib index 2fc36044..bb68d283 100644 --- a/fr.lproj/MainMenu.xib +++ b/fr.lproj/MainMenu.xib @@ -1,17 +1,16 @@ - + - 1040 - 10J869 - 1305 - 1038.35 + 1050 + 10K540 + 1306 + 1038.36 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 1305 + 1306 - - YES + NSUserDefaultsController NSScroller NSTableHeaderView @@ -31,17 +30,15 @@ NSView NSTextField NSTextView - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin - + PluginDependencyRecalculationVersion - - YES + NSApplication @@ -68,19 +65,19 @@ {{7, 11}, {397, 464}} + - {{0, 0}, {1920, 1058}} + {{0, 0}, {1440, 878}} {213, 129} {1e+13, 1e+13} NotationWindow MainMenu - - YES + - nvALT2 + nvALT 1048576 2147483647 @@ -94,12 +91,11 @@ submenuAction: - nvALT2 - - YES + nvALT + - A propos de nvALT2 + A propos de nvALT 2147483647 @@ -170,9 +166,7 @@ Services - - YES - + _NSServicesMenu @@ -189,7 +183,7 @@ - Masquer nvALT2 + Masquer nvALT h 1048576 2147483647 @@ -227,14 +221,14 @@ - Quitter nvALT2 + Quitter nvALT q 1048576 2147483647 - + _NSAppleMenu @@ -250,8 +244,7 @@ 89 Note - - YES + Renommer @@ -382,7 +375,7 @@ 96 - + @@ -396,8 +389,7 @@ submenuAction: Editer - - YES + Annuler @@ -523,8 +515,7 @@ submenuAction: Chercher - - YES + Chercher... @@ -565,7 +556,7 @@ 7 - + @@ -579,8 +570,7 @@ submenuAction: Orthographe - - YES + Orthographe… @@ -608,7 +598,7 @@ - + @@ -621,8 +611,7 @@ submenuAction: Transformations - - YES + Mettre en majuscules @@ -647,10 +636,10 @@ - + - + @@ -665,8 +654,19 @@ 99 Affichage - - YES + + + + YES + YES + Enter Full Screen + f + 1310720 + 2147483647 + + + 314 + Présentation horizontale @@ -695,8 +695,7 @@ submenuAction: Color Schemes - - YES + YES @@ -728,7 +727,7 @@ - + @@ -753,8 +752,7 @@ 97 Colonnes - - YES + Item @@ -764,7 +762,7 @@ - + @@ -779,8 +777,7 @@ 98 Trier par - - YES + Item @@ -790,7 +787,7 @@ - + @@ -875,7 +872,7 @@ 101 - + @@ -890,8 +887,7 @@ 103 Signets - - YES + Item @@ -901,7 +897,7 @@ - + @@ -917,8 +913,7 @@ Format - - YES + Texte simple @@ -939,23 +934,14 @@ 2 Gras - - YES - - YES - NSFont - NSOriginalFont - - - YES - - LucidaGrande-Bold - 14 - 16 - - + + + LucidaGrande-Bold + 14 + 16 - + + @@ -969,23 +955,14 @@ 1 Italique - - YES - - YES - NSFont - NSOriginalFont - - - YES - - Helvetica-Oblique - 14 - 16 - - + + + Helvetica-Oblique + 14 + 16 - + + @@ -998,30 +975,19 @@ Barré - - YES - - YES - NSFont - NSOriginalFont - NSParagraphStyle - NSStrikethrough + + + LucidaGrande + 14 + 16 - - YES - - LucidaGrande - 14 - 16 - - - - 4 - - - + + + 4 + - + + @@ -1074,7 +1040,7 @@ 102 - + @@ -1087,8 +1053,7 @@ submenuAction: Preview - - YES + (Multi)Markdown @@ -1162,7 +1127,7 @@ - + @@ -1176,8 +1141,7 @@ submenuAction: Fenêtre - - YES + Placer dans le Dock @@ -1225,7 +1189,7 @@ - + _NSWindowsMenu @@ -1240,8 +1204,7 @@ submenuAction: Aide - - YES + Liste des raccourcis clavier @@ -1327,10 +1290,10 @@ 2 - + - + _NSMainMenu @@ -1339,8 +1302,7 @@ 274 - - YES + 319 @@ -1372,7 +1334,7 @@ - + {147, 102} EmptyView NSView @@ -1383,18 +1345,13 @@ 258 - - YES + 257 - - YES - - YES - NSStringPboardType - - + + NSStringPboardType + {{206, 6}, {145, 14}} YES @@ -1458,7 +1415,7 @@ - + {381, 23} @@ -1480,8 +1437,7 @@ 256 - - YES + 256 @@ -1528,17 +1484,16 @@ - + {353, 107} - {{0, 0}, {1920, 1058}} + {{0, 0}, {1440, 878}} {213, 129} {1e+13, 1e+13} barMenu - - YES + Signets @@ -1551,8 +1506,7 @@ 901 Signets - - YES + Item @@ -1562,7 +1516,7 @@ - + @@ -1578,8 +1532,7 @@ Format - - YES + Texte simple @@ -1600,7 +1553,7 @@ 2 Gras - + @@ -1614,7 +1567,7 @@ 1 Italique - + @@ -1627,7 +1580,7 @@ Barré - + @@ -1680,7 +1633,7 @@ 102 - + @@ -1741,6 +1694,15 @@ 91 + + + Insert Link + L + 1048576 + 2147483647 + + + YES @@ -1779,8 +1741,7 @@ submenuAction: Color Schemes - - YES + YES @@ -1812,7 +1773,7 @@ - + @@ -1846,14 +1807,14 @@ - Quitter Notational Velocity + Quitter nvALT q 1048576 2147483647 - + @@ -1864,13 +1825,11 @@ 274 - - YES + 2304 - - YES + 4352 @@ -1890,9 +1849,7 @@ {{383, 0}, {16, 17}} - - YES - + 3 2 @@ -1915,7 +1872,7 @@ YES 0 - + {{0, 17}, {399, 136}} @@ -1949,10 +1906,9 @@ 2304 - - YES + - + {399, 17} @@ -1961,7 +1917,7 @@ 4 - + {399, 153} 528 @@ -1975,13 +1931,11 @@ 274 - - YES + 2304 - - YES + 2322 @@ -1995,10 +1949,9 @@ - - YES + - + 6 @@ -2007,50 +1960,32 @@ 1 - 12263 + 67121127 0 - - YES - - YES - NSBackgroundColor - NSColor + + + 6 + System + selectedTextBackgroundColor + - - YES - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - + + 6 + System + selectedTextColor + - + - - YES - - YES - NSColor - NSUnderline - - - YES - - 1 - MCAwIDEAA - - + + + 1 + MCAwIDEAA - + + 6 @@ -2058,15 +1993,35 @@ {80, 0} - + {399, 304} - {4, -5} - 1 + {4, 5} + + 12582912 + + + + + + TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym +SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA +AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA +AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA +AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA + + + + + + 3 + MCAwAA + + @@ -2089,7 +2044,7 @@ 1 0.94565218687057495 - + {399, 304} 528 @@ -2100,10 +2055,9 @@ YES - + - - YES + performMiniaturize: @@ -3108,15 +3062,28 @@ 1320 - + + + fsMenuItem + + + + 1322 + + + + insertLink: + + + + 1324 + + - - YES + 0 - - YES - + @@ -3135,8 +3102,7 @@ 29 - - YES + @@ -3146,30 +3112,28 @@ - + MainMenu 19 - - YES + - + 24 - - YES + - + @@ -3200,17 +3164,15 @@ 56 - - YES + - + 57 - - YES + @@ -3224,7 +3186,7 @@ - + @@ -3240,10 +3202,9 @@ 131 - - YES + - + @@ -3304,17 +3265,15 @@ 83 - - YES + - + 81 - - YES + @@ -3328,7 +3287,7 @@ - + @@ -3389,17 +3348,15 @@ 103 - - YES + - + 106 - - YES + @@ -3409,7 +3366,7 @@ - + @@ -3445,17 +3402,15 @@ 163 - - YES + - + 169 - - YES + @@ -3471,7 +3426,7 @@ - + @@ -3497,22 +3452,20 @@ 168 - - YES + - + 159 - - YES + - + @@ -3553,21 +3506,19 @@ 184 - - YES + - + 185 - - YES + - + @@ -3608,17 +3559,15 @@ 382 - - YES + - + 383 - - YES + @@ -3633,25 +3582,24 @@ - + + 386 - - YES + - + 387 - - YES + - + @@ -3662,19 +3610,17 @@ 389 - - YES + - + 390 - - YES + - + @@ -3720,17 +3666,15 @@ 397 - - YES + - + 398 - - YES + @@ -3740,7 +3684,7 @@ - + @@ -3791,19 +3735,17 @@ 996 - - YES + - + 997 - - YES + - + @@ -3820,20 +3762,18 @@ 341 - - YES + - + editorStatus 342 - - YES + - + @@ -3845,51 +3785,46 @@ 1066 - - YES + - + fieldcustomview 1067 - - YES + - + 1079 - - YES + - + quit waiting 1080 - - YES + - + 1081 - - YES + - + @@ -3900,10 +3835,9 @@ 1083 - - YES + - + @@ -3935,21 +3869,19 @@ 1105 - - YES + - + 1106 - - YES + - + @@ -3985,8 +3917,7 @@ 1125 - - YES + @@ -4003,7 +3934,8 @@ - + + @@ -4034,21 +3966,19 @@ 1142 - - YES + - + 1143 - - YES + - + @@ -4119,19 +4049,17 @@ 1183 - - YES + - + 1184 - - YES + - + @@ -4142,17 +4070,15 @@ 1186 - - YES + - + 1187 - - YES + @@ -4162,7 +4088,7 @@ - + @@ -4218,21 +4144,19 @@ 1205 - - YES + - + 1206 - - YES + - + @@ -4253,31 +4177,27 @@ 1214 - - YES + - + notation 1215 - - YES - + 1223 - - YES + - + Augmented Scroll View - Notes Table View @@ -4304,12 +4224,11 @@ 1258 - - YES + - + Scroll View - Linking Editor @@ -4332,17 +4251,15 @@ 1267 - - YES + - + 1268 - - YES + @@ -4351,7 +4268,7 @@ - + @@ -4387,10 +4304,9 @@ 1286 - - YES + - + Word Count Token @@ -4439,1185 +4355,516 @@ - - - - YES - - YES - -3.IBPluginDependency - 1000.IBPluginDependency - 1000.ImportedFromIB2 - 103.IBPluginDependency - 103.ImportedFromIB2 - 1053.IBPluginDependency - 1053.ImportedFromIB2 - 1055.IBPluginDependency - 1055.ImportedFromIB2 - 1057.IBPluginDependency - 1057.ImportedFromIB2 - 1058.IBPluginDependency - 1058.ImportedFromIB2 - 1059.IBPluginDependency - 1059.ImportedFromIB2 - 106.IBEditorWindowLastContentRect - 106.IBPluginDependency - 106.ImportedFromIB2 - 1061.IBPluginDependency - 1061.ImportedFromIB2 - 1062.IBPluginDependency - 1062.ImportedFromIB2 - 1066.IBEditorWindowLastContentRect - 1066.IBPluginDependency - 1066.ImportedFromIB2 - 1067.CustomClassName - 1067.IBPluginDependency - 1067.ImportedFromIB2 - 1079.IBEditorWindowLastContentRect - 1079.IBPluginDependency - 1079.IBWindowTemplateEditedContentRect - 1079.ImportedFromIB2 - 1080.IBPluginDependency - 1080.ImportedFromIB2 - 1081.IBPluginDependency - 1081.ImportedFromIB2 - 1082.IBPluginDependency - 1082.ImportedFromIB2 - 1083.IBPluginDependency - 1083.ImportedFromIB2 - 1088.IBPluginDependency - 1089.IBPluginDependency - 1090.IBPluginDependency - 1091.IBPluginDependency - 1105.IBPluginDependency - 1106.IBEditorWindowLastContentRect - 1106.IBPluginDependency - 1107.IBPluginDependency - 1108.IBPluginDependency - 1109.IBPluginDependency - 111.IBPluginDependency - 111.ImportedFromIB2 - 1115.IBPluginDependency - 1116.IBPluginDependency - 1118.IBPluginDependency - 1120.IBPluginDependency - 1125.IBEditorWindowLastContentRect - 1125.IBPluginDependency - 1126.IBEditorWindowLastContentRect - 1126.IBPluginDependency - 1126.IBViewBoundsToFrameTransform - 1134.IBPluginDependency - 1139.IBPluginDependency - 1140.IBPluginDependency - 1141.IBPluginDependency - 1142.IBPluginDependency - 1143.IBEditorWindowLastContentRect - 1143.IBPluginDependency - 1144.IBPluginDependency - 1144.ImportedFromIB2 - 1145.IBPluginDependency - 1145.ImportedFromIB2 - 1146.IBPluginDependency - 1146.ImportedFromIB2 - 1162.IBPluginDependency - 1162.ImportedFromIB2 - 1164.IBPluginDependency - 1164.ImportedFromIB2 - 1165.IBPluginDependency - 1165.ImportedFromIB2 - 1167.IBPluginDependency - 1167.ImportedFromIB2 - 1168.IBPluginDependency - 1168.ImportedFromIB2 - 1169.IBPluginDependency - 1169.ImportedFromIB2 - 1173.IBPluginDependency - 1175.IBPluginDependency - 1175.ImportedFromIB2 - 1177.IBPluginDependency - 1183.IBPluginDependency - 1183.ImportedFromIB2 - 1184.IBEditorWindowLastContentRect - 1184.IBPluginDependency - 1184.ImportedFromIB2 - 1185.IBPluginDependency - 1185.ImportedFromIB2 - 1186.IBPluginDependency - 1186.ImportedFromIB2 - 1187.IBEditorWindowLastContentRect - 1187.IBPluginDependency - 1187.ImportedFromIB2 - 1188.IBPluginDependency - 1188.ImportedFromIB2 - 1189.IBPluginDependency - 1189.ImportedFromIB2 - 1190.IBPluginDependency - 1190.ImportedFromIB2 - 1191.IBPluginDependency - 1191.ImportedFromIB2 - 1192.IBPluginDependency - 1192.ImportedFromIB2 - 1193.IBPluginDependency - 1193.ImportedFromIB2 - 1194.IBPluginDependency - 1194.ImportedFromIB2 - 1195.IBPluginDependency - 1195.ImportedFromIB2 - 1196.IBPluginDependency - 1196.ImportedFromIB2 - 1204.IBPluginDependency - 1205.IBPluginDependency - 1206.IBEditorWindowLastContentRect - 1206.IBPluginDependency - 1207.IBPluginDependency - 1207.ImportedFromIB2 - 1208.IBPluginDependency - 1208.ImportedFromIB2 - 1209.IBPluginDependency - 1209.ImportedFromIB2 - 1214.IBEditorWindowLastContentRect - 1214.IBPluginDependency - 1214.IBWindowTemplateEditedContentRect - 1214.ImportedFromIB2 - 1214.NSWindowTemplate.visibleAtLaunch - 1215.CustomClassName - 1215.IBPluginDependency - 1215.ImportedFromIB2 - 1223.CustomClassName - 1223.IBPluginDependency - 1223.IBViewBoundsToFrameTransform - 1223.ImportedFromIB2 - 1224.CustomClassName - 1224.IBPluginDependency - 1224.ImportedFromIB2 - 1225.CustomClassName - 1225.IBPluginDependency - 1225.IBShouldRemoveOnLegacySave - 1226.IBPluginDependency - 1226.IBShouldRemoveOnLegacySave - 1227.IBPluginDependency - 1227.IBShouldRemoveOnLegacySave - 1258.IBPluginDependency - 1258.IBViewBoundsToFrameTransform - 1258.ImportedFromIB2 - 1259.IBPluginDependency - 1259.IBShouldRemoveOnLegacySave - 1260.CustomClassName - 1260.IBPluginDependency - 1260.IBShouldRemoveOnLegacySave - 1261.CustomClassName - 1261.IBPluginDependency - 1261.ImportedFromIB2 - 1267.IBPluginDependency - 1268.IBEditorWindowLastContentRect - 1268.IBPluginDependency - 1269.IBPluginDependency - 1270.IBPluginDependency - 1271.IBPluginDependency - 1272.IBPluginDependency - 1273.IBPluginDependency - 1274.IBPluginDependency - 1286.CustomClassName - 1286.IBPluginDependency - 1286.IBViewBoundsToFrameTransform - 1287.IBPluginDependency - 129.IBPluginDependency - 129.ImportedFromIB2 - 1290.IBPluginDependency - 1290.ImportedFromIB2 - 1297.IBPluginDependency - 1298.IBPluginDependency - 1299.IBPluginDependency - 130.IBEditorWindowLastContentRect - 130.IBPluginDependency - 130.ImportedFromIB2 - 1303.IBPluginDependency - 131.IBPluginDependency - 131.ImportedFromIB2 - 1314.IBPluginDependency - 1315.IBPluginDependency - 134.IBPluginDependency - 134.ImportedFromIB2 - 136.IBPluginDependency - 136.ImportedFromIB2 - 143.IBPluginDependency - 143.ImportedFromIB2 - 144.IBPluginDependency - 144.ImportedFromIB2 - 145.IBPluginDependency - 145.ImportedFromIB2 - 149.IBPluginDependency - 149.ImportedFromIB2 - 150.IBPluginDependency - 150.ImportedFromIB2 - 154.IBPluginDependency - 154.ImportedFromIB2 - 156.IBPluginDependency - 156.ImportedFromIB2 - 157.IBPluginDependency - 157.ImportedFromIB2 - 158.IBPluginDependency - 158.ImportedFromIB2 - 159.IBEditorWindowLastContentRect - 159.IBPluginDependency - 159.ImportedFromIB2 - 160.IBPluginDependency - 160.ImportedFromIB2 - 161.IBPluginDependency - 161.ImportedFromIB2 - 162.IBPluginDependency - 162.ImportedFromIB2 - 163.IBPluginDependency - 163.ImportedFromIB2 - 167.IBPluginDependency - 167.ImportedFromIB2 - 168.IBPluginDependency - 168.ImportedFromIB2 - 169.IBEditorWindowLastContentRect - 169.IBPluginDependency - 169.ImportedFromIB2 - 171.IBPluginDependency - 171.ImportedFromIB2 - 172.IBPluginDependency - 172.ImportedFromIB2 - 173.IBPluginDependency - 173.ImportedFromIB2 - 184.IBPluginDependency - 184.ImportedFromIB2 - 185.IBEditorWindowLastContentRect - 185.IBPluginDependency - 185.ImportedFromIB2 - 187.IBPluginDependency - 187.ImportedFromIB2 - 189.IBPluginDependency - 189.ImportedFromIB2 - 19.IBPluginDependency - 19.ImportedFromIB2 - 191.IBPluginDependency - 191.ImportedFromIB2 - 196.IBPluginDependency - 196.ImportedFromIB2 - 197.IBPluginDependency - 197.ImportedFromIB2 - 213.ImportedFromIB2 - 23.IBPluginDependency - 23.ImportedFromIB2 - 24.IBEditorWindowLastContentRect - 24.IBPluginDependency - 24.ImportedFromIB2 - 29.IBEditorWindowLastContentRect - 29.IBPluginDependency - 29.ImportedFromIB2 - 341.IBEditorWindowLastContentRect - 341.IBPluginDependency - 341.ImportedFromIB2 - 342.IBPluginDependency - 342.ImportedFromIB2 - 382.IBPluginDependency - 382.ImportedFromIB2 - 383.IBEditorWindowLastContentRect - 383.IBPluginDependency - 383.ImportedFromIB2 - 386.IBPluginDependency - 386.ImportedFromIB2 - 387.IBEditorWindowLastContentRect - 387.IBPluginDependency - 387.ImportedFromIB2 - 388.IBPluginDependency - 388.ImportedFromIB2 - 389.IBPluginDependency - 389.ImportedFromIB2 - 390.IBEditorWindowLastContentRect - 390.IBPluginDependency - 390.ImportedFromIB2 - 391.IBPluginDependency - 391.ImportedFromIB2 - 392.IBPluginDependency - 392.ImportedFromIB2 - 393.IBPluginDependency - 393.ImportedFromIB2 - 394.IBPluginDependency - 394.ImportedFromIB2 - 395.IBPluginDependency - 395.ImportedFromIB2 - 396.IBPluginDependency - 396.ImportedFromIB2 - 397.IBPluginDependency - 397.ImportedFromIB2 - 398.IBEditorWindowLastContentRect - 398.IBPluginDependency - 398.ImportedFromIB2 - 452.ImportedFromIB2 - 489.IBPluginDependency - 489.ImportedFromIB2 - 5.IBPluginDependency - 5.ImportedFromIB2 - 507.IBPluginDependency - 507.ImportedFromIB2 - 508.IBPluginDependency - 508.ImportedFromIB2 - 520.IBPluginDependency - 520.ImportedFromIB2 - 521.IBPluginDependency - 521.ImportedFromIB2 - 522.IBPluginDependency - 522.ImportedFromIB2 - 534.IBPluginDependency - 534.ImportedFromIB2 - 550.IBPluginDependency - 550.ImportedFromIB2 - 553.IBPluginDependency - 553.ImportedFromIB2 - 554.IBPluginDependency - 554.ImportedFromIB2 - 557.IBPluginDependency - 557.ImportedFromIB2 - 56.IBPluginDependency - 56.ImportedFromIB2 - 563.IBPluginDependency - 563.ImportedFromIB2 - 564.IBPluginDependency - 564.ImportedFromIB2 - 565.IBPluginDependency - 565.ImportedFromIB2 - 57.IBEditorWindowLastContentRect - 57.IBPluginDependency - 57.ImportedFromIB2 - 574.IBPluginDependency - 574.ImportedFromIB2 - 575.IBPluginDependency - 575.ImportedFromIB2 - 576.IBPluginDependency - 576.ImportedFromIB2 - 577.IBPluginDependency - 577.ImportedFromIB2 - 58.IBPluginDependency - 58.ImportedFromIB2 - 77.IBPluginDependency - 77.ImportedFromIB2 - 771.IBPluginDependency - 771.ImportedFromIB2 - 78.IBPluginDependency - 78.ImportedFromIB2 - 79.IBPluginDependency - 79.ImportedFromIB2 - 81.IBEditorWindowLastContentRect - 81.IBPluginDependency - 81.ImportedFromIB2 - 83.IBPluginDependency - 83.ImportedFromIB2 - 92.IBPluginDependency - 92.ImportedFromIB2 - 977.IBPluginDependency - 977.ImportedFromIB2 - 990.IBPluginDependency - 990.ImportedFromIB2 - 991.IBPluginDependency - 991.ImportedFromIB2 - 994.IBPluginDependency - 994.ImportedFromIB2 - 996.IBPluginDependency - 996.ImportedFromIB2 - 997.IBEditorWindowLastContentRect - 997.IBPluginDependency - 997.ImportedFromIB2 - 998.IBPluginDependency - 998.ImportedFromIB2 - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{691, 712}, {278, 103}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{168, 777}, {381, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - DualField - com.apple.InterfaceBuilder.CocoaPlugin - - {{375, 616}, {353, 107}} - com.apple.InterfaceBuilder.CocoaPlugin - {{375, 616}, {353, 107}} - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{482, 505}, {312, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{502, 140}, {349, 293}} - com.apple.InterfaceBuilder.CocoaPlugin - {{1277, 760}, {163, 96}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{851, 170}, {180, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - {{851, 410}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{851, 250}, {271, 163}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{1032, 719}, {180, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{501, 85}, {397, 464}} - com.apple.InterfaceBuilder.CocoaPlugin - {{501, 85}, {397, 464}} - - - ETContentView - com.apple.InterfaceBuilder.CocoaPlugin - - AugmentedScrollView - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwxcAAA - - - NotesTableView - com.apple.InterfaceBuilder.CocoaPlugin - - ETTransparentScroller - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABAgAAAw+UAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - ETTransparentScroller - com.apple.InterfaceBuilder.CocoaPlugin - - LinkingEditor - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - {{508, 655}, {249, 113}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - WordCountToken - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwaAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{762, 434}, {64, 6}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{629, 379}, {308, 83}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{322, 399}, {307, 273}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{655, 522}, {252, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - {{508, 704}, {271, 93}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{105, 672}, {621, 20}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{414, 575}, {147, 102}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{380, 449}, {357, 223}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{1032, 729}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{805, 502}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{757, 659}, {271, 163}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{412, 609}, {343, 213}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{567, 609}, {233, 213}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{823, 799}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - + + 1321 + + + + + 1323 + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + DualField + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{375, 616}, {353, 107}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{501, 85}, {397, 464}} + + ETContentView + com.apple.InterfaceBuilder.CocoaPlugin + AugmentedScrollView + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwxcAAA + + NotesTableView + com.apple.InterfaceBuilder.CocoaPlugin + ETTransparentScroller + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABAgAAAw+UAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + ETTransparentScroller + com.apple.InterfaceBuilder.CocoaPlugin + + LinkingEditor + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + WordCountToken + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwaAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + - - YES - - - + - 1320 + 1324 - - YES + AppController NSObject - - YES - - YES - bringFocusToControlField: - copyNoteLink: - deleteNote: - editNoteExternally: - exportNote: - fieldAction: - importNotes: - lockPreview: - multiTag: - openFileInEditor: - printNote: - printPreview: - renameNote: - revealNote: - savePreview: - selectPreviewMode: - setBWColorScheme: - setLCColorScheme: - setUserColorScheme: - sharePreview: - showHelpDocument: - showPreferencesWindow: - switchViewLayout: - syncWaitQuit: - tagNote: - toggleCollapse: - toggleFullscreen: - toggleNVActivation: - togglePreview: - toggleSourceView: - toggleWordCount: + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + bringFocusToControlField: + id - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + copyNoteLink: + id - - - YES - - YES - bringFocusToControlField: - copyNoteLink: - deleteNote: - editNoteExternally: - exportNote: - fieldAction: - importNotes: - lockPreview: - multiTag: - openFileInEditor: - printNote: - printPreview: - renameNote: - revealNote: - savePreview: - selectPreviewMode: - setBWColorScheme: - setLCColorScheme: - setUserColorScheme: - sharePreview: - showHelpDocument: - showPreferencesWindow: - switchViewLayout: - syncWaitQuit: - tagNote: - toggleCollapse: - toggleFullscreen: - toggleNVActivation: - togglePreview: - toggleSourceView: - toggleWordCount: + + deleteNote: + id - - YES - - bringFocusToControlField: - id - - - copyNoteLink: - id - - - deleteNote: - id - - - editNoteExternally: - id - - - exportNote: - id - - - fieldAction: - id - - - importNotes: - id - - - lockPreview: - id - - - multiTag: - id - - - openFileInEditor: - id - - - printNote: - id - - - printPreview: - id - - - renameNote: - id - - - revealNote: - id - - - savePreview: - id - - - selectPreviewMode: - id - - - setBWColorScheme: - id - - - setLCColorScheme: - id - - - setUserColorScheme: - id - - - sharePreview: - id - - - showHelpDocument: - id - - - showPreferencesWindow: - id - - - switchViewLayout: - id - - - syncWaitQuit: - id - - - tagNote: - id - - - toggleCollapse: - id - - - toggleFullscreen: - id - - - toggleNVActivation: - id - - - togglePreview: - id - - - toggleSourceView: - id - - - toggleWordCount: - id - + + editNoteExternally: + id - - - YES - - YES - editorStatusView - field - lockNoteItem - mainView - multiMarkdownPreview - notesScrollView - notesTableView - previewToggler - printPreviewItem - savePreviewItem - sparkleUpdateItem - statBarMenu - syncWaitPanel - syncWaitSpinner - textScrollView - textView - textilePreview - window - wordCounter + + exportNote: + id - - YES - EmptyView - DualField - NSMenuItem - ETContentView - NSMenuItem - AugmentedScrollView - NotesTableView - NSMenuItem - NSMenuItem - NSMenuItem - NSMenuItem - NSMenu - NSPanel - NSProgressIndicator - NSScrollView - LinkingEditor - NSMenuItem - NSWindow - WordCountToken + + fieldAction: + id - - - YES - - YES - editorStatusView - field - lockNoteItem - mainView - multiMarkdownPreview - notesScrollView - notesTableView - previewToggler - printPreviewItem - savePreviewItem - sparkleUpdateItem - statBarMenu - syncWaitPanel - syncWaitSpinner - textScrollView - textView - textilePreview - window - wordCounter + + importNotes: + id - - YES - - editorStatusView - EmptyView - - - field - DualField - - - lockNoteItem - NSMenuItem - - - mainView - ETContentView - - - multiMarkdownPreview - NSMenuItem - - - notesScrollView - AugmentedScrollView - - - notesTableView - NotesTableView - - - previewToggler - NSMenuItem - - - printPreviewItem - NSMenuItem - - - savePreviewItem - NSMenuItem - - - sparkleUpdateItem - NSMenuItem - - - statBarMenu - NSMenu - - - syncWaitPanel - NSPanel - - - syncWaitSpinner - NSProgressIndicator - - - textScrollView - NSScrollView - - - textView - LinkingEditor - - - textilePreview - NSMenuItem - - - window - NSWindow - - - wordCounter - WordCountToken - + + lockPreview: + id - + + multiTag: + id + + + openFileInEditor: + id + + + printNote: + id + + + printPreview: + id + + + renameNote: + id + + + revealNote: + id + + + savePreview: + id + + + selectPreviewMode: + id + + + setBWColorScheme: + id + + + setLCColorScheme: + id + + + setUserColorScheme: + id + + + sharePreview: + id + + + showHelpDocument: + id + + + showPreferencesWindow: + id + + + switchFullScreen: + id + + + switchViewLayout: + id + + + syncWaitQuit: + id + + + tagNote: + id + + + toggleCollapse: + id + + + toggleNVActivation: + id + + + togglePreview: + id + + + toggleSourceView: + id + + + toggleWordCount: + id + + + + EmptyView + DualField + NSMenuItem + NSMenuItem + ETContentView + NSMenuItem + AugmentedScrollView + NotesTableView + NSMenuItem + NSMenuItem + NSMenuItem + NSMenuItem + NSMenu + NSPanel + NSProgressIndicator + NSScrollView + LinkingEditor + NSMenuItem + NSWindow + WordCountToken + + + + editorStatusView + EmptyView + + + field + DualField + + + fsMenuItem + NSMenuItem + + + lockNoteItem + NSMenuItem + + + mainView + ETContentView + + + multiMarkdownPreview + NSMenuItem + + + notesScrollView + AugmentedScrollView + + + notesTableView + NotesTableView + + + previewToggler + NSMenuItem + + + printPreviewItem + NSMenuItem + + + savePreviewItem + NSMenuItem + + + sparkleUpdateItem + NSMenuItem + + + statBarMenu + NSMenu + + + syncWaitPanel + NSPanel + + + syncWaitSpinner + NSProgressIndicator + + + textScrollView + NSScrollView + + + textView + LinkingEditor + + + textilePreview + NSMenuItem + + + window + NSWindow + + + wordCounter + WordCountToken + + IBProjectSource ./Classes/AppController.h @@ -5687,80 +4934,50 @@ FirstResponder - - YES - - YES - bold: - defaultStyle: - deleteToBeginningOfLine: - deleteWordBackward: - italic: - shiftLeftAction: - shiftRightAction: - strikethroughNV: + + id + id + id + id + id + id + id + id + + + + bold: + id - - YES - id - id - id - id - id - id - id - id + + defaultStyle: + id - - - YES - - YES - bold: - defaultStyle: - deleteToBeginningOfLine: - deleteWordBackward: - italic: - shiftLeftAction: - shiftRightAction: - strikethroughNV: + + deleteToBeginningOfLine: + id - - YES - - bold: - id - - - defaultStyle: - id - - - deleteToBeginningOfLine: - id - - - deleteWordBackward: - id - - - italic: - id - - - shiftLeftAction: - id - - - shiftRightAction: - id - - - strikethroughNV: - id - + + deleteWordBackward: + id - + + italic: + id + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + strikethroughNV: + id + + IBUserSource @@ -5769,70 +4986,39 @@ LinkingEditor NSTextView - - YES - - YES - shiftLeftAction: - shiftRightAction: - - - YES - id - id - - - - YES - - YES - shiftLeftAction: - shiftRightAction: - - - YES - - shiftLeftAction: - id - - - shiftRightAction: - id - + + id + id + id + + + + insertLink: + id - - - YES - - YES - controlField - notesTableView + + shiftLeftAction: + id - - YES - NSTextField - NotesTableView + + shiftRightAction: + id - - - YES - - YES - controlField - notesTableView + + + NSTextField + NotesTableView + + + + controlField + NSTextField - - YES - - controlField - NSTextField - - - notesTableView - NotesTableView - + + notesTableView + NotesTableView - + IBProjectSource ./Classes/LinkingEditor.h @@ -5840,66 +5026,40 @@ NSDocument - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: + + id + id + id + id + id + id + + + + printDocument: + id - - YES - id - id - id - id - id - id + + revertDocumentToSaved: + id - - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: + + runPageLayout: + id - - YES - - printDocument: - id - - - revertDocumentToSaved: - id - - - runPageLayout: - id - - - saveDocument: - id - - - saveDocumentAs: - id - - - saveDocumentTo: - id - + + saveDocument: + id - + + saveDocumentAs: + id + + + saveDocumentTo: + id + + IBProjectSource ./Classes/NSDocument.h @@ -5908,38 +5068,20 @@ NotesTableView NSTableView - - YES - - YES - actionHideShowColumn: - toggleNoteBodyPreviews: - - - YES - id - id - - - - YES - - YES - actionHideShowColumn: - toggleNoteBodyPreviews: + + id + id + + + + actionHideShowColumn: + id - - YES - - actionHideShowColumn: - id - - - toggleNoteBodyPreviews: - id - + + toggleNoteBodyPreviews: + id - + controlField NSTextField @@ -5990,36 +5132,19 @@ ./Classes/WordCountToken.h - + 0 IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - + YES 3 - - YES - - YES - NSMenuCheckmark - NSMenuMixedState - - - YES - {9, 8} - {7, 2} - - + + {9, 8} + {7, 2} + diff --git a/fr.lproj/MarkupPreview.xib b/fr.lproj/MarkupPreview.xib new file mode 100644 index 00000000..c3e44abf --- /dev/null +++ b/fr.lproj/MarkupPreview.xib @@ -0,0 +1,1050 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + 1306 + 30 + + + NSTextView + NSScroller + NSButton + NSScrollView + NSButtonCell + NSTextFieldCell + NSTabView + WebView + NSCustomObject + NSTabViewItem + NSWindowTemplate + NSView + NSTextField + NSCustomView + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + + + + PreviewController + + + FirstResponder + + + NSApplication + + + + 268 + + + + 268 + {{4, 61}, {12, 13}} + + + YES + + 67239424 + 134512640 + + + LucidaGrande + 9 + 3614 + + + 138690815 + 6 + + NSImage + TabClose_Front_Rollover + + + NSImage + TabClose_Front_Pressed + + + Gw + 400 + 75 + + + + + 264 + {{0, 47}, {256, 14}} + + YES + + 68288064 + 138544128 + URL in clipboard + + LucidaGrande + 11 + 3100 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {256, 78} + + + NSView + + + + 268 + + + + 268 + {{-3, 43}, {244, 14}} + + YES + + 68288064 + 138544128 + Share note online via Peggd? + + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {238, 65} + + NSView + + + 27 + 2 + {{948, 217}, {445, 528}} + -461896704 + Preview + NSPanel + + {350, 400} + + + 256 + + + + 4114 + {{0, 34}, {445, 494}} + + + + + 1 + + + 256 + + + + 274 + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple URL pasteboard type + Apple Web Archive pasteboard type + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + WebURLsWithTitlesPboardType + public.png + public.url + public.url-name + + {445, 494} + + + + + + previewWebView + + + NO + YES + + + {445, 494} + + + + Preview + + + + + 2 + + + 256 + + + + 274 + + + + 2304 + + + + 2322 + {{0, 61}, {445, 14}} + + + + + + + + + + + + + + 134 + + + + 445 + 1 + + + 11521 + 0 + + + 3 + MQA + + + + 6 + System + selectedTextBackgroundColor + + + + 6 + System + selectedTextColor + + 3 + MAA + + + + + + + 1 + MCAwIDEAA + + + {8, -8} + 13 + + + + + + 6 + {463, 1e+07} + {223, 0} + + + + {445, 494} + + + + + + {4, -5} + 1 + + 4 + + + + -2147483392 + {{429, 1}, {15, 492}} + + + _doScroller: + 1 + 0.85256409645080566 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {445, 494} + + + 528 + + + + + + {445, 494} + + + Source + + + + + + + LucidaGrande + 13 + 1044 + + 6 + YES + + + + + + + 289 + {{300, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + LucidaGrande-Bold + 12 + 16 + + + -1228128001 + 402653357 + + NSImage + HUDIconLock + + + L + 400 + 75 + + + + + 289 + {{404, 7}, {28, 19}} + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 268435693 + + NSImage + HUDIconSave + + + S + 400 + 75 + + + + + 289 + {{370, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 173 + + NSImage + HUDIconShare + + + + 400 + 75 + + + + + 289 + {{334, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 402653357 + + NSImage + HUDIconPrint + + + P + 400 + 75 + + + + + 292 + {{10, 7}, {99, 19}} + + + YES + + -2080244224 + 134217728 + View Source + + LucidaGrande + 12 + 16 + + + -2038021889 + 164 + + + + 400 + 75 + + + + {{7, 11}, {445, 528}} + + + {{0, 0}, {1920, 1058}} + {350, 416} + {1e+13, 1e+13} + PreviewPanel + + + + + + + shareNotification + + + + 138 + + + + shareConfirmation + + + + 169 + + + + urlTextField + + + + 191 + + + + hideShareURL: + + + + 194 + + + + delegate + + + + 241 + + + + window + + + + 242 + + + + tabView + + + + 243 + + + + frameLoadDelegate + + + + 244 + + + + policyDelegate + + + + 245 + + + + resourceLoadDelegate + + + + 246 + + + + UIDelegate + + + + 247 + + + + preview + + + + 248 + + + + sourceView + + + + 249 + + + + makePreviewSticky: + + + + 269 + + + + saveHTML: + + + + 274 + + + + shareAsk: + + + + 275 + + + + printPreview: + + + + 278 + + + + printPreviewButton + + + + 280 + + + + shareButton + + + + 281 + + + + saveButton + + + + 282 + + + + stickyPreviewButton + + + + 283 + + + + switchTabs: + + + + 286 + + + + tabSwitcher + + + + 287 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 133 + + + + + + + Share URL + + + 157 + + + + + + Confirm Share + + + 189 + + + + + + + + 190 + + + + + 192 + + + + + + + + 193 + + + + + 200 + + + + + + + + 201 + + + + + 214 + + + + + + Panel - Preview + + + 215 + + + + + + + + + + + + + 216 + + + + + + + + + 217 + + + + + + + + 218 + + + + + + + + 219 + + + + + + + + 220 + + + + + + + + 225 + + + + + + + + + + 226 + + + + + 227 + + + + + 228 + + + + + 229 + + + + + 261 + + + + + + + + 262 + + + + + 263 + + + + + + + + 264 + + + + + 265 + + + + + + + + 266 + + + + + 267 + + + + + + + + 268 + + + + + 284 + + + + + + + + 285 + + + + + + + + {{471, 675}, {206, 55}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{499, 564}, {238, 65}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCPAAAwjAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDNAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAADAQAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + ToolTip + + ToolTip + + Lock note to preview + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Save Preview + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Share on Peggd + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Print/PDF + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 287 + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + {512, 512} + {512, 512} + {512, 512} + {512, 512} + {12, 13} + {12, 13} + + + diff --git a/fr.lproj/PassphrasePicker.nib/designable.nib b/fr.lproj/PassphrasePicker.nib/designable.nib index abf2f20c..98903fce 100644 --- a/fr.lproj/PassphrasePicker.nib/designable.nib +++ b/fr.lproj/PassphrasePicker.nib/designable.nib @@ -1,27 +1,34 @@ - + 1050 - 9L31a - 680 - 949.54 - 353.00 - + 11A480b + 1864 + 1127 + 561.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1864 + + YES - + NSTextField + NSView + NSWindowTemplate + NSCustomObject + NSTextFieldCell + NSCustomView + NSButtonCell + NSButton + NSBox YES com.apple.InterfaceBuilder.CocoaPlugin - YES - - YES - - - YES - + PluginDependencyRecalculationVersion + YES @@ -47,8 +54,8 @@ View - {3.40282e+38, 3.40282e+38} - {214.545, 107} + + {214.54499999999999, 107} 256 @@ -76,7 +83,7 @@ OK LucidaGrande - 1.300000e+01 + 13 1044 @@ -124,9 +131,7 @@ 67239424 272629760 - RMOpZmluaXNzZXogdW4gbW90IGRlIHBhc3NlIHBvdXIgcHJvdMOpZ2VyIHZvcyBub3Rlcy4gQXR0ZW50 -aW9uLCBzaSB2b3VzIG91YmxpZXogY2UgbW90IGRlIHBhc3NlLCBpbCBuZSBzZXJhIHBsdXMgcG9zc2li -bGUgZCdhY2PDqWRlciDDoCB2b3Mgbm90ZXMuA + Définissez un mot de passe pour protéger vos notes. Attention, si vous oubliez ce mot de passe, il ne sera plus possible d'accéder à vos notes. @@ -135,7 +140,7 @@ bGUgZCdhY2PDqWRlciDDoCB2b3Mgbm90ZXMuA controlColor 3 - MC42NjY2NjY2OQA + MC42NjY2NjY2NjY3AA @@ -158,8 +163,7 @@ bGUgZCdhY2PDqWRlciDDoCB2b3Mgbm90ZXMuA 67239424 272629760 - TGUgTURQIHBldXQgY29udGVuaXIgdG91dCBjYXJhY3TDqHJlLCBzYW5zIGxpbWl0ZSBkZSBsb25ndWV1 -cg + Le MDP peut contenir tout caractère, sans limite de longueur @@ -240,7 +244,7 @@ cg LucidaGrande - 1.000000e+01 + 10 16 @@ -308,7 +312,7 @@ cg 67239424 0 - TcOpbW9yaXNlciBkYW5zIGxlIFRyb3Vzc2VhdQ + Mémoriser dans le Trousseau 1211912703 @@ -358,10 +362,10 @@ cg 67239424 272629760 - UGx1cyBkJ29wdGlvbnMgZGUgc8OpY3VyaXTDqQ + Plus d'options de sécurité LucidaGrande - 1.100000e+01 + 11 3100 @@ -385,9 +389,15 @@ cg {474, 243} - {{0, 0}, {1280, 778}} - {214.545, 129} - {3.40282e+38, 3.40282e+38} + {{0, 0}, {1440, 878}} + {214.54499999999999, 129} + {10000000000000, 10000000000000} + YES + + + + 256 + {{2, 2}, {125, 1}} @@ -585,7 +595,7 @@ cg -2 - RmlsZSdzIE93bmVyA + File's Owner -1 @@ -668,19 +678,9 @@ cg YES - - - 256 - {{2, 2}, {125, 1}} - - - 349 - - - 351 @@ -846,61 +846,43 @@ cg + + 349 + + + YES - + YES -1.IBPluginDependency -2.IBPluginDependency -3.IBPluginDependency - -3.ImportedFromIB2 342.IBPluginDependency - 342.ImportedFromIB2 - 343.IBEditorWindowLastContentRect + 343.IBPluginDependency 343.IBWindowTemplateEditedContentRect - 343.ImportedFromIB2 - 343.windowTemplate.hasMinSize - 343.windowTemplate.minSize 344.IBPluginDependency - 344.ImportedFromIB2 346.IBPluginDependency - 346.ImportedFromIB2 347.IBPluginDependency - 347.ImportedFromIB2 348.IBPluginDependency - 348.ImportedFromIB2 349.IBPluginDependency - 349.ImportedFromIB2 351.IBPluginDependency - 351.ImportedFromIB2 353.IBPluginDependency - 353.ImportedFromIB2 354.IBPluginDependency - 354.ImportedFromIB2 355.IBPluginDependency - 355.ImportedFromIB2 356.IBPluginDependency - 356.ImportedFromIB2 357.CustomClassName 357.IBPluginDependency - 357.ImportedFromIB2 358.CustomClassName 358.IBPluginDependency - 358.ImportedFromIB2 360.IBPluginDependency - 360.ImportedFromIB2 374.IBPluginDependency - 374.ImportedFromIB2 375.IBPluginDependency - 375.ImportedFromIB2 376.IBPluginDependency - 376.ImportedFromIB2 385.IBPluginDependency - 385.ImportedFromIB2 389.IBPluginDependency - 389.ImportedFromIB2 398.IBPluginDependency 399.IBPluginDependency 400.IBPluginDependency @@ -919,52 +901,29 @@ cg com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - {{119, 766}, {474, 243}} + com.apple.InterfaceBuilder.CocoaPlugin {{119, 766}, {474, 243}} - - - {214.545, 107} com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -981,22 +940,14 @@ cg YES - - YES - - - YES - + + YES - - YES - - - YES - + + 409 @@ -1006,94 +957,15 @@ cg YES FirstResponder - NSObject : id - - IBUserSource - - - - - PassphrasePickerController - NSObject - - YES - - YES - cancelNewPassword: - discloseAdvancedSettings: - okNewPassword: - - - YES - id - id - id - - - - YES - - YES - advancedHelpField - advancedView - cancelNewButton - disclosureButton - dismissalButtonsView - newPassphraseWindow - newPasswordField - okNewButton - rememberNewButton - upperButtonsView - verifyNewPasswordField - window - - - YES - NSTextField - NSView - NSButton - NSButton - NSView - NSPanel - NSSecureTextField - NSButton - NSButton - NSView - NSSecureTextField - NSPanel - - - - IBUserSource - - - - - SFPasswordAssistantInspectorController - NSObject - - showPasswordAssistantPanel: - id - - - YES - - YES - _baseWindow - _newPassword - _originalPassword - _verifyPassword - - - YES - NSWindow - NSTextField - NSTextField - NSTextField + + : + + : + id @@ -1104,7 +976,31 @@ cg 0 - + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES 3 + + YES + + YES + NSSwitch + PasswordAssistantButton + PasswordAssistantButtonPressed + + + YES + {15, 15} + {23, 22} + {23, 22} + + diff --git a/fr.lproj/PassphrasePicker.nib/keyedobjects.nib b/fr.lproj/PassphrasePicker.nib/keyedobjects.nib index 8cd00d65..8226d5bf 100644 Binary files a/fr.lproj/PassphrasePicker.nib/keyedobjects.nib and b/fr.lproj/PassphrasePicker.nib/keyedobjects.nib differ diff --git a/fr.lproj/Preferences.xib b/fr.lproj/Preferences.xib index 8d6fc8e6..88a48cbc 100644 --- a/fr.lproj/Preferences.xib +++ b/fr.lproj/Preferences.xib @@ -1,17 +1,16 @@ - + 1050 - 10J869 - 1305 - 1038.35 + 10K540 + 1306 + 1038.36 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 1305 + 1306 - - YES + NSUserDefaultsController NSPopUpButton NSButton @@ -30,17 +29,15 @@ NSWindowTemplate NSTextField NSPopUpButtonCell - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin - + PluginDependencyRecalculationVersion - - YES + PrefsWindowController @@ -68,17 +65,16 @@ 256 {{7, 11}, {399, 334}} - + - {{0, 0}, {1280, 778}} + {{0, 0}, {1440, 878}} {399, 129} {1e+13, 1e+13} 256 - - YES + 12 @@ -117,13 +113,13 @@ 268 - {{159, 24}, {186, 14}} + {{159, 24}, {192, 14}} YES 68288064 272630784 - This will immediately restart NV + This will immediately restart nvALT LucidaGrande 11 @@ -262,8 +258,7 @@ YES OtherViews - - YES + Petite @@ -302,7 +297,7 @@ - + 3 3 @@ -407,14 +402,14 @@ 264 - {{41, 194}, {177, 19}} + {{17, 194}, {201, 19}} YES 67239424 71303168 - Raccourci global pour NV : + Raccourci global pour nvALT : @@ -485,7 +480,7 @@ - + {464, 277} NSView @@ -494,8 +489,7 @@ 256 - - YES + 256 @@ -547,8 +541,7 @@ YES OtherViews - - YES + @@ -572,7 +565,7 @@ _popUpItemAction: - + 3 YES @@ -590,7 +583,7 @@ NSResponder - + {464, 406} NSView @@ -600,14 +593,72 @@ 256 - - YES + + + + 268 + {{174, 80}, {226, 28}} + + + YES + + 67239424 + 272629760 + Match opening characters, like a left bracket, with closing characters. + + + + + + + + + 264 + {{156, 85}, {22, 18}} + + + + YES + + 67239424 + 0 + + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{76, 86}, {77, 17}} + + + + YES + + 67239424 + 71303168 + Auto-pair: + + + + + + 268 - {{153, 21}, {194, 26}} + {{153, 16}, {194, 26}} + YES -2076049856 @@ -635,8 +686,7 @@ YES OtherViews - - YES + @@ -660,7 +710,7 @@ _popUpItemAction: - + 1 @@ -672,9 +722,10 @@ 264 - {{156, 66}, {146, 18}} + {{156, 54}, {146, 18}} + YES 67239424 @@ -694,7 +745,7 @@ 264 - {{76, 67}, {77, 17}} + {{76, 55}, {77, 17}} @@ -712,9 +763,10 @@ 264 - {{174, 99}, {247, 42}} + {{174, 121}, {247, 42}} + YES 67239424 @@ -729,7 +781,7 @@ 264 - {{73, 149}, {80, 34}} + {{73, 169}, {80, 34}} @@ -747,7 +799,7 @@ 264 - {{156, 145}, {235, 18}} + {{156, 165}, {235, 18}} @@ -770,7 +822,7 @@ 264 - {{156, 165}, {255, 18}} + {{156, 185}, {255, 18}} @@ -794,9 +846,10 @@ 268 - {{17, 27}, {134, 17}} + {{17, 22}, {134, 17}} + YES 67239424 @@ -815,14 +868,14 @@ 264 - {{156, 318}, {241, 38}} + {{156, 338}, {241, 38}} + YES 2 1 - - YES + 67239424 0 @@ -859,7 +912,7 @@ 200 25 - + {241, 18} {4, 2} 1143472128 @@ -886,9 +939,10 @@ 264 - {{69, 334}, {84, 22}} + {{69, 354}, {84, 22}} + YES 67239424 @@ -903,9 +957,10 @@ 264 - {{174, 282}, {272, 28}} + {{174, 302}, {272, 28}} + YES 67239424 @@ -920,9 +975,10 @@ 264 - {{156, 374}, {176, 18}} + {{156, 394}, {176, 18}} + YES -2080244224 @@ -943,9 +999,10 @@ 264 - {{156, 399}, {289, 18}} + {{156, 419}, {289, 18}} + YES 67239424 @@ -966,9 +1023,10 @@ 264 - {{16, 395}, {137, 22}} + {{16, 415}, {137, 22}} + YES 67239424 @@ -983,9 +1041,10 @@ 264 - {{45, 371}, {108, 21}} + {{45, 391}, {108, 21}} + YES 67239424 @@ -1000,9 +1059,10 @@ 264 - {{95, 220}, {58, 17}} + {{95, 240}, {58, 17}} + YES 67239424 @@ -1017,9 +1077,10 @@ 264 - {{156, 199}, {291, 18}} + {{156, 219}, {291, 18}} + YES 67239424 @@ -1040,9 +1101,10 @@ 264 - {{156, 253}, {157, 18}} + {{156, 273}, {157, 18}} + YES -2080244224 @@ -1063,9 +1125,10 @@ 264 - {{156, 219}, {183, 18}} + {{156, 239}, {183, 18}} + YES 67239424 @@ -1083,10 +1146,11 @@ 25 - - {464, 437} + + {464, 457} + NSView @@ -1095,8 +1159,7 @@ 256 - - YES + 268 @@ -1267,15 +1330,11 @@ 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - + {{243, 225}, {52, 24}} YES @@ -1388,15 +1447,11 @@ 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - + {{243, 151}, {52, 24}} YES @@ -1422,22 +1477,18 @@ 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - + {{243, 183}, {52, 24}} YES YES - + {420, 318} NSView NSResponder @@ -1445,10 +1496,9 @@ YES - + - - YES + generalView @@ -2085,44 +2135,56 @@ 479 - + + + changedAutoPairing: + + + + 486 + + + + autoPairButton + + + + 487 + + - - YES + 0 - - YES - + -2 - + File's Owner -1 - + First Responder -3 - + Application 5 - - YES + - - + + Preferences Window @@ -2133,8 +2195,7 @@ 155 - - YES + @@ -2149,128 +2210,115 @@ - - + + general view 157 - - YES + - + 158 - - YES + - + 172 - - YES + - + 174 - - YES + - + 175 - - YES + - + 178 - - YES + - + 287 - - YES + - + 288 - - YES + - + 289 - - YES + - + 323 - - YES + - + 250 - - YES + - - + + database view 251 - - YES + - + 252 - - YES + - + @@ -2281,8 +2329,7 @@ 268 - - YES + @@ -2299,22 +2346,24 @@ - + - - + + + + + editing view 271 - - YES + - + @@ -2330,91 +2379,81 @@ 274 - - YES + - + 275 - - YES + - + 276 - - YES + - + 278 - - YES + - + 279 - - YES + - + 280 - - YES + - + 282 - - YES + - + 283 - - YES + - + 307 - - YES + - + 311 - - YES + - + @@ -2425,10 +2464,9 @@ 326 - - YES + - + @@ -2479,10 +2517,9 @@ 337 - - YES + - + @@ -2543,13 +2580,12 @@ 159 - - YES + - + @@ -2575,12 +2611,11 @@ 253 - - YES + - + @@ -2601,8 +2636,7 @@ 352 - - YES + @@ -2621,17 +2655,16 @@ - - + + fonts colors view 357 - - YES + - + @@ -2647,19 +2680,17 @@ 360 - - YES + - + 361 - - YES + - + @@ -2680,28 +2711,25 @@ 368 - - YES + - + 369 - - YES + - + 370 - - YES + - + @@ -2727,28 +2755,25 @@ 388 - - YES + - + 389 - - YES + - + 390 - - YES + - + @@ -2774,15 +2799,14 @@ 395 - + 402 - - YES + - + @@ -2793,64 +2817,57 @@ 414 - - YES + - + 415 - - YES + - + 416 - - YES + - + 417 - - YES + - + 418 - - YES + - + 419 - - YES + - + 420 - - YES + - + @@ -2891,37 +2908,33 @@ 446 - - YES + - + 447 - - YES + - + 448 - - YES + - + 449 - - YES + - + @@ -2947,19 +2960,17 @@ 454 - - YES + - + 455 - - YES + - + @@ -2975,19 +2986,17 @@ 464 - - YES + - + 465 - - YES + - + @@ -3003,30 +3012,27 @@ 472 - - YES + - + 473 - - YES + - + 474 - - YES + - + @@ -3044,612 +3050,399 @@ - - - - YES - - YES - -3.IBPluginDependency - -3.ImportedFromIB2 - 155.IBEditorWindowLastContentRect - 155.IBPluginDependency - 155.ImportedFromIB2 - 157.IBPluginDependency - 157.ImportedFromIB2 - 158.IBPluginDependency - 158.ImportedFromIB2 - 159.IBEditorWindowLastContentRect - 159.IBPluginDependency - 159.ImportedFromIB2 - 160.IBPluginDependency - 160.ImportedFromIB2 - 161.IBPluginDependency - 161.ImportedFromIB2 - 162.IBPluginDependency - 162.ImportedFromIB2 - 163.IBPluginDependency - 163.ImportedFromIB2 - 172.IBPluginDependency - 172.IBViewBoundsToFrameTransform - 172.ImportedFromIB2 - 174.IBPluginDependency - 174.IBViewBoundsToFrameTransform - 174.ImportedFromIB2 - 175.IBPluginDependency - 175.IBViewBoundsToFrameTransform - 175.ImportedFromIB2 - 178.IBPluginDependency - 178.ImportedFromIB2 - 250.IBEditorWindowLastContentRect - 250.IBPluginDependency - 250.ImportedFromIB2 - 251.IBPluginDependency - 251.ImportedFromIB2 - 252.IBPluginDependency - 252.ImportedFromIB2 - 253.IBEditorWindowLastContentRect - 253.IBPluginDependency - 253.ImportedFromIB2 - 254.IBPluginDependency - 254.ImportedFromIB2 - 255.IBPluginDependency - 255.ImportedFromIB2 - 256.IBPluginDependency - 256.ImportedFromIB2 - 257.IBPluginDependency - 257.ImportedFromIB2 - 268.IBEditorWindowLastContentRect - 268.IBPluginDependency - 268.ImportedFromIB2 - 271.IBPluginDependency - 271.IBViewBoundsToFrameTransform - 271.ImportedFromIB2 - 272.IBPluginDependency - 272.ImportedFromIB2 - 273.IBPluginDependency - 273.ImportedFromIB2 - 274.IBPluginDependency - 274.IBViewBoundsToFrameTransform - 274.ImportedFromIB2 - 275.IBPluginDependency - 275.IBViewBoundsToFrameTransform - 275.ImportedFromIB2 - 276.IBPluginDependency - 276.IBViewBoundsToFrameTransform - 276.ImportedFromIB2 - 278.IBPluginDependency - 278.IBViewBoundsToFrameTransform - 278.ImportedFromIB2 - 279.IBPluginDependency - 279.IBViewBoundsToFrameTransform - 279.ImportedFromIB2 - 280.IBPluginDependency - 280.IBViewBoundsToFrameTransform - 280.ImportedFromIB2 - 282.IBPluginDependency - 282.IBViewBoundsToFrameTransform - 282.ImportedFromIB2 - 283.IBPluginDependency - 283.IBViewBoundsToFrameTransform - 283.ImportedFromIB2 - 287.IBPluginDependency - 287.IBViewBoundsToFrameTransform - 287.ImportedFromIB2 - 288.IBPluginDependency - 288.IBViewBoundsToFrameTransform - 288.ImportedFromIB2 - 289.IBPluginDependency - 289.IBViewBoundsToFrameTransform - 289.ImportedFromIB2 - 307.IBPluginDependency - 307.IBViewBoundsToFrameTransform - 307.ImportedFromIB2 - 311.IBPluginDependency - 311.IBViewBoundsToFrameTransform - 311.ImportedFromIB2 - 323.IBPluginDependency - 323.IBViewBoundsToFrameTransform - 323.ImportedFromIB2 - 325.IBPluginDependency - 326.IBPluginDependency - 327.IBPluginDependency - 328.IBPluginDependency - 329.IBPluginDependency - 330.IBPluginDependency - 331.IBPluginDependency - 332.IBPluginDependency - 333.IBPluginDependency - 335.IBPluginDependency - 336.IBPluginDependency - 337.IBPluginDependency - 340.IBPluginDependency - 341.IBPluginDependency - 342.IBPluginDependency - 344.IBPluginDependency - 345.IBPluginDependency - 346.IBPluginDependency - 347.IBPluginDependency - 348.IBPluginDependency - 349.IBPluginDependency - 350.IBPluginDependency - 351.IBPluginDependency - 352.IBEditorWindowLastContentRect - 352.IBPluginDependency - 352.IBViewBoundsToFrameTransform - 352.ImportedFromIB2 - 357.IBPluginDependency - 357.IBViewBoundsToFrameTransform - 358.IBPluginDependency - 358.IBPropertyAccessControl - 358.IBViewBoundsToFrameTransform - 358.ImportedFromIB2 - 359.IBPluginDependency - 359.IBPropertyAccessControl - 359.IBViewBoundsToFrameTransform - 359.ImportedFromIB2 - 360.IBPluginDependency - 360.IBPropertyAccessControl - 360.IBViewBoundsToFrameTransform - 360.ImportedFromIB2 - 361.IBPluginDependency - 361.IBPropertyAccessControl - 361.IBViewBoundsToFrameTransform - 361.ImportedFromIB2 - 362.IBPluginDependency - 363.IBPluginDependency - 364.IBPluginDependency - 368.IBPluginDependency - 368.IBViewBoundsToFrameTransform - 368.ImportedFromIB2 - 369.IBPluginDependency - 369.IBViewBoundsToFrameTransform - 369.ImportedFromIB2 - 370.IBPluginDependency - 370.IBViewBoundsToFrameTransform - 370.ImportedFromIB2 - 371.IBPluginDependency - 372.IBPluginDependency - 373.IBPluginDependency - 375.IBPluginDependency - 375.IBViewBoundsToFrameTransform - 375.ImportedFromIB2 - 388.IBPluginDependency - 388.IBPropertyAccessControl - 388.IBViewBoundsToFrameTransform - 388.ImportedFromIB2 - 389.IBPluginDependency - 389.IBViewBoundsToFrameTransform - 389.ImportedFromIB2 - 390.IBPluginDependency - 390.IBViewBoundsToFrameTransform - 391.IBPluginDependency - 391.IBViewBoundsToFrameTransform - 392.IBPluginDependency - 393.IBPluginDependency - 394.IBPluginDependency - 402.IBPluginDependency - 402.IBViewBoundsToFrameTransform - 403.IBPluginDependency - 414.IBPluginDependency - 414.IBPropertyAccessControl - 414.IBViewBoundsToFrameTransform - 414.ImportedFromIB2 - 415.IBPluginDependency - 415.IBViewBoundsToFrameTransform - 415.ImportedFromIB2 - 416.IBPluginDependency - 416.IBViewBoundsToFrameTransform - 417.IBPluginDependency - 417.IBViewBoundsToFrameTransform - 418.IBPluginDependency - 418.IBViewBoundsToFrameTransform - 418.ImportedFromIB2 - 419.IBPluginDependency - 419.IBViewBoundsToFrameTransform - 419.ImportedFromIB2 - 420.IBPluginDependency - 420.IBViewBoundsToFrameTransform - 420.ImportedFromIB2 - 421.IBPluginDependency - 422.IBPluginDependency - 423.IBPluginDependency - 424.IBPluginDependency - 425.IBPluginDependency - 426.IBPluginDependency - 427.IBPluginDependency - 446.IBPluginDependency - 446.IBViewBoundsToFrameTransform - 446.ImportedFromIB2 - 447.IBPluginDependency - 447.IBViewBoundsToFrameTransform - 447.ImportedFromIB2 - 448.IBPluginDependency - 448.IBViewBoundsToFrameTransform - 448.ImportedFromIB2 - 449.IBPluginDependency - 449.IBViewBoundsToFrameTransform - 449.ImportedFromIB2 - 450.IBPluginDependency - 451.IBPluginDependency - 452.IBPluginDependency - 453.IBPluginDependency - 454.IBPluginDependency - 454.ImportedFromIB2 - 455.IBPluginDependency - 455.ImportedFromIB2 - 456.IBPluginDependency - 457.IBPluginDependency - 464.IBPluginDependency - 464.IBViewBoundsToFrameTransform - 465.IBPluginDependency - 465.IBViewBoundsToFrameTransform - 466.IBPluginDependency - 467.IBPluginDependency - 472.IBPluginDependency - 473.IBPluginDependency - 5.IBEditorWindowLastContentRect - 5.IBPluginDependency - 5.IBWindowTemplateEditedContentRect - 5.ImportedFromIB2 - 6.IBPluginDependency - 6.ImportedFromIB2 - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - {{587, 85}, {464, 277}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{466, 631}, {120, 73}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB8AAAwnAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB8AAAwgwAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB8AAAwtAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - {{297, 415}, {464, 406}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{576, 618}, {178, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{582, 234}, {464, 290}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAww8AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCjAAAww8AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDLwAAwsIAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAwzMAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAw0wAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw0wAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCOAAAwzMAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCwAAAwggAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAwfgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCJAAAwzsAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDXwAAwz4AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDoIAAw0EAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAwmgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDHQAAwggAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCQAAAwqAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{602, 191}, {420, 265}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCUAAAwtAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - - AUNcAABC6gAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - AUNcAABDFQAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABC9gAAwwgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCtgAAwygAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqgAAwpgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDnQAAwpwAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB0AAAwpIAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUNcAABCqgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCAAAAwoAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCCAAAwgAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDIAAAwdgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - AQAAAABCHAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCUAAAwiwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCDAAAwrAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDggAAwlgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCTAAAwlwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDSQAAweAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCTAAAwfAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDnwAAweAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDrYAAweAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwqgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCHAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC7AAAwzgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqAAAwkwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqAAAwkwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{278, 522}, {399, 334}} - com.apple.InterfaceBuilder.CocoaPlugin - {{278, 522}, {399, 334}} - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - + + 480 + + + + + + + + 481 + + + + + + + + 482 + + + + + + + + 483 + + + + + 484 + + + + + 485 + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{587, 85}, {464, 277}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{466, 631}, {120, 73}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB8AAAwnAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB8AAAwgwAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB8AAAwtAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{297, 415}, {464, 406}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{576, 618}, {178, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{582, 234}, {464, 290}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAww8AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCjAAAww8AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDLwAAwsIAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAwzMAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAw0wAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw0wAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCOAAAwzMAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCwAAAwggAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAwfgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCJAAAwzsAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDXwAAwz4AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDoIAAw0EAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAwmgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDHQAAwggAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCQAAAwqAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{602, 191}, {420, 265}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCUAAAwtAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABC6gAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABDFQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABC9gAAwwgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCtgAAwygAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqgAAwpgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDnQAAwpwAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB0AAAwpIAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUNcAABCqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCAAAAwoAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCCAAAwgAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDIAAAwdgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABCHAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCUAAAwiwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCDAAAwrAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDggAAwlgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSQAAweAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAwfAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDnwAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDrYAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCHAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC7AAAwzgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{278, 522}, {399, 334}} + com.apple.InterfaceBuilder.CocoaPlugin + {{278, 522}, {399, 334}} + + com.apple.InterfaceBuilder.CocoaPlugin + + + - - YES - - - + - 479 + 487 - - YES + FirstResponder @@ -3671,343 +3464,229 @@ NotationPrefsViewController NSObject - - YES - - YES - addedExtension: - addedType: - changePassphrase: - changedFileDeletionWarningSettings: - changedFileStorageFormat: - changedKeyLength: - changedKeychainSettings: - changedSecureTextEntry: - makeDefaultExtension: - removeFromKeychain: - removedExtension: - removedType: - syncFrequencyChange: - toggledEncryption: - toggledSyncing: - visitSimplenoteSite: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + addedExtension: + id - - - YES - - YES - addedExtension: - addedType: - changePassphrase: - changedFileDeletionWarningSettings: - changedFileStorageFormat: - changedKeyLength: - changedKeychainSettings: - changedSecureTextEntry: - makeDefaultExtension: - removeFromKeychain: - removedExtension: - removedType: - syncFrequencyChange: - toggledEncryption: - toggledSyncing: - visitSimplenoteSite: - - - YES - - addedExtension: - id - - - addedType: - id - - - changePassphrase: - id - - - changedFileDeletionWarningSettings: - id - - - changedFileStorageFormat: - id - - - changedKeyLength: - id - - - changedKeychainSettings: - id - - - changedSecureTextEntry: - id - - - makeDefaultExtension: - id - - - removeFromKeychain: - id - - - removedExtension: - id - - - removedType: - id - - - syncFrequencyChange: - id - - - toggledEncryption: - id - - - toggledSyncing: - id - - - visitSimplenoteSite: - id - + + addedType: + id - - - YES - - YES - allowedExtensionsTable - allowedTypesTable - changePasswordButton - confirmFileDeletionButton - enableEncryptionButton - enabledSyncButton - fileAttributesHelpText - keyLengthField - keyLengthStepper - makeDefaultExtensionButton - newExtensionButton - newTypeButton - passwordSettingsMatrix - removeExtensionButton - removeFromKeychainButton - removeTypeButton - secureTextEntryButton - storageFormatPopupButton - syncAccountField - syncEncAlertField - syncEncAlertView - syncPasswordField - syncingFrequency - verifyStatusField - verifyStatusImageView - view - webOptionsWindow - - - YES - NSTableView - NSTableView - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSStepper - NSButton - NSButton - NSButton - NSMatrix - NSButton - NSButton - NSButton - NSButton - NSPopUpButton - NSTextField - NSTextField - NSImageView - NSTextField - NSPopUpButton - NSTextField - NSImageView - NSView - NSWindow - - - - YES - - YES - allowedExtensionsTable - allowedTypesTable - changePasswordButton - confirmFileDeletionButton - enableEncryptionButton - enabledSyncButton - fileAttributesHelpText - keyLengthField - keyLengthStepper - makeDefaultExtensionButton - newExtensionButton - newTypeButton - passwordSettingsMatrix - removeExtensionButton - removeFromKeychainButton - removeTypeButton - secureTextEntryButton - storageFormatPopupButton - syncAccountField - syncEncAlertField - syncEncAlertView - syncPasswordField - syncingFrequency - verifyStatusField - verifyStatusImageView - view - webOptionsWindow - - - YES - - allowedExtensionsTable - NSTableView - - - allowedTypesTable - NSTableView - - - changePasswordButton - NSButton - - - confirmFileDeletionButton - NSButton - - - enableEncryptionButton - NSButton - - - enabledSyncButton - NSButton - - - fileAttributesHelpText - NSTextField - - - keyLengthField - NSTextField - - - keyLengthStepper - NSStepper - - - makeDefaultExtensionButton - NSButton - - - newExtensionButton - NSButton - - - newTypeButton - NSButton - - - passwordSettingsMatrix - NSMatrix - - - removeExtensionButton - NSButton - - - removeFromKeychainButton - NSButton - - - removeTypeButton - NSButton - - - secureTextEntryButton - NSButton - - - storageFormatPopupButton - NSPopUpButton - - - syncAccountField - NSTextField - - - syncEncAlertField - NSTextField - - - syncEncAlertView - NSImageView - - - syncPasswordField - NSTextField - - - syncingFrequency - NSPopUpButton - - - verifyStatusField - NSTextField - - - verifyStatusImageView - NSImageView - - - view - NSView - - - webOptionsWindow - NSWindow - + + changePassphrase: + id - + + changedFileDeletionWarningSettings: + id + + + changedFileStorageFormat: + id + + + changedKeyLength: + id + + + changedKeychainSettings: + id + + + changedSecureTextEntry: + id + + + makeDefaultExtension: + id + + + removeFromKeychain: + id + + + removedExtension: + id + + + removedType: + id + + + syncFrequencyChange: + id + + + toggledEncryption: + id + + + toggledSyncing: + id + + + visitSimplenoteSite: + id + + + + NSTableView + NSTableView + NSButton + NSButton + NSButton + NSButton + NSTextField + NSTextField + NSStepper + NSButton + NSButton + NSButton + NSMatrix + NSButton + NSButton + NSButton + NSButton + NSPopUpButton + NSTextField + NSTextField + NSImageView + NSTextField + NSPopUpButton + NSTextField + NSImageView + NSView + NSWindow + + + + allowedExtensionsTable + NSTableView + + + allowedTypesTable + NSTableView + + + changePasswordButton + NSButton + + + confirmFileDeletionButton + NSButton + + + enableEncryptionButton + NSButton + + + enabledSyncButton + NSButton + + + fileAttributesHelpText + NSTextField + + + keyLengthField + NSTextField + + + keyLengthStepper + NSStepper + + + makeDefaultExtensionButton + NSButton + + + newExtensionButton + NSButton + + + newTypeButton + NSButton + + + passwordSettingsMatrix + NSMatrix + + + removeExtensionButton + NSButton + + + removeFromKeychainButton + NSButton + + + removeTypeButton + NSButton + + + secureTextEntryButton + NSButton + + + storageFormatPopupButton + NSPopUpButton + + + syncAccountField + NSTextField + + + syncEncAlertField + NSTextField + + + syncEncAlertView + NSImageView + + + syncPasswordField + NSTextField + + + syncingFrequency + NSPopUpButton + + + verifyStatusField + NSTextField + + + verifyStatusImageView + NSImageView + + + view + NSView + + + webOptionsWindow + NSWindow + + IBProjectSource ./Classes/NotationPrefsViewController.h @@ -4016,475 +3695,335 @@ PrefsWindowController NSObject - - YES - - YES - changeBodyFont: - changedAltRows: - changedAutoSuggestLinks: - changedBackgroundTextColorWell: - changedExternalEditorsMenu: - changedForegroundTextColorWell: - changedHighlightSearchTerms: - changedMakeURLsClickable: - changedNoteDeletion: - changedNotesFolderLocation: - changedQuitBehavior: - changedRTL: - changedSearchHighlightColorWell: - changedShowGrid: - changedSoftTabs: - changedSpellChecking: - changedStyledTextBehavior: - changedTabBehavior: - changedTableText: - changedTitleCompletion: - changedUseMarkdownImport: - changedUseReadability: - setAppShortcut: - setMaxWidth: - toggleHideDockIcon: - toggleKeepsTextWidthInWindow: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + changeBodyFont: + id - - - YES - - YES - changeBodyFont: - changedAltRows: - changedAutoSuggestLinks: - changedBackgroundTextColorWell: - changedExternalEditorsMenu: - changedForegroundTextColorWell: - changedHighlightSearchTerms: - changedMakeURLsClickable: - changedNoteDeletion: - changedNotesFolderLocation: - changedQuitBehavior: - changedRTL: - changedSearchHighlightColorWell: - changedShowGrid: - changedSoftTabs: - changedSpellChecking: - changedStyledTextBehavior: - changedTabBehavior: - changedTableText: - changedTitleCompletion: - changedUseMarkdownImport: - changedUseReadability: - setAppShortcut: - setMaxWidth: - toggleHideDockIcon: - toggleKeepsTextWidthInWindow: - - - YES - - changeBodyFont: - id - - - changedAltRows: - id - - - changedAutoSuggestLinks: - id - - - changedBackgroundTextColorWell: - id - - - changedExternalEditorsMenu: - id - - - changedForegroundTextColorWell: - id - - - changedHighlightSearchTerms: - id - - - changedMakeURLsClickable: - id - - - changedNoteDeletion: - id - - - changedNotesFolderLocation: - id - - - changedQuitBehavior: - id - - - changedRTL: - id - - - changedSearchHighlightColorWell: - id - - - changedShowGrid: - id - - - changedSoftTabs: - id - - - changedSpellChecking: - id - - - changedStyledTextBehavior: - id - - - changedTabBehavior: - id - - - changedTableText: - id - - - changedTitleCompletion: - id - - - changedUseMarkdownImport: - id - - - changedUseReadability: - id - - - setAppShortcut: - id - - - setMaxWidth: - id - - - toggleHideDockIcon: - id - - - toggleKeepsTextWidthInWindow: - id - + + changedAltRows: + id - - - YES - - YES - altRowsButton - appList - appShortcutField - autoSuggestLinksButton - backgroundColorWell - bodyTextFontField - checkSpellingButton - completeNoteTitlesButton - confirmDeletionButton - databaseView - editingView - externalEditorMenuButton - folderLocationsMenuButton - fontsColorsView - foregroundColorWell - generalView - highlightSearchTermsButton - makeURLsClickable - maxWidthSlider - notationPrefsView - notationPrefsViewController - quitWhenClosingButton - rtlButton - searchHighlightColorWell - showGridButton - softTabsButton - styledTextButton - tabKeyRadioMatrix - tableTextMenuButton - tableTextSizeField - togDockButton - togDockLabel - useMarkdownImportButton - useReadabilityButton - window - - - YES - NSButton - NSComboBox - NSTextField - NSButton - NSColorWell - NSTextField - NSButton - NSButton - NSButton - NSView - NSView - NSPopUpButton - NSPopUpButton - NSView - NSColorWell - NSView - NSButton - NSButton - NSSlider - NSView - NotationPrefsViewController - NSButton - NSButton - NSColorWell - NSButton - NSButton - NSButton - NSMatrix - NSPopUpButton - NSTextField - NSButton - NSTextField - NSButton - NSButton - NSWindow - - - - YES - - YES - altRowsButton - appList - appShortcutField - autoSuggestLinksButton - backgroundColorWell - bodyTextFontField - checkSpellingButton - completeNoteTitlesButton - confirmDeletionButton - databaseView - editingView - externalEditorMenuButton - folderLocationsMenuButton - fontsColorsView - foregroundColorWell - generalView - highlightSearchTermsButton - makeURLsClickable - maxWidthSlider - notationPrefsView - notationPrefsViewController - quitWhenClosingButton - rtlButton - searchHighlightColorWell - showGridButton - softTabsButton - styledTextButton - tabKeyRadioMatrix - tableTextMenuButton - tableTextSizeField - togDockButton - togDockLabel - useMarkdownImportButton - useReadabilityButton - window - - - YES - - altRowsButton - NSButton - - - appList - NSComboBox - - - appShortcutField - NSTextField - - - autoSuggestLinksButton - NSButton - - - backgroundColorWell - NSColorWell - - - bodyTextFontField - NSTextField - - - checkSpellingButton - NSButton - - - completeNoteTitlesButton - NSButton - - - confirmDeletionButton - NSButton - - - databaseView - NSView - - - editingView - NSView - - - externalEditorMenuButton - NSPopUpButton - - - folderLocationsMenuButton - NSPopUpButton - - - fontsColorsView - NSView - - - foregroundColorWell - NSColorWell - - - generalView - NSView - - - highlightSearchTermsButton - NSButton - - - makeURLsClickable - NSButton - - - maxWidthSlider - NSSlider - - - notationPrefsView - NSView - - - notationPrefsViewController - NotationPrefsViewController - - - quitWhenClosingButton - NSButton - - - rtlButton - NSButton - - - searchHighlightColorWell - NSColorWell - - - showGridButton - NSButton - - - softTabsButton - NSButton - - - styledTextButton - NSButton - - - tabKeyRadioMatrix - NSMatrix - - - tableTextMenuButton - NSPopUpButton - - - tableTextSizeField - NSTextField - - - togDockButton - NSButton - - - togDockLabel - NSTextField - - - useMarkdownImportButton - NSButton - - - useReadabilityButton - NSButton - - - window - NSWindow - + + changedAutoPairing: + id - + + changedAutoSuggestLinks: + id + + + changedBackgroundTextColorWell: + id + + + changedExternalEditorsMenu: + id + + + changedForegroundTextColorWell: + id + + + changedHighlightSearchTerms: + id + + + changedMakeURLsClickable: + id + + + changedNoteDeletion: + id + + + changedNotesFolderLocation: + id + + + changedQuitBehavior: + id + + + changedRTL: + id + + + changedSearchHighlightColorWell: + id + + + changedShowGrid: + id + + + changedSoftTabs: + id + + + changedSpellChecking: + id + + + changedStyledTextBehavior: + id + + + changedTabBehavior: + id + + + changedTableText: + id + + + changedTitleCompletion: + id + + + changedUseMarkdownImport: + id + + + changedUseReadability: + id + + + setAppShortcut: + id + + + setMaxWidth: + id + + + toggleHideDockIcon: + id + + + toggleKeepsTextWidthInWindow: + id + + + + NSButton + NSComboBox + NSTextField + NSButton + NSButton + NSColorWell + NSTextField + NSButton + NSButton + NSButton + NSView + NSView + NSPopUpButton + NSPopUpButton + NSView + NSColorWell + NSView + NSButton + NSButton + NSSlider + NSView + NotationPrefsViewController + NSButton + NSButton + NSColorWell + NSButton + NSButton + NSButton + NSMatrix + NSPopUpButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSWindow + + + + altRowsButton + NSButton + + + appList + NSComboBox + + + appShortcutField + NSTextField + + + autoPairButton + NSButton + + + autoSuggestLinksButton + NSButton + + + backgroundColorWell + NSColorWell + + + bodyTextFontField + NSTextField + + + checkSpellingButton + NSButton + + + completeNoteTitlesButton + NSButton + + + confirmDeletionButton + NSButton + + + databaseView + NSView + + + editingView + NSView + + + externalEditorMenuButton + NSPopUpButton + + + folderLocationsMenuButton + NSPopUpButton + + + fontsColorsView + NSView + + + foregroundColorWell + NSColorWell + + + generalView + NSView + + + highlightSearchTermsButton + NSButton + + + makeURLsClickable + NSButton + + + maxWidthSlider + NSSlider + + + notationPrefsView + NSView + + + notationPrefsViewController + NotationPrefsViewController + + + quitWhenClosingButton + NSButton + + + rtlButton + NSButton + + + searchHighlightColorWell + NSColorWell + + + showGridButton + NSButton + + + softTabsButton + NSButton + + + styledTextButton + NSButton + + + tabKeyRadioMatrix + NSMatrix + + + tableTextMenuButton + NSPopUpButton + + + tableTextSizeField + NSTextField + + + togDockButton + NSButton + + + togDockLabel + NSTextField + + + useMarkdownImportButton + NSButton + + + useReadabilityButton + NSButton + + + window + NSWindow + + IBProjectSource ./Classes/PrefsWindowController.h - + 0 IBCocoaFramework @@ -4496,28 +4035,13 @@ com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES 3 - - YES - - YES - NSMenuCheckmark - NSMenuMixedState - NSRadioButton - NSSwitch - - - YES - {9, 8} - {7, 2} - {16, 15} - {15, 15} - - + + {9, 8} + {7, 2} + {16, 15} + {15, 15} + diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Info.plist b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Info.plist deleted file mode 100644 index 282bca38..00000000 --- a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - RBSplitView(Sno) - CFBundleIdentifier - net.brockerhoff.RBSplitView.IBPlugin - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - RBSplitView(Sno) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.2 - CFBundleSignature - ???? - CFBundleVersion - 1.2 - NSPrincipalClass - RBSplitViewPlugin - - diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/MacOS/RBSplitView(Sno) b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/MacOS/RBSplitView(Sno) deleted file mode 100644 index ee5c8e2b..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/MacOS/RBSplitView(Sno) and /dev/null differ diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitSubviewInspector.nib b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitSubviewInspector.nib deleted file mode 100644 index b0cbdf0c..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitSubviewInspector.nib and /dev/null differ diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitSubviewSizeInspector.nib b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitSubviewSizeInspector.nib deleted file mode 100644 index a62c0154..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitSubviewSizeInspector.nib and /dev/null differ diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitViewInspector.nib b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitViewInspector.nib deleted file mode 100644 index edd894be..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitViewInspector.nib and /dev/null differ diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitViewPlugin.nib b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitViewPlugin.nib deleted file mode 100644 index 9602bb90..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitViewPlugin.nib and /dev/null differ diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitViewPreferences.nib b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitViewPreferences.nib deleted file mode 100644 index be411419..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/English.lproj/RBSplitViewPreferences.nib and /dev/null differ diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitSubview.classdescription b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitSubview.classdescription deleted file mode 100644 index 31511b4b..00000000 --- a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitSubview.classdescription +++ /dev/null @@ -1,8 +0,0 @@ -{ - ClassName = RBSplitSubview; - SuperClass = NSView; - Actions = { - }; - Outlets = { - }; -} diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitView.classdescription b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitView.classdescription deleted file mode 100644 index 23587f7c..00000000 --- a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitView.classdescription +++ /dev/null @@ -1,9 +0,0 @@ -{ - ClassName = RBSplitView; - SuperClass = RBSplitSubview; - Actions = { - }; - Outlets = { - delegate = id; - }; -} diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitView.png b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitView.png deleted file mode 100644 index 172cdb24..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitView.png and /dev/null differ diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitViewPlugin.icns b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitViewPlugin.icns deleted file mode 100644 index 518e8e70..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/RBSplitViewPlugin.icns and /dev/null differ diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/Thumb8.png b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/Thumb8.png deleted file mode 100644 index 49e89a8d..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/Thumb8.png and /dev/null differ diff --git a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/Thumb9.png b/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/Thumb9.png deleted file mode 100644 index c77280a0..00000000 Binary files a/fr.lproj/RBSplitView(Sno).ibplugin/Contents/Resources/Thumb9.png and /dev/null differ diff --git a/it.lproj/BlorPasswordRetriever.nib/designable.nib b/it.lproj/BlorPasswordRetriever.nib/designable.nib new file mode 100644 index 00000000..eb29bcad --- /dev/null +++ b/it.lproj/BlorPasswordRetriever.nib/designable.nib @@ -0,0 +1,641 @@ + + + + 1060 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + YES + + + + YES + + BlorPasswordRetriever + + + FirstResponder + + + NSApplication + + + 1 + 2 + {{181, 320}, {507, 172}} + 1886912512 + Inserisci la parola d'ordine + NSPanel + + View + + {1.79769e+308, 1.79769e+308} + {378, 110} + + + 256 + + YES + + + 266 + {{92, 90}, {398, 62}} + + YES + + 69336577 + 272629760 + Per favore, inserisci la parola d'ordine per importare le vecchie note da BLAH BLAH BLAH BLAH PATH BLAH BLAH + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 289 + {{403, 12}, {90, 32}} + + YES + + 604110336 + 134217728 + Importa + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 289 + {{315, 12}, {88, 32}} + + YES + + 67239424 + 134217728 + Annulla + + + -2038284033 + 268435457 + + + q + 200 + 25 + + + + + 268 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{20, 90}, {62, 62}} + + YES + + 130560 + 33554432 + + NSImage + NSApplicationIcon + + 0 + 0 + 0 + NO + + YES + + + + 256 + {{52, 62}, {104, 17}} + + YES + + 67239424 + 71303168 + Parola d'ordine: + + + + + + + + + 290 + {{161, 60}, {326, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + + + {507, 172} + + + {{0, 0}, {1680, 1028}} + {378, 132} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + window + + + + 309 + + + + importAction: + + + + 321 + + + + cancelAction: + + + + 322 + + + + importButton + + + + 326 + + + + helpStringField + + + + 327 + + + + passphraseField + + + + 333 + + + + cancelButton + + + + 339 + + + + initialFirstResponder + + + + 340 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 307 + + + YES + + + + get passphrase + + + 308 + + + YES + + + + + + + + + + + 318 + + + YES + + + + + + 319 + + + YES + + + + + + 320 + + + YES + + + + + + 328 + + + YES + + + + + + 330 + + + YES + + + + + + 331 + + + YES + + + + + + 342 + + + + + 343 + + + + + 344 + + + + + 345 + + + + + 346 + + + + + 347 + + + + + -3 + + + Application + + + + + YES + + YES + -3.IBPluginDependency + 307.IBEditorWindowLastContentRect + 307.IBPluginDependency + 307.IBPropertyAccessControl + 307.IBWindowTemplateEditedContentRect + 307.ImportedFromIB2 + 307.windowTemplate.hasMinSize + 307.windowTemplate.minSize + 308.IBPluginDependency + 308.IBPropertyAccessControl + 308.ImportedFromIB2 + 318.IBPluginDependency + 318.IBPropertyAccessControl + 318.ImportedFromIB2 + 319.IBPluginDependency + 319.IBPropertyAccessControl + 319.ImportedFromIB2 + 320.IBPluginDependency + 320.IBPropertyAccessControl + 320.ImportedFromIB2 + 328.IBPluginDependency + 328.IBPropertyAccessControl + 328.ImportedFromIB2 + 330.IBPluginDependency + 330.IBPropertyAccessControl + 330.ImportedFromIB2 + 331.CustomClassName + 331.IBPluginDependency + 331.IBPropertyAccessControl + 331.ImportedFromIB2 + 342.IBPluginDependency + 343.IBPluginDependency + 344.IBPluginDependency + 345.IBPluginDependency + 346.IBPluginDependency + 347.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + {{221, 370}, {507, 172}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{221, 370}, {507, 172}} + + + {378, 110} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 347 + + + + YES + + BlorPasswordRetriever + NSObject + + YES + + YES + cancelAction: + importAction: + + + YES + id + id + + + + YES + + YES + cancelButton + helpStringField + importButton + passphraseField + window + + + YES + NSButton + NSTextField + NSButton + NSTextField + NSWindow + + + + IBProjectSource + ./Classes/BlorPasswordRetriever.h + + + + FirstResponder + NSObject + + : + id + + + IBUserSource + + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + IBProjectSource + ./Classes/NSObject.h + + + + RBSplitSubview + NSView + + IBProjectSource + ./Classes/RBSplitSubview.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + IBProjectSource + ./Classes/RBSplitView.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + diff --git a/it.lproj/BlorPasswordRetriever.nib/keyedobjects.nib b/it.lproj/BlorPasswordRetriever.nib/keyedobjects.nib new file mode 100644 index 00000000..3ba86296 Binary files /dev/null and b/it.lproj/BlorPasswordRetriever.nib/keyedobjects.nib differ diff --git a/it.lproj/CarbonErrorStrings.plist b/it.lproj/CarbonErrorStrings.plist new file mode 100755 index 00000000..0d52c559 --- /dev/null +++ b/it.lproj/CarbonErrorStrings.plist @@ -0,0 +1,166 @@ + + + + + -33 + la directory è piena + -34 + il disco è pieno + -35 + il volume non esiste + -36 + si è verificato un errore durante il tentativo di accedere al disco + -37 + il nome non è corretto + -38 + il documento non è aperto + -39 + è stata raggiunta la fine del file + -40 + la posizione del file è stata indicata come offset negativo + -41 + il documento non entrerebbe in memoria + -42 + ci sono troppi documenti aperti + -43 + non ho trovato il documento + -44 + il disco è protetto da scrittura + -45 + il documento è protetto + -46 + il volume è protetto + -47 + il documento è ancora in uso + -48 + esiste già un documento con lo stesso nome + -49 + il documento è già aperto e disponibile per la scrittura + -50 + c'è un parametro non valido + -51 + il numero di riferimento del documento non è corretto + -52 + non è stato possibile ottenere l'offset della posizione del file + -53 + il volume non è più disponibile + -54 + il documento è protetto + -55 + il disco è già montato + -56 + si è fatto riferimento ad un disco non esistente + -57 + il disco non è in formato Mac + -58 + il tipo di file system del volume non è supportato + -59 + si è verificato un problema durante la modifica del nome + -60 + il master directory block è danneggiato + -61 + i permessi del documento non consentono la scrittura + -64 + il disco non è installato + -120 + non ho trovato la directory + -121 + ci sono troppe cartelle di lavoro aperte + -122 + non è possibile spostare le cartelle in cartelle in esse contenute + -123 + il volume è di tipo non corretto + -124 + il server del volume è scollegato + -127 + si è verificato un problema con il driver del file system + -128 + l'operazione è stata annullata + -818 + non è stato possibile deserializzare i dati + -819 + non è stato possibile inizializzare il file Interim Note-Changes + -820 + non è stato possibile appendere il file Interim Note-Changes + -821 + autenticazione non riuscita + -822 + non è stato possibile decomprimere i dati + -823 + non hai inserito la parola d'ordine + -824 + non è stato possibile formattare correttamente i dati + -825 + le note presentano dei valori non coincidenti dopo la decodifica + -1300 + non ho trovato l'ID del documento specificato nel file system + -1301 + l'ID del documento esiste già nel file system + -1302 + uno dei documenti era in realtà una cartella + -1303 + i documenti sono su volumi diversi + -1304 + il catalogo è cambiato inaspettatamente + -1306 + si è verificato un tentativo di scambiare il contenuto del documento con se stesso + -1307 + il documento non coincide con il numero di ID del documento + -1308 + il volume è stato rimontato in modo non corretto + -1309 + l'accesso al file è avvenuto "out of bounds" + -1310 + il documento o il volume è troppo grande + -1311 + il volume è in uso da parte del sottosistema della memoria virtuale + -1327 + si è verificato un accesso non corretto alla control block table del file + -1400 + la chiamata al file system è sconosciuta + -1401 + il riferimento al file system non è più valido + -1402 + è stato specificato un fork name non valido + -1403 + un buffer è rimasto non inizializzato + -1404 + è stato specificato un fork number non valido + -1405 + è stata richiesta un'informazione di file catalog non valida + -1406 + il catalog information buffer è rimasto non inizializzato + -1407 + una cartella era in realtà un file + -1409 + la fork del file richiesta non essite + -1410 + il nome richiesto è troppo lungo per essere valido + -1411 + il file non ha un nome + -1412 + è stato specificato un modo di posizionamento non valido per l'accesso al file + -1413 + il file è stato allocato in maniera impropria + -1417 + non c'erano altri elementi da trovare + -1418 + non sono stati richiesti elementi da leggere nella directory + -1419 + i parametri di ricerca non sono validi + -1420 + i riferimenti al file system sono diversi + -1421 + il file ha già una fork + -1422 + sono stato passati parametri non validi durante l'iterazione sulla directory + -1423 + il directory iterator specificato non è valido + -1424 + il directory iterator è stato usato in modo improprio + -1425 + hai oltrepassato la quota disco che ti è riservata + -5000 + il tuo account non ha i permessi necessari per accedere alla directory + + diff --git a/it.lproj/Come funziona questa cosa?.nvhelp b/it.lproj/Come funziona questa cosa?.nvhelp new file mode 100755 index 00000000..2d35525f --- /dev/null +++ b/it.lproj/Come funziona questa cosa?.nvhelp @@ -0,0 +1,24 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +\paperw12240\paperh15840\margl1440\margr1440\vieww9000\viewh8400\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural + +\f0\fs24 \cf0 Si deve sempre iniziare a digitare nel campo di ricerca che appare in alto. Se si preme Invio si aggiunge una nuova nota che ha come titolo il testo inserito. Durante la digitazione, NV cerca le note che contengono (nel corpo o nel titolo) le parole digitate. Come si vede, assegnare un nome ad una nuova nota e cercare una nota gi\'e0 esistente sono operazioni che avvengono sempre allo stesso tempo.\ +\ +Quando si seleziona una delle note trovate (per esempio, usando i tasti cursore Su/Gi\'f9) NV ne mostra il contenuto nell'area in basso (o a destra) dedicata al testo (cio\'e8 l'area in cui ora stai leggendo questa nota).\ +\ +Se si inizia a digitare il titolo di una nota, NV seleziona automaticamente quella nota.\ +\ +Per creare una nuova nota, basta iniziare a digitare nuovamente nel campo di ricerca (usa la combinazione di tasti +\f1 \uc0\u8984 +\f0 -L per portare il cursore in quel campo). Non c'\'e8 da preoccuparsi: la nota non verr\'e0 rinominata -- per rinominare una nota occorre fare doppio clic sul suo titolo nell'elenco delle note, oppure occorre digitare la combinazione di tasti +\f1 \uc0\u8984 +\f0 -R.\ +\ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural + +\i \cf0 NV non mi permette di salvare le modifiche! +\i0 \ +NV salva continuamente su disco le modifiche durante la creazione di una nuova nota o la modifica di una nota gi\'e0 esistente, quindi non c'\'e8 bisogno di eseguire manualmente il salvataggio.\ +} \ No newline at end of file diff --git a/it.lproj/Contatti.nvhelp b/it.lproj/Contatti.nvhelp new file mode 100755 index 00000000..f6e33017 --- /dev/null +++ b/it.lproj/Contatti.nvhelp @@ -0,0 +1,19 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;} +\paperw12240\paperh15840\margl1440\margr1440\vieww9000\viewh8400\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural + +\f0\b\fs24 \cf0 Pagina web: +\b0 \ + http://www.notational.net/\ + +\b \ +Sviluppo: +\b0 \ + https://github.com/scrod/nv/wiki/\ +\ + +\b Contatto: +\b0 \ + Zachary Schneirov } \ No newline at end of file diff --git a/it.lproj/DeletionManager.nib/designable.nib b/it.lproj/DeletionManager.nib/designable.nib new file mode 100644 index 00000000..b8c3c466 --- /dev/null +++ b/it.lproj/DeletionManager.nib/designable.nib @@ -0,0 +1,628 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSScroller + NSButton + NSScrollView + NSTextFieldCell + NSButtonCell + NSImageView + NSImageCell + NSTableView + NSCustomObject + NSView + NSWindowTemplate + NSTextField + NSTableColumn + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + DeletionManager + + + FirstResponder + + + NSApplication + + + 9 + 2 + {{568, 610}, {371, 222}} + 1886913536 + Notes Deleted Externally + + NSPanel + + + View + + {371, 200} + + + 256 + + + + 266 + {{102, 138}, {252, 68}} + + YES + + 67239424 + 272629760 + The following files no longer exist in the notes folder—restore them to disk or delete them from Notational Velocity, too? + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 268 + + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + {{24, 144}, {62, 62}} + + YES + + 130560 + 33554432 + + NSImage + NSApplicationIcon + + 0 + 1 + 0 + NO + + YES + + + + 274 + + + + 2304 + + + + 256 + {314, 38} + + YES + + + 256 + {{129, 0}, {16, 17}} + + + + 311 + 40 + 1000 + + 75628096 + 2048 + + + LucidaGrande + 11 + 3100 + + + 3 + MC4zMzMzMzI5OQA + + + 6 + System + headerTextColor + + + + + 337772096 + 2048 + + + + 6 + System + controlBackgroundColor + + + + + 3 + YES + YES + + + + 3 + 2 + + 3 + MQA + + + 6 + System + gridColor + + 3 + MC41AA + + + 17 + 306184192 + + + 4 + 15 + 0 + YES + 0 + + + {{1, 1}, {314, 38}} + + + + + 4 + + + + 256 + {{315, 1}, {15, 38}} + + + _doScroller: + 0.9473684 + + + + -2147483392 + {{-100, -100}, {128, 15}} + + 1 + + _doScroller: + 0.99047620000000003 + + + {{20, 82}, {331, 40}} + + + 18 + + + + QSAAAEEgAABBmAAAQZgAAA + + + + 289 + {{130, 12}, {90, 32}} + + YES + + 67239424 + 134217728 + Delete + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 289 + {{220, 12}, {137, 32}} + + YES + + 67239424 + 134217728 + Restore to Disk + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 288 + {{18, 58}, {297, 18}} + + YES + + 67239424 + 0 + Do not show this message again + + + 1211912703 + 2 + + NSSwitch + + + + 200 + 25 + + + + {{7, 11}, {371, 222}} + + + {{0, 0}, {1440, 878}} + {371, 222} + {1e+13, 1e+13} + externallyDeletedNotesTable + + + + + + + tableView + + + + 336 + + + + window + + + + 337 + + + + deleteAction: + + + + 338 + + + + restoreAction: + + + + 339 + + + + dataSource + + + + 340 + + + + delegate + + + + 341 + + + + confirmDeletionButton + + + + 353 + + + + changeConfirmDeletion: + + + + 354 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 328 + + + + + + Multiple Note External Deletion + + + 329 + + + + + + + + + + + + + 330 + + + + + + + + + + 331 + + + + + + + + 332 + + + + + + + + 333 + + + + + + + + 334 + + + + + + + + 335 + + + + + + + + 343 + + + + + 344 + + + + + 345 + + + + + 346 + + + + + 347 + + + + + 348 + + + + + 349 + + + + + + + + 350 + + + + + 351 + + + + + + + + 352 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{363, 663}, {371, 222}} + com.apple.InterfaceBuilder.CocoaPlugin + {{363, 663}, {371, 222}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 354 + + + + + FirstResponder + + : + id + + + : + + : + id + + + + IBUserSource + + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + NSApplicationIcon + {128, 128} + + + diff --git a/it.lproj/DeletionManager.nib/keyedobjects.nib b/it.lproj/DeletionManager.nib/keyedobjects.nib new file mode 100644 index 00000000..b28f50a3 Binary files /dev/null and b/it.lproj/DeletionManager.nib/keyedobjects.nib differ diff --git a/it.lproj/EncodingsManager.nib/designable.nib b/it.lproj/EncodingsManager.nib/designable.nib new file mode 100644 index 00000000..2501d140 --- /dev/null +++ b/it.lproj/EncodingsManager.nib/designable.nib @@ -0,0 +1,641 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSPopUpButton + NSScroller + NSButton + NSMenu + NSScrollView + NSTextFieldCell + NSButtonCell + NSMenuItem + NSCustomObject + NSTextView + NSView + NSWindowTemplate + NSTextField + NSPopUpButtonCell + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + EncodingsManager + + + FirstResponder + + + NSApplication + + + 11 + 2 + {{473, 509}, {412, 366}} + 1886912512 + Panel + + NSPanel + + + View + + {378, 210} + + + 256 + + + + 274 + + + + 2304 + + + + 2322 + {{0, 21}, {370, 14}} + + + + + + + + + + + + + 6 + + + + 370 + 1 + + + 2913 + 0 + + + 3 + MQA + + + + 6 + System + selectedTextBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + selectedTextColor + + 3 + MAA + + + + + + + 1 + MCAwIDEAA + + + + + + 6 + {410, 1e+07} + {114, 0} + + + + {{1, 1}, {370, 185}} + + + + + + {4, -5} + 1 + + 4 + + + + -2147483392 + {{-30, 1}, {15, 174}} + + + _doScroller: + 1 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{20, 60}, {372, 187}} + + + 530 + + + + + + + 266 + {{17, 263}, {378, 26}} + + YES + + -2076049856 + 2048 + + LucidaGrande + 13 + 1044 + + + 109199615 + 1 + + + + + + 400 + 75 + + + Item1 + + 1048576 + 2147483647 + 1 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + _popUpItemAction: + + + YES + + + OtherViews + + + + + + Item2 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + Item3 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + 3 + YES + YES + 1 + + + + + 266 + {{17, 295}, {378, 51}} + + YES + + 67239424 + 272629760 + Notational Velocity should assume the file “%@” was saved with the encoding: + + + + 6 + System + controlColor + + + + 6 + System + controlTextColor + + + + + + + 289 + {{270, 12}, {128, 32}} + + YES + + 67239424 + 134217728 + Looks Correct + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 289 + {{188, 12}, {82, 32}} + + YES + + 67239424 + 134217728 + Cancel + + + -2038284033 + 1 + + + Gw + 200 + 25 + + + + {{7, 11}, {412, 366}} + + + {{0, 0}, {1440, 878}} + {378, 232} + {1e+13, 1e+13} + + + + + + + window + + + + 309 + + + + okAction: + + + + 321 + + + + cancelAction: + + + + 322 + + + + encodingsPopUpButton + + + + 323 + + + + chooseEncoding: + + + + 324 + + + + textView + + + + 325 + + + + okButton + + + + 326 + + + + helpStringField + + + + 327 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 307 + + + + + + Panel + + + 308 + + + + + + + + + + + + 311 + + + + + + + + + + 312 + + + + + 313 + + + + + + + + 318 + + + + + + + + 319 + + + + + + + + 320 + + + + + + + + 329 + + + + + + + + 330 + + + + + 331 + + + + + 332 + + + + + 314 + + + + + + + + + + 317 + + + + + 316 + + + + + 315 + + + + + 333 + + + + + 334 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{316, 314}, {412, 366}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{316, 314}, {412, 366}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + + 334 + + + + + FirstResponder + + : + id + + + : + + : + id + + + + IBUserSource + + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + {9, 8} + {7, 2} + + + diff --git a/it.lproj/EncodingsManager.nib/keyedobjects.nib b/it.lproj/EncodingsManager.nib/keyedobjects.nib new file mode 100644 index 00000000..14a0084d Binary files /dev/null and b/it.lproj/EncodingsManager.nib/keyedobjects.nib differ diff --git a/it.lproj/ExporterManager.nib/designable.nib b/it.lproj/ExporterManager.nib/designable.nib new file mode 100644 index 00000000..989bdfe5 --- /dev/null +++ b/it.lproj/ExporterManager.nib/designable.nib @@ -0,0 +1,1023 @@ + + + + 1060 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + ExporterManager + + + FirstResponder + + + NSApplication + + + + + + + 256 + {{155, 16}, {189, 26}} + + YES + + -2076049856 + 2048 + + LucidaGrande + 13 + 1044 + + + 109199615 + 1 + + LucidaGrande + 13 + 16 + + + + + + 400 + 75 + + + Solo testo (Plain Text) + + 1048576 + 2147483647 + 1 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + _popUpItemAction: + 1 + + + YES + + + OtherViews + + + + + + RTF (Rich Text Format) + + 1048576 + 2147483647 + + + _popUpItemAction: + 2 + + + + + Documento HTML + + 1048576 + 2147483647 + + + _popUpItemAction: + 3 + + + + + Documento Microsoft Word + + 1048576 + 2147483647 + + + _popUpItemAction: + 4 + + + + + Documento Microsoft Word XML + + 1048576 + 2147483647 + + + _popUpItemAction: + 5 + + + + + 3 + YES + YES + 1 + + + + + 256 + {{17, 22}, {136, 17}} + + YES + + 67239424 + 71303168 + Formato documento: + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + {361, 60} + + + NSView + + NSResponder + + + + + + + accessoryView + + + + 350 + + + + formatSelectorPopup + + + + 351 + + + + formatSelectorChanged: + + + + 353 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 341 + + + + + + + View + + + 342 + + + + + + + + 347 + + + + + + + + 355 + + + + + + + + 356 + + + + + 343 + + + + + + + + + + + + 349 + + + + + 348 + + + + + 346 + + + + + 345 + + + + + 344 + + + + + -3 + + + Application + + + + + com.apple.InterfaceBuilder.CocoaPlugin + {{84, 810}, {361, 60}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 356 + + + + + ExporterManager + NSObject + + formatSelectorChanged: + id + + + NSView + NSPopUpButton + + + IBProjectSource + ExporterManager.h + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + FastListDataSource.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + RBSplitView + RBSplitView + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + + + RBSplitView + + + + + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSMenuItem + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSMenuItemCell + NSButtonCell + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItemCell.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSPopUpButton + NSButton + + IBFrameworkSource + AppKit.framework/Headers/NSPopUpButton.h + + + + NSPopUpButtonCell + NSMenuItemCell + + IBFrameworkSource + AppKit.framework/Headers/NSPopUpButtonCell.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + ../Notation.xcodeproj + 3 + + diff --git a/it.lproj/ExporterManager.nib/keyedobjects.nib b/it.lproj/ExporterManager.nib/keyedobjects.nib new file mode 100644 index 00000000..3f301956 Binary files /dev/null and b/it.lproj/ExporterManager.nib/keyedobjects.nib differ diff --git a/it.lproj/FindPanel.nib/designable.nib b/it.lproj/FindPanel.nib/designable.nib new file mode 100644 index 00000000..24035b65 --- /dev/null +++ b/it.lproj/FindPanel.nib/designable.nib @@ -0,0 +1,471 @@ + + + + 1060 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + MultiTextFinder + + + FirstResponder + + + NSApplication + + + 19 + 2 + {{696, 526}, {488, 92}} + -260571136 + Cerca tra le note filtrate + NSPanel + + View + + {1.79769e+308, 1.79769e+308} + {300, 92} + + + + + + 268 + {{17, 51}, {36, 18}} + + YES + + 67239424 + 71303168 + Q2VyY2E6Cg + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 266 + {{58, 49}, {253, 23}} + + YES + + -1804468671 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + + + + 265 + {{321, 44}, {153, 32}} + + YES + + 67239424 + 134217728 + Parola seguente + + + -2038284033 + 1 + + LucidaGrande + 13 + 16 + + + + 200 + 25 + + + + + 265 + {{321, 12}, {153, 32}} + + YES + + 67239424 + 134217728 + Parola precedente + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 264 + {{72, 21}, {97, 18}} + + YES + + -2080244224 + 0 + Ignora Maiuscole/Minuscole + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 264 + {{187, 21}, {112, 18}} + + YES + + 67239424 + 0 + Intera frase + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {488, 92} + + + {{0, 0}, {1680, 1028}} + {300, 108} + {1.79769e+308, 1.79769e+308} + + + + + + + window + + + + 344 + + + + initialFirstResponder + + + + 367 + + + + findStringField + + + + 369 + + + + ignoreCaseButton + + + + 370 + + + + entirePhraseButton + + + + 371 + + + + nextButton + + + + 372 + + + + previousButton + + + + 373 + + + + findNext: + + + + 374 + + + + findPrevious: + + + + 375 + + + + changeEntirePhrase: + + + + 376 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 342 + + + + + + Panel + + + 343 + + + + + + + + + + + + + 345 + + + + + + + + 347 + + + + + + + + 349 + + + + + + + + 350 + + + + + + + + 355 + + + + + + + + 362 + + + + + + + + 378 + + + + + 379 + + + + + 380 + + + + + 381 + + + + + 382 + + + + + 383 + + + + + -3 + + + Application + + + + + com.apple.InterfaceBuilder.CocoaPlugin + {{21, 853}, {488, 92}} + com.apple.InterfaceBuilder.CocoaPlugin + {{21, 853}, {488, 92}} + + + {300, 92} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 383 + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + + 3 + + diff --git a/it.lproj/FindPanel.nib/keyedobjects.nib b/it.lproj/FindPanel.nib/keyedobjects.nib new file mode 100644 index 00000000..a432c1b1 Binary files /dev/null and b/it.lproj/FindPanel.nib/keyedobjects.nib differ diff --git a/it.lproj/FindPanel.strings b/it.lproj/FindPanel.strings new file mode 100644 index 00000000..a2863de5 Binary files /dev/null and b/it.lproj/FindPanel.strings differ diff --git a/it.lproj/ImporterAccessory.nib/designable.nib b/it.lproj/ImporterAccessory.nib/designable.nib new file mode 100644 index 00000000..042afdf8 --- /dev/null +++ b/it.lproj/ImporterAccessory.nib/designable.nib @@ -0,0 +1,177 @@ + + + + 1030 + 10J567 + 1294 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1294 + + + NSCustomView + NSButtonCell + NSButton + NSCustomObject + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + AlienNoteImporter + + + FirstResponder + + + NSApplication + + + + 256 + + + + 268 + {{18, 18}, {244, 18}} + + YES + + 67239424 + 0 + Importa data creazione documento + + LucidaGrande + 13 + 1044 + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + {280, 54} + + NSView + + NSResponder + + + + + + + grabCreationDatesButton + + + + 361 + + + + importAccessoryView + + + + 362 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 341 + + + + + + View + + + 357 + + + + + + + + 365 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{42, 862}, {280, 54}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 365 + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + NSSwitch + {15, 15} + + + diff --git a/it.lproj/ImporterAccessory.nib/keyedobjects.nib b/it.lproj/ImporterAccessory.nib/keyedobjects.nib new file mode 100644 index 00000000..e4dd6430 Binary files /dev/null and b/it.lproj/ImporterAccessory.nib/keyedobjects.nib differ diff --git a/it.lproj/InfoPlist.strings b/it.lproj/InfoPlist.strings new file mode 100755 index 00000000..fdf8eae4 Binary files /dev/null and b/it.lproj/InfoPlist.strings differ diff --git a/it.lproj/KeyDerivationManager.nib/designable.nib b/it.lproj/KeyDerivationManager.nib/designable.nib new file mode 100644 index 00000000..b3d29aba --- /dev/null +++ b/it.lproj/KeyDerivationManager.nib/designable.nib @@ -0,0 +1,540 @@ + + + + 1030 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + YES + + + + YES + + KeyDerivationManager + + + FirstResponder + + + NSApplication + + + + 256 + + YES + + + 256 + {{141, 46}, {272, 25}} + + YES + + 67501824 + 0 + + + + + Helvetica + 12 + 16 + + + 1 + 0.01 + 0.29999999999999999 + 0.0 + 10 + 0 + NO + NO + + + + + 256 + {{-3, 41}, {139, 34}} + + YES + + 67239424 + 71303168 + Velocità inserimento chiave di accesso: + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 256 + {{138, 6}, {48, 32}} + + YES + + 67239424 + 138412032 + Avvio rapido + + LucidaGrande + 11 + 3100 + + + + + + + + + 256 + {{354, 0}, {59, 38}} + + YES + + 67239424 + 138412032 + Maggior sicurezza + + + + + + + + + 256 + {{181, 12}, {179, 26}} + + YES + + 68288064 + 138413056 + 672 ms + + + + + + + + + 1280 + + {{117, 17}, {16, 16}} + + 28938 + 16 + 100 + + + {413, 75} + + + NSView + + NSResponder + + + + + YES + + + view + + + + 334 + + + + slider + + + + 335 + + + + hashDurationField + + + + 336 + + + + sliderChanged: + + + + 337 + + + + iterationEstimatorProgress + + + + 345 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 328 + + + YES + + + + + + + + + View + + + 329 + + + YES + + + + + + 330 + + + YES + + + + + + 331 + + + YES + + + + + + 332 + + + YES + + + + + + 333 + + + YES + + + + + + 344 + + + + + 347 + + + + + 348 + + + + + 349 + + + + + 350 + + + + + 351 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 328.IBEditorWindowLastContentRect + 328.IBPluginDependency + 328.IBPropertyAccessControl + 328.ImportedFromIB2 + 329.CustomClassName + 329.IBPluginDependency + 329.ImportedFromIB2 + 330.IBPluginDependency + 330.IBPropertyAccessControl + 330.ImportedFromIB2 + 331.IBPluginDependency + 331.IBPropertyAccessControl + 331.ImportedFromIB2 + 332.IBPluginDependency + 332.IBPropertyAccessControl + 332.ImportedFromIB2 + 333.IBPluginDependency + 333.ImportedFromIB2 + 344.IBPluginDependency + 344.ImportedFromIB2 + 347.IBPluginDependency + 348.IBPluginDependency + 349.IBPluginDependency + 350.IBPluginDependency + 351.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{246, 416}, {413, 75}} + com.apple.InterfaceBuilder.CocoaPlugin + + + KeyDerivationDelaySlider + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 351 + + + + YES + + FirstResponder + NSObject + + : + id + + + IBUserSource + + + + + KeyDerivationDelaySlider + NSSlider + + delegate + id + + + IBProjectSource + ./Classes/KeyDerivationDelaySlider.h + + + + KeyDerivationManager + NSObject + + sliderChanged: + id + + + YES + + YES + hashDurationField + iterationEstimatorProgress + slider + view + + + YES + NSTextField + NSProgressIndicator + KeyDerivationDelaySlider + NSView + + + + IBProjectSource + ./Classes/KeyDerivationManager.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + IBProjectSource + ./Classes/NSObject.h + + + + RBSplitSubview + NSView + + IBProjectSource + ./Classes/RBSplitSubview.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + IBProjectSource + ./Classes/RBSplitView.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + diff --git a/it.lproj/KeyDerivationManager.nib/keyedobjects.nib b/it.lproj/KeyDerivationManager.nib/keyedobjects.nib new file mode 100644 index 00000000..9f12cd68 Binary files /dev/null and b/it.lproj/KeyDerivationManager.nib/keyedobjects.nib differ diff --git a/it.lproj/Localizable.strings b/it.lproj/Localizable.strings new file mode 100755 index 00000000..43345e5c Binary files /dev/null and b/it.lproj/Localizable.strings differ diff --git a/it.lproj/MainMenu.xib b/it.lproj/MainMenu.xib new file mode 100644 index 00000000..3c75d2bc --- /dev/null +++ b/it.lproj/MainMenu.xib @@ -0,0 +1,5310 @@ + + + + 1050 + 10K540 + 1306 + 1038.36 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSTextView + NSScroller + NSTableHeaderView + NSMenuItem + NSMenu + NSTextFieldCell + NSButtonCell + NSButton + NSTokenField + NSProgressIndicator + NSTokenFieldCell + NSScrollView + NSTableView + NSCustomView + NSCustomObject + NSView + NSWindowTemplate + NSTextField + NSUserDefaultsController + + + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + + NSApplication + + + FirstResponder + + + NSApplication + + + 4111 + 2 + {{280, 392}, {397, 464}} + 1618477056 + nvALT + NSWindow + + View + + {213, 107} + + + 256 + {{7, 11}, {397, 464}} + + + + {{0, 0}, {1440, 878}} + {213, 129} + {1e+13, 1e+13} + NotationWindow + + + MainMenu + + + + nvALT + + 1048576 + 2147483647 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + submenuAction: + + nvALT + + + + Info su nvALT + + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Preferenze… + , + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Controlla aggiornamenti… + + 1048576 + 2147483647 + + + 88 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Servizi + + 1048576 + 2147483647 + + + submenuAction: + + Servizi + + _NSServicesMenu + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Nascondi nvALT + h + 1048576 + 2147483647 + + + + + + Nascondi altre + h + 1572864 + 2147483647 + + + + + + Mostra tutte + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Esci da nvALT + q + 1048576 + 2147483647 + + + + + _NSAppleMenu + + + + + Nota + + 1048576 + 2147483647 + + + submenuAction: + 89 + + Nota + + + + Modifica nome + r + 1048576 + 2147483647 + + + 90 + + + + Modifica etichetta + T + 1048576 + 2147483647 + + + 92 + + + + Cancella + CA + 1048576 + 2147483647 + + + 91 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Cerca o crea nota… + l + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Importa… + + 1048576 + 2147483647 + + + 93 + + + + Esporta… + e + 1048576 + 2147483647 + + + 94 + + + + Mostra nel Finder + R + 1048576 + 2147483647 + + + + + + Edit With + + 2147483647 + + + 88 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Formato di stampa… + P + 1048576 + 2147483647 + + + 95 + + + + Stampa… + p + 1048576 + 2147483647 + + + 96 + + + + + + + Modifica + + 1048576 + 2147483647 + + + submenuAction: + + Modifica + + + + Annulla + z + 1048576 + 2147483647 + + + + + + Ripeti + Z + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Taglia + x + 1048576 + 2147483647 + + + + + + Copia + c + 1048576 + 2147483647 + + + + + + Copia URL + c + 1572864 + 2147483647 + + + + + + Incolla + v + 1048576 + 2147483647 + + + + + + Incolla come nuova nota + V + 1048576 + 2147483647 + + + + + + Cancella + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Seleziona tutto + a + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Cerca + + 1048576 + 2147483647 + + + submenuAction: + + Cerca + + + + Cerca… + f + 1048576 + 2147483647 + + + 1 + + + + Cerca prossimo + g + 1048576 + 2147483647 + + + 2 + + + + Cerca precedente + G + 1048576 + 2147483647 + + + 3 + + + + Usa selezione per ricerca + e + 1048576 + 2147483647 + + + 7 + + + + + + + Ortografia + + 1048576 + 2147483647 + + + submenuAction: + + Ortografia + + + + Spelling… + : + 1048576 + 2147483647 + + + + + + Check Spelling + ; + 1048576 + 2147483647 + + + + + + Check Spelling as You Type + + 1048576 + 2147483647 + + + + + + + + + Cambia + + 1048576 + 2147483647 + + + submenuAction: + + Cambia + + + + Make Upper Case + + 1048576 + 2147483647 + + + + + + Make Lower Case + + 1048576 + 2147483647 + + + + + + Capitalize + + 1048576 + 2147483647 + + + + + + + + + + + + Vista + + 1048576 + 2147483647 + + + submenuAction: + 99 + + Vista + + + + YES + YES + Enter Full Screen + f + 1310720 + 2147483647 + + + 314 + + + + Passa a disposizione orizzontale + l + 1572864 + 2147483647 + + + + + + Collapse Notes List + C + 1048576 + 2147483647 + + + + + + Color Schemes + + 2147483647 + + + submenuAction: + + Color Schemes + + + + B/W + 1 + 1572864 + 2147483647 + 1 + + + + + + Low Contrast + 2 + 1572864 + 2147483647 + + + + + + User Scheme + 3 + 1572864 + 2147483647 + + + + + + + + + YES + YES + + + 2147483647 + + + + + + Colonne + + 1048576 + 2147483647 + + + submenuAction: + 97 + + Colonne + + + + Elemento + + 1048576 + 2147483647 + 1 + + + + + + + + + Ordina per + + 1048576 + 2147483647 + + + submenuAction: + 98 + + Ordina per + + + + Elemento + + 1048576 + 2147483647 + + + + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + YES + Show Word Count + K + 1048576 + 2147483647 + + + + + + Mostra nota - Precedente nell'elenco + p + 1572864 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Nota successiva + j + 1048576 + 2147483647 + + + 106 + + + + Nota precedente + k + 1048576 + 2147483647 + + + 107 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Deseleziona nota(e) + d + 1048576 + 2147483647 + + + 101 + + + + + + + Segnalibri + + 1048576 + 2147483647 + + + submenuAction: + 103 + + Segnalibri + + + + Elemento + + 1048576 + 2147483647 + + + + + + + + + Formato + + 1048576 + 2147483647 + + + submenuAction: + + Formato + + + + Testo piano + t + 1048576 + 2147483647 + + + + + + Neretto + b + 1048576 + 2147483647 + + + 2 + + Bold + + + LucidaGrande-Bold + 14 + 16 + + + + + + + + Corsivo + i + 1048576 + 2147483647 + + + 1 + + Italic + + + LucidaGrande + 14 + 16 + + + + 4 + + + 28 + + + 56 + + + 84 + + + 112 + + + 140 + + + 168 + + + 196 + + + 224 + + + 252 + + + 280 + + + 308 + + + 336 + + + + + + + + + Barrato + y + 1048576 + 2147483647 + + + + Strikethrough + + + + + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Riduci il rientro + [ + 1048576 + 2147483647 + + + + + + Aumenta il rientro + ] + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Correggi codifica testo… + + 1048576 + 2147483647 + + + 102 + + + + + + + Preview + + 2147483647 + + + submenuAction: + + Preview + + + + (Multi)Markdown + + 2147483647 + + + 13372 + + + + Textile + + 2147483647 + + + 13373 + + + + YES + YES + + + 2147483647 + + + + + + Toggle Preview Window + p + 1310720 + 2147483647 + + + + + + Toggle Source View + u + 1048576 + 2147483647 + + + + + + Lock Note to Preview + L + 1572864 + 2147483647 + + + + + + Print Preview / PDF + P + 1572864 + 2147483647 + + + + + + Save Preview HTML + S + 1048576 + 2147483647 + + + + + + + + + Finestra + + 1048576 + 2147483647 + + + submenuAction: + + Finestra + + + + Contrai + m + 1048576 + 2147483647 + + + + + + Chiudi + w + 1048576 + 2147483647 + + + + + + Ingrandimento + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Porta tutto in primo piano + + 1048576 + 2147483647 + + + + + _NSWindowsMenu + + + + + Aiuto + + 1048576 + 2147483647 + + + submenuAction: + + Aiuto + + + + Scorciatoie di tastiera + + 2147483647 + + + 1 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Sito web di nvALT + + 2147483647 + + + 5 + + + + Sito web di ElasticThreads + + 2147483647 + + + 6 + + + + Sito web di Brett Terpstra + + 2147483647 + + + 7 + + + + Sito web di Notational Velocity + + 2147483647 + + + 3 + + + + Sito web dello sviluppatore + + 2147483647 + + + 4 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Ringraziamenti + + 2147483647 + + + 2 + + + + + + _NSMainMenu + + + AppController + + + + 274 + + + + 319 + {{0, 43}, {147, 23}} + + YES + + 67239424 + 138412032 + No Note Selected + + Helvetica + 18 + 16 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 3 + MC40OTU5Njc3NDU4AA + + + + + {147, 102} + + EmptyView + NSView + + + NSFontManager + + + + 258 + + + + 257 + + NSStringPboardType + + {{206, 6}, {145, 14}} + + YES + + 67239424 + 67239936 + + LucidaGrande + 11 + 3100 + + + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + 0.0 + 0 + + 2 + + + + 266 + {381, 23} + + + YES + + -1804468671 + 268436480 + + + LucidaGrande + 13 + 1044 + + + YES + + + 6 + System + textColor + + + + + + {381, 23} + + DFView + NSResponder + + + 1 + 2 + {{454, 634}, {353, 106}} + -260571136 + + NSPanel + + View + + {213, 107} + + + 256 + + + + 256 + {{240, 12}, {99, 32}} + + YES + + 67239424 + 134217728 + Quit Now + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 1280 + + {{20, 54}, {32, 32}} + + + 20490 + 100 + + + + 256 + {{70, 60}, {266, 20}} + + + YES + + 67239424 + 272629760 + Waiting for changes to finish uploading… + + + + + + + + {{7, 11}, {353, 106}} + + + {{0, 0}, {1440, 878}} + {213, 129} + {1e+13, 1e+13} + + + barMenu + + + + Segnalibri + + 1048576 + 2147483647 + + + submenuAction: + 901 + + Segnalibri + + + + Elemento + + 1048576 + 2147483647 + + + + + + + + + Formato + + 1048576 + 2147483647 + + + submenuAction: + + Formato + + + + Testo piano + t + 1048576 + 2147483647 + + + + + + Neretto + b + 1048576 + 2147483647 + + + 2 + + Bold + + + + + + Corsivo + i + 1048576 + 2147483647 + + + 1 + + Italic + + + + + + Barrato + y + 1048576 + 2147483647 + + + + Strikethrough + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Riduci il rientro + [ + 1048576 + 2147483647 + + + + + + Aumenta il rientro + ] + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + Correggi codifica testo… + + 1048576 + 2147483647 + + + 102 + + + + + + + YES + YES + + + 2147483647 + + + + + + Cerca o crea nota… + l + 1048576 + 2147483647 + + + + + + Mostra nel Finder + R + 1048576 + 2147483647 + + + + + + Modifica nome + r + 1048576 + 2147483647 + + + 90 + + + + Modifica etichetta + T + 1048576 + 2147483647 + + + 92 + + + + Cancella + CA + 1048576 + 2147483647 + + + 91 + + + + Insert Link + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + Passa a disposizione orizzontale + l + 1572864 + 2147483647 + + + + + + Collapse Notes List + C + 1048576 + 2147483647 + + + + + + Color Schemes + + 2147483647 + + + submenuAction: + + Color Schemes + + + + YES + B/W + 1 + 1572864 + 2147483647 + 1 + + + + + + YES + Low Contrast + 2 + 1572864 + 2147483647 + + + + + + YES + User Scheme + 3 + 1572864 + 2147483647 + + + + + + + + + YES + YES + + + 2147483647 + + + + + + Preferenze… + , + 1048576 + 2147483647 + + + + + + Controlla aggiornamenti… + + 1048576 + 2147483647 + + + 902 + + + + Esci da nvALT + q + 1048576 + 2147483647 + + + + + + + + 268 + {163, 96} + StatusItemView + + + YES + + + + 274 + + + + 2304 + + + + 2322 + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + Apple URL pasteboard type + CorePasteboardFlavorType 0x6D6F6F76 + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + NeXT font pasteboard type + NeXT ruler pasteboard type + WebURLsWithTitlesPboardType + public.url + + {399, 14} + + + + + + + + + + + + + + + 6 + + + + 399 + 1 + + + 67120871 + 0 + + + + + 6 + System + selectedTextBackgroundColor + + + + 6 + System + selectedTextColor + + + + + + + 1 + MCAwIDEAA + + + + + + 6 + {798, 1e+07} + {80, 0} + + + + {399, 304} + + + + + + 1 + MSAwLjA0OTMwMjU1MTkgMC4wNjEwOTIxMzgyOQA + + + {4, 5} + + 12582912 + + + + + + TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym +SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA +AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA +AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA +AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA + + + + + + 3 + MCAwAA + + + + + + + -2147479296 + {{384, 0}, {15, 304}} + + + 2 + + _doScroller: + 1 + + + + -2147479296 + {{-100, -100}, {384, 15}} + + + + 1 + 2 + + _doScroller: + 1 + 0.94565218687057495 + + + {399, 304} + + + + 528 + + + + + + + 274 + + + + 2304 + + + + 4352 + {399, 136} + + + YES + + + 256 + {399, 17} + + + + + + + -2147483392 + {{384, 0}, {16, 17}} + + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 14 + -633307136 + + + 1 + 15 + 0 + YES + 0 + + + {{0, 17}, {399, 136}} + + + + + 6 + System + controlBackgroundColor + + + + + + -2147483392 + {{384, 17}, {15, 136}} + + 2 + + _doScroller: + 0.47058823704719543 + + + + -2147483392 + {{-100, -100}, {382, 15}} + + + 1 + 2 + + _doScroller: + 0.96598637104034424 + + + + 2304 + + + + {399, 17} + + + + + 4 + + + + {399, 153} + + 528 + + + + + + QSAAAEEgAABBgAAAQYAAAA + + + + + + + performMiniaturize: + + + + 37 + + + + arrangeInFront: + + + + 39 + + + + runPageLayout: + + + + 87 + + + + terminate: + + + + 139 + + + + hideOtherApplications: + + + + 146 + + + + hide: + + + + 152 + + + + unhideAllApplications: + + + + 153 + + + + cut: + + + + 175 + + + + paste: + + + + 176 + + + + redo: + + + + 178 + + + + selectAll: + + + + 179 + + + + undo: + + + + 180 + + + + copy: + + + + 181 + + + + showGuessPanel: + + + + 188 + + + + checkSpelling: + + + + 190 + + + + toggleContinuousSpellChecking: + + + + 192 + + + + performZoom: + + + + 198 + + + + window + + + + 217 + + + + delegate + + + + 219 + + + + editorStatusView + + + + 348 + + + + labelText + + + + 350 + + + + showPreferencesWindow: + + + + 381 + + + + performClose: + + + + 496 + + + + renameNote: + + + + 526 + + + + fixFileEncoding: + + + + 536 + + + + bringFocusToControlField: + + + + 555 + + + + shiftLeftAction: + + + + 568 + + + + shiftRightAction: + + + + 569 + + + + delete: + + + + 773 + + + + defaultStyle: + + + + 978 + + + + bold: + + + + 981 + + + + italic: + + + + 982 + + + + importNotes: + + + + 986 + + + + printNote: + + + + 987 + + + + exportNote: + + + + 988 + + + + tagNote: + + + + 995 + + + + delegate + + + + 1020 + + + + notesTableView + + + + 1021 + + + + delegate + + + + 1024 + + + + nextKeyView + + + + 1025 + + + + notesTableView + + + + 1027 + + + + textView + + + + 1030 + + + + incrementNoteSelection: + + + + 1035 + + + + incrementNoteSelection: + + + + 1036 + + + + paste: + + + + 1037 + + + + deselectAll: + + + + 1038 + + + + delegate + + + + 1040 + + + + delegate + + + + 1041 + + + + sparkleUpdateItem + + + + 1052 + + + + toggleNoteBodyPreviews: + + + + 1065 + + + + delegate + + + + 1068 + + + + nextKeyView + + + + 1069 + + + + notesTable + + + + 1070 + + + + fieldAction: + + + + 1071 + + + + controlField + + + + 1072 + + + + controlField + + + + 1073 + + + + field + + + + 1074 + + + + nextKeyView + + + + 1076 + + + + nextKeyView + + + + 1077 + + + + nextKeyView + + + + 1078 + + + + syncWaitSpinner + + + + 1084 + + + + syncWaitPanel + + + + 1085 + + + + syncWaitQuit: + + + + 1086 + + + + showHelpDocument: + + + + 1089 + + + + showHelpDocument: + + + + 1090 + + + + showHelpDocument: + + + + 1091 + + + + showHelpDocument: + + + + 1092 + + + + uppercaseWord: + + + + 1098 + + + + lowercaseWord: + + + + 1099 + + + + capitalizeWord: + + + + 1100 + + + + strikethroughNV: + + + + 1112 + + + + deleteNote: + + + + 1114 + + + + switchViewLayout: + + + + 1117 + + + + copyNoteLink: + + + + 1119 + + + + toggleCollapse: + + + + 1129 + + + + delegate + + + + 1164 + + + + statBarMenu + + + + 1165 + + + + bringFocusToControlField: + + + + 1167 + + + + tagNote: + + + + 1169 + + + + renameNote: + + + + 1171 + + + + deleteNote: + + + + 1173 + + + + toggleCollapse: + + + + 1175 + + + + switchViewLayout: + + + + 1177 + + + + showPreferencesWindow: + + + + 1181 + + + + terminate: + + + + 1184 + + + + defaultStyle: + + + + 1196 + + + + fixFileEncoding: + + + + 1197 + + + + strikethroughNV: + + + + 1198 + + + + shiftRightAction: + + + + 1199 + + + + shiftLeftAction: + + + + 1200 + + + + italic: + + + + 1201 + + + + bold: + + + + 1202 + + + + revealNote: + + + + 1208 + + + + revealNote: + + + + 1222 + + + + setBWColorScheme: + + + + 1223 + + + + setBWColorScheme: + + + + 1224 + + + + setLCColorScheme: + + + + 1225 + + + + setLCColorScheme: + + + + 1226 + + + + setUserColorScheme: + + + + 1227 + + + + setUserColorScheme: + + + + 1228 + + + + performFindPanelAction: + + + + 1233 + + + + performFindPanelAction: + + + + 1234 + + + + performFindPanelAction: + + + + 1235 + + + + performFindPanelAction: + + + + 1236 + + + + togglePreview: + + + + 1245 + + + + toggleSourceView: + + + + 1246 + + + + savePreview: + + + + 1247 + + + + selectPreviewMode: + + + + 1248 + + + + textilePreview + + + + 1250 + + + + multiMarkdownPreview + + + + 1251 + + + + selectPreviewMode: + + + + 1252 + + + + orderFrontStandardAboutPanel: + + + + 1254 + + + + toggleWordCount: + + + + 1257 + + + + value: values.ShowWordCount + + + + + + value: values.ShowWordCount + value + values.ShowWordCount + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 1268 + + + + wordCounter + + + + 1272 + + + + delegate + + + + 1273 + + + + previewToggler + + + + 1274 + + + + notesScrollView + + + + 1275 + + + + textScrollView + + + + 1276 + + + + mainView + + + + 1283 + + + + showHelpDocument: + + + + 1289 + + + + showHelpDocument: + + + + 1290 + + + + showHelpDocument: + + + + 1291 + + + + printPreview: + + + + 1294 + + + + printPreviewItem + + + + 1295 + + + + lockPreview: + + + + 1296 + + + + lockNoteItem + + + + 1297 + + + + initialFirstResponder + + + + 1303 + + + + nextKeyView + + + + 1305 + + + + nextKeyView + + + + 1306 + + + + fsMenuItem + + + + 1308 + + + + toggleFullScreen: + + + + 1309 + + + + insertLink: + + + + 1311 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 21 + + + + + + notation + + + 2 + + + + + + 29 + + + + + + + + + + + + + + MainMenu + + + 19 + + + + + + + + 24 + + + + + + + + + + + + 5 + + + + + 23 + + + + + 92 + + + + + 197 + + + + + 489 + + + + + 56 + + + + + + + + 57 + + + + + + + + + + + + + + + + + + + + 58 + + + + + 129 + + + + + 131 + + + + + + + + 130 + + + + + 134 + + + + + 136 + + + + + 143 + + + + + 144 + + + + + 145 + + + + + 149 + + + + + 150 + + + + + 196 + + + + + 990 + + + + + 991 + + + + + 83 + + + + + + + + 81 + + + + + + + + + + + + + + + + + + + + 77 + + + + + 78 + + + + + 79 + + + + + 392 + + + + + 393 + + + + + 394 + + + + + 395 + + + + + 396 + + + + + 553 + + + + + 554 + + + + + 994 + + + + + 103 + + + + + + + + 106 + + + + + + + + + + + + + + + + 111 + + + + + 1053 + + + + + 1055 + + + + + 1057 + + + + + 1058 + + + + + 1087 + + + + + 163 + + + + + + + + 169 + + + + + + + + + + + + + + + + + + + + + + 156 + + + + + 157 + + + + + 158 + + + + + 160 + + + + + 168 + + + + + + + + 159 + + + + + + + + + + + 154 + + + + + 161 + + + + + 162 + + + + + 167 + + + + + 171 + + + + + 172 + + + + + 173 + + + + + 184 + + + + + + + + 185 + + + + + + + + + + 187 + + + + + 189 + + + + + 191 + + + + + 550 + + + + + 557 + + + + + 771 + + + + + 1000 + + + + + 1093 + + + + + + + + 1094 + + + + + + + + + + 1095 + + + + + 1096 + + + + + 1097 + + + + + 382 + + + + + + + + 383 + + + + + + + + + + + + + + + + + + + + + + 386 + + + + + + + + 387 + + + + + + + + 388 + + + + + 389 + + + + + + + + 390 + + + + + + + + 391 + + + + + 507 + + + + + 508 + + + + + 520 + + + + + 521 + + + + + 522 + + + + + 1061 + + + + + 1062 + + + + + 397 + + + + + + + + 398 + + + + + + + + + + + + + + + + 534 + + + + + 563 + + + + + 564 + + + + + 565 + + + + + 574 + + + + + 575 + + + + + 576 + + + + + 577 + + + + + 977 + + + + + 996 + + + + + + + + 997 + + + + + + + + 998 + + + + + 213 + + + AppController + + + 341 + + + + + + editorStatus + + + 342 + + + + + + + + 452 + + + Font Manager + + + 1066 + + + + + + + fieldcustomview + + + 1067 + + + + + + + + 1079 + + + + + + quit waiting + + + 1080 + + + + + + + + + + 1081 + + + + + + + + 1082 + + + + + 1083 + + + + + + + + 1102 + + + + + 1103 + + + + + 1104 + + + + + 1105 + + + + + -3 + + + Application + + + 1115 + + + + + 1116 + + + + + 1118 + + + + + 1127 + + + + + 1130 + + + + + + + + + + + + + + + + + + + + + + + + 1131 + + + + + + + + 1135 + + + + + 1138 + + + + + 1139 + + + + + 1159 + + + + + + + + + + 1160 + + + + + 1161 + + + + + 1162 + + + + + 1163 + + + + + 1166 + + + + + 1168 + + + + + 1170 + + + + + 1172 + + + + + 1176 + + + + + 1180 + + + + + 1183 + + + + + 1185 + + + + + + + + 1186 + + + + + + + + + + + + + + + + 1187 + + + + + 1188 + + + + + 1189 + + + + + 1190 + + + + + 1191 + + + + + 1192 + + + + + 1193 + + + + + 1194 + + + + + 1195 + + + + + 1203 + + + + + + + + 1204 + + + + + + + + 1205 + + + + + 1206 + + + + + 1207 + + + + + 1210 + + + + + + + + 1211 + + + + + + + + + + 1212 + + + + + 1213 + + + + + 1214 + + + + + 1221 + + + + + 1237 + + + + + + + + 1238 + + + + + + + + + + + + + + + 1239 + + + + + 1240 + + + + + 1241 + + + + + 1242 + + + + + 1243 + + + + + 1244 + + + + + 1255 + + + + + 1258 + + + + + 1270 + + + + + + Word Count Token + + + 1271 + + + + + 1016 + + + + + + + + Scroll View - Linking Editor + + + 1017 + + + Linking Editor + + + 1109 + + + Scroller + + + 1110 + + + + + 1013 + + + + + + + + + + + 1014 + + + + + 1106 + + + + + 1107 + + + + + 1108 + + + + + 1174 + + + + + 1284 + + + + + 1285 + + + + + 1286 + + + + + 1292 + + + + + 1293 + + + + + 1298 + + + + + + 1307 + + + + + 1310 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + AugmentedScrollView + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwxcAAA + + NotesTableView + com.apple.InterfaceBuilder.CocoaPlugin + ETScrollView + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAw5cAAA + + LinkingEditor + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{810, 543}, {273, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + DualField + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{329, 739}, {353, 106}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{634, 393}, {184, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + HeaderViewWithMenu + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{942, 545}, {317, 293}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1259, 655}, {243, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{1259, 815}, {129, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{794, 583}, {178, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{668, 553}, {263, 153}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + WordCountToken + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwaAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{535, 610}, {64, 6}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{634, 413}, {260, 83}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{320, 400}, {255, 273}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{634, 413}, {257, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + ETContentView + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{702, 301}, {397, 464}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{738, 613}, {255, 93}} + com.apple.InterfaceBuilder.CocoaPlugin + {{194, 673}, {624, 20}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{396, 410}, {339, 263}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{794, 593}, {129, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{794, 573}, {129, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{534, 510}, {243, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{206, 460}, {270, 213}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{270, 440}, {238, 233}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{448, 650}, {129, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 1311 + + + + + AppController + NSObject + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + bringFocusToControlField: + id + + + copyNoteLink: + id + + + deleteNote: + id + + + editNoteExternally: + id + + + exportNote: + id + + + fieldAction: + id + + + importNotes: + id + + + lockPreview: + id + + + multiTag: + id + + + openFileInEditor: + id + + + printNote: + id + + + printPreview: + id + + + renameNote: + id + + + revealNote: + id + + + savePreview: + id + + + selectPreviewMode: + id + + + setBWColorScheme: + id + + + setLCColorScheme: + id + + + setUserColorScheme: + id + + + sharePreview: + id + + + showHelpDocument: + id + + + showPreferencesWindow: + id + + + switchFullScreen: + id + + + switchViewLayout: + id + + + syncWaitQuit: + id + + + tagNote: + id + + + toggleCollapse: + id + + + toggleNVActivation: + id + + + togglePreview: + id + + + toggleSourceView: + id + + + toggleWordCount: + id + + + + EmptyView + DualField + NSMenuItem + NSMenuItem + ETContentView + NSMenuItem + AugmentedScrollView + NotesTableView + NSMenuItem + NSMenuItem + NSMenuItem + NSMenuItem + NSMenu + NSPanel + NSProgressIndicator + NSScrollView + LinkingEditor + NSMenuItem + NSWindow + WordCountToken + + + + editorStatusView + EmptyView + + + field + DualField + + + fsMenuItem + NSMenuItem + + + lockNoteItem + NSMenuItem + + + mainView + ETContentView + + + multiMarkdownPreview + NSMenuItem + + + notesScrollView + AugmentedScrollView + + + notesTableView + NotesTableView + + + previewToggler + NSMenuItem + + + printPreviewItem + NSMenuItem + + + savePreviewItem + NSMenuItem + + + sparkleUpdateItem + NSMenuItem + + + statBarMenu + NSMenu + + + syncWaitPanel + NSPanel + + + syncWaitSpinner + NSProgressIndicator + + + textScrollView + NSScrollView + + + textView + LinkingEditor + + + textilePreview + NSMenuItem + + + window + NSWindow + + + wordCounter + WordCountToken + + + + IBProjectSource + ./Classes/AppController.h + + + + AugmentedScrollView + NSScrollView + + IBProjectSource + ./Classes/AugmentedScrollView.h + + + + DFView + NSView + + IBProjectSource + ./Classes/DFView.h + + + + DualField + NSTextField + + notesTable + NSTableView + + + notesTable + + notesTable + NSTableView + + + + IBProjectSource + ./Classes/DualField.h + + + + ETContentView + NSView + + IBProjectSource + ./Classes/ETContentView.h + + + + ETScrollView + NSScrollView + + IBProjectSource + ./Classes/ETScrollView.h + + + + EmptyView + NSView + + labelText + NSTextField + + + labelText + + labelText + NSTextField + + + + IBProjectSource + ./Classes/EmptyView.h + + + + FirstResponder + + id + id + id + id + id + id + id + id + + + + bold: + id + + + defaultStyle: + id + + + deleteToBeginningOfLine: + id + + + deleteWordBackward: + id + + + italic: + id + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + strikethroughNV: + id + + + + IBUserSource + + + + + HeaderViewWithMenu + NSTableHeaderView + + IBProjectSource + ./Classes/HeaderViewWithMenu.h + + + + LinkingEditor + NSTextView + + id + id + id + + + + insertLink: + id + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + + NSTextField + NotesTableView + + + + controlField + NSTextField + + + notesTableView + NotesTableView + + + + IBProjectSource + ./Classes/LinkingEditor.h + + + + NSDocument + + id + id + id + id + id + id + + + + printDocument: + id + + + revertDocumentToSaved: + id + + + runPageLayout: + id + + + saveDocument: + id + + + saveDocumentAs: + id + + + saveDocumentTo: + id + + + + IBProjectSource + ./Classes/NSDocument.h + + + + NotesTableView + NSTableView + + id + id + + + + actionHideShowColumn: + id + + + toggleNoteBodyPreviews: + id + + + + controlField + NSTextField + + + controlField + + controlField + NSTextField + + + + IBProjectSource + ./Classes/NotesTableView.h + + + + StatusItemView + NSView + + IBProjectSource + ./Classes/StatusItemView.h + + + + WebView + + reloadFromOrigin: + id + + + reloadFromOrigin: + + reloadFromOrigin: + id + + + + IBProjectSource + ./Classes/WebView.h + + + + WordCountToken + NSTokenField + + IBProjectSource + ./Classes/WordCountToken.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + {9, 8} + {7, 2} + + + diff --git a/it.lproj/MarkupPreview.xib b/it.lproj/MarkupPreview.xib new file mode 100644 index 00000000..c3e44abf --- /dev/null +++ b/it.lproj/MarkupPreview.xib @@ -0,0 +1,1050 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + 1306 + 30 + + + NSTextView + NSScroller + NSButton + NSScrollView + NSButtonCell + NSTextFieldCell + NSTabView + WebView + NSCustomObject + NSTabViewItem + NSWindowTemplate + NSView + NSTextField + NSCustomView + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + + + + PreviewController + + + FirstResponder + + + NSApplication + + + + 268 + + + + 268 + {{4, 61}, {12, 13}} + + + YES + + 67239424 + 134512640 + + + LucidaGrande + 9 + 3614 + + + 138690815 + 6 + + NSImage + TabClose_Front_Rollover + + + NSImage + TabClose_Front_Pressed + + + Gw + 400 + 75 + + + + + 264 + {{0, 47}, {256, 14}} + + YES + + 68288064 + 138544128 + URL in clipboard + + LucidaGrande + 11 + 3100 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {256, 78} + + + NSView + + + + 268 + + + + 268 + {{-3, 43}, {244, 14}} + + YES + + 68288064 + 138544128 + Share note online via Peggd? + + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {238, 65} + + NSView + + + 27 + 2 + {{948, 217}, {445, 528}} + -461896704 + Preview + NSPanel + + {350, 400} + + + 256 + + + + 4114 + {{0, 34}, {445, 494}} + + + + + 1 + + + 256 + + + + 274 + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple URL pasteboard type + Apple Web Archive pasteboard type + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + WebURLsWithTitlesPboardType + public.png + public.url + public.url-name + + {445, 494} + + + + + + previewWebView + + + NO + YES + + + {445, 494} + + + + Preview + + + + + 2 + + + 256 + + + + 274 + + + + 2304 + + + + 2322 + {{0, 61}, {445, 14}} + + + + + + + + + + + + + + 134 + + + + 445 + 1 + + + 11521 + 0 + + + 3 + MQA + + + + 6 + System + selectedTextBackgroundColor + + + + 6 + System + selectedTextColor + + 3 + MAA + + + + + + + 1 + MCAwIDEAA + + + {8, -8} + 13 + + + + + + 6 + {463, 1e+07} + {223, 0} + + + + {445, 494} + + + + + + {4, -5} + 1 + + 4 + + + + -2147483392 + {{429, 1}, {15, 492}} + + + _doScroller: + 1 + 0.85256409645080566 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {445, 494} + + + 528 + + + + + + {445, 494} + + + Source + + + + + + + LucidaGrande + 13 + 1044 + + 6 + YES + + + + + + + 289 + {{300, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + LucidaGrande-Bold + 12 + 16 + + + -1228128001 + 402653357 + + NSImage + HUDIconLock + + + L + 400 + 75 + + + + + 289 + {{404, 7}, {28, 19}} + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 268435693 + + NSImage + HUDIconSave + + + S + 400 + 75 + + + + + 289 + {{370, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 173 + + NSImage + HUDIconShare + + + + 400 + 75 + + + + + 289 + {{334, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 402653357 + + NSImage + HUDIconPrint + + + P + 400 + 75 + + + + + 292 + {{10, 7}, {99, 19}} + + + YES + + -2080244224 + 134217728 + View Source + + LucidaGrande + 12 + 16 + + + -2038021889 + 164 + + + + 400 + 75 + + + + {{7, 11}, {445, 528}} + + + {{0, 0}, {1920, 1058}} + {350, 416} + {1e+13, 1e+13} + PreviewPanel + + + + + + + shareNotification + + + + 138 + + + + shareConfirmation + + + + 169 + + + + urlTextField + + + + 191 + + + + hideShareURL: + + + + 194 + + + + delegate + + + + 241 + + + + window + + + + 242 + + + + tabView + + + + 243 + + + + frameLoadDelegate + + + + 244 + + + + policyDelegate + + + + 245 + + + + resourceLoadDelegate + + + + 246 + + + + UIDelegate + + + + 247 + + + + preview + + + + 248 + + + + sourceView + + + + 249 + + + + makePreviewSticky: + + + + 269 + + + + saveHTML: + + + + 274 + + + + shareAsk: + + + + 275 + + + + printPreview: + + + + 278 + + + + printPreviewButton + + + + 280 + + + + shareButton + + + + 281 + + + + saveButton + + + + 282 + + + + stickyPreviewButton + + + + 283 + + + + switchTabs: + + + + 286 + + + + tabSwitcher + + + + 287 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 133 + + + + + + + Share URL + + + 157 + + + + + + Confirm Share + + + 189 + + + + + + + + 190 + + + + + 192 + + + + + + + + 193 + + + + + 200 + + + + + + + + 201 + + + + + 214 + + + + + + Panel - Preview + + + 215 + + + + + + + + + + + + + 216 + + + + + + + + + 217 + + + + + + + + 218 + + + + + + + + 219 + + + + + + + + 220 + + + + + + + + 225 + + + + + + + + + + 226 + + + + + 227 + + + + + 228 + + + + + 229 + + + + + 261 + + + + + + + + 262 + + + + + 263 + + + + + + + + 264 + + + + + 265 + + + + + + + + 266 + + + + + 267 + + + + + + + + 268 + + + + + 284 + + + + + + + + 285 + + + + + + + + {{471, 675}, {206, 55}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{499, 564}, {238, 65}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCPAAAwjAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDNAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAADAQAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + ToolTip + + ToolTip + + Lock note to preview + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Save Preview + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Share on Peggd + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Print/PDF + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 287 + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + {512, 512} + {512, 512} + {512, 512} + {512, 512} + {12, 13} + {12, 13} + + + diff --git a/it.lproj/NotationPrefsView.nib/designable.nib b/it.lproj/NotationPrefsView.nib/designable.nib new file mode 100644 index 00000000..f6d4da1b --- /dev/null +++ b/it.lproj/NotationPrefsView.nib/designable.nib @@ -0,0 +1,4215 @@ + + + + 1040 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + YES + + + + YES + + NotationPrefsViewController + + + FirstResponder + + + NSApplication + + + + 256 + + YES + + + 274 + {{-12, -10}, {489, 362}} + + + + YES + + sync + + + 256 + + YES + + + 256 + {{177, 237}, {244, 22}} + + + YES + + -1804468671 + 272630784 + + + LucidaGrande + 13 + 1044 + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + 3 + MAA + + + + + + + 256 + {{72, 239}, {100, 17}} + + + YES + + 67239424 + 71303168 + Nome (Login): + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + + + + + + 256 + {{60, 205}, {112, 19}} + + + YES + + 67239424 + 71303168 + Parole d'ordine: + + + + + + + + + 256 + {{177, 205}, {244, 22}} + + + YES + + -1804468671 + 272630784 + + + + YES + + + + + + + 256 + {{258, 56}, {193, 32}} + + + YES + + 67239424 + 134217728 + Maggiori informazioni… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 256 + {{24, 132}, {421, 5}} + + + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxAA + + + 3 + 2 + 0 + NO + + + + 256 + {{21, 92}, {427, 34}} + + + YES + + 67239424 + 272629760 + Le note saranno sincronizzate con l'applicazione per iPhone e con il sito web di Simplenote. + + + + + + + + + -2147483380 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{429, 240}, {16, 16}} + + + YES + + 130560 + 33554432 + + NSImage + statusError + + 0 + 2 + 0 + NO + + YES + + + + 268 + {{26, 183}, {398, 14}} + + + YES + + 68288064 + 71435264 + + + LucidaGrande + 11 + 3100 + + + + + 6 + System + disabledControlTextColor + + 3 + MC4zMzMzMzMzMzMzAA + + + + + + + 268 + {{356, 151}, {92, 26}} + + + YES + + -2076049856 + 2048 + + + 109199615 + 1 + + + 400 + 75 + + + minuto + + 1048576 + 2147483647 + 1 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + _popUpItemAction: + 1 + + + YES + + OtherViews + + YES + + + + 5 minuti + + 1048576 + 2147483647 + + + _popUpItemAction: + 5 + + + + + 10 minuti + + 1048576 + 2147483647 + + + _popUpItemAction: + 10 + + + + + 30 minuti + + 1048576 + 2147483647 + + + _popUpItemAction: + 30 + + + + + 1 + YES + YES + 2 + + + + + 268 + {{21, 157}, {336, 17}} + + + YES + + 67239424 + 71303168 + Controlla modifiche ai documenti sincronizzati ogni: + + + + + + + + + 268 + {{27, 279}, {218, 18}} + + + YES + + 67239424 + 0 + Sincronizza con Simplenote: + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 268 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{29, 17}, {18, 18}} + + + YES + + 130560 + 33554432 + + NSImage + TinyAlert + + 0 + 2 + 0 + NO + + YES + + + + 268 + {{52, 19}, {383, 14}} + + + YES + + 67239424 + 272760832 + Attenzione: Il contenuto delle note sarà inviato come [semplice testo]. + + + + + + + + {{10, 33}, {469, 316}} + + + + Sincronizzazione + + + + + storage + + + 256 + + YES + + + 256 + + YES + + + 2304 + + YES + + + 256 + {77, 74} + + + YES + + + 256 + {77, 17} + + + + + + + 256 + {{78, 0}, {12, 17}} + + + + + YES + + 73.755369999999999 + 60.147950000000002 + 77 + + 75628096 + 2048 + Estensione + + + 3 + MC4zMzMzMzI5OQA + + + 6 + System + headerTextColor + + + + + 337772096 + 2048 + + + + 6 + System + controlBackgroundColor + + + + + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 14 + 306184192 + + + 4 + 15 + 0 + YES + 0 + + + {{1, 17}, {77, 74}} + + + + + 4 + + + + 256 + {{78, 17}, {11, 74}} + + + 256 + + _doScroller: + 0.46250000000000002 + + + + -2147483392 + {{-100, -100}, {128, 15}} + + 257 + + _doScroller: + 0.99047620000000003 + + + + 2304 + + YES + + + {{1, 0}, {77, 17}} + + + + + 4 + + + + {{125, 73}, {90, 92}} + + + 18 + + + + + + QSAAAEEgAABBgAAAQYAAAA + + + + 256 + + YES + + + 2304 + + YES + + + 256 + {90, 74} + + + YES + + + 256 + {90, 17} + + + + + + + 256 + {{78, 0}, {12, 17}} + + + + + YES + + 87.126949999999994 + 55.62012 + 87.126949999999994 + + 75628096 + 2048 + Tipo documento + + + 3 + MC4zMzMzMzI5OQA + + + + + 337772096 + 2048 + + + + + + YES + + + + 3 + 2 + + + 14 + 308281344 + + + 4 + 15 + 0 + YES + 0 + + + {{1, 17}, {77, 74}} + + + + + 4 + + + + 256 + {{78, 17}, {11, 74}} + + + 256 + + _doScroller: + 0.46250000000000002 + + + + -2147483392 + {{-100, -100}, {128, 15}} + + YES + 257 + + _doScroller: + 0.99047620000000003 + + + + 2304 + + YES + + + {{1, 0}, {77, 17}} + + + + + 4 + + + + {{251, 73}, {90, 92}} + + + 146 + + + + + + QSAAAEEgAABBgAAAQYAAAA + + + + 256 + {{62, 173}, {342, 22}} + + + YES + + 67239424 + 4194304 + Riconosci documenti separati con i seguenti attributi: + + + + + + + + + 256 + {{51, 209}, {364, 28}} + + + YES + + 67239424 + 272629760 + * L'uso di documenti separati consente la ricerca con Spotlight, ma richiede più spazio su disco. + + + + + + + + + 292 + {{125, 48}, {23, 22}} + + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + NSImage + Add + + + NSImage + Add_Pressed + + + + + + 200 + 25 + + + + + 292 + {{147, 48}, {23, 22}} + + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + NSImage + Remove + + + NSImage + Remove_Pressed + + + + + + 200 + 25 + + + + + 292 + {{251, 48}, {23, 22}} + + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + + + + + + 200 + 25 + + + + + 292 + {{273, 48}, {23, 22}} + + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + + + + + + 200 + 25 + + + + + 256 + {{51, 280}, {364, 17}} + + + YES + + 67239424 + 4194304 + Memorizza e leggi le note su disco come: + + + + + + + + + 256 + {{57, 15}, {351, 18}} + + + YES + + 604110336 + 0 + Conferma rimozione delle note dal Finder + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 256 + {{51, 248}, {364, 26}} + + + 4 + YES + + -2076049856 + 2048 + + + 109199615 + 1 + + + + + + 400 + 75 + + + Singolo archivio (può essere protetto) + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + + OtherViews + + + YES + + + + YES + YES + + + 1048576 + 2147483647 + + + _popUpItemAction: + -1 + + + + + Documenti di solo testo * + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + Documenti RTF (Rich Text Format) * + + 1048576 + 2147483647 + + + _popUpItemAction: + 2 + + + + + Documenti in formato HTML * + + 1048576 + 2147483647 + + + _popUpItemAction: + 3 + + + + + 3 + YES + YES + 1 + + + + + 292 + {{169, 48}, {23, 22}} + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + NSImage + MakeDefault + + + NSImage + MakeDefault_Pressed + + + + + + 200 + 25 + + + + {{10, 33}, {469, 316}} + + + Dispositivo + + + + + security + + + 256 + + YES + + + 256 + {{49, 280}, {93, 17}} + + + YES + + 67239424 + 71303168 + Protezione: + + + + + + + + + 256 + {{147, 179}, {231, 38}} + + + YES + 2 + 1 + + YES + + -2080244224 + 0 + Memorizza nel Portachiavi + + + 1211912703 + 0 + + NSImage + NSRadioButton + + + NSRadioButton + + + + + + 200 + 25 + + + 67239424 + 0 + Chiedi ogni volta + + + 1 + 1211912703 + 0 + + + + + 200 + 25 + + + {231, 18} + {4, 2} + 1143472128 + NSActionCell + + 67239424 + 0 + Radio + + 1211912703 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw +IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ +29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 +dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA +AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG +AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ +0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ +7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ +5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ +3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD +AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns +AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ +6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ +/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ +///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl +YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA +AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD +AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu +AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB +AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES +AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS +AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAksAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAJLGFw +cGwCAAAAbW50clJHQiBYWVogB9UAAwALABYABAAmYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAPbWAAEAAAAA0y1iZXJnGIxw8W4jzRphRSyje/thewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAMZGVzYwAAARQAAABDY3BydAAAAVgAAAAsclhZWgAAAYQAAAAUZ1hZWgAAAZgAAAAUYlhZWgAA +AawAAAAUd3RwdAAAAcAAAAAUYmtwdAAAAdQAAAAUclRSQwAAAegAAAAOZ1RSQwAAAfgAAAAOYlRSQwAA +AggAAAAOdmNndAAAAhgAAAMSYmVyaAAABSwAAAQAZGVzYwAAAAAAAAAWRGVsbDIwMDVGUFdDYWxpYnJh +dGVkAAAAAAAAAAAAAAAWRGVsbDIwMDVGUFdDYWxpYnJhdGVkAAB0ZXh0AAAAAENvcHlyaWdodCAxOTk4 +LTIwMDEgYmVyZ2Rlc2lnbiBpbmMuAFhZWiAAAAAAAABvoAAAOPUAAAORWFlaIAAAAAAAAGKXAAC3hwAA +GNpYWVogAAAAAAAAJJ8AAA+EAAC2w1hZWiAAAAAAAADzUAABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAA +AABjdXJ2AAAAAAAAAAEBzAAAY3VydgAAAAAAAAABAcwAAGN1cnYAAAAAAAAAAQHMAAB2Y2d0AAAAAAAA +AAAAAwEAAAEABwcICQoLDQ4QERMVFxkaHB4fISIkJSYoKSorLC0vMDEyMzQ1Njc4OTs8PT4/QEFCQ0VG +R0hJSktMTU9QUVJTVFVWV1hZW1xdXl9gYWJjZGVnaGlqa2xtbm9wcnN0dXZ3eHl6fH1+f4CBgoOEhYaH +iImKi4yNjo+QkZKTk5SVlpeYmZmam5ydnp6foKGio6Okpaamp6ipqqqrrK2trq+wsLGys7S0tba3t7i5 +urq7vL29vr/AwcHCw8TFxcbHyMjJysvMzM3Oz9DR0dLT1NXV1tfY2dra29zd3t/f4OHi4+Tk5ebn6Onq +6uvs7e7v8PHx8vP09fb3+Pn6+vv8/f7/AAUFBQUGBgcICQoLDA0ODxASExQWFxkaHB4fISIkJicpKywu +LzEyNDU3ODo7PT4/QUJDRUZHSElLTE1OT1BRUlNUVVZXWFlaW1xdXl9gYWJjZGVmZ2hpa2xtbm9wcXJz +dXZ3eHl7fH1+f4GCg4SFhoeIiYqLjI2Njo+QkZGSk5OUlZaWl5iZmpqbnJ2enp+goaKio6SlpqanqKmq +q6usra6vr7CxsrOztLW2t7e4ubq6u7y9vb6/wMDBwsPDxMXGx8fIycrLy8zNzs/P0NHS09TU1dbX2NnZ +2tvc3d7f4OHh4uPk5ebn6Onq6+zs7e7v8PHy8/T19vf4+fr7/P3+/wAGBwcICQoLDQ4QERMVFhgaGx0f +ICIjJCYnKCorLC0uMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSUpLTE1OT1BRUlRVVldYWVpbXV5fYGFi +Y2RmZ2hpamtsbW5wcXJzdHV2d3h5ent8fX5/gIGCg4SFhoeIiYqLjI2Oj5CRkpOUlZaWl5iZmpucnZ2e +n6ChoqKjpKWlpqeoqKmqqqusra2ur6+wsbKys7S0tba3uLi5uru8vb6/v8DBwsPExcbHyMnKy8zNzs/Q +0dLT1NXW19fY2drb3N3e3t/g4eLj5OTl5ufo6Onq6+zt7e7v8PHx8vP09fX29/j5+fr7/P39/v8AAGJl +cmgAAAAAY2hhbgAAAAQAAAADb3JpZwAAAAT/////ZHN0cAAAAAQAAAACY3RybAAAAAwAAAABAAAAAAAA +AGRyZXNvAAAACAAABpAAAAQaZnJlcQAAAAQAAAA8Yml0ZAAAAAgAAAABAAAAIGRhdGUAAAAkAAAAJgAA +AAQAAAAWAAAACwAAAAIAAABpAAAABQAAAEUAAAAAZ2FtYQAAAAQ/5mZmcmltZAAAA1QAAAEAAAAACjzn +H0w/gAAAAAAAAAAAAAcAAAAGAAAABQAAAAQAAAADAAAACQAAAAIAAAAIAAAAAQAAAAA8gICBPQCAgT2A +gIE+AICBPoCAgT7AwME/AAAAP0BAQD+AAAAAAAAAPg6WYT5E6Aw+io71PsRx8D8Lq+w/JalpPzmllT9e +HCM/gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQCAgT5FCM0AAAAAAAAAAD2AgIE+ipQHAAAAAAAA +AAA+AICBPsRyHAAAAAAAAAAAPoCAgT8Lq/wAAAAAAAAAAD8AgIE/OgygAAAAAAAAAAA/QMDBP15iJAAA +AAAAAAAAP4AAAD+AAAA/AICBPzn01T+AAAA/gAAAP4AAAD+AAAA/gAAAP4AAAAAAAAk8nlyOP4AAAAAA +AAAAAAAFAAAABAAAAAcAAAADAAAABgAAAAIAAAAIAAAAAQAAAAA9gICBPgCAgT4wsLE+gICBPpCQkT8A +AAA/EBAQP4AAAAAAAAA+jFZwPsKkaD7lZjo/C2z0PxGgTT84CrM/QRCVP4AAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAD4AgIE+wqR9AAAAAAAAAAA+gICBPwttCz2AgIE+jGjmPpCQkT8RmaQAAAAAAAAAAD8A +gIE/OHMcPYCAgT6MZiM/AICBPzhVzAAAAAAAAAAAP4AAAD+AAAA+AICBPsKjVD+AAAA/gAAAP4AAAD+A +AAA/gAAAP4AAAAAAAAo80bjYP4AAAAAAAAAAAAAJAAAACAAAAAYAAAAFAAAAAwAAAAcAAAACAAAABAAA +AAEAAAAAPICAgT0AgIE9gICBPgCAgT6AgIE+wMDBPwAAAD8gICA/gAAAAAAAAD4KEPo+Qk7bPoYqQj7B +E58/CUbSPyQEBT82+Mc/TUERP4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AgIE+QkepAAAAAAAA +AAA9gICBPoYsGQAAAAAAAAAAPgCAgT7BE7wAAAAAAAAAAD6AgIE/CUbrAAAAAAAAAAA/AICBPzdiEz4A +gIE+wROVPyCgoT9NlUsAAAAAAAAAAD+AAAA/gAAAPoCAgT8JRt8/gAAAP4AAAD+AAAA/gAAAP4AAAD+A +AAA + + + + + + 3 + MCAwAA + + + + 400 + 75 + + + + + + + + + 256 + {{141, 269}, {275, 32}} + + + YES + + 67239424 + 134217728 + Attiva protezione… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 256 + {{141, 229}, {106, 32}} + + + YES + + 604110336 + 134217728 + Cambia… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 256 + {{31, 239}, {111, 17}} + + + YES + + 67239424 + 71303168 + Parola d'ordine: + + + + + + + + + -2147483392 + {{43, 6}, {174, 51}} + + + YES + + 67239424 + 71303168 + Bit nella chiave: + + + + + + + + + -2147483392 + {{201, 8}, {19, 27}} + + + YES + + 537787936 + 0 + + 256 + 64 + 2048 + 64 + YES + + + + + -2147483392 + {{134, 11}, {67, 22}} + + + YES + + -1536033215 + 272630784 + 256 + + + YES + + + + + + + 256 + {{43, 145}, {99, 17}} + + + YES + + 67239424 + 71303168 + Chiave: + + + + + + + + + 256 + {{145, 144}, {235, 18}} + + + YES + + 67239424 + 0 + Inserimento sicuro del testo + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 256 + {{144, 124}, {269, 14}} + + + YES + + 67239424 + 272629760 + Può bloccare i programmi di keystroke logging. + + + + + + + + + -2147483392 + {{116, 57}, {195, 32}} + + YES + + 604110336 + 134217728 + Cancella dal Portachiavi + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + {{10, 33}, {469, 316}} + + + Sicurezza + + + + + + + 0 + YES + YES + + YES + + + + + {464, 346} + + + NSView + NSResponder + + + 3 + 2 + {{695, 282}, {360, 240}} + 1886912512 + Web Hosting Options + + NSPanel + + + View + + {1.79769e+308, 1.79769e+308} + {213, 107} + + + 256 + + YES + + + 256 + {{17, 20}, {326, 200}} + + YES + + 67239424 + 272629760 + W3hdIFJlbmRyZSBwdWJsaXF1ZXMgbGVzIG5vdGVzIGF5YW50IGNlcyDDqXRpcXVldHRlcyA6CgpbeF0g +UmVuZHJlIHRvdXRlcyBsZXMgbm90ZXMgcHVibGlxdWVzLCBzYXVmIGNlbGxlcyBheWFudCBjZXMgw6l0 +aXF1ZXR0ZXMgOgoKW3hdIEV4aWdlciB1biBtb3QgZGUgcGFzc2UgcG91ciB2b2lyIGxlcyBub3RlcyBz +dXIgbGUgV2ViLgoKW3hdIFV0aWxpc2VyIGNlIGdhYmFyaXQgSFRNTCA6A + + + + + + + + {360, 240} + + {{0, 0}, {1920, 1178}} + {213, 129} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + nextKeyView + + + + 51 + + + + nextKeyView + + + + 54 + + + + allowedExtensionsTable + + + + 58 + + + + allowedTypesTable + + + + 59 + + + + newExtensionButton + + + + 60 + + + + removeExtensionButton + + + + 61 + + + + newTypeButton + + + + 62 + + + + removeTypeButton + + + + 63 + + + + changePasswordButton + + + + 64 + + + + passwordSettingsMatrix + + + + 65 + + + + view + + + + 71 + + + + enableEncryptionButton + + + + 73 + + + + addedExtension: + + + + 75 + + + + removedExtension: + + + + 76 + + + + addedType: + + + + 77 + + + + removedType: + + + + 78 + + + + toggledEncryption: + + + + 79 + + + + changePassphrase: + + + + 80 + + + + changedKeychainSettings: + + + + 81 + + + + changedFileDeletionWarningSettings: + + + + 95 + + + + confirmFileDeletionButton + + + + 97 + + + + storageFormatPopupButton + + + + 104 + + + + changedFileStorageFormat: + + + + 105 + + + + storageFormatPopupButton + + + + 106 + + + + storageFormatPopupButton + + + + 107 + + + + keyLengthField + + + + 114 + + + + keyLengthStepper + + + + 115 + + + + changedKeyLength: + + + + 116 + + + + webOptionsWindow + + + + 123 + + + + secureTextEntryButton + + + + 131 + + + + changedSecureTextEntry: + + + + 132 + + + + removeFromKeychainButton + + + + 134 + + + + removeFromKeychain: + + + + 135 + + + + fileAttributesHelpText + + + + 138 + + + + verifyStatusImageView + + + + 181 + + + + verifyStatusField + + + + 186 + + + + visitSimplenoteSite: + + + + 187 + + + + syncPasswordField + + + + 203 + + + + syncAccountField + + + + 204 + + + + syncingFrequency + + + + 205 + + + + syncFrequencyChange: + + + + 206 + + + + enabledSyncButton + + + + 207 + + + + toggledSyncing: + + + + 208 + + + + syncEncAlertField + + + + 261 + + + + syncEncAlertView + + + + 262 + + + + makeDefaultExtensionButton + + + + 265 + + + + makeDefaultExtension: + + + + 266 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 5 + + + YES + + + + View + + + 6 + + + YES + + + + + + + + 7 + + + YES + + + + + + 8 + + + YES + + + + + + + + + + + + + + + + + 9 + + + YES + + + + + + + + + 10 + + + YES + + + + + + 11 + + + YES + + + + + + 12 + + + YES + + + + + + + + + 13 + + + YES + + + + + + 14 + + + YES + + + + + + 15 + + + YES + + + + + + 16 + + + YES + + + + + + 18 + + + YES + + + + + + 19 + + + YES + + + + + + 20 + + + YES + + + + + + 21 + + + YES + + + + + + 92 + + + YES + + + + + + 93 + + + YES + + + + + + 98 + + + YES + + + + + + 22 + + + YES + + + + + + 23 + + + YES + + + + + + + + + + + + + + + + + 24 + + + YES + + + + + + + + 25 + + + + + 26 + + + + + 29 + + + YES + + + + + + 30 + + + YES + + + + + + 32 + + + YES + + + + + + 34 + + + YES + + + + + + 110 + + + YES + + + + + + 111 + + + YES + + + + + + 112 + + + YES + + + + + + 128 + + + YES + + + + + + 129 + + + YES + + + + + + 130 + + + YES + + + + + + 133 + + + YES + + + + + + 36 + + + YES + + + + + + 37 + + + YES + + + + + + + + + + + + + + + + + + + 39 + + + YES + + + + + + 40 + + + YES + + + + + + 41 + + + YES + + + + + + 42 + + + YES + + + + + + 43 + + + YES + + + + + + 108 + + + YES + + + 256 + {{2, 2}, {125, 1}} + + + + + + + 109 + + + + + 113 + + + YES + + + + + + 179 + + + YES + + + + + + 184 + + + YES + + + + + + 188 + + + YES + + + + + + 194 + + + YES + + + + + + 199 + + + YES + + + + + + 121 + + + YES + + + + web hosting options + + + 122 + + + YES + + + + + + 125 + + + YES + + + + + + 216 + + + + + 217 + + + + + 218 + + + + + 219 + + + + + 220 + + + + + 221 + + + + + 222 + + + + + 223 + + + + + 224 + + + YES + + + + + + 225 + + + + + 226 + + + + + 227 + + + + + 228 + + + + + 229 + + + + + 230 + + + + + 231 + + + + + 232 + + + + + 233 + + + + + 234 + + + + + 235 + + + + + 236 + + + + + 237 + + + + + 238 + + + + + 239 + + + + + 240 + + + + + 241 + + + + + 242 + + + + + 243 + + + + + 244 + + + YES + + + + + + 245 + + + + + 246 + + + + + 247 + + + + + 248 + + + + + 249 + + + + + 250 + + + + + 99 + + + YES + + + + + + + + + + 127 + + + + + 103 + + + + + 102 + + + + + 101 + + + + + 100 + + + + + 190 + + + YES + + + + + + + + + 196 + + + + + 193 + + + + + 192 + + + + + 191 + + + + + 251 + + + + + 252 + + + + + 253 + + + + + 254 + + + + + 255 + + + + + 256 + + + + + 257 + + + YES + + + + + + 258 + + + + + 259 + + + YES + + + + + + 260 + + + + + 263 + + + YES + + + + + + 264 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 10.CustomClassName + 10.IBPluginDependency + 10.ImportedFromIB2 + 100.IBPluginDependency + 100.ImportedFromIB2 + 101.IBPluginDependency + 101.ImportedFromIB2 + 102.IBPluginDependency + 102.ImportedFromIB2 + 103.IBPluginDependency + 103.ImportedFromIB2 + 108.IBPluginDependency + 108.ImportedFromIB2 + 109.IBPluginDependency + 109.ImportedFromIB2 + 11.IBPluginDependency + 11.ImportedFromIB2 + 110.IBPluginDependency + 110.ImportedFromIB2 + 111.IBPluginDependency + 111.ImportedFromIB2 + 112.IBPluginDependency + 112.ImportedFromIB2 + 113.IBPluginDependency + 113.ImportedFromIB2 + 12.IBPluginDependency + 12.ImportedFromIB2 + 121.IBEditorWindowLastContentRect + 121.IBPluginDependency + 121.IBWindowTemplateEditedContentRect + 121.ImportedFromIB2 + 121.windowTemplate.hasMinSize + 121.windowTemplate.minSize + 122.IBPluginDependency + 122.ImportedFromIB2 + 125.IBPluginDependency + 125.ImportedFromIB2 + 127.IBPluginDependency + 127.ImportedFromIB2 + 128.IBPluginDependency + 128.ImportedFromIB2 + 129.IBPluginDependency + 129.ImportedFromIB2 + 13.CustomClassName + 13.IBPluginDependency + 13.ImportedFromIB2 + 130.IBPluginDependency + 130.ImportedFromIB2 + 133.IBPluginDependency + 133.ImportedFromIB2 + 14.IBPluginDependency + 14.ImportedFromIB2 + 15.IBPluginDependency + 15.ImportedFromIB2 + 16.IBAttributePlaceholdersKey + 16.IBPluginDependency + 16.ImportedFromIB2 + 179.IBPluginDependency + 179.ImportedFromIB2 + 18.IBPluginDependency + 18.ImportedFromIB2 + 184.IBPluginDependency + 184.ImportedFromIB2 + 188.IBPluginDependency + 188.ImportedFromIB2 + 19.IBAttributePlaceholdersKey + 19.IBPluginDependency + 19.ImportedFromIB2 + 190.IBEditorWindowLastContentRect + 190.IBPluginDependency + 190.ImportedFromIB2 + 191.IBPluginDependency + 191.ImportedFromIB2 + 192.IBPluginDependency + 192.ImportedFromIB2 + 193.IBPluginDependency + 193.ImportedFromIB2 + 194.IBPluginDependency + 194.ImportedFromIB2 + 196.IBPluginDependency + 196.ImportedFromIB2 + 199.IBPluginDependency + 199.ImportedFromIB2 + 20.IBAttributePlaceholdersKey + 20.IBPluginDependency + 20.ImportedFromIB2 + 21.IBAttributePlaceholdersKey + 21.IBPluginDependency + 21.ImportedFromIB2 + 216.IBPluginDependency + 217.IBPluginDependency + 218.IBPluginDependency + 219.IBPluginDependency + 22.IBPluginDependency + 22.ImportedFromIB2 + 220.IBPluginDependency + 221.IBPluginDependency + 222.IBPluginDependency + 223.IBPluginDependency + 224.IBPluginDependency + 225.IBPluginDependency + 226.IBPluginDependency + 227.IBPluginDependency + 228.IBPluginDependency + 229.IBPluginDependency + 23.IBPluginDependency + 23.ImportedFromIB2 + 230.IBPluginDependency + 231.IBPluginDependency + 232.IBPluginDependency + 233.IBPluginDependency + 234.IBPluginDependency + 235.IBPluginDependency + 236.IBPluginDependency + 237.IBPluginDependency + 238.IBPluginDependency + 239.IBPluginDependency + 24.IBPluginDependency + 24.ImportedFromIB2 + 240.IBPluginDependency + 241.IBPluginDependency + 242.IBPluginDependency + 243.IBPluginDependency + 244.IBPluginDependency + 245.IBPluginDependency + 246.IBPluginDependency + 247.IBPluginDependency + 248.IBPluginDependency + 249.IBPluginDependency + 249.IBShouldRemoveOnLegacySave + 25.IBPluginDependency + 25.ImportedFromIB2 + 250.IBPluginDependency + 250.IBShouldRemoveOnLegacySave + 251.IBPluginDependency + 251.IBShouldRemoveOnLegacySave + 252.IBPluginDependency + 252.IBShouldRemoveOnLegacySave + 253.IBPluginDependency + 253.IBShouldRemoveOnLegacySave + 254.IBPluginDependency + 254.IBShouldRemoveOnLegacySave + 255.IBPluginDependency + 255.IBShouldRemoveOnLegacySave + 256.IBPluginDependency + 256.IBShouldRemoveOnLegacySave + 257.IBPluginDependency + 258.IBPluginDependency + 259.IBPluginDependency + 26.IBPluginDependency + 26.ImportedFromIB2 + 260.IBPluginDependency + 263.IBAttributePlaceholdersKey + 263.IBPluginDependency + 263.ImportedFromIB2 + 264.IBPluginDependency + 29.IBPluginDependency + 29.ImportedFromIB2 + 30.IBPluginDependency + 30.ImportedFromIB2 + 32.IBPluginDependency + 32.ImportedFromIB2 + 34.IBPluginDependency + 34.ImportedFromIB2 + 36.IBPluginDependency + 36.ImportedFromIB2 + 37.IBPluginDependency + 37.ImportedFromIB2 + 39.IBAttributePlaceholdersKey + 39.IBPluginDependency + 39.ImportedFromIB2 + 40.IBPluginDependency + 40.ImportedFromIB2 + 41.IBPluginDependency + 41.ImportedFromIB2 + 42.IBPluginDependency + 42.ImportedFromIB2 + 43.CustomClassName + 43.IBPluginDependency + 43.ImportedFromIB2 + 5.IBEditorWindowLastContentRect + 5.IBPluginDependency + 5.ImportedFromIB2 + 6.IBPluginDependency + 6.ImportedFromIB2 + 7.IBPluginDependency + 7.ImportedFromIB2 + 8.IBPluginDependency + 8.ImportedFromIB2 + 9.IBPluginDependency + 9.ImportedFromIB2 + 92.IBPluginDependency + 92.ImportedFromIB2 + 93.IBPluginDependency + 93.ImportedFromIB2 + 98.IBPluginDependency + 98.ImportedFromIB2 + 99.IBEditorWindowLastContentRect + 99.IBPluginDependency + 99.ImportedFromIB2 + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + FileKindListView + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{407, 494}, {360, 240}} + com.apple.InterfaceBuilder.CocoaPlugin + {{407, 494}, {360, 240}} + + + {213, 107} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + FileKindListView + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Aggiungi nuovo tipo di documento + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Rimuovi estensione nome documento + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{630, 408}, {132, 83}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Aggiungi nuova estensione nome documento + + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Rimuovi tipo di documento + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Usa come estensione nome documento per le nuove note + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Inscrivez-vous sur notational.net + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + {{221, 311}, {464, 346}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{428, 551}, {413, 93}} + com.apple.InterfaceBuilder.CocoaPlugin + + + + + YES + + + YES + + + + + YES + + + YES + + + + 266 + + + + YES + + FileKindListView + NSTableView + + storageFormatPopupButton + NSPopUpButton + + + IBProjectSource + NotationPrefsViewController.h + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + FastListDataSource.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + NSTableHeaderView + + IBProjectSource + HeaderViewWIthMenu.h + + + + NSTableView + + IBProjectSource + NotesTableView.h + + + + NotationPrefsViewController + NSObject + + YES + + YES + addedExtension: + addedType: + changePassphrase: + changedFileDeletionWarningSettings: + changedFileStorageFormat: + changedKeyLength: + changedKeychainSettings: + changedSecureTextEntry: + makeDefaultExtension: + removeFromKeychain: + removedExtension: + removedType: + syncFrequencyChange: + toggledEncryption: + toggledSyncing: + visitSimplenoteSite: + + + YES + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + YES + + YES + allowedExtensionsTable + allowedTypesTable + changePasswordButton + confirmFileDeletionButton + enableEncryptionButton + enabledSyncButton + fileAttributesHelpText + keyLengthField + keyLengthStepper + makeDefaultExtensionButton + newExtensionButton + newTypeButton + passwordSettingsMatrix + removeExtensionButton + removeFromKeychainButton + removeTypeButton + secureTextEntryButton + storageFormatPopupButton + syncAccountField + syncEncAlertField + syncEncAlertView + syncPasswordField + syncingFrequency + verifyStatusField + verifyStatusImageView + view + webOptionsWindow + + + YES + NSTableView + NSTableView + NSButton + NSButton + NSButton + NSButton + NSTextField + NSTextField + NSStepper + NSButton + NSButton + NSButton + NSMatrix + NSButton + NSButton + NSButton + NSButton + NSPopUpButton + NSTextField + NSTextField + NSImageView + NSTextField + NSPopUpButton + NSTextField + NSImageView + NSView + NSWindow + + + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + + + RBSplitView + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSBox + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSBox.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSImageCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSImageCell.h + + + + NSImageView + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSImageView.h + + + + NSMatrix + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSMatrix.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSMenuItem + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSMenuItemCell + NSButtonCell + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItemCell.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSPanel + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSPanel.h + + + + NSPopUpButton + NSButton + + IBFrameworkSource + AppKit.framework/Headers/NSPopUpButton.h + + + + NSPopUpButtonCell + NSMenuItemCell + + IBFrameworkSource + AppKit.framework/Headers/NSPopUpButtonCell.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSScrollView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSScrollView.h + + + + NSScroller + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSScroller.h + + + + NSSecureTextField + NSTextField + + IBFrameworkSource + AppKit.framework/Headers/NSSecureTextField.h + + + + NSStepper + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSStepper.h + + + + NSStepperCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSStepperCell.h + + + + NSTabView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSTabView.h + + + + NSTabViewItem + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTabViewItem.h + + + + NSTableColumn + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableColumn.h + + + + NSTableHeaderView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSTableHeaderView.h + + + + NSTableView + NSControl + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + diff --git a/it.lproj/NotationPrefsView.nib/keyedobjects.nib b/it.lproj/NotationPrefsView.nib/keyedobjects.nib new file mode 100644 index 00000000..595c0b57 Binary files /dev/null and b/it.lproj/NotationPrefsView.nib/keyedobjects.nib differ diff --git a/it.lproj/PTKeyComboPanel.nib/designable.nib b/it.lproj/PTKeyComboPanel.nib/designable.nib new file mode 100644 index 00000000..b1e443f7 --- /dev/null +++ b/it.lproj/PTKeyComboPanel.nib/designable.nib @@ -0,0 +1,1371 @@ + + + + 1050 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + YES + + + + YES + + PTKeyComboPanel + + + FirstResponder + + + NSApplication + + + 1 + 2 + {{290, 345}, {394, 165}} + 1886912512 + + NSWindow + + View + + {1.79769e+308, 1.79769e+308} + {213, 107} + + + 256 + + YES + + + 256 + {{171, 62}, {100, 22}} + + YES + + -2072904127 + 138413056 + (Aucune) + + LucidaGrande + 13 + 1044 + + nessuno + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + 3 + MAA + + + + + + + 256 + {{112, 12}, {94, 32}} + + YES + + 67239424 + 137887744 + Nessuna + + + -2038284033 + 1 + + Helvetica + 13 + 16 + + + + + + 200 + 25 + + + + + 256 + {{206, 12}, {90, 32}} + + YES + + 67239424 + 137887744 + Annulla + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 256 + {{69, 90}, {308, 55}} + + YES + + 67239424 + 4194304 + Digita una combinazione di tasti per portare Notational Velocity in primo piano. + + LucidaGrande-Bold + 13 + 2072 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + + + + + + 256 + {{17, 64}, {149, 17}} + + YES + + 67239424 + 71303168 + Combinazione di tasti: + + + + + + + + + 256 + {{296, 12}, {84, 32}} + + YES + + 67239424 + 134217728 + OK + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 256 + {{44, 60}, {22, 20}} + + YES + + 67239424 + 0 + + + + 1211945471 + 2 + + NSImage + NSRadioButton + + + NSRadioButton + + + + + + 200 + 25 + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{20, 113}, {32, 32}} + + YES + + 130560 + 33554432 + + NSImage + PTKeyboardIcon + + 0 + 2 + 0 + NO + + YES + + + {394, 165} + + + {{0, 0}, {1280, 778}} + {213, 129} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + ok: + + + + 31 + + + + clear: + + + + 34 + + + + window + + + + 41 + + + + mKeyBcaster + + + + 45 + + + + mComboField + + + + 46 + + + + mTitleField + + + + 47 + + + + cancel: + + + + 51 + + + + initialFirstResponder + + + + 52 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 19 + + + YES + + + + Panel + + + 20 + + + YES + + + + + + + + + + + + + 22 + + + YES + + + + + + 23 + + + YES + + + + + + 24 + + + YES + + + + + + 26 + + + YES + + + + + + 27 + + + YES + + + + + + 28 + + + YES + + + + + + 33 + + + YES + + + + + + 48 + + + YES + + + + + + 54 + + + + + 55 + + + + + 56 + + + + + 57 + + + + + 58 + + + + + 59 + + + + + 60 + + + + + 61 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 19.IBEditorWindowLastContentRect + 19.IBPluginDependency + 19.IBWindowTemplateEditedContentRect + 19.ImportedFromIB2 + 19.windowTemplate.hasMinSize + 19.windowTemplate.minSize + 20.IBPluginDependency + 20.ImportedFromIB2 + 22.IBPluginDependency + 22.ImportedFromIB2 + 23.IBPluginDependency + 23.ImportedFromIB2 + 24.IBPluginDependency + 24.ImportedFromIB2 + 26.IBPluginDependency + 26.ImportedFromIB2 + 27.IBPluginDependency + 27.ImportedFromIB2 + 28.IBPluginDependency + 28.ImportedFromIB2 + 33.CustomClassName + 33.IBAttributePlaceholdersKey + 33.IBPluginDependency + 33.ImportedFromIB2 + 48.IBPluginDependency + 48.ImportedFromIB2 + 54.IBPluginDependency + 55.IBPluginDependency + 56.IBPluginDependency + 57.IBPluginDependency + 58.IBPluginDependency + 59.IBPluginDependency + 60.IBPluginDependency + 61.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{291, 580}, {394, 165}} + com.apple.InterfaceBuilder.CocoaPlugin + {{291, 580}, {394, 165}} + + + {213, 107} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + PTKeyBroadcaster + + ToolTip + + ToolTip + + CkJhc2VkIG9uIENvY29hSG90S2V5TGliCmh0dHA6Ly93d3cucm9ndWVhbW9lYmEuY29tLwo + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 61 + + + + YES + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + FastListDataSource.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + PTKeyBroadcaster + NSButton + + IBProjectSource + PTHotKeys/PTKeyBroadcaster.h + + + + PTKeyComboPanel + NSWindowController + + YES + + YES + cancel: + clear: + ok: + + + YES + id + id + id + + + + YES + + YES + currentModalDelegate + mComboField + mKeyBcaster + mTitleField + + + YES + id + NSTextField + PTKeyBroadcaster + NSTextField + + + + IBProjectSource + PTHotKeys/PTKeyComboPanel.h + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + + + RBSplitView + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSImageCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSImageCell.h + + + + NSImageView + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSImageView.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + NSWindowController + NSResponder + + showWindow: + id + + + IBFrameworkSource + AppKit.framework/Headers/NSWindowController.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + diff --git a/it.lproj/PTKeyComboPanel.nib/keyedobjects.nib b/it.lproj/PTKeyComboPanel.nib/keyedobjects.nib new file mode 100644 index 00000000..8776799a Binary files /dev/null and b/it.lproj/PTKeyComboPanel.nib/keyedobjects.nib differ diff --git a/it.lproj/PassphraseChanger.nib/designable.nib b/it.lproj/PassphraseChanger.nib/designable.nib new file mode 100644 index 00000000..11a0ae02 --- /dev/null +++ b/it.lproj/PassphraseChanger.nib/designable.nib @@ -0,0 +1,1182 @@ + + + + 1060 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + YES + + + + YES + + PassphraseChangerController + + + FirstResponder + + + NSApplication + + + SFPasswordAssistantInspectorController + + + 3 + 2 + {{449, 381}, {506, 215}} + 1886912512 + Seleziona una nuova parola d'ordine + + NSPanel + + + View + + {1.79769e+308, 1.79769e+308} + {213, 107} + + + 256 + + YES + + + 264 + + YES + + + 266 + {{17, 257}, {472, 23}} + + YES + + 67239424 + 272629760 + Scegli una nuova parola d'ordine per proteggere le tue note. + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 256 + {{17, 197}, {149, 19}} + + YES + + 67239424 + 71303168 + Nuova parola d'ordine: + + + + + + + + + 256 + {{110, 164}, {56, 22}} + + YES + + 67239424 + 71303168 + Verifica: + + + + + + + + + 256 + {{463, 197}, {23, 22}} + + YES + + 67239424 + 134217728 + + + LucidaGrande + 10 + 16 + + + -2042347265 + 2 + + NSImage + PasswordAssistantButton + + + NSImage + PasswordAssistantButtonPressed + + + + 400 + 75 + + + + + 256 + {{171, 197}, {288, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + + + + 256 + {{171, 167}, {315, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + + + + + + 256 + {{18, 143}, {345, 18}} + + YES + + 67239424 + 0 + Memorizza la nuova parola d'ordine nel Portachiavi + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 256 + {{88, 224}, {78, 22}} + + YES + + 67239424 + 71303168 + Attuale: + + + + + + + + + 256 + {{171, 227}, {315, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + + + + + + 264 + {{20, 105}, {13, 13}} + + YES + + 67239424 + 0 + + + + -1198636801 + 5 + + + + + + 200 + 25 + + + + + 264 + {{38, 102}, {146, 17}} + + YES + + 67239424 + 272629760 + Altre opzioni di sicurezza + + LucidaGrande + 11 + 3100 + + + + + + + + + -2147483392 + {{46, 20}, {413, 74}} + + NSView + NSResponder + + + {{0, -85}, {506, 300}} + + NSView + + + + 289 + + YES + + + 256 + {{96, 12}, {82, 32}} + + YES + + 604110336 + 134217728 + OK + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 256 + {{8, 12}, {88, 32}} + + YES + + 67239424 + 134217728 + Annulla + + + -2038284033 + 1 + + + Gw + 200 + 25 + + + + {{314, 0}, {192, 60}} + + NSView + + + {506, 215} + + + {{0, 0}, {1920, 1178}} + {213, 129} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + showPasswordAssistantPanel: + + + + 361 + + + + okNewPassword: + + + + 362 + + + + cancelNewPassword: + + + + 363 + + + + rememberChangeButton + + + + 364 + + + + cancelChangedButton + + + + 365 + + + + okChangeButton + + + + 366 + + + + verifyChangedPasswordField + + + + 367 + + + + newPasswordField + + + + 368 + + + + changePassphraseWindow + + + + 369 + + + + _newPassword + + + + 370 + + + + _verifyPassword + + + + 371 + + + + _baseWindow + + + + 372 + + + + currentPasswordField + + + + 375 + + + + _originalPassword + + + + 376 + + + + initialFirstResponder + + + + 377 + + + + nextKeyView + + + + 378 + + + + nextKeyView + + + + 379 + + + + nextKeyView + + + + 380 + + + + disclosureButton + + + + 386 + + + + dismissalButtonsView + + + + 387 + + + + upperButtonsView + + + + 388 + + + + advancedHelpField + + + + 389 + + + + advancedView + + + + 390 + + + + discloseAdvancedSettings: + + + + 391 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 342 + + + SFPasswordAssistantInspectorController + + + 343 + + + YES + + + + Select a passphrase + + + 344 + + + YES + + + + + + + 384 + + + YES + + + + + + + 354 + + + YES + + + + + + 355 + + + YES + + + + + + 385 + + + YES + + + + + + + + + + + + + + + + + 346 + + + YES + + + + + + 351 + + + YES + + + + + + 353 + + + YES + + + + + + 356 + + + YES + + + + + + 357 + + + YES + + + + + + 358 + + + YES + + + + + + 360 + + + YES + + + + + + 373 + + + YES + + + + + + 374 + + + YES + + + + + + 381 + + + YES + + + + + + 382 + + + YES + + + + + + 383 + + + + + 393 + + + + + 394 + + + + + 395 + + + + + 396 + + + + + 397 + + + + + 398 + + + + + 399 + + + + + 400 + + + + + 401 + + + + + 402 + + + + + 403 + + + + + 404 + + + + + 405 + + + + + -3 + + + Application + + + + + YES + + YES + -3.IBPluginDependency + 342.ImportedFromIB2 + 343.IBEditorWindowLastContentRect + 343.IBPluginDependency + 343.IBPropertyAccessControl + 343.IBWindowTemplateEditedContentRect + 343.ImportedFromIB2 + 343.windowTemplate.hasMinSize + 343.windowTemplate.minSize + 344.IBPluginDependency + 344.ImportedFromIB2 + 346.IBPluginDependency + 346.IBPropertyAccessControl + 346.ImportedFromIB2 + 351.IBPluginDependency + 351.IBPropertyAccessControl + 351.ImportedFromIB2 + 353.IBPluginDependency + 353.IBPropertyAccessControl + 353.ImportedFromIB2 + 354.IBPluginDependency + 354.IBPropertyAccessControl + 354.ImportedFromIB2 + 355.IBPluginDependency + 355.IBPropertyAccessControl + 355.ImportedFromIB2 + 356.IBPluginDependency + 356.ImportedFromIB2 + 357.CustomClassName + 357.IBPluginDependency + 357.ImportedFromIB2 + 358.CustomClassName + 358.IBPluginDependency + 358.ImportedFromIB2 + 360.IBPluginDependency + 360.IBPropertyAccessControl + 360.ImportedFromIB2 + 373.IBPluginDependency + 373.IBPropertyAccessControl + 373.ImportedFromIB2 + 374.CustomClassName + 374.IBPluginDependency + 374.ImportedFromIB2 + 381.IBPluginDependency + 381.ImportedFromIB2 + 382.IBPluginDependency + 382.IBPropertyAccessControl + 382.ImportedFromIB2 + 383.IBPluginDependency + 383.ImportedFromIB2 + 384.IBPluginDependency + 384.IBPropertyAccessControl + 384.ImportedFromIB2 + 385.IBPluginDependency + 385.ImportedFromIB2 + 393.IBPluginDependency + 394.IBPluginDependency + 395.IBPluginDependency + 396.IBPluginDependency + 397.IBPluginDependency + 398.IBPluginDependency + 399.IBPluginDependency + 400.IBPluginDependency + 401.IBPluginDependency + 402.IBPluginDependency + 403.IBPluginDependency + 404.IBPluginDependency + 405.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{262, 525}, {506, 215}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{262, 525}, {506, 215}} + + + {213, 107} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 405 + + + + YES + + FirstResponder + NSObject + + : + id + + + IBUserSource + + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + IBProjectSource + ./Classes/NSObject.h + + + + PassphraseChangerController + NSObject + + YES + + YES + cancelNewPassword: + discloseAdvancedSettings: + okNewPassword: + + + YES + id + id + id + + + + YES + + YES + advancedHelpField + advancedView + cancelChangedButton + changePassphraseWindow + currentPasswordField + disclosureButton + dismissalButtonsView + newPasswordField + okChangeButton + rememberChangeButton + upperButtonsView + verifyChangedPasswordField + + + YES + NSTextField + NSView + NSButton + NSPanel + NSSecureTextField + NSButton + NSView + NSSecureTextField + NSButton + NSButton + NSView + NSSecureTextField + + + + IBProjectSource + ./Classes/PassphraseChangerController.h + + + + RBSplitSubview + NSView + + IBProjectSource + ./Classes/RBSplitSubview.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + IBProjectSource + ./Classes/RBSplitView.h + + + + SFPasswordAssistantInspectorController + NSObject + + showPasswordAssistantPanel: + id + + + YES + + YES + _baseWindow + _newPassword + _originalPassword + _verifyPassword + + + YES + NSWindow + NSTextField + NSTextField + NSTextField + + + + IBProjectSource + ./Classes/SFPasswordAssistantInspectorController.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + diff --git a/it.lproj/PassphraseChanger.nib/keyedobjects.nib b/it.lproj/PassphraseChanger.nib/keyedobjects.nib new file mode 100644 index 00000000..a2d290df Binary files /dev/null and b/it.lproj/PassphraseChanger.nib/keyedobjects.nib differ diff --git a/it.lproj/PassphrasePicker.nib/designable.nib b/it.lproj/PassphrasePicker.nib/designable.nib new file mode 100644 index 00000000..005a189c --- /dev/null +++ b/it.lproj/PassphrasePicker.nib/designable.nib @@ -0,0 +1,1110 @@ + + + + 1050 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + YES + + + + YES + + PassphrasePickerController + + + FirstResponder + + + NSApplication + + + SFPasswordAssistantInspectorController + + + 3 + 2 + {{378, 572}, {474, 243}} + 1886912512 + Scegli una parola d'ordine + NSPanel + + View + + {1.79769e+308, 1.79769e+308} + {214.545, 107} + + + 256 + + YES + + + 264 + + YES + + + 289 + + YES + + + 256 + {{100, 12}, {82, 32}} + + YES + + 604110336 + 134217728 + OK + + LucidaGrande + 13 + 1044 + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 256 + {{12, 12}, {88, 32}} + + YES + + 67239424 + 134217728 + Annulla + + + -2038284033 + 1 + + + Gw + 200 + 25 + + + + {{278, 115}, {196, 60}} + + NSView + + + + 266 + {{17, 288}, {440, 60}} + + YES + + 67239424 + 272629760 + Per favore, scegli una parola d'ordine per proteggere le tue note. Attenzione però a non dimenticarla, perché potrebbe diventare impossibile recuperare le note. + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 264 + {{17, 263}, {339, 17}} + + YES + + 67239424 + 272629760 + La parola d'ordine può contenere qualsiasi carattere. + + + + + + + + + 264 + {{20, 286}, {434, 5}} + + {0, 0} + + 67239424 + 0 + Box + + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 3 + MCAwLjgwMDAwMDAxAA + + + 3 + 2 + 0 + NO + + + + 264 + {{18, 224}, {103, 22}} + + YES + + 67239424 + 71303168 + Parola d'ordine: + + + + + + + + + 264 + {{30, 182}, {91, 34}} + + YES + + 67239424 + 71303168 + Verifica: + + + + + + + + + 264 + {{431, 227}, {23, 22}} + + YES + + 67239424 + 134217728 + + + LucidaGrande + 10 + 16 + + + -2042347265 + 2 + + NSImage + PasswordAssistantButton + + + NSImage + PasswordAssistantButtonPressed + + + + 400 + 75 + + + + + 264 + {{126, 227}, {301, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + + 6 + System + textColor + + + + + + + 264 + {{126, 197}, {328, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + + + + + + 264 + {{124, 173}, {314, 18}} + + YES + + 67239424 + 0 + Memorizza la parola d'ordine nel Portachiavi + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 264 + {{20, 135}, {13, 13}} + + YES + + 67239424 + 0 + + + + -1198636801 + 5 + + + + + + 200 + 25 + + + + + 264 + {{38, 132}, {162, 17}} + + YES + + 67239424 + 272629760 + Altre opzioni di sicurezza + + LucidaGrande + 11 + 3100 + + + + + + + + + -2147483392 + {{41, 50}, {413, 74}} + + NSView + + + {{0, -115}, {474, 358}} + + NSView + + + {474, 243} + + + {{0, 0}, {1280, 778}} + {214.545, 129} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + showPasswordAssistantPanel: + + + + 361 + + + + okNewPassword: + + + + 362 + + + + cancelNewPassword: + + + + 363 + + + + rememberNewButton + + + + 364 + + + + cancelNewButton + + + + 365 + + + + okNewButton + + + + 366 + + + + verifyNewPasswordField + + + + 367 + + + + newPasswordField + + + + 368 + + + + newPassphraseWindow + + + + 369 + + + + _newPassword + + + + 370 + + + + _verifyPassword + + + + 371 + + + + _baseWindow + + + + 372 + + + + discloseAdvancedSettings: + + + + 386 + + + + disclosureButton + + + + 387 + + + + dismissalButtonsView + + + + 388 + + + + upperButtonsView + + + + 390 + + + + window + + + + 391 + + + + nextKeyView + + + + 392 + + + + nextKeyView + + + + 393 + + + + initialFirstResponder + + + + 394 + + + + advancedView + + + + 395 + + + + advancedHelpField + + + + 396 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 342 + + + SFPasswordAssistantInspectorController + + + 343 + + + YES + + + + Select a passphrase + + + 344 + + + YES + + + + + + 389 + + + YES + + + + + + + + + + + + + + + + + + 346 + + + YES + + + + + + 347 + + + YES + + + + + + 348 + + + YES + + + 256 + {{2, 2}, {125, 1}} + + + + + + 349 + + + + + 351 + + + YES + + + + + + 353 + + + YES + + + + + + 356 + + + YES + + + + + + 357 + + + YES + + + + + + 358 + + + YES + + + + + + 360 + + + YES + + + + + + 374 + + + YES + + + + + + 375 + + + YES + + + + + + 385 + + + + + 400 + + + + + 401 + + + + + 402 + + + + + 403 + + + + + 404 + + + + + 405 + + + + + 406 + + + + + 407 + + + + + 408 + + + + + 409 + + + + + 376 + + + YES + + + + + + + 355 + + + YES + + + + + + 354 + + + YES + + + + + + 398 + + + + + 399 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 342.ImportedFromIB2 + 343.IBEditorWindowLastContentRect + 343.IBPluginDependency + 343.IBWindowTemplateEditedContentRect + 343.ImportedFromIB2 + 343.windowTemplate.hasMinSize + 343.windowTemplate.minSize + 344.IBPluginDependency + 344.ImportedFromIB2 + 346.IBPluginDependency + 346.ImportedFromIB2 + 347.IBPluginDependency + 347.ImportedFromIB2 + 348.IBPluginDependency + 348.ImportedFromIB2 + 349.IBPluginDependency + 349.ImportedFromIB2 + 351.IBPluginDependency + 351.ImportedFromIB2 + 353.IBPluginDependency + 353.ImportedFromIB2 + 354.IBPluginDependency + 354.ImportedFromIB2 + 355.IBPluginDependency + 355.ImportedFromIB2 + 356.IBPluginDependency + 356.ImportedFromIB2 + 357.CustomClassName + 357.IBPluginDependency + 357.ImportedFromIB2 + 358.CustomClassName + 358.IBPluginDependency + 358.ImportedFromIB2 + 360.IBPluginDependency + 360.ImportedFromIB2 + 374.IBPluginDependency + 374.ImportedFromIB2 + 375.IBPluginDependency + 375.ImportedFromIB2 + 376.IBPluginDependency + 376.ImportedFromIB2 + 385.IBPluginDependency + 385.ImportedFromIB2 + 389.IBPluginDependency + 389.ImportedFromIB2 + 398.IBPluginDependency + 399.IBPluginDependency + 400.IBPluginDependency + 401.IBPluginDependency + 402.IBPluginDependency + 403.IBPluginDependency + 404.IBPluginDependency + 405.IBPluginDependency + 406.IBPluginDependency + 407.IBPluginDependency + 408.IBPluginDependency + 409.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + {{119, 763}, {474, 243}} + com.apple.InterfaceBuilder.CocoaPlugin + {{119, 763}, {474, 243}} + + + {214.545, 107} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 409 + + + + YES + + FirstResponder + NSObject + + : + id + + + IBUserSource + + + + + PassphrasePickerController + NSObject + + YES + + YES + cancelNewPassword: + discloseAdvancedSettings: + okNewPassword: + + + YES + id + id + id + + + + YES + + YES + advancedHelpField + advancedView + cancelNewButton + disclosureButton + dismissalButtonsView + newPassphraseWindow + newPasswordField + okNewButton + rememberNewButton + upperButtonsView + verifyNewPasswordField + window + + + YES + NSTextField + NSView + NSButton + NSButton + NSView + NSPanel + NSSecureTextField + NSButton + NSButton + NSView + NSSecureTextField + NSPanel + + + + IBProjectSource + ./Classes/PassphrasePickerController.h + + + + SFPasswordAssistantInspectorController + NSObject + + showPasswordAssistantPanel: + id + + + YES + + YES + _baseWindow + _newPassword + _originalPassword + _verifyPassword + + + YES + NSWindow + NSTextField + NSTextField + NSTextField + + + + IBProjectSource + ./Classes/SFPasswordAssistantInspectorController.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + diff --git a/it.lproj/PassphrasePicker.nib/keyedobjects.nib b/it.lproj/PassphrasePicker.nib/keyedobjects.nib new file mode 100644 index 00000000..04dbc9ff Binary files /dev/null and b/it.lproj/PassphrasePicker.nib/keyedobjects.nib differ diff --git a/it.lproj/PassphraseRetriever.nib/designable.nib b/it.lproj/PassphraseRetriever.nib/designable.nib new file mode 100644 index 00000000..377fd3e9 --- /dev/null +++ b/it.lproj/PassphraseRetriever.nib/designable.nib @@ -0,0 +1,751 @@ + + + + 1040 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + YES + + + + YES + + PassphraseRetriever + + + FirstResponder + + + NSApplication + + + 1 + 2 + {{510, 376}, {507, 194}} + 1886912512 + Inserisci la parola d'ordine + NSPanel + + View + + {1.79769e+308, 1.79769e+308} + {378, 110} + + + 256 + + YES + + + 266 + {{92, 112}, {398, 62}} + + YES + + 69336577 + 272629760 + Please enter the passphrase to access notes in BLAH BLAH BLAH BLAH PATH BLAH BLAH + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 289 + {{411, 12}, {82, 32}} + + YES + + 604110336 + 134217728 + OK + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 289 + {{323, 12}, {88, 32}} + + YES + + 67239424 + 134217728 + Annulla + + + -2038284033 + 268435457 + + + q + 200 + 25 + + + + + 268 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{20, 112}, {62, 62}} + + YES + + 130560 + 33554432 + + NSImage + NSApplicationIcon + + 0 + 1 + 0 + NO + + YES + + + + 256 + {{42, 82}, {114, 19}} + + YES + + 67239424 + 71303168 + Parola d'ordine: + + + + + + + + + 290 + {{161, 82}, {326, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + + + + 292 + {{159, 58}, {330, 18}} + + YES + + 67239424 + 0 + Memorizza la parola d'ordine nel Portachiavi + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + -2147483356 + {{14, 12}, {145, 32}} + + YES + + 67239424 + 134217728 + Usa note diverse + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + {507, 194} + + + {{0, 0}, {1920, 1178}} + {378, 132} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + window + + + + 309 + + + + okAction: + + + + 321 + + + + cancelAction: + + + + 322 + + + + okButton + + + + 326 + + + + helpStringField + + + + 327 + + + + passphraseField + + + + 333 + + + + rememberKeychainButton + + + + 334 + + + + differentNotes: + + + + 337 + + + + differentFolderButton + + + + 338 + + + + cancelButton + + + + 339 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 307 + + + YES + + + + get passphrase + + + 308 + + + YES + + + + + + + + + + + + + 318 + + + YES + + + + + + 319 + + + YES + + + + + + 320 + + + YES + + + + + + 328 + + + YES + + + + + + 330 + + + YES + + + + + + 331 + + + YES + + + + + + 332 + + + YES + + + + + + 336 + + + YES + + + + + + 341 + + + + + 342 + + + + + 343 + + + + + 344 + + + + + 345 + + + + + 346 + + + + + 347 + + + + + 348 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 307.IBEditorWindowLastContentRect + 307.IBPluginDependency + 307.IBWindowTemplateEditedContentRect + 307.ImportedFromIB2 + 307.windowTemplate.hasMinSize + 307.windowTemplate.minSize + 308.IBPluginDependency + 308.ImportedFromIB2 + 318.IBPluginDependency + 318.IBPropertyAccessControl + 318.ImportedFromIB2 + 319.IBPluginDependency + 319.IBPropertyAccessControl + 319.ImportedFromIB2 + 320.IBPluginDependency + 320.IBPropertyAccessControl + 320.ImportedFromIB2 + 328.IBPluginDependency + 328.ImportedFromIB2 + 330.IBPluginDependency + 330.IBPropertyAccessControl + 330.ImportedFromIB2 + 331.CustomClassName + 331.IBPluginDependency + 331.IBPropertyAccessControl + 331.ImportedFromIB2 + 332.IBPluginDependency + 332.IBPropertyAccessControl + 332.ImportedFromIB2 + 336.IBPluginDependency + 336.IBPropertyAccessControl + 336.ImportedFromIB2 + 341.IBPluginDependency + 342.IBPluginDependency + 343.IBPluginDependency + 344.IBPluginDependency + 345.IBPluginDependency + 346.IBPluginDependency + 347.IBPluginDependency + 348.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{203, 226}, {507, 194}} + com.apple.InterfaceBuilder.CocoaPlugin + {{203, 226}, {507, 194}} + + + {378, 110} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 348 + + + + YES + + FirstResponder + NSObject + + : + id + + + IBUserSource + + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + IBProjectSource + ./Classes/NSObject.h + + + + PassphraseRetriever + NSObject + + YES + + YES + cancelAction: + differentNotes: + okAction: + + + YES + id + id + id + + + + YES + + YES + cancelButton + differentFolderButton + helpStringField + okButton + passphraseField + rememberKeychainButton + window + + + YES + NSButton + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSPanel + + + + IBProjectSource + ./Classes/PassphraseRetriever.h + + + + RBSplitSubview + NSView + + IBProjectSource + ./Classes/RBSplitSubview.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + IBProjectSource + ./Classes/RBSplitView.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + diff --git a/it.lproj/PassphraseRetriever.nib/keyedobjects.nib b/it.lproj/PassphraseRetriever.nib/keyedobjects.nib new file mode 100644 index 00000000..6d6d58a5 Binary files /dev/null and b/it.lproj/PassphraseRetriever.nib/keyedobjects.nib differ diff --git a/it.lproj/Preferences.xib b/it.lproj/Preferences.xib new file mode 100644 index 00000000..01f1d73a --- /dev/null +++ b/it.lproj/Preferences.xib @@ -0,0 +1,4153 @@ + + + + 1050 + 10K540 + 1306 + 1038.36 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSUserDefaultsController + NSPopUpButton + NSButton + NSMenu + NSTextFieldCell + NSButtonCell + NSMenuItem + NSBox + NSColorWell + NSMatrix + NSSlider + NSSliderCell + NSCustomView + NSCustomObject + NSView + NSWindowTemplate + NSTextField + NSPopUpButtonCell + + + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + + PrefsWindowController + + + FirstResponder + + + NSApplication + + + 7 + 2 + {{322, 522}, {399, 334}} + 1886912512 + Preferenze + + NSWindow + + + View + + {399, 107} + + + 256 + {{7, 11}, {399, 334}} + + + + + {{0, 0}, {1440, 878}} + {399, 129} + {1e+13, 1e+13} + + + + 256 + + + + 12 + {{0, 39}, {482, 5}} + + + {0, 0} + + 67239424 + 0 + Box + + LucidaGrande + 13 + 1044 + + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + + 268 + {{160, 15}, {192, 14}} + + YES + + 68288064 + 272630784 + This will immediately restart nvALT + + LucidaGrande + 11 + 16 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 264 + {{34, 9}, {121, 25}} + + + YES + + 67239424 + 134217728 + Hide Dock Icon + + + -2038284033 + 35 + + + + + + 200 + 25 + + + + + 264 + {{32, 48}, {269, 18}} + + + YES + + 67239424 + 0 + Show menu bar icon (restart required) + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 264 + {{-3, 227}, {284, 34}} + + + YES + + 67239424 + 71303168 + Dimensione testo elenco: + + + + + + + + + 264 + {{283, 238}, {95, 26}} + + + YES + + -2076049856 + 2048 + + + 109199615 + 1 + + + + + + 400 + 75 + + + Altro… + + 1048576 + 2147483647 + 1 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + _popUpItemAction: + 3 + + + YES + + OtherViews + + + + Piccolo + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + Grande + + 1048576 + 2147483647 + + + _popUpItemAction: + 2 + + + + + YES + YES + + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + + 3 + 3 + YES + YES + 1 + + + + + 264 + {{32, 97}, {242, 18}} + + + YES + + -2080244224 + 0 + Conferma cancellazione nota + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{32, 72}, {223, 18}} + + + YES + + -2080244224 + 0 + Esci alla chiusura della finestra + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{89, 165}, {357, 18}} + + + YES + + -2080244224 + 0 + Seleziona automaticamente le note durante la ricerca + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + -2147483384 + {{383, 242}, {61, 22}} + + + YES + + -1804468671 + 272630784 + Taille + + Dimensioni + + YES + + + 6 + System + textColor + + + + + + + 264 + {{19, 176}, {243, 51}} + + + YES + + 67239424 + 71303168 + Combinazione tasti per Porta tutto in primo piano: + + + + + + + + + 264 + {{267, 198}, {89, 22}} + + + YES + + -2072904127 + 272630784 + + + (aucun) + + YES + + + + + + + 264 + {{358, 192}, {92, 32}} + + + YES + + 67239424 + 134217728 + Imposta… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 264 + {{36, 126}, {411, 33}} + + + YES + + 67239424 + 272629760 + La selezione automatica di note molto lunghe può rallentare il programma. + + LucidaGrande + 11 + 3100 + + + + + + + + {464, 277} + + NSView + NSResponder + + + + 256 + + + + 256 + {{-3, 351}, {174, 34}} + + + YES + + 67239424 + 71303168 + Leggi note dalla cartella: + + + + + + + + + 256 + {{173, 362}, {178, 26}} + + + YES + + -2076049856 + 2048 + + + 109199615 + 1 + + + + + + 400 + 75 + + + Item1 + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + + + + Item2 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + Item3 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + 3 + YES + YES + 1 + + + + + 256 + {368, 346} + + + NSView + + NSResponder + + + {368, 406} + + + NSView + + NSResponder + + + + 256 + + + + 268 + {{140, 70}, {226, 28}} + + + YES + + 67239424 + 272629760 + Match opening characters, like a left bracket, with closing characters. + + + + + + + + + 264 + {{122, 75}, {22, 18}} + + + + YES + + 67239424 + 0 + + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{42, 76}, {77, 17}} + + + + YES + + 67239424 + 71303168 + Auto-pair: + + + + + + + + + 268 + {{175, 16}, {194, 26}} + + + + YES + + -2076049856 + 2048 + + + 109199615 + 129 + + + 400 + 75 + + + Item 1 + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + + + + Item 2 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + Item 3 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + + 1 + YES + YES + 2 + + + + + 264 + {{140, 106}, {247, 42}} + + + + YES + + 67239424 + 272629760 + Hold down Option while dragging a link to the notes list to temporarily enable Readability. + + + + + + + + + 268 + {{39, 23}, {134, 17}} + + + + YES + + 67239424 + 272629760 + External Text Editor: + + LucidaGrande + 13 + 16 + + + + + + + + + 264 + {{122, 323}, {219, 38}} + + + + YES + 2 + 1 + + + 67239424 + 0 + Rientro righe + + + 1211912703 + 2 + + NSRadioButton + + + + 200 + 25 + + + -2080244224 + 0 + Porta il cursore al campo successivo + + + 1 + 1211912703 + 2 + + + + 200 + 25 + + + {219, 18} + {4, 2} + 1143472128 + NSActionCell + + 67239424 + 0 + Radio + + 1211912703 + 0 + + 549453824 + {18, 18} + + + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw +IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ +29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 +dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA +AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG +AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ +0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ +7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ +5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ +3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD +AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns +AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ +6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ +/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ +///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl +YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA +AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD +AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu +AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB +AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES +AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS +AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAA3oAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAN6GFw +cGwCAAAAbW50clJHQiBYWVogB9YAAgAUAAkAJQANYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAPbWAAEAAAAA0y1hcHBsFJOBBrYKo+osFI6rc4AAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA +AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA +BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAH+bW1vZAAADZAAAAAoY3BydAAADbgAAAAtWFlaIAAA +AAAAAHEwAABEvAAAD2VYWVogAAAAAAAAYbkAAKGYAAApKFhZWiAAAAAAAAAj7QAAGccAAJqYWFlaIAAA +AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 +cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD +AQAAAQADBAYICQsMDg8REhMVFxgaGxweHyEiJCUnKCorLC4vMTIzNTY4OTo8PT5AQUJERUdISUpMTU5Q +UVJUVVZYWVpbXF5fYGFiY2VmZ2hpamttbm9wcXJzdHV3eHl6e3x9fn+AgoOEhYaHiImKi4yNjo+QkZKT +lJWWl5iZmpucnZ6foKGio6SlpqanqKmqq6ysra6vsLGxsrO0tba2t7i5urq7vL29vr/AwMHCw8PExcbG +x8jJycrLy8zNzs7P0NDR0tLT1NTV1tbX19jZ2drb29zd3d7e3+Dg4eLi4+Tk5ebm5+jp6err6+zt7u7v +8PHx8vP09fb29/j5+vr7/P3+/v8AAwUHCAoLDQ8QEhMVFhgaGx0eICEjJCYnKSorLS4wMTM0NTc4OTs8 +PT9AQUNERUZISUpLTU5PUFJTVFVWWFlaW1xeX2BhYmNkZWZoaWprbG1ub3Bxc3R1dnd4eXp7fH1+f4CB +goOEhYaHiImKi4yNjo+QkZKTlJWWl5eYmZqbnJ2en6CgoaKjpKWmpqeoqaqrrK2trq+wsbKys7S1tre3 +uLm6u7y8vb6/wMHBwsPExcXGx8jJycrLzM3Nzs/Q0dHS09PU1dbW19jY2dra29zd3d7f3+Dh4uLj5OTl +5ufn6Onp6uvs7O3u7u/w8fHy8/T09fb29/j5+fr7/Pz9/v7/AAIDBAUGCAkKCwwNDg8QERITFBUWFxgZ +GhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTU2Nzg5Ojs8PT4/QEFCQ0RFRkdISUpKS0xNTk9QUVJT +VFRVVldYWVpbXF1dXl9gYWJjZGRlZmdoaWpqa2xtbm9wcHFyc3R1dXZ3eHl6e3t8fX5/gIGCgoOEhYaH +iIiJiouMjY6Oj5CRkpOUlJWWl5iZmZqbnJ2enp+goaKjpKSlpqeoqamqq6ytrq6vsLGys7S1tba3uLm6 +uru8vb6/v8DBwsPExcXGx8jJysvMzc7P0dLT1NXX2Nnb3d7g4uPl5+nr7O7x8/X3+fz+/wAAbmRpbgAA +AAAAAAY2AACNngAAV2UAAE0oAACGwgAAKCEAABpHAABQDQAAVDkAAvMzAAKj1wABoUcAAwEAAAIAAAAA +AAEAAwAIAA4AFgAfACoANgBEAFMAZAB1AIcAmwCzAMwA5AD+ARkBNgFSAW8BjgGvAdAB8wIYAj4CZQKR +ArsC5QMSAz8DbAObA8sD/AQvBGEElQTLBQMFQAV/BbsF+AY2BnMGswb1BzcHeQe+CAUITAiVCOUJOQmF +CdUKJQp2CskLHgtzC8kMIAx4DNENLA2cDf0OXQ6+DyAPgw/oEE8QsxEdEYcR8hJeEtATPxOvFCMUmhUa +FZ0WIhaqFzIXuxhIGNgZahn8GpAbJxu9HFUc6R2FHiEevR9bH/0goSFJIfQimCNBI/EkoSVSJgQmtSdn +KB8o3CmSKlIrFSvVLJktYS4pLvEvvjCPMWAyMzMHM9w0vjWVNnc3Wjg+OSI6BjrsO9k8yj27Pqw/nkCU +QYtCg0OBRIVFiUaMR45Imkm6SutMFk1VTotPwFD5UjlTg1TMVhVXXlivWgFbWFy3Xh9fhWDqYlRj02VH +Zr5oQGnKa1Fs5G52cBVxtHNYdQR2tnhpeh97532uf32BTIMbhO2G0oi5ipyMi46EkHuSb5RolnSYlprc +nTmfj6HtpEamqakIq12txbAksoq08rdYuba8Fb54wN3DPMWYx/bKTsyrzvzRVdOq1fvYR9qV3N/eu+EJ +41HlOOdp6a/rtO3L8BTyOfQy9nn4wfqh/QT//wAAAAAAAQADAAYADAASABoAJAAvADsASABXAGcAdwCJ +AJwAsADFANwA9AEOASkBRAFgAX0BnAG8Ad0CAAIkAkoCcAKWAr4C6AMUA0EDbgOdA80D/wQyBGUEmgTR +BQoFQwV9BboF+QY4BncGuwcAB0UHiQfSCBwIaAi1CQMJUwmlCfsKTwqmCv8LWgu2DBMMcAzPDS8NlA37 +DmMOyw80D54QDBB5EOgRWRHMEkAStxMvE6cUIhShFSUVqhYzFr0XSRfVGGUY+RmPGiQavRtYG/IcjR0q +HcoeaR8LH7EgWyEHIbYiZCMTI8ckfyU3JfAmqidkKCYo6ymqKnYrRSwMLN4tsy6DL1owNjEUMfMy1DO3 +NKM1ijZ5N2w4XzlROkQ7ODw6PTs+PD89QEJBSUJRQ19Ec0WIRpxHr0jKSfpLNUxsTaxO6FAhUWJSolPz +VT1WhlfSWR9ablvFXSFegF/dYTdimGQJZW9m12hIab9rLWyobiRvo3Ercqd0MXW/d0943np0fBF9r39V +gPmCm4RAhfCHp4laiw+M0Y6YkF2SHZPclbWXlJl/m5mdrp/Boduj7qYVqDSqVax6rp2wxrL2tSm3X7mP +u8O9/MA+woHEuMb+yTrLhs3I0BXSZdSz1vzZR9uf3fDgSeKd5PHnUemg6/vuV/C/8yL1ifft+lz82/// +AAAAAQADAAkAEwAgAC8AQgBXAG8AiQCpANEA9AEaAUIBawGWAcQB9QIoAl4CqgLkAyIDYQOiA+UEKwRw +BLoFBwVzBcYGGgZuBscHIgd9B9sIPAifCSwJlQoBCm8K3wtTC8cMPQy0DTMN4A5hDuQPaA/vEHgRAxGQ +EiAStBNJE+AUfBUdFcAWaxcTF78YbxkkGdoakxtPHAocxh2GHkYfCB/PIJshayI7Iwsj4SS7JZUmcSdH +KC0pESn3KuMr0CzBLbYupS+hMJ8xnjKfM6M0sDW2Nsk33DjwOgQ7GDw6PV0+gD+kQNBB8kMlRFxFlUbP +R/5JN0ptS6JM2k4UT09Qf1HBUwZUT1WXVtpYK1l0WsJcGF1zXtNgKWGDYulkU2W1ZxtojGn9a2xs425Y +b9RxU3LMdE511HdbeOB6a3v7fY1/JIC6gkyD34V5hxuIvYpai/+NrY9bkQaSq5RWlg2XuplSmvKci55C +n/ChpaNipSmm9qi9qpGsbK5FsByx77PDtZ63cLlNuxi85761wHXCJ8PWxYjHM8jLymbL/M1/zvnQcdHk +01HUvdYU12XYttoD20Xcfd2N3oLfn+DF4eXjCeQW5PPl4ub36AHpB+oP6wHrzOye7Znuku+H8HPxWPIo +8unzs/SX9Xr2WPc1+A/45vmg+lr7Ivvy/Mr9q/63//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAA8AAAAMaXRJVAAAABQAAADEZnJGUgAAAEIAAADYbmJOTwAA +ABIAAAEaZXNFUwAAABIAAAEsZmlGSQAAABAAAAE+cHRQVAAAABgAAAFOemhUVwAAAA4AAAFmamFKUAAA +AA4AAAF0bmxOTAAAABYAAAGCZGVERQAAABAAAAGYa29LUgAAAAwAAAGoZW5VUwAAABIAAAG0c3ZTRQAA +ABAAAAHGZGFESwAAABwAAAHWemhDTgAAAAwAAAHyAEwAQwBEACAAYwBvAGwAbwByAGkAyQBjAHIAYQBu +ACAA4AAgAGMAcgBpAHMAdABhAHUAeAAgAGwAaQBxAHUAaQBkAGUAcwAgAGMAbwB1AGwAZQB1AHIARgBh +AHIAZwBlAC0ATABDAEQATABDAEQAIABjAG8AbABvAHIAVgDkAHIAaQAtAEwAQwBEAEwAQwBEACAAYwBv +AGwAbwByAGkAZABvX2mCcm2yZnaYb3k6VmgwqzDpMPwAIABMAEMARABLAGwAZQB1AHIAZQBuAC0ATABD +AEQARgBhAHIAYgAtAEwAQwBEzuy37AAgAEwAQwBEAEMAbwBsAG8AcgAgAEwAQwBEAEYA5AByAGcALQBM +AEMARABMAEMARAAtAGYAYQByAHYAZQBzAGsA5gByAG1faYJyACAATABDAEQAAG1tb2QAAAAAAAAGEAAA +nCoAAAAAuE1yAAAAAAAAAAAAAAAAAAAAAAB0ZXh0AAAAAENvcHlyaWdodCBBcHBsZSBDb21wdXRlciwg +SW5jLiwgMjAwNQAAAAA + + + + + + 3 + MCAwAA + + + + 400 + 75 + + 1 + + + + + + + + 264 + {{30, 327}, {89, 34}} + + + + YES + + 67239424 + 71303168 + Tasto Tab: + + + + + + + + + 264 + {{140, 289}, {279, 28}} + + + + YES + + 67239424 + 272629760 + Opzione-Tab fa sempre rientrare il testo e Maiuscole-Tab sposta sempre indietro il cursore. + + + + + + + + + 264 + {{122, 47}, {146, 18}} + + + + YES + + 67239424 + 0 + Right-To-Left (RTL) + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{42, 48}, {77, 17}} + + + + YES + + 67239424 + 71303168 + Direction: + + + + + + + + + 264 + {{122, 372}, {223, 18}} + + + + YES + + -2080244224 + 0 + Controlla durante la digitazione + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{122, 396}, {286, 18}} + + + + YES + + 67239424 + 0 + Copia gli stili di base da altre applicazioni + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{17, 380}, {102, 34}} + + + + YES + + 67239424 + 71303168 + Testo con stili: + + + + + + + + + 264 + {{30, 356}, {89, 34}} + + + + YES + + 67239424 + 71303168 + Ortografia: + + + + + + + + + 264 + {{39, 154}, {80, 34}} + + + + YES + + 67239424 + 71303168 + URL Import: + + + + + + + + + 264 + {{122, 150}, {235, 18}} + + + + YES + + 67239424 + 0 + Process with Readability + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{122, 170}, {255, 18}} + + + + YES + + 67239424 + 0 + Convert imported URLs to Markdown + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{27, 207}, {92, 34}} + + + + YES + + 67239424 + 71303168 + Collegamenti: + + + + + + + + + 264 + {{122, 203}, {271, 18}} + + + + YES + + 67239424 + 0 + Suggerisci titolo delle note con soli link + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{122, 258}, {211, 18}} + + + + YES + + -2080244224 + 0 + Tabulatore sostituito da spazi + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{122, 223}, {290, 18}} + + + + YES + + 67239424 + 0 + Trasforma le URL in collegamenti cliccabili + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {464, 434} + + + + + NSView + + NSResponder + + + + 256 + + + + 268 + {{92, 78}, {172, 18}} + + + YES + + -2080244224 + 67108864 + Alternating Row Colors: + + + 1210864127 + 2 + + + + + 200 + 25 + + + + + 268 + {{95, 98}, {169, 18}} + + + YES + + -2080244224 + 67108864 + Show Grid Lines in List: + + + 1210864127 + 2 + + + + + 200 + 25 + + + + + 264 + {{346, 22}, {38, 13}} + + YES + + 67239424 + 4194304 + pixels + + + + + + + + + 264 + {{317, 22}, {36, 13}} + + + YES + + 67763712 + 4194304 + 1000 + + + + + + + + + 264 + {{50, 20}, {149, 17}} + + + YES + + 67239424 + 4194304 + Max. Note Body Width: + + + + + + + + + 268 + {{200, 20}, {113, 15}} + + + YES + + -2079981824 + 131072 + + + 1000 + 350 + 604.16666666666663 + 0.0 + 0 + 1 + NO + NO + + + + + 268 + {{50, 45}, {212, 17}} + + + YES + + 67239424 + 4194304 + Keep Note Body Width Readable: + + + + + + + + + 264 + {{259, 43}, {22, 18}} + + + YES + + 67239424 + 0 + + + + 1215582719 + 2 + + + + 200 + 25 + + + + + 264 + {{35, 130}, {326, 14}} + + + YES + + 67239424 + 4194304 + Text and Background Colors affect User Color Scheme only. + + + + + + + + + 268 + {{78, 229}, {167, 18}} + + + YES + + -2080244224 + 0 + Evidenziazione ricerca: + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{9, 277}, {139, 19}} + + + YES + + 67239424 + 71303168 + Font del corpo testo: + + + + + + + + + 264 + {{393, 269}, {96, 32}} + + + YES + + -2080244224 + 134217728 + Imposta… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 266 + {{154, 275}, {237, 23}} + + + YES + + 71433728 + 272630272 + Helvetica 12 + + + YES + + 3 + MQA + + 2 + + + + + + + + 264 + {{151, 156}, {94, 17}} + + + YES + + 67239424 + 71303168 + Sfondo: + + + + + + + + + 264 + + + NSColor pasteboard type + + + {{251, 152}, {52, 24}} + + + YES + YES + + + + + 264 + {{62, 181}, {183, 24}} + + + YES + + 67239424 + 71303168 + Testo in primo piano: + + + + + + + + + 264 + + + NSColor pasteboard type + + + {{251, 184}, {52, 24}} + + + YES + YES + + + + + 264 + + + NSColor pasteboard type + + + {{251, 226}, {52, 24}} + + + YES + YES + + 1 + MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA + + + + {500, 319} + + NSView + NSResponder + + + YES + + + + + + + generalView + + + + 236 + + + + window + + + + 238 + + + + changedQuitBehavior: + + + + 239 + + + + changedNoteDeletion: + + + + 240 + + + + changedTitleCompletion: + + + + 241 + + + + changedTableText: + + + + 245 + + + + tableTextSizeField + + + + 246 + + + + tableTextMenuButton + + + + 249 + + + + notationPrefsView + + + + 258 + + + + databaseView + + + + 259 + + + + folderLocationsMenuButton + + + + 260 + + + + changedNotesFolderLocation: + + + + 263 + + + + completeNoteTitlesButton + + + + 265 + + + + confirmDeletionButton + + + + 266 + + + + quitWhenClosingButton + + + + 267 + + + + setAppShortcut: + + + + 290 + + + + appShortcutField + + + + 291 + + + + checkSpellingButton + + + + 293 + + + + tabKeyRadioMatrix + + + + 294 + + + + changedSpellChecking: + + + + 296 + + + + changedTabBehavior: + + + + 297 + + + + editingView + + + + 298 + + + + autoSuggestLinksButton + + + + 299 + + + + styledTextButton + + + + 300 + + + + changedStyledTextBehavior: + + + + 301 + + + + changedAutoSuggestLinks: + + + + 302 + + + + softTabsButton + + + + 309 + + + + changedSoftTabs: + + + + 310 + + + + makeURLsClickable + + + + 312 + + + + changedMakeURLsClickable: + + + + 313 + + + + changedSearchHighlightColorWell: + + + + 382 + + + + bodyTextFontField + + + + 394 + + + + changeBodyFont: + + + + 395 + + + + searchHighlightColorWell + + + + 412 + + + + highlightSearchTermsButton + + + + 419 + + + + changedBackgroundTextColorWell: + + + + 420 + + + + changedForegroundTextColorWell: + + + + 421 + + + + changedHighlightSearchTerms: + + + + 422 + + + + backgroundColorWell + + + + 423 + + + + foregroundColorWell + + + + 424 + + + + fontsColorsView + + + + 425 + + + + value: values.StatusBarItem + + + + + + value: values.StatusBarItem + value + values.StatusBarItem + 2 + + + 437 + + + + value: values.KeepsMaxTextWidth + + + + + + value: values.KeepsMaxTextWidth + value + values.KeepsMaxTextWidth + 2 + + + 448 + + + + togDockButton + + + + 450 + + + + togDockLabel + + + + 451 + + + + toggleKeepsTextWidthInWindow: + + + + 469 + + + + setMaxWidth: + + + + 479 + + + + maxWidthSlider + + + + 480 + + + + hidden: values.TextEditor + + + + + + hidden: values.TextEditor + hidden + values.TextEditor + + NSValueTransformerName + NSIsNil + + 2 + + + 505 + + + + title: values.HideDockIcon + + + + + + title: values.HideDockIcon + title + values.HideDockIcon + 2 + + + 506 + + + + toggleHideDockIcon: + + + + 507 + + + + value: values.NoteBodyMaxWidth + + + + + + value: values.NoteBodyMaxWidth + value + values.NoteBodyMaxWidth + 2 + + + 508 + + + + hidden: values.KeepsMaxTextWidth + + + + + + hidden: values.KeepsMaxTextWidth + hidden + values.KeepsMaxTextWidth + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 517 + + + + hidden: values.KeepsMaxTextWidth + + + + + + hidden: values.KeepsMaxTextWidth + hidden + values.KeepsMaxTextWidth + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 519 + + + + hidden: values.KeepsMaxTextWidth + + + + + + hidden: values.KeepsMaxTextWidth + hidden + values.KeepsMaxTextWidth + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 520 + + + + hidden: values.KeepsMaxTextWidth + + + + + + hidden: values.KeepsMaxTextWidth + hidden + values.KeepsMaxTextWidth + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 521 + + + + changedUseMarkdownImport: + + + + 530 + + + + changedUseReadability: + + + + 531 + + + + useMarkdownImportButton + + + + 532 + + + + useReadabilityButton + + + + 533 + + + + readabilityHint + + + + 538 + + + + changedRTL: + + + + 547 + + + + rtlButton + + + + 548 + + + + changedShowGrid: + + + + 557 + + + + changedAltRows: + + + + 558 + + + + showGridButton + + + + 559 + + + + altRowsButton + + + + 560 + + + + externalEditorMenuButton + + + + 567 + + + + changedExternalEditorsMenu: + + + + 568 + + + + changedAutoPairing: + + + + 575 + + + + autoPairButton + + + + 576 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 5 + + + + + + Preferences Window + + + 6 + + + + + 155 + + + + + + + + + + + + + + + + + + + general view + + + 157 + + + + + + + + 158 + + + + + + + + 172 + + + + + + + + 174 + + + + + + + + 175 + + + + + + + + 178 + + + + + + + + 287 + + + + + + + + 288 + + + + + + + + 289 + + + + + + + + 323 + + + + + + + + 250 + + + + + + + + database view + + + 251 + + + + + + + + 252 + + + + + + + + 257 + + + + + 268 + + + + + + + + + + + + + + + + + + + + + + + + + + + editing view + + + 271 + + + + + + + + + + 272 + + + + + 273 + + + + + 274 + + + + + + + + 275 + + + + + + + + 276 + + + + + + + + 278 + + + + + + + + 279 + + + + + + + + 280 + + + + + + + + 282 + + + + + + + + 283 + + + + + + + + 307 + + + + + + + + 311 + + + + + + + + 325 + + + + + 326 + + + + + + + + 327 + + + + + 328 + + + + + 329 + + + + + 330 + + + + + 331 + + + + + 332 + + + + + 333 + + + + + 335 + + + + + 336 + + + + + 337 + + + + + + + + 340 + + + + + 341 + + + + + 342 + + + + + 344 + + + + + 345 + + + + + 346 + + + + + 347 + + + + + 348 + + + + + 349 + + + + + 350 + + + + + 351 + + + + + 159 + + + + + + + + + + + 163 + + + + + 162 + + + + + 161 + + + + + 160 + + + + + 253 + + + + + + + + + + 256 + + + + + 255 + + + + + 254 + + + + + 352 + + + + + + + + + + + + + + + + + + + + + + + fonts colors view + + + 387 + + + + + + + + 388 + + + + + + + + 389 + + + + + + + + 390 + + + + + 391 + + + + + 392 + + + + + 429 + + + + + + + + 430 + + + + + + + + 431 + + + + + + + + 432 + + + + + 433 + + + + + 434 + + + + + 435 + + + + + 436 + + + + + 454 + + + + + + + + 455 + + + + + 467 + + + + + + + + 468 + + + + + 354 + + + + + 415 + + + + + + + + 416 + + + + + 400 + + + + + 396 + + + + + 397 + + + + + + + + 398 + + + + + 401 + + + + + + + + 402 + + + + + 440 + + + + + + + + 443 + + + + + 441 + + + + + + + + 442 + + + + + 470 + + + + + + + + 471 + + + + + 472 + + + + + + + + 473 + + + + + 487 + + + + + + + + 488 + + + + + 492 + + + + + + + + 493 + + + + + 522 + + + + + + + + 523 + + + + + + + + 524 + + + + + + + + 525 + + + + + 526 + + + + + 527 + + + + + 536 + + + + + + + + 537 + + + + + 542 + + + + + + + + 543 + + + + + + + + 544 + + + + + 545 + + + + + 549 + + + + + + + + 550 + + + + + 552 + + + + + + + + 553 + + + + + 561 + + + + + + + + 562 + + + + + + + + 563 + + + + + + + + + + 564 + + + + + 565 + + + + + 566 + + + + + 569 + + + + + + + + 570 + + + + + + + + 571 + + + + + + + + 572 + + + + + 573 + + + + + 574 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{412, 579}, {464, 277}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + {{572, 765}, {119, 73}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{370, 390}, {368, 406}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{376, 443}, {464, 413}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAw2QAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCAAAAw2QAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC7AAAwzgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw3AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCHAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAww8AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{236, 449}, {500, 319}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABCAAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABC5AAAwkwAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDgoAAwlQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCBAAAwkAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABDGgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCgAAAwy0AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABC9AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABC3gAAww0AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCAAAAwoAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCCAAAwgAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDIAAAwdgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABCHAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDggAAwlgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBoAAAwggAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCDAAAwrAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSQAAweAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAwfAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDnwAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDrYAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + {{329, 268}, {399, 334}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{329, 268}, {399, 334}} + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCHAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC7AAAwzgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + + 576 + + + + + FirstResponder + + : + id + + + : + + : + id + + + + IBUserSource + + + + + NotationPrefsViewController + NSObject + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + addedExtension: + id + + + addedType: + id + + + changePassphrase: + id + + + changedFileDeletionWarningSettings: + id + + + changedFileStorageFormat: + id + + + changedKeyLength: + id + + + changedKeychainSettings: + id + + + changedSecureTextEntry: + id + + + makeDefaultExtension: + id + + + removeFromKeychain: + id + + + removedExtension: + id + + + removedType: + id + + + syncFrequencyChange: + id + + + toggledEncryption: + id + + + toggledSyncing: + id + + + visitSimplenoteSite: + id + + + + NSTableView + NSTableView + NSButton + NSButton + NSButton + NSButton + NSTextField + NSTextField + NSStepper + NSButton + NSButton + NSButton + NSMatrix + NSButton + NSButton + NSButton + NSButton + NSPopUpButton + NSTextField + NSTextField + NSImageView + NSTextField + NSPopUpButton + NSTextField + NSImageView + NSView + NSWindow + + + + allowedExtensionsTable + NSTableView + + + allowedTypesTable + NSTableView + + + changePasswordButton + NSButton + + + confirmFileDeletionButton + NSButton + + + enableEncryptionButton + NSButton + + + enabledSyncButton + NSButton + + + fileAttributesHelpText + NSTextField + + + keyLengthField + NSTextField + + + keyLengthStepper + NSStepper + + + makeDefaultExtensionButton + NSButton + + + newExtensionButton + NSButton + + + newTypeButton + NSButton + + + passwordSettingsMatrix + NSMatrix + + + removeExtensionButton + NSButton + + + removeFromKeychainButton + NSButton + + + removeTypeButton + NSButton + + + secureTextEntryButton + NSButton + + + storageFormatPopupButton + NSPopUpButton + + + syncAccountField + NSTextField + + + syncEncAlertField + NSTextField + + + syncEncAlertView + NSImageView + + + syncPasswordField + NSTextField + + + syncingFrequency + NSPopUpButton + + + verifyStatusField + NSTextField + + + verifyStatusImageView + NSImageView + + + view + NSView + + + webOptionsWindow + NSWindow + + + + IBProjectSource + ./Classes/NotationPrefsViewController.h + + + + PrefsWindowController + NSObject + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + changeBodyFont: + id + + + changedAltRows: + id + + + changedAutoPairing: + id + + + changedAutoSuggestLinks: + id + + + changedBackgroundTextColorWell: + id + + + changedExternalEditorsMenu: + id + + + changedForegroundTextColorWell: + id + + + changedHighlightSearchTerms: + id + + + changedMakeURLsClickable: + id + + + changedNoteDeletion: + id + + + changedNotesFolderLocation: + id + + + changedQuitBehavior: + id + + + changedRTL: + id + + + changedSearchHighlightColorWell: + id + + + changedShowGrid: + id + + + changedSoftTabs: + id + + + changedSpellChecking: + id + + + changedStyledTextBehavior: + id + + + changedTabBehavior: + id + + + changedTableText: + id + + + changedTitleCompletion: + id + + + changedUseMarkdownImport: + id + + + changedUseReadability: + id + + + setAppShortcut: + id + + + setMaxWidth: + id + + + toggleHideDockIcon: + id + + + toggleKeepsTextWidthInWindow: + id + + + + NSButton + NSComboBox + NSTextField + NSButton + NSButton + NSColorWell + NSTextField + NSButton + NSButton + NSButton + NSView + NSView + NSPopUpButton + NSPopUpButton + NSView + NSColorWell + NSView + NSButton + NSButton + NSSlider + NSView + NotationPrefsViewController + NSButton + NSButton + NSColorWell + NSButton + NSButton + NSButton + NSMatrix + NSPopUpButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSWindow + + + + altRowsButton + NSButton + + + appList + NSComboBox + + + appShortcutField + NSTextField + + + autoPairButton + NSButton + + + autoSuggestLinksButton + NSButton + + + backgroundColorWell + NSColorWell + + + bodyTextFontField + NSTextField + + + checkSpellingButton + NSButton + + + completeNoteTitlesButton + NSButton + + + confirmDeletionButton + NSButton + + + databaseView + NSView + + + editingView + NSView + + + externalEditorMenuButton + NSPopUpButton + + + folderLocationsMenuButton + NSPopUpButton + + + fontsColorsView + NSView + + + foregroundColorWell + NSColorWell + + + generalView + NSView + + + highlightSearchTermsButton + NSButton + + + makeURLsClickable + NSButton + + + maxWidthSlider + NSSlider + + + notationPrefsView + NSView + + + notationPrefsViewController + NotationPrefsViewController + + + quitWhenClosingButton + NSButton + + + rtlButton + NSButton + + + searchHighlightColorWell + NSColorWell + + + showGridButton + NSButton + + + softTabsButton + NSButton + + + styledTextButton + NSButton + + + tabKeyRadioMatrix + NSMatrix + + + tableTextMenuButton + NSPopUpButton + + + tableTextSizeField + NSTextField + + + togDockButton + NSButton + + + togDockLabel + NSTextField + + + useMarkdownImportButton + NSButton + + + useReadabilityButton + NSButton + + + window + NSWindow + + + + IBProjectSource + ./Classes/PrefsWindowController.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + {9, 8} + {7, 2} + {15, 15} + + + diff --git a/it.lproj/SaveHTMLPreview.nib/designable.nib b/it.lproj/SaveHTMLPreview.nib/designable.nib new file mode 100644 index 00000000..f39809b5 --- /dev/null +++ b/it.lproj/SaveHTMLPreview.nib/designable.nib @@ -0,0 +1,462 @@ + + + + 1050 + 10J869 + 1305 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1305 + + + YES + NSCustomView + NSTextField + NSButtonCell + NSTextFieldCell + NSButton + NSCustomObject + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + + + YES + + PreviewController + + + FirstResponder + + + NSApplication + + + + 268 + + YES + + + 268 + {{25, 9}, {244, 34}} + + + + YES + + 67239424 + 138412032 + Select this to embed the ouput within your current preview HTML and CSS + + LucidaGrande + 11 + 16 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 1 + MC40MTMwNDM0NzgzIDAuNDEzMDQzNDc4MyAwLjQxMzA0MzQ3ODMAA + + + + + + 268 + {{26, 49}, {242, 18}} + + + + YES + + -2080244224 + 0 + Include preview template in output + + LucidaGrande + 13 + 1044 + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + {286, 75} + + + + NSView + + + + + YES + + + accessoryView + + + + 41 + + + + includeTemplate + + + + 44 + + + + templateNote + + + + 47 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 7 + + + YES + + + + + View + + + 42 + + + YES + + + + + + 43 + + + + + 45 + + + YES + + + + + + 46 + + + + + + + YES + + YES + 42.IBPluginDependency + 42.IBViewBoundsToFrameTransform + 43.IBPluginDependency + 45.IBPluginDependency + 46.IBPluginDependency + 7.IBEditorWindowLastContentRect + 7.IBPluginDependency + 7.IBUserGuides + 7.WindowOrigin + 7.editorWindowContentRectSynchronizationRect + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCiAAAwggAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{297, 274}, {286, 58}} + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + {332, 343} + {{403, 401}, {264, 327}} + + + + YES + + + + + + YES + + + + + 47 + + + + YES + + PreviewController + NSWindowController + + YES + + YES + cancelShare: + hideShareURL: + openShareURL: + saveHTML: + shareAsk: + shareNote: + switchTabs: + + + YES + id + id + id + id + id + id + id + + + + YES + + YES + cancelShare: + hideShareURL: + openShareURL: + saveHTML: + shareAsk: + shareNote: + switchTabs: + + + YES + + cancelShare: + id + + + hideShareURL: + id + + + openShareURL: + id + + + saveHTML: + id + + + shareAsk: + id + + + shareNote: + id + + + switchTabs: + id + + + + + YES + + YES + accessoryView + includeTemplate + preview + shareConfirmation + shareNotification + sourceView + tabView + templateNote + urlTextField + + + YES + NSView + NSButton + WebView + NSView + NSView + NSTextView + NSTabView + NSTextField + NSTextField + + + + YES + + YES + accessoryView + includeTemplate + preview + shareConfirmation + shareNotification + sourceView + tabView + templateNote + urlTextField + + + YES + + accessoryView + NSView + + + includeTemplate + NSButton + + + preview + WebView + + + shareConfirmation + NSView + + + shareNotification + NSView + + + sourceView + NSTextView + + + tabView + NSTabView + + + templateNote + NSTextField + + + urlTextField + NSTextField + + + + + IBProjectSource + ./Classes/PreviewController.h + + + + WebView + + reloadFromOrigin: + id + + + reloadFromOrigin: + + reloadFromOrigin: + id + + + + IBProjectSource + ./Classes/WebView.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + NSSwitch + {15, 15} + + + diff --git a/it.lproj/SaveHTMLPreview.nib/keyedobjects.nib b/it.lproj/SaveHTMLPreview.nib/keyedobjects.nib new file mode 100644 index 00000000..08a0f01f Binary files /dev/null and b/it.lproj/SaveHTMLPreview.nib/keyedobjects.nib differ diff --git a/it.lproj/SavedSearches.nib/designable.nib b/it.lproj/SavedSearches.nib/designable.nib new file mode 100644 index 00000000..06717ecb --- /dev/null +++ b/it.lproj/SavedSearches.nib/designable.nib @@ -0,0 +1,1340 @@ + + + + 1050 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + YES + + + + YES + + SavedSearchesController + + + FirstResponder + + + NSApplication + + + 27 + 2 + {{495, 324}, {317, 207}} + -260571136 + Segnalibri note + + NSPanel + + + View + + {1.79769e+308, 1.79769e+308} + {255, 64} + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 256 + {284, 157} + + YES + + + 256 + {{285, 0}, {12, 17}} + + + YES + + description + 226 + 40 + 1000 + + 75628096 + 2048 + Segnalibro + + LucidaGrande + 11 + 3100 + + + 3 + MC4zMzMzMzI5OQA + + + 6 + System + headerTextColor + + 3 + MAA + + + + + 337772096 + 2048 + + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + + + 1 + YES + YES + + + + keyEquiv + 52.056640625 + 23.056640625 + 1000 + + 75628096 + 2048 + Chiave + + + 6 + System + headerColor + + 3 + MQA + + + + + + 337772096 + 67110912 + + + + + + + 1 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 17 + 306184192 + + + 5 + 15 + 0 + YES + 0 + + + {{1, 1}, {284, 157}} + + + + + 4 + + + + 256 + {{285, 1}, {11, 157}} + + 256 + + _doScroller: + 0.82631576061248779 + + + + -2147483392 + {{-100, -100}, {132, 11}} + + 257 + + _doScroller: + 0.99047619104385376 + + + {{10, 39}, {297, 159}} + + + 18 + + + + QSAAAEEgAABBmAAAQZgAAA + + + + 292 + {{10, 9}, {23, 22}} + + + YES + + 67239424 + 134217728 + + + + 138690815 + 6 + + NSImage + Add + + + NSImage + Add_Pressed + + + + + + 200 + 25 + + + + + 292 + {{32, 9}, {23, 22}} + + YES + + 604110336 + 134217728 + + + + 139215103 + 6 + + NSImage + Remove + + + NSImage + Remove_Pressed + + + + + + 200 + 25 + + + + {317, 207} + + + {{0, 0}, {1280, 778}} + {255, 80} + {1.79769e+308, 1.79769e+308} + bookmarksWindow + + + + + YES + + + nextKeyView + + + + 369 + + + + addBookmarkButton + + + + 372 + + + + removeBookmarkButton + + + + 373 + + + + bookmarksTableView + + + + 374 + + + + window + + + + 375 + + + + addBookmark: + + + + 376 + + + + removeBookmark: + + + + 377 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 354 + + + YES + + + + Panel + + + 355 + + + YES + + + + + + + + 363 + + + YES + + + + + + + + 364 + + + YES + + + + + + + 366 + + + YES + + + + + + 378 + + + YES + + + + + + 367 + + + YES + + + + + + 368 + + + YES + + + + + + 383 + + + + + 384 + + + + + 385 + + + + + 386 + + + + + 387 + + + + + 388 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 354.IBEditorWindowLastContentRect + 354.IBPluginDependency + 354.IBWindowTemplateEditedContentRect + 354.ImportedFromIB2 + 354.windowTemplate.hasMinSize + 354.windowTemplate.minSize + 355.IBPluginDependency + 355.ImportedFromIB2 + 363.IBPluginDependency + 363.ImportedFromIB2 + 364.CustomClassName + 364.IBPluginDependency + 364.ImportedFromIB2 + 366.IBPluginDependency + 366.ImportedFromIB2 + 367.IBAttributePlaceholdersKey + 367.IBPluginDependency + 367.ImportedFromIB2 + 368.IBAttributePlaceholdersKey + 368.IBPluginDependency + 368.ImportedFromIB2 + 378.IBPluginDependency + 378.ImportedFromIB2 + 383.IBPluginDependency + 384.IBPluginDependency + 385.IBPluginDependency + 385.IBShouldRemoveOnLegacySave + 386.IBPluginDependency + 386.IBShouldRemoveOnLegacySave + 387.IBPluginDependency + 387.IBShouldRemoveOnLegacySave + 388.IBPluginDependency + 388.IBShouldRemoveOnLegacySave + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{368, 521}, {317, 207}} + com.apple.InterfaceBuilder.CocoaPlugin + {{368, 521}, {317, 207}} + + + {255, 64} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + BookmarksTable + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + YES + + + YES + + + + + YES + + + YES + + + + 388 + + + + YES + + BookmarksTable + NSTableView + + IBProjectSource + BookmarksTable.h + + + + FirstResponder + NSObject + + : + id + + + IBUserSource + + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + FastListDataSource.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + NSTableView + + IBProjectSource + NotesTableView.h + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + + + RBSplitView + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSPanel + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSPanel.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSScrollView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSScrollView.h + + + + NSScroller + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSScroller.h + + + + NSTableColumn + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableColumn.h + + + + NSTableView + NSControl + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + diff --git a/it.lproj/SavedSearches.nib/keyedobjects.nib b/it.lproj/SavedSearches.nib/keyedobjects.nib new file mode 100644 index 00000000..09d8f542 Binary files /dev/null and b/it.lproj/SavedSearches.nib/keyedobjects.nib differ diff --git a/it.lproj/Scorciatoie terribilmente utili.nvhelp b/it.lproj/Scorciatoie terribilmente utili.nvhelp new file mode 100755 index 00000000..363ede84 --- /dev/null +++ b/it.lproj/Scorciatoie terribilmente utili.nvhelp @@ -0,0 +1,104 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 +\readonlydoc1{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 LucidaGrande;} +{\colortbl;\red255\green255\blue255;} +{\info +{\author Paolo Tramannoni}}\margl1440\margr1440\vieww10200\viewh10800\viewkind0 +\deftab720 +\pard\pardeftab720\ql\qnatural + +\f0\fs24 \cf0 In ordine di utilit\'e0\'a0 decrescente:\ +\ + +\f1 \uc0\u8984 +\f0 L Porta il cursore nel campo di ricerca/inserimento titolo\ +Escape Cancella la ricerca corrente\ +Return Attiva la modifica di una nota, o se necessario la crea\ +Tab Porta il cursore in un\'92area di testo diversa\ + +\f1 \uc0\u8984 +\f0 K Seleziona la nota precedente nell\'92elenco\ + +\f1 \uc0\u8984 +\f0 J Seleziona la nota successiva nell\'92elenco\ + +\f1 \uc0\u8984 +\f0 D Deseleziona la nota corrente, ripristinando il testo della ricerca\ + +\f1 \uc0\u8984 +\f0 +\f1 \uc0\u8679 +\f0 V Incolla il contenuto degli appunti come nuova nota\ + +\f1 \uc0\u8984 +\f0 R Rinomina la nota selezionata\ +\pard\tx1440\pardeftab720\ql\qnatural + +\f1 \cf0 \uc0\u8984 +\f0 +\f1 \uc0\u9003 +\f0 Deseleziona la nota o le note selezionate\ +\pard\pardeftab720\ql\qnatural + +\f1 \cf0 \uc0\u8984 +\f0 +\f1 \uc0\u8679 T +\f0 Etichetta la nota selezionata\ + +\f1 \uc0\u8984 +\f0 G Trova la prossima ricorrenza del testo cercato\ + +\f1 \uc0\u8984 +\f0 +\f1 \uc0\u8679 +\f0 G Trova la precedente ricorrenza del testo cercato\ + +\f1 \uc0\u8984 +\f0 +\f1 \uc0\u8617 +\f0 Apre la URL su cui si trova il cursore di inserimento\ + +\f1 \uc0\u8984 +\f0 +\f1 \uc0\u8592 +\f0 Porta il cursore nel campo del titolo quando si trova all\'92inizio del corpo della nota\ + +\f1 \uc0\u8984 +\f0 +\f1 \uc0\u8594 +\f0 Porta il cursore nel corpo della nota quando si trova alla fine del titolo\ + +\f1 \uc0\u8984 +\f0 +\f1 \uc0\u8679 +\f0 D Aggiunge un segnalibro alla nota selezionata\ + +\f1 \uc0\u8984 +\f0 P Stampa la nota o le note selezionate\ + +\f1 \uc0\u8984 +\f0 E Esporta la nota o le note selezionate in altri formati\ +\ +Combinazioni di tasti per la formattazione del testo:\ +\ + +\f1 \uc0\u8984 +\f0 [ (parentesi quadra aperta) Riduce il rientro di una o pi\'f9 righe\ + +\f1 \uc0\u8984 +\f0 ] (parentesi quadra chiusa) Aumenta il rientro di una o pi\'f9 righe\ + +\f1 \uc0\u8997 +\f0 Tab Rientro\ + +\f1 \uc0\u8984 +\f0 T Rimuove gli stili dal testo (trasformandolo in testo piano)\ + +\f1 \uc0\u8984 +\f0 B Neretto\ + +\f1 \uc0\u8984 +\f0 I Corsivo\ + +\f1 \uc0\u8984 +\f0 Y Barrato\ +} \ No newline at end of file diff --git a/it.lproj/ServicesMenu.strings b/it.lproj/ServicesMenu.strings new file mode 100644 index 00000000..da8b49a4 --- /dev/null +++ b/it.lproj/ServicesMenu.strings @@ -0,0 +1 @@ +"NV: New Note With Selection" = "NV: Nuova nota con testo selezionato"; \ No newline at end of file diff --git a/it.lproj/TagEditingManager.xib b/it.lproj/TagEditingManager.xib new file mode 100644 index 00000000..50353374 --- /dev/null +++ b/it.lproj/TagEditingManager.xib @@ -0,0 +1,630 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSTextField + NSTextFieldCell + NSWindowTemplate + NSView + NSCustomObject + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + TagEditingManager + + + FirstResponder + + + NSApplication + + + 8219 + 2 + {{122, 324}, {322, 55}} + -461896704 + Modify or Add Tags to Selected Notes: + NSPanel + + {2000, 55} + {150, 55} + + + 256 + + + + 268 + {{20, 20}, {282, 22}} + + + + YES + + -1804468671 + 268436480 + + + LucidaGrande + 13 + 1044 + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + 3 + MAA + + + + + + {{7, 11}, {322, 55}} + + + + + {{0, 0}, {1440, 878}} + {150, 74} + {2000, 74} + + + + + + + tagField + + + + 412 + + + + tagPanel + + + + 413 + + + + multiTag: + + + + 425 + + + + initialFirstResponder + + + + 436 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 370 + + + + + + + + 371 + + + + + + + + 372 + + + + + + + + 373 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + {{625, 720}, {322, 55}} + com.apple.InterfaceBuilder.CocoaPlugin + {{625, 720}, {322, 55}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 436 + + + + + AppController + NSObject + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + bringFocusToControlField: + id + + + copyNoteLink: + id + + + deleteNote: + id + + + exportNote: + id + + + fieldAction: + id + + + importNotes: + id + + + multiTag: + id + + + openFileInEditor: + id + + + printNote: + id + + + renameNote: + id + + + revealNote: + id + + + savePreview: + id + + + selectPreviewMode: + id + + + setBWColorScheme: + id + + + setLCColorScheme: + id + + + setUserColorScheme: + id + + + sharePreview: + id + + + showHelpDocument: + id + + + showPreferencesWindow: + id + + + switchViewLayout: + id + + + syncWaitQuit: + id + + + tagNote: + id + + + toggleCollapse: + id + + + toggleFullscreen: + id + + + toggleNVActivation: + id + + + togglePreview: + id + + + toggleSourceView: + id + + + toggleWordCount: + id + + + + EmptyView + DualField + ETContentView + NSMenuItem + AugmentedScrollView + NotesTableView + NSMenuItem + NSMenuItem + NSMenu + NSPanel + NSProgressIndicator + NSScrollView + LinkingEditor + NSMenuItem + NSWindow + WordCountToken + + + + editorStatusView + EmptyView + + + field + DualField + + + mainView + ETContentView + + + multiMarkdownPreview + NSMenuItem + + + notesScrollView + AugmentedScrollView + + + notesTableView + NotesTableView + + + previewToggler + NSMenuItem + + + sparkleUpdateItem + NSMenuItem + + + statBarMenu + NSMenu + + + syncWaitPanel + NSPanel + + + syncWaitSpinner + NSProgressIndicator + + + textScrollView + NSScrollView + + + textView + LinkingEditor + + + textilePreview + NSMenuItem + + + window + NSWindow + + + wordCounter + WordCountToken + + + + IBProjectSource + ./Classes/AppController.h + + + + AugmentedScrollView + NSScrollView + + IBProjectSource + ./Classes/AugmentedScrollView.h + + + + DualField + NSTextField + + notesTable + NSTableView + + + notesTable + + notesTable + NSTableView + + + + IBProjectSource + ./Classes/DualField.h + + + + ETContentView + NSView + + IBProjectSource + ./Classes/ETContentView.h + + + + EmptyView + NSView + + labelText + NSTextField + + + labelText + + labelText + NSTextField + + + + IBProjectSource + ./Classes/EmptyView.h + + + + FirstResponder + + : + id + + + : + + : + id + + + + IBUserSource + + + + + LinkingEditor + NSTextView + + id + id + + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + + NSTextField + NotesTableView + + + + controlField + NSTextField + + + notesTableView + NotesTableView + + + + IBProjectSource + ./Classes/LinkingEditor.h + + + + NotesTableView + NSTableView + + id + id + + + + actionHideShowColumn: + id + + + toggleNoteBodyPreviews: + id + + + + controlField + NSTextField + + + controlField + + controlField + NSTextField + + + + IBProjectSource + ./Classes/NotesTableView.h + + + + TagEditingManager + NSObject + + NSTextField + NSPanel + + + + tagField + NSTextField + + + tagPanel + NSPanel + + + + IBProjectSource + ./Classes/TagEditingManager.h + + + + WordCountToken + NSTokenField + + IBProjectSource + ./Classes/WordCountToken.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + diff --git a/it.lproj/URLGetter.nib/designable.nib b/it.lproj/URLGetter.nib/designable.nib new file mode 100644 index 00000000..2484e7c4 --- /dev/null +++ b/it.lproj/URLGetter.nib/designable.nib @@ -0,0 +1,596 @@ + + + + 1060 + 10J567 + 1294 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1294 + + + YES + NSTextField + NSView + NSWindowTemplate + NSProgressIndicator + NSTextFieldCell + NSButtonCell + NSButton + NSCustomObject + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + + + YES + + URLGetter + + + FirstResponder + + + NSApplication + + + 1 + 2 + {{566, 537}, {460, 122}} + 1886912512 + Download in corso + + NSPanel + + + View + + {213, 107} + + + 256 + + YES + + + 1282 + + {{18, 18}, {346, 20}} + + 16396 + 1 + + + + 258 + {{17, 68}, {426, 34}} + + YES + + 67239424 + 272629760 + aHR0cDovL3d3dy5hcHBsZS5jb20vQmFjb24ucGRmCmFub3RoZXIgbGluZQ + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 258 + {{17, 46}, {326, 14}} + + YES + + 67239424 + 272629760 + Downloading: 90KB of 25MB + + LucidaGrande + 11 + 3100 + + + + + + + + + 256 + {{364, 12}, {82, 32}} + + YES + + 67239424 + 134217728 + Stop + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + {460, 122} + + {{0, 0}, {1920, 1178}} + {213, 129} + {1e+13, 1e+13} + + + + + YES + + + progress + + + + 335 + + + + progressStatus + + + + 336 + + + + objectURLStatus + + + + 337 + + + + cancelButton + + + + 338 + + + + window + + + + 339 + + + + cancelDownload: + + + + 340 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 328 + + + YES + + + + Panel + + + 329 + + + YES + + + + + + + + + 331 + + + + + 332 + + + YES + + + + + + 333 + + + YES + + + + + + 334 + + + YES + + + + + + 342 + + + + + 343 + + + + + 344 + + + + + -3 + + + Application + + + + + YES + + YES + -1.IBPluginDependency + -2.IBPluginDependency + -3.IBPluginDependency + 328.IBEditorWindowLastContentRect + 328.IBPluginDependency + 328.IBPropertyAccessControl + 328.IBWindowTemplateEditedContentRect + 328.ImportedFromIB2 + 329.IBPluginDependency + 329.ImportedFromIB2 + 331.IBPluginDependency + 331.IBPropertyAccessControl + 331.ImportedFromIB2 + 332.IBPluginDependency + 332.IBPropertyAccessControl + 332.ImportedFromIB2 + 333.IBPluginDependency + 333.IBPropertyAccessControl + 333.ImportedFromIB2 + 334.IBPluginDependency + 334.IBPropertyAccessControl + 334.ImportedFromIB2 + 342.IBPluginDependency + 343.IBPluginDependency + 344.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{268, 535}, {460, 122}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{268, 535}, {460, 122}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + + + + YES + + + + + 344 + + + + YES + + FirstResponder + + : + id + + + : + + : + id + + + + IBUserSource + + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + + didAdjustSubviews: + RBSplitView + + + willAdjustSubviews: + RBSplitView + + + + + IBProjectSource + ./Classes/NSObject.h + + + + RBSplitSubview + NSView + + IBProjectSource + ./Classes/RBSplitSubview.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + delegate + + delegate + id + + + + IBProjectSource + ./Classes/RBSplitView.h + + + + URLGetter + NSObject + + YES + + YES + cancelDownload: + startProgressIndication: + + + YES + id + id + + + + YES + + YES + cancelDownload: + startProgressIndication: + + + YES + + cancelDownload: + id + + + startProgressIndication: + id + + + + + YES + + YES + cancelButton + delegate + objectURLStatus + progress + progressStatus + userData + window + + + YES + NSButton + id + NSTextField + NSProgressIndicator + NSTextField + id + NSPanel + + + + YES + + YES + cancelButton + delegate + objectURLStatus + progress + progressStatus + userData + window + + + YES + + cancelButton + NSButton + + + delegate + id + + + objectURLStatus + NSTextField + + + progress + NSProgressIndicator + + + progressStatus + NSTextField + + + userData + id + + + window + NSPanel + + + + + IBProjectSource + ./Classes/URLGetter.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + diff --git a/it.lproj/URLGetter.nib/keyedobjects.nib b/it.lproj/URLGetter.nib/keyedobjects.nib new file mode 100644 index 00000000..5ce8cbe2 Binary files /dev/null and b/it.lproj/URLGetter.nib/keyedobjects.nib differ diff --git a/pt.lproj/MainMenu.xib b/pt.lproj/MainMenu.xib index 6cd5d980..37544cdb 100644 --- a/pt.lproj/MainMenu.xib +++ b/pt.lproj/MainMenu.xib @@ -1,17 +1,16 @@ - + - 1040 - 10J869 - 1305 - 1038.35 + 1050 + 10K540 + 1306 + 1038.36 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 1305 + 1306 - - YES + NSUserDefaultsController NSScroller NSTableHeaderView @@ -31,17 +30,15 @@ NSView NSTextField NSTextView - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin - + PluginDependencyRecalculationVersion - - YES + NSApplication @@ -68,19 +65,19 @@ {{7, 11}, {397, 464}} + - {{0, 0}, {1920, 1058}} + {{0, 0}, {1440, 878}} {213, 129} {1e+13, 1e+13} NotationWindow MainMenu - - YES + - nvALT2 + nvALT 1048576 2147483647 @@ -94,12 +91,11 @@ submenuAction: - nvALT2 - - YES + nvALT + - Sobre o Notational Velocity + Sobre o nvALT 2147483647 @@ -168,9 +164,7 @@ submenuAction: Serviços - - YES - + _NSServicesMenu @@ -187,7 +181,7 @@ - Ocultar nvALT2 + Ocultar nvALT h 1048576 2147483647 @@ -225,14 +219,14 @@ - Encerrar nvALT2 + Encerrar nvALT q 1048576 2147483647 - + _NSAppleMenu @@ -248,8 +242,7 @@ 89 Nota - - YES + Renomear @@ -380,7 +373,7 @@ 96 - + @@ -394,8 +387,7 @@ submenuAction: Editar - - YES + Desfazer @@ -521,8 +513,7 @@ submenuAction: Procurar - - YES + Procurar… @@ -563,7 +554,7 @@ 7 - + @@ -577,8 +568,7 @@ submenuAction: Ortografia - - YES + Ortografia… @@ -606,7 +596,7 @@ - + @@ -620,8 +610,7 @@ submenuAction: Transformações - - YES + Tudo em Maiúsculas @@ -649,10 +638,10 @@ - + - + @@ -667,8 +656,19 @@ 99 Visualizar - - YES + + + + YES + YES + Enter Full Screen + f + 1310720 + 2147483647 + + + 314 + Alternar para Leiaute Horizontal @@ -697,8 +697,7 @@ submenuAction: Color Schemes - - YES + YES @@ -730,7 +729,7 @@ - + @@ -755,8 +754,7 @@ 97 Colunas - - YES + Item @@ -766,7 +764,7 @@ - + @@ -781,8 +779,7 @@ 98 Organizar Por - - YES + Item @@ -792,7 +789,7 @@ - + @@ -877,7 +874,7 @@ 101 - + @@ -892,8 +889,7 @@ 103 Marcadores - - YES + Item @@ -903,7 +899,7 @@ - + @@ -917,8 +913,7 @@ submenuAction: Formatar - - YES + Texto Simples @@ -939,28 +934,18 @@ 2 Negrito - - YES - - YES - NSFont - NSOriginalFont - NSParagraphStyle + + + LucidaGrande-Bold + 14 + 16 - - YES - - LucidaGrande-Bold - 14 - 16 - - - - 4 - - + + + 4 + - + @@ -974,28 +959,18 @@ 1 Itálico - - YES - - YES - NSFont - NSOriginalFont - NSParagraphStyle + + + LucidaGrande + 14 + 16 - - YES - - LucidaGrande - 14 - 16 - - - - 4 - - + + + 4 + - + @@ -1008,26 +983,15 @@ Tachado - - YES - - YES - NSFont - NSOriginalFont - NSParagraphStyle - NSStrikethrough - - - YES - - - - 4 - - - + + + + + 4 + - + + @@ -1080,7 +1044,7 @@ 102 - + @@ -1093,8 +1057,7 @@ submenuAction: Preview - - YES + (Multi)Markdown @@ -1168,7 +1131,7 @@ - + @@ -1182,8 +1145,7 @@ submenuAction: Janela - - YES + Minimizar @@ -1231,7 +1193,7 @@ - + _NSWindowsMenu @@ -1246,8 +1208,7 @@ submenuAction: Ajuda - - YES + Atalhos de Teclado @@ -1333,10 +1294,10 @@ 2 - + - + _NSMainMenu @@ -1345,8 +1306,7 @@ 274 - - YES + 319 @@ -1378,7 +1338,7 @@ - + {147, 102} EmptyView NSView @@ -1389,18 +1349,13 @@ 258 - - YES + 257 - - YES - - YES - NSStringPboardType - - + + NSStringPboardType + {{206, 6}, {145, 14}} YES @@ -1464,7 +1419,7 @@ - + {381, 23} @@ -1486,8 +1441,7 @@ 256 - - YES + 256 @@ -1534,17 +1488,16 @@ - + {387, 106} - {{0, 0}, {1920, 1058}} + {{0, 0}, {1440, 878}} {213, 129} {1e+13, 1e+13} barMenu - - YES + Marcadores @@ -1557,8 +1510,7 @@ 901 Marcadores - - YES + Item @@ -1568,7 +1520,7 @@ - + @@ -1582,8 +1534,7 @@ submenuAction: Formatar - - YES + Texto Simples @@ -1604,7 +1555,7 @@ 2 Negrito - + @@ -1618,7 +1569,7 @@ 1 Itálico - + @@ -1631,7 +1582,7 @@ Tachado - + @@ -1684,7 +1635,7 @@ 102 - + @@ -1745,6 +1696,15 @@ 91 + + + Insert Link + L + 1048576 + 2147483647 + + + YES @@ -1783,8 +1743,7 @@ submenuAction: Color Schemes - - YES + YES @@ -1816,7 +1775,7 @@ - + @@ -1850,14 +1809,14 @@ - Encerrar Notational Velocity + Encerrar nvALT q 1048576 2147483647 - + @@ -1868,39 +1827,33 @@ 274 - - YES + 2304 - - YES + 2322 - - YES - - YES - Apple HTML pasteboard type - Apple PDF pasteboard type - Apple PICT pasteboard type - Apple PNG pasteboard type - Apple URL pasteboard type - CorePasteboardFlavorType 0x6D6F6F76 - NSColor pasteboard type - NSFilenamesPboardType - NSStringPboardType - NeXT Encapsulated PostScript v1.2 pasteboard type - NeXT RTFD pasteboard type - NeXT Rich Text Format v1.0 pasteboard type - NeXT TIFF v4.0 pasteboard type - NeXT font pasteboard type - NeXT ruler pasteboard type - WebURLsWithTitlesPboardType - public.url - - + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + Apple URL pasteboard type + CorePasteboardFlavorType 0x6D6F6F76 + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + NeXT font pasteboard type + NeXT ruler pasteboard type + WebURLsWithTitlesPboardType + public.url + {399, 14} @@ -1912,10 +1865,9 @@ - - YES + - + 6 @@ -1928,46 +1880,28 @@ 0 - - YES - - YES - NSBackgroundColor - NSColor + + + 6 + System + selectedTextBackgroundColor + - - YES - - 6 - System - selectedTextBackgroundColor - - - - 6 - System - selectedTextColor - - + + 6 + System + selectedTextColor + - + - - YES - - YES - NSColor - NSUnderline - - - YES - - 1 - MCAwIDEAA - - + + + 1 + MCAwIDEAA - + + 6 @@ -1975,7 +1909,7 @@ {80, 0} - + {399, 304} @@ -2007,7 +1941,7 @@ 1 0.94565218687057495 - + {399, 304} 528 @@ -2018,13 +1952,11 @@ 274 - - YES + 2304 - - YES + 4352 @@ -2047,9 +1979,7 @@ - - YES - + 3 2 @@ -2072,7 +2002,7 @@ YES 0 - + {{0, 17}, {399, 136}} @@ -2107,10 +2037,9 @@ 2304 - - YES + - + {399, 17} @@ -2119,7 +2048,7 @@ 4 - + {399, 153} 528 @@ -2133,10 +2062,9 @@ YES - + - - YES + performMiniaturize: @@ -3181,15 +3109,28 @@ 1299 - + + + fsMenuItem + + + + 1301 + + + + insertLink: + + + + 1303 + + - - YES + 0 - - YES - + @@ -3208,8 +3149,7 @@ 29 - - YES + @@ -3219,30 +3159,28 @@ - + MainMenu 19 - - YES + - + 24 - - YES + - + @@ -3273,17 +3211,15 @@ 56 - - YES + - + 57 - - YES + @@ -3297,7 +3233,7 @@ - + @@ -3313,10 +3249,9 @@ 131 - - YES + - + @@ -3377,17 +3312,15 @@ 83 - - YES + - + 81 - - YES + @@ -3401,7 +3334,7 @@ - + @@ -3462,17 +3395,15 @@ 103 - - YES + - + 106 - - YES + @@ -3482,7 +3413,7 @@ - + @@ -3518,17 +3449,15 @@ 163 - - YES + - + 169 - - YES + @@ -3544,7 +3473,7 @@ - + @@ -3570,22 +3499,20 @@ 168 - - YES + - + 159 - - YES + - + @@ -3626,21 +3553,19 @@ 184 - - YES + - + 185 - - YES + - + @@ -3681,21 +3606,19 @@ 1093 - - YES + - + 1094 - - YES + - + @@ -3716,17 +3639,15 @@ 382 - - YES + - + 383 - - YES + @@ -3741,25 +3662,24 @@ - + + 386 - - YES + - + 387 - - YES + - + @@ -3770,19 +3690,17 @@ 389 - - YES + - + 390 - - YES + - + @@ -3828,17 +3746,15 @@ 397 - - YES + - + 398 - - YES + @@ -3848,7 +3764,7 @@ - + @@ -3899,19 +3815,17 @@ 996 - - YES + - + 997 - - YES + - + @@ -3928,20 +3842,18 @@ 341 - - YES + - + editorStatus 342 - - YES + - + @@ -3953,51 +3865,46 @@ 1066 - - YES + - + fieldcustomview 1067 - - YES + - + 1079 - - YES + - + quit waiting 1080 - - YES + - + 1081 - - YES + - + @@ -4008,10 +3915,9 @@ 1083 - - YES + - + @@ -4063,8 +3969,7 @@ 1123 - - YES + @@ -4081,7 +3986,8 @@ - + + @@ -4112,21 +4018,19 @@ 1140 - - YES + - + 1141 - - YES + - + @@ -4192,17 +4096,15 @@ 1181 - - YES + - + 1182 - - YES + @@ -4212,7 +4114,7 @@ - + @@ -4263,19 +4165,17 @@ 1199 - - YES + - + 1200 - - YES + - + @@ -4291,21 +4191,19 @@ 1203 - - YES + - + 1204 - - YES + - + @@ -4326,30 +4224,26 @@ 1212 - - YES + - + notation 1213 - - YES - + 1217 - - YES + - + Scroll View - Linking Editor @@ -4371,13 +4265,12 @@ 1221 - - YES + - + Augmented Scroll View - Notes Table View @@ -4404,17 +4297,15 @@ 1258 - - YES + - + 1259 - - YES + @@ -4423,7 +4314,7 @@ - + @@ -4459,10 +4350,9 @@ 1274 - - YES + - + Word Count Token @@ -4511,1189 +4401,682 @@ - - - - YES - - YES - -3.IBPluginDependency - 1000.IBPluginDependency - 1000.ImportedFromIB2 - 103.IBPluginDependency - 103.ImportedFromIB2 - 1053.IBPluginDependency - 1053.ImportedFromIB2 - 1055.IBPluginDependency - 1055.ImportedFromIB2 - 1057.IBPluginDependency - 1057.ImportedFromIB2 - 1058.IBPluginDependency - 1058.ImportedFromIB2 - 106.IBEditorWindowLastContentRect - 106.IBPluginDependency - 106.ImportedFromIB2 - 1061.IBPluginDependency - 1061.ImportedFromIB2 - 1062.IBPluginDependency - 1062.ImportedFromIB2 - 1066.IBEditorWindowLastContentRect - 1066.IBPluginDependency - 1066.ImportedFromIB2 - 1067.CustomClassName - 1067.IBPluginDependency - 1067.ImportedFromIB2 - 1079.IBEditorWindowLastContentRect - 1079.IBPluginDependency - 1079.IBWindowTemplateEditedContentRect - 1079.ImportedFromIB2 - 1080.IBPluginDependency - 1080.ImportedFromIB2 - 1081.IBPluginDependency - 1081.ImportedFromIB2 - 1082.IBPluginDependency - 1082.ImportedFromIB2 - 1083.IBPluginDependency - 1083.ImportedFromIB2 - 1087.IBPluginDependency - 1087.ImportedFromIB2 - 1093.IBPluginDependency - 1093.ImportedFromIB2 - 1094.IBEditorWindowLastContentRect - 1094.IBPluginDependency - 1094.ImportedFromIB2 - 1095.IBPluginDependency - 1095.ImportedFromIB2 - 1096.IBPluginDependency - 1096.ImportedFromIB2 - 1097.IBPluginDependency - 1097.ImportedFromIB2 - 1102.IBPluginDependency - 1103.IBPluginDependency - 1104.IBPluginDependency - 1105.IBPluginDependency - 111.IBPluginDependency - 111.ImportedFromIB2 - 1113.IBPluginDependency - 1114.IBPluginDependency - 1116.IBPluginDependency - 1118.IBPluginDependency - 1123.IBEditorWindowLastContentRect - 1123.IBPluginDependency - 1124.IBEditorWindowLastContentRect - 1124.IBPluginDependency - 1124.IBViewBoundsToFrameTransform - 1132.IBPluginDependency - 1137.IBPluginDependency - 1138.IBPluginDependency - 1139.IBPluginDependency - 1140.IBPluginDependency - 1141.IBEditorWindowLastContentRect - 1141.IBPluginDependency - 1142.IBPluginDependency - 1142.ImportedFromIB2 - 1143.IBPluginDependency - 1143.ImportedFromIB2 - 1144.IBPluginDependency - 1144.ImportedFromIB2 - 1160.IBPluginDependency - 1160.ImportedFromIB2 - 1162.IBPluginDependency - 1162.ImportedFromIB2 - 1163.IBPluginDependency - 1163.ImportedFromIB2 - 1165.IBPluginDependency - 1165.ImportedFromIB2 - 1166.IBPluginDependency - 1166.ImportedFromIB2 - 1167.IBPluginDependency - 1167.ImportedFromIB2 - 1171.IBPluginDependency - 1171.ImportedFromIB2 - 1173.IBPluginDependency - 1175.IBPluginDependency - 1181.IBPluginDependency - 1181.ImportedFromIB2 - 1182.IBEditorWindowLastContentRect - 1182.IBPluginDependency - 1182.ImportedFromIB2 - 1183.IBPluginDependency - 1183.ImportedFromIB2 - 1184.IBPluginDependency - 1184.ImportedFromIB2 - 1185.IBPluginDependency - 1185.ImportedFromIB2 - 1186.IBPluginDependency - 1186.ImportedFromIB2 - 1187.IBPluginDependency - 1187.ImportedFromIB2 - 1188.IBPluginDependency - 1188.ImportedFromIB2 - 1189.IBPluginDependency - 1189.ImportedFromIB2 - 1190.IBPluginDependency - 1190.ImportedFromIB2 - 1191.IBPluginDependency - 1191.ImportedFromIB2 - 1199.IBPluginDependency - 1199.ImportedFromIB2 - 1200.IBEditorWindowLastContentRect - 1200.IBPluginDependency - 1200.ImportedFromIB2 - 1201.IBPluginDependency - 1201.ImportedFromIB2 - 1202.IBPluginDependency - 1203.IBPluginDependency - 1204.IBEditorWindowLastContentRect - 1204.IBPluginDependency - 1205.IBPluginDependency - 1205.ImportedFromIB2 - 1206.IBPluginDependency - 1206.ImportedFromIB2 - 1207.IBPluginDependency - 1207.ImportedFromIB2 - 1212.IBEditorWindowLastContentRect - 1212.IBPluginDependency - 1212.IBWindowTemplateEditedContentRect - 1212.ImportedFromIB2 - 1212.NSWindowTemplate.visibleAtLaunch - 1213.CustomClassName - 1213.IBPluginDependency - 1213.ImportedFromIB2 - 1217.IBPluginDependency - 1217.IBViewBoundsToFrameTransform - 1217.ImportedFromIB2 - 1218.CustomClassName - 1218.IBPluginDependency - 1218.ImportedFromIB2 - 1219.CustomClassName - 1219.IBPluginDependency - 1219.IBShouldRemoveOnLegacySave - 1220.IBPluginDependency - 1220.IBShouldRemoveOnLegacySave - 1221.CustomClassName - 1221.IBPluginDependency - 1221.IBViewBoundsToFrameTransform - 1221.ImportedFromIB2 - 1222.CustomClassName - 1222.IBPluginDependency - 1222.ImportedFromIB2 - 1223.CustomClassName - 1223.IBPluginDependency - 1223.IBShouldRemoveOnLegacySave - 1224.IBPluginDependency - 1224.IBShouldRemoveOnLegacySave - 1225.IBPluginDependency - 1225.IBShouldRemoveOnLegacySave - 1258.IBPluginDependency - 1259.IBEditorWindowLastContentRect - 1259.IBPluginDependency - 1260.IBPluginDependency - 1261.IBPluginDependency - 1262.IBPluginDependency - 1263.IBPluginDependency - 1264.IBPluginDependency - 1265.IBPluginDependency - 1274.CustomClassName - 1274.IBPluginDependency - 1274.IBViewBoundsToFrameTransform - 1275.IBPluginDependency - 1280.IBPluginDependency - 1280.ImportedFromIB2 - 1286.IBPluginDependency - 1287.IBPluginDependency - 1288.IBPluginDependency - 129.IBPluginDependency - 129.ImportedFromIB2 - 1292.IBPluginDependency - 1293.IBPluginDependency - 1294.IBPluginDependency - 130.IBPluginDependency - 130.ImportedFromIB2 - 131.IBPluginDependency - 131.ImportedFromIB2 - 134.IBPluginDependency - 134.ImportedFromIB2 - 136.IBPluginDependency - 136.ImportedFromIB2 - 143.IBPluginDependency - 143.ImportedFromIB2 - 144.IBPluginDependency - 144.ImportedFromIB2 - 145.IBPluginDependency - 145.ImportedFromIB2 - 149.IBPluginDependency - 149.ImportedFromIB2 - 150.IBPluginDependency - 150.ImportedFromIB2 - 154.IBPluginDependency - 154.ImportedFromIB2 - 156.IBPluginDependency - 156.ImportedFromIB2 - 157.IBPluginDependency - 157.ImportedFromIB2 - 158.IBPluginDependency - 158.ImportedFromIB2 - 159.IBEditorWindowLastContentRect - 159.IBPluginDependency - 159.ImportedFromIB2 - 160.IBPluginDependency - 160.ImportedFromIB2 - 161.IBPluginDependency - 161.ImportedFromIB2 - 162.IBPluginDependency - 162.ImportedFromIB2 - 163.IBPluginDependency - 163.ImportedFromIB2 - 167.IBPluginDependency - 167.ImportedFromIB2 - 168.IBPluginDependency - 168.ImportedFromIB2 - 169.IBEditorWindowLastContentRect - 169.IBPluginDependency - 169.ImportedFromIB2 - 171.IBPluginDependency - 171.ImportedFromIB2 - 172.IBPluginDependency - 172.ImportedFromIB2 - 173.IBPluginDependency - 173.ImportedFromIB2 - 184.IBPluginDependency - 184.ImportedFromIB2 - 185.IBEditorWindowLastContentRect - 185.IBPluginDependency - 185.ImportedFromIB2 - 187.IBPluginDependency - 187.ImportedFromIB2 - 189.IBPluginDependency - 189.ImportedFromIB2 - 19.IBPluginDependency - 19.ImportedFromIB2 - 191.IBPluginDependency - 191.ImportedFromIB2 - 196.IBPluginDependency - 196.ImportedFromIB2 - 197.IBPluginDependency - 197.ImportedFromIB2 - 213.ImportedFromIB2 - 23.IBPluginDependency - 23.ImportedFromIB2 - 24.IBEditorWindowLastContentRect - 24.IBPluginDependency - 24.ImportedFromIB2 - 29.IBEditorWindowLastContentRect - 29.IBPluginDependency - 29.ImportedFromIB2 - 341.IBEditorWindowLastContentRect - 341.IBPluginDependency - 341.ImportedFromIB2 - 342.IBPluginDependency - 342.ImportedFromIB2 - 382.IBPluginDependency - 382.ImportedFromIB2 - 383.IBEditorWindowLastContentRect - 383.IBPluginDependency - 383.ImportedFromIB2 - 386.IBPluginDependency - 386.ImportedFromIB2 - 387.IBPluginDependency - 387.ImportedFromIB2 - 388.IBPluginDependency - 388.ImportedFromIB2 - 389.IBPluginDependency - 389.ImportedFromIB2 - 390.IBPluginDependency - 390.ImportedFromIB2 - 391.IBPluginDependency - 391.ImportedFromIB2 - 392.IBPluginDependency - 392.ImportedFromIB2 - 393.IBPluginDependency - 393.ImportedFromIB2 - 394.IBPluginDependency - 394.ImportedFromIB2 - 395.IBPluginDependency - 395.ImportedFromIB2 - 396.IBPluginDependency - 396.ImportedFromIB2 - 397.IBPluginDependency - 397.ImportedFromIB2 - 398.IBEditorWindowLastContentRect - 398.IBPluginDependency - 398.ImportedFromIB2 - 452.ImportedFromIB2 - 489.IBPluginDependency - 489.ImportedFromIB2 - 5.IBPluginDependency - 5.ImportedFromIB2 - 507.IBPluginDependency - 507.ImportedFromIB2 - 508.IBPluginDependency - 508.ImportedFromIB2 - 520.IBPluginDependency - 520.ImportedFromIB2 - 521.IBPluginDependency - 521.ImportedFromIB2 - 522.IBPluginDependency - 522.ImportedFromIB2 - 534.IBPluginDependency - 534.ImportedFromIB2 - 550.IBPluginDependency - 550.ImportedFromIB2 - 553.IBPluginDependency - 553.ImportedFromIB2 - 554.IBPluginDependency - 554.ImportedFromIB2 - 557.IBPluginDependency - 557.ImportedFromIB2 - 56.IBPluginDependency - 56.ImportedFromIB2 - 563.IBPluginDependency - 563.ImportedFromIB2 - 564.IBPluginDependency - 564.ImportedFromIB2 - 565.IBPluginDependency - 565.ImportedFromIB2 - 57.IBEditorWindowLastContentRect - 57.IBPluginDependency - 57.ImportedFromIB2 - 574.IBPluginDependency - 574.ImportedFromIB2 - 575.IBPluginDependency - 575.ImportedFromIB2 - 576.IBPluginDependency - 576.ImportedFromIB2 - 577.IBPluginDependency - 577.ImportedFromIB2 - 58.IBPluginDependency - 58.ImportedFromIB2 - 77.IBPluginDependency - 77.ImportedFromIB2 - 771.IBPluginDependency - 771.ImportedFromIB2 - 78.IBPluginDependency - 78.ImportedFromIB2 - 79.IBPluginDependency - 79.ImportedFromIB2 - 81.IBEditorWindowLastContentRect - 81.IBPluginDependency - 81.ImportedFromIB2 - 83.IBPluginDependency - 83.ImportedFromIB2 - 92.IBPluginDependency - 92.ImportedFromIB2 - 977.IBPluginDependency - 977.ImportedFromIB2 - 990.IBPluginDependency - 990.ImportedFromIB2 - 991.IBPluginDependency - 991.ImportedFromIB2 - 994.IBPluginDependency - 994.ImportedFromIB2 - 996.IBPluginDependency - 996.ImportedFromIB2 - 997.IBEditorWindowLastContentRect - 997.IBPluginDependency - 997.ImportedFromIB2 - 998.IBPluginDependency - 998.ImportedFromIB2 - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{651, 717}, {278, 103}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{241, 209}, {381, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - DualField - com.apple.InterfaceBuilder.CocoaPlugin - - {{329, 475}, {387, 106}} - com.apple.InterfaceBuilder.CocoaPlugin - {{329, 475}, {387, 106}} - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{543, 440}, {259, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{799, 277}, {314, 293}} - com.apple.InterfaceBuilder.CocoaPlugin - {{1205, 760}, {163, 96}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{816, 170}, {180, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - {{816, 250}, {288, 163}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{1113, 547}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{816, 170}, {180, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{641, 0}, {397, 464}} - com.apple.InterfaceBuilder.CocoaPlugin - {{641, 0}, {397, 464}} - - - ETContentView - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAw5cAAA - - - LinkingEditor - com.apple.InterfaceBuilder.CocoaPlugin - - ETTransparentScroller - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - AugmentedScrollView - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwxcAAA - - - NotesTableView - com.apple.InterfaceBuilder.CocoaPlugin - - ETTransparentScroller - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - {{508, 655}, {249, 113}} - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - WordCountToken - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAAAAAAAAwaAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{514, 527}, {345, 83}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{272, 547}, {242, 273}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{543, 460}, {272, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - {{592, 727}, {248, 93}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{55, 820}, {666, 20}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{329, 433}, {147, 102}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{330, 597}, {317, 223}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{512, 657}, {288, 163}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{356, 553}, {279, 213}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{222, 607}, {271, 213}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{415, 797}, {97, 23}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - - - YES - - + + 1300 + + + + + 1302 + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{651, 717}, {278, 103}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{241, 209}, {381, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + + DualField + com.apple.InterfaceBuilder.CocoaPlugin + + {{329, 475}, {387, 106}} + com.apple.InterfaceBuilder.CocoaPlugin + {{329, 475}, {387, 106}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{543, 440}, {259, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{799, 277}, {314, 293}} + com.apple.InterfaceBuilder.CocoaPlugin + {{1205, 760}, {163, 96}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{816, 170}, {180, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{816, 250}, {288, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{1113, 547}, {97, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{816, 170}, {180, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{641, 0}, {397, 464}} + com.apple.InterfaceBuilder.CocoaPlugin + {{641, 0}, {397, 464}} + + + ETContentView + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAw5cAAA + + + LinkingEditor + com.apple.InterfaceBuilder.CocoaPlugin + + ETTransparentScroller + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + AugmentedScrollView + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwxcAAA + + + NotesTableView + com.apple.InterfaceBuilder.CocoaPlugin + + ETTransparentScroller + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + {{508, 655}, {249, 113}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + WordCountToken + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwaAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{514, 527}, {345, 83}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{272, 547}, {242, 273}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{543, 460}, {272, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{592, 727}, {248, 93}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{55, 820}, {666, 20}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{329, 433}, {147, 102}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{330, 597}, {317, 223}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{512, 657}, {288, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{356, 553}, {279, 213}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{222, 607}, {271, 213}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{415, 797}, {97, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + - - YES - - - + - 1299 + 1303 - - YES + AppController NSObject - - YES - - YES - bringFocusToControlField: - copyNoteLink: - deleteNote: - editNoteExternally: - exportNote: - fieldAction: - importNotes: - lockPreview: - multiTag: - openFileInEditor: - printNote: - printPreview: - renameNote: - revealNote: - savePreview: - selectPreviewMode: - setBWColorScheme: - setLCColorScheme: - setUserColorScheme: - sharePreview: - showHelpDocument: - showPreferencesWindow: - switchViewLayout: - syncWaitQuit: - tagNote: - toggleCollapse: - toggleFullscreen: - toggleNVActivation: - togglePreview: - toggleSourceView: - toggleWordCount: + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + bringFocusToControlField: + id - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + copyNoteLink: + id - - - YES - - YES - bringFocusToControlField: - copyNoteLink: - deleteNote: - editNoteExternally: - exportNote: - fieldAction: - importNotes: - lockPreview: - multiTag: - openFileInEditor: - printNote: - printPreview: - renameNote: - revealNote: - savePreview: - selectPreviewMode: - setBWColorScheme: - setLCColorScheme: - setUserColorScheme: - sharePreview: - showHelpDocument: - showPreferencesWindow: - switchViewLayout: - syncWaitQuit: - tagNote: - toggleCollapse: - toggleFullscreen: - toggleNVActivation: - togglePreview: - toggleSourceView: - toggleWordCount: + + deleteNote: + id - - YES - - bringFocusToControlField: - id - - - copyNoteLink: - id - - - deleteNote: - id - - - editNoteExternally: - id - - - exportNote: - id - - - fieldAction: - id - - - importNotes: - id - - - lockPreview: - id - - - multiTag: - id - - - openFileInEditor: - id - - - printNote: - id - - - printPreview: - id - - - renameNote: - id - - - revealNote: - id - - - savePreview: - id - - - selectPreviewMode: - id - - - setBWColorScheme: - id - - - setLCColorScheme: - id - - - setUserColorScheme: - id - - - sharePreview: - id - - - showHelpDocument: - id - - - showPreferencesWindow: - id - - - switchViewLayout: - id - - - syncWaitQuit: - id - - - tagNote: - id - - - toggleCollapse: - id - - - toggleFullscreen: - id - - - toggleNVActivation: - id - - - togglePreview: - id - - - toggleSourceView: - id - - - toggleWordCount: - id - + + editNoteExternally: + id - - - YES - - YES - editorStatusView - field - lockNoteItem - mainView - multiMarkdownPreview - notesScrollView - notesTableView - previewToggler - printPreviewItem - savePreviewItem - sparkleUpdateItem - statBarMenu - syncWaitPanel - syncWaitSpinner - textScrollView - textView - textilePreview - window - wordCounter + + exportNote: + id - - YES - EmptyView - DualField - NSMenuItem - ETContentView - NSMenuItem - AugmentedScrollView - NotesTableView - NSMenuItem - NSMenuItem - NSMenuItem - NSMenuItem - NSMenu - NSPanel - NSProgressIndicator - NSScrollView - LinkingEditor - NSMenuItem - NSWindow - WordCountToken + + fieldAction: + id - - - YES - - YES - editorStatusView - field - lockNoteItem - mainView - multiMarkdownPreview - notesScrollView - notesTableView - previewToggler - printPreviewItem - savePreviewItem - sparkleUpdateItem - statBarMenu - syncWaitPanel - syncWaitSpinner - textScrollView - textView - textilePreview - window - wordCounter + + importNotes: + id - - YES - - editorStatusView - EmptyView - - - field - DualField - - - lockNoteItem - NSMenuItem - - - mainView - ETContentView - - - multiMarkdownPreview - NSMenuItem - - - notesScrollView - AugmentedScrollView - - - notesTableView - NotesTableView - - - previewToggler - NSMenuItem - - - printPreviewItem - NSMenuItem - - - savePreviewItem - NSMenuItem - - - sparkleUpdateItem - NSMenuItem - - - statBarMenu - NSMenu - - - syncWaitPanel - NSPanel - - - syncWaitSpinner - NSProgressIndicator - - - textScrollView - NSScrollView - - - textView - LinkingEditor - - - textilePreview - NSMenuItem - - - window - NSWindow - - - wordCounter - WordCountToken - + + lockPreview: + id - + + multiTag: + id + + + openFileInEditor: + id + + + printNote: + id + + + printPreview: + id + + + renameNote: + id + + + revealNote: + id + + + savePreview: + id + + + selectPreviewMode: + id + + + setBWColorScheme: + id + + + setLCColorScheme: + id + + + setUserColorScheme: + id + + + sharePreview: + id + + + showHelpDocument: + id + + + showPreferencesWindow: + id + + + switchFullScreen: + id + + + switchViewLayout: + id + + + syncWaitQuit: + id + + + tagNote: + id + + + toggleCollapse: + id + + + toggleNVActivation: + id + + + togglePreview: + id + + + toggleSourceView: + id + + + toggleWordCount: + id + + + + EmptyView + DualField + NSMenuItem + NSMenuItem + ETContentView + NSMenuItem + AugmentedScrollView + NotesTableView + NSMenuItem + NSMenuItem + NSMenuItem + NSMenuItem + NSMenu + NSPanel + NSProgressIndicator + NSScrollView + LinkingEditor + NSMenuItem + NSWindow + WordCountToken + + + + editorStatusView + EmptyView + + + field + DualField + + + fsMenuItem + NSMenuItem + + + lockNoteItem + NSMenuItem + + + mainView + ETContentView + + + multiMarkdownPreview + NSMenuItem + + + notesScrollView + AugmentedScrollView + + + notesTableView + NotesTableView + + + previewToggler + NSMenuItem + + + printPreviewItem + NSMenuItem + + + savePreviewItem + NSMenuItem + + + sparkleUpdateItem + NSMenuItem + + + statBarMenu + NSMenu + + + syncWaitPanel + NSPanel + + + syncWaitSpinner + NSProgressIndicator + + + textScrollView + NSScrollView + + + textView + LinkingEditor + + + textilePreview + NSMenuItem + + + window + NSWindow + + + wordCounter + WordCountToken + + IBProjectSource ./Classes/AppController.h @@ -5763,80 +5146,50 @@ FirstResponder - - YES - - YES - bold: - defaultStyle: - deleteToBeginningOfLine: - deleteWordBackward: - italic: - shiftLeftAction: - shiftRightAction: - strikethroughNV: + + id + id + id + id + id + id + id + id + + + + bold: + id - - YES - id - id - id - id - id - id - id - id + + defaultStyle: + id - - - YES - - YES - bold: - defaultStyle: - deleteToBeginningOfLine: - deleteWordBackward: - italic: - shiftLeftAction: - shiftRightAction: - strikethroughNV: + + deleteToBeginningOfLine: + id - - YES - - bold: - id - - - defaultStyle: - id - - - deleteToBeginningOfLine: - id - - - deleteWordBackward: - id - - - italic: - id - - - shiftLeftAction: - id - - - shiftRightAction: - id - - - strikethroughNV: - id - + + deleteWordBackward: + id - + + italic: + id + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + strikethroughNV: + id + + IBUserSource @@ -5845,70 +5198,39 @@ LinkingEditor NSTextView - - YES - - YES - shiftLeftAction: - shiftRightAction: - - - YES - id - id - - - - YES - - YES - shiftLeftAction: - shiftRightAction: - - - YES - - shiftLeftAction: - id - - - shiftRightAction: - id - + + id + id + id + + + + insertLink: + id - - - YES - - YES - controlField - notesTableView + + shiftLeftAction: + id - - YES - NSTextField - NotesTableView + + shiftRightAction: + id - - - YES - - YES - controlField - notesTableView + + + NSTextField + NotesTableView + + + + controlField + NSTextField - - YES - - controlField - NSTextField - - - notesTableView - NotesTableView - + + notesTableView + NotesTableView - + IBProjectSource ./Classes/LinkingEditor.h @@ -5916,66 +5238,40 @@ NSDocument - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: + + id + id + id + id + id + id + + + + printDocument: + id - - YES - id - id - id - id - id - id + + revertDocumentToSaved: + id - - - YES - - YES - printDocument: - revertDocumentToSaved: - runPageLayout: - saveDocument: - saveDocumentAs: - saveDocumentTo: + + runPageLayout: + id - - YES - - printDocument: - id - - - revertDocumentToSaved: - id - - - runPageLayout: - id - - - saveDocument: - id - - - saveDocumentAs: - id - - - saveDocumentTo: - id - + + saveDocument: + id - + + saveDocumentAs: + id + + + saveDocumentTo: + id + + IBProjectSource ./Classes/NSDocument.h @@ -5984,38 +5280,20 @@ NotesTableView NSTableView - - YES - - YES - actionHideShowColumn: - toggleNoteBodyPreviews: - - - YES - id - id - - - - YES - - YES - actionHideShowColumn: - toggleNoteBodyPreviews: + + id + id + + + + actionHideShowColumn: + id - - YES - - actionHideShowColumn: - id - - - toggleNoteBodyPreviews: - id - + + toggleNoteBodyPreviews: + id - + controlField NSTextField @@ -6066,36 +5344,23 @@ ./Classes/WordCountToken.h - + 0 IBCocoaFramework com.apple.InterfaceBuilder.CocoaPlugin.macosx - + com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES 3 - - YES - - YES - NSMenuCheckmark - NSMenuMixedState - - - YES - {9, 8} - {7, 2} - - + + {9, 8} + {7, 2} + diff --git a/pt.lproj/MarkupPreview.xib b/pt.lproj/MarkupPreview.xib new file mode 100644 index 00000000..73105a32 --- /dev/null +++ b/pt.lproj/MarkupPreview.xib @@ -0,0 +1,1210 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + 1306 + 30 + + + NSTextView + NSScroller + NSButton + NSScrollView + NSButtonCell + NSTextFieldCell + NSTabView + WebView + NSCustomObject + NSTabViewItem + NSWindowTemplate + NSView + NSTextField + NSCustomView + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + + + + PreviewController + + + FirstResponder + + + NSApplication + + + + 268 + + + + 268 + {{4, 61}, {12, 13}} + + + + YES + + 67239424 + 134512640 + + + LucidaGrande + 9 + 3614 + + + 138690815 + 6 + + NSImage + TabClose_Front_Rollover + + + NSImage + TabClose_Front_Pressed + + + Gw + 400 + 75 + + + + + 264 + {{0, 47}, {256, 14}} + + + YES + + 68288064 + 138544128 + URL in clipboard + + LucidaGrande + 11 + 3100 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {256, 78} + + + + NSView + + + + 268 + + + + 268 + {{-3, 43}, {244, 14}} + + YES + + 68288064 + 138544128 + Share note online via Peggd? + + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {238, 65} + + NSView + + + 27 + 2 + {{948, 217}, {445, 528}} + -461896704 + Preview + NSPanel + + {350, 400} + + + 256 + + + + 4114 + {{0, 34}, {445, 494}} + + + + + 1 + + + 256 + + + + 274 + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple URL pasteboard type + Apple Web Archive pasteboard type + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + WebURLsWithTitlesPboardType + public.png + public.url + public.url-name + + {445, 494} + + + + + + previewWebView + + + NO + YES + + + {445, 494} + + + + Preview + + + + + 2 + + + 256 + + + + 274 + + + + 2304 + + + + 2322 + {{0, 61}, {445, 14}} + + + + + + + + + + + + + + 134 + + + + 445 + 1 + + + 11521 + 0 + + + 3 + MQA + + + + 6 + System + selectedTextBackgroundColor + + + + 6 + System + selectedTextColor + + 3 + MAA + + + + + + + 1 + MCAwIDEAA + + + {8, -8} + 13 + + + + + + 6 + {463, 1e+07} + {223, 0} + + + + {445, 494} + + + + + + {4, -5} + 1 + + 4 + + + + -2147483392 + {{429, 1}, {15, 492}} + + + _doScroller: + 1 + 0.85256409645080566 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {445, 494} + + + 528 + + + + + + {445, 494} + + + Source + + + + + + + LucidaGrande + 13 + 1044 + + 6 + YES + + + + + + + 289 + {{300, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + LucidaGrande-Bold + 12 + 16 + + + -1228128001 + 402653357 + + NSImage + HUDIconLock + + + L + 400 + 75 + + + + + 289 + {{404, 7}, {28, 19}} + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 268435693 + + NSImage + HUDIconSave + + + S + 400 + 75 + + + + + 289 + {{370, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 173 + + NSImage + HUDIconShare + + + + 400 + 75 + + + + + 289 + {{334, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 402653357 + + NSImage + HUDIconPrint + + + P + 400 + 75 + + + + + 292 + {{10, 7}, {99, 19}} + + + YES + + -2080244224 + 134217728 + View Source + + LucidaGrande + 12 + 16 + + + -2038021889 + 164 + + + + 400 + 75 + + + + {{7, 11}, {445, 528}} + + + {{0, 0}, {1920, 1058}} + {350, 416} + {1e+13, 1e+13} + PreviewPanel + + + + + + + shareNotification + + + + 138 + + + + shareConfirmation + + + + 169 + + + + urlTextField + + + + 191 + + + + hideShareURL: + + + + 194 + + + + delegate + + + + 241 + + + + window + + + + 242 + + + + tabView + + + + 243 + + + + frameLoadDelegate + + + + 244 + + + + policyDelegate + + + + 245 + + + + resourceLoadDelegate + + + + 246 + + + + UIDelegate + + + + 247 + + + + preview + + + + 248 + + + + sourceView + + + + 249 + + + + makePreviewSticky: + + + + 269 + + + + saveHTML: + + + + 274 + + + + shareAsk: + + + + 275 + + + + printPreview: + + + + 278 + + + + printPreviewButton + + + + 280 + + + + shareButton + + + + 281 + + + + saveButton + + + + 282 + + + + stickyPreviewButton + + + + 283 + + + + switchTabs: + + + + 286 + + + + tabSwitcher + + + + 287 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 133 + + + + + + + Share URL + + + 157 + + + + + + Confirm Share + + + 189 + + + + + + + + 190 + + + + + 192 + + + + + + + + 193 + + + + + 200 + + + + + + + + 201 + + + + + 214 + + + + + + Panel - Preview + + + 215 + + + + + + + + + + + + + 216 + + + + + + + + + 217 + + + + + + + + 218 + + + + + + + + 219 + + + + + + + + 220 + + + + + + + + 225 + + + + + + + + + + 226 + + + + + 227 + + + + + 228 + + + + + 229 + + + + + 261 + + + + + + + + 262 + + + + + 263 + + + + + + + + 264 + + + + + 265 + + + + + + + + 266 + + + + + 267 + + + + + + + + 268 + + + + + 284 + + + + + + + + 285 + + + + + + + + {{471, 675}, {206, 55}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{499, 564}, {238, 65}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCPAAAwjAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDNAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAADAQAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + ToolTip + + ToolTip + + Lock note to preview + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Save Preview + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Share on Peggd + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Print/PDF + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 287 + + + + + PreviewController + NSWindowController + + id + id + id + id + id + id + id + id + id + id + + + + cancelShare: + id + + + hideShareURL: + id + + + makePreviewNotSticky: + id + + + makePreviewSticky: + id + + + openShareURL: + id + + + printPreview: + id + + + saveHTML: + id + + + shareAsk: + id + + + shareNote: + id + + + switchTabs: + id + + + + NSView + NSButton + WebView + NSButton + NSButton + NSButton + NSView + NSView + NSTextView + NSButton + NSButton + NSTabView + NSTextField + NSTextField + + + + accessoryView + NSView + + + includeTemplate + NSButton + + + preview + WebView + + + printPreviewButton + NSButton + + + saveButton + NSButton + + + shareButton + NSButton + + + shareConfirmation + NSView + + + shareNotification + NSView + + + sourceView + NSTextView + + + stickyPreviewButton + NSButton + + + tabSwitcher + NSButton + + + tabView + NSTabView + + + templateNote + NSTextField + + + urlTextField + NSTextField + + + + IBProjectSource + ./Classes/PreviewController.h + + + + WebView + + reloadFromOrigin: + id + + + reloadFromOrigin: + + reloadFromOrigin: + id + + + + IBProjectSource + ./Classes/WebView.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + {512, 512} + {512, 512} + {512, 512} + {512, 512} + {12, 13} + {12, 13} + + + diff --git a/pt.lproj/NotationPrefsView.nib/designable.nib b/pt.lproj/NotationPrefsView.nib/designable.nib index a109ecc9..01b426c5 100644 --- a/pt.lproj/NotationPrefsView.nib/designable.nib +++ b/pt.lproj/NotationPrefsView.nib/designable.nib @@ -1,27 +1,50 @@ - + 1040 - 9L31a - 680 - 949.54 - 353.00 - + 10K540 + 1306 + 1038.36 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + YES - + NSMatrix + NSMenuItem + NSMenu + NSScroller + NSButton + NSTableHeaderView + NSCustomObject + NSImageView + NSTableView + NSCustomView + NSImageCell + NSTextField + NSWindowTemplate + NSTextFieldCell + NSStepperCell + NSButtonCell + NSTableColumn + NSBox + NSPopUpButtonCell + NSView + NSScrollView + NSTabViewItem + NSPopUpButton + NSStepper + NSTabView YES com.apple.InterfaceBuilder.CocoaPlugin - YES - - YES - - - YES - + PluginDependencyRecalculationVersion + YES @@ -44,12 +67,13 @@ 274 {{-12, -10}, {393, 362}} + YES sync - + 256 YES @@ -65,7 +89,7 @@ LucidaGrande - 1.300000e+01 + 13 1044 @@ -99,7 +123,7 @@ 67239424 71303168 - VXN1w6FyaW86A + Usuário: @@ -108,7 +132,7 @@ controlColor 3 - MC42NjY2NjY2OQA + MC42NjY2NjY2NjY3AA @@ -161,7 +185,7 @@ 67239424 134217728 - TWFpcyBJbmZvcm1hw6fDtWVz4oCmA + Mais Informações… -2038284033 @@ -206,8 +230,7 @@ 67239424 272629760 - Tm90YXMgc2Vyw6NvIHNpbmNyb25pemFkYXMgY29tIG8gc2l0ZSBTaW1wbGVub3RlIGUgY29tIG8gYXBs -aWNhdGl2byBTaW1wbGVub3RlIHBhcmEgaVBob25lLg + Notas serão sincronizadas com o site Simplenote e com o aplicativo Simplenote para iPhone. @@ -219,7 +242,7 @@ aWNhdGl2byBTaW1wbGVub3RlIHBhcmEgaVBob25lLg -2147483380 YES - + YES Apple PDF pasteboard type Apple PICT pasteboard type @@ -258,7 +281,7 @@ aWNhdGl2byBTaW1wbGVub3RlIHBhcmEgaVBob25lLg LucidaGrande - 1.100000e+01 + 11 3100 @@ -269,7 +292,7 @@ aWNhdGl2byBTaW1wbGVub3RlIHBhcmEgaVBob25lLg disabledControlTextColor 3 - MC4zMzMzMzMzNAA + MC4zMzMzMzMzMzMzAA @@ -370,7 +393,7 @@ aWNhdGl2byBTaW1wbGVub3RlIHBhcmEgaVBob25lLg 68288064 272630784 - VmVyaWZpY2FyIGFsdGVyYcOnw7VlcyBhIGNhZGE6A + Verificar alterações a cada: @@ -409,7 +432,7 @@ aWNhdGl2byBTaW1wbGVub3RlIHBhcmEgaVBob25lLg 268 YES - + YES Apple PDF pasteboard type Apple PICT pasteboard type @@ -445,8 +468,7 @@ aWNhdGl2byBTaW1wbGVub3RlIHBhcmEgaVBob25lLg 67239424 272760832 - QXRlbsOnw6NvOiBPIGNvbnRlw7pkbyBkYXMgbm90YXMgc2Vyw6EgdHJhbnNmZXJpZG8gZW0gdGV4dG8g -cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA + Atenção: O conteúdo das notas será transferido em texto puro (sem criptografia). @@ -455,16 +477,15 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA {{10, 33}, {373, 316}} - - U2luY3Jvbml6YcOnw6NvA + Sincronização storage - + 256 YES @@ -483,7 +504,7 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA 256 {77, 74} - + YES @@ -503,13 +524,13 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA YES - 7.375537e+01 - 6.014795e+01 - 7.700000e+01 + 73.755369999999999 + 60.147950000000002 + 77 75628096 2048 - RXh0ZW5zw6NvA + Extensão 3 @@ -539,8 +560,8 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA - 3.000000e+00 - 2.000000e+00 + 3 + 2 6 @@ -551,12 +572,15 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA MC41AA - 1.400000e+01 + 14 306184192 + + 4 15 0 YES + 0 {{1, 17}, {77, 74}} @@ -575,17 +599,18 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA 256 _doScroller: - 4.625000e-01 + 0.46250000000000002 -2147483392 {{-100, -100}, {128, 15}} + 257 _doScroller: - 9.904762e-01 + 0.99047620000000003 @@ -605,7 +630,7 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA {{80, 73}, {90, 92}} - + 18 @@ -629,7 +654,7 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA 256 {77, 74} - + YES @@ -649,9 +674,9 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA YES - 7.362012e+01 - 5.562012e+01 - 7.400000e+01 + 73.62012 + 55.62012 + 74 75628096 2048 @@ -675,16 +700,19 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA - 3.000000e+00 - 2.000000e+00 + 3 + 2 - 1.400000e+01 + 14 306184192 + + 4 15 0 YES + 0 {{1, 17}, {77, 74}} @@ -703,17 +731,18 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA 256 _doScroller: - 4.625000e-01 + 0.46250000000000002 -2147483392 {{-100, -100}, {128, 15}} + 257 _doScroller: - 9.904762e-01 + 0.99047620000000003 @@ -733,7 +762,7 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA {{199, 73}, {90, 92}} - + 18 @@ -769,8 +798,7 @@ cHVybyAoc2VtIGNyaXB0b2dyYWZpYSkuA 67239424 272629760 - KiBPIHVzbyBkZSBhcnF1aXZvcyBzZXBhcmFkb3MgcGVybWl0ZSBpbnRlZ3Jhw6fDo28gY29tIFNwb3Rs -aWdodCwgcG9yw6ltIHV0aWxpemEgbWFpcyBlc3Bhw6dvIGVtIGRpc2NvLg + * O uso de arquivos separados permite integração com Spotlight, porém utiliza mais espaço em disco. @@ -813,7 +841,7 @@ aWdodCwgcG9yw6ltIHV0aWxpemEgbWFpcyBlc3Bhw6dvIGVtIGRpc2NvLg 292 {{102, 42}, {23, 22}} - + YES 604110336 @@ -911,12 +939,11 @@ aWdodCwgcG9yw6ltIHV0aWxpemEgbWFpcyBlc3Bhw6dvIGVtIGRpc2NvLg 256 {{43, 13}, {312, 18}} - YES 604110336 0 - Q29uZmlybWFyIGV4Y2x1c8OjbyBkZSBhcnF1aXZvcyBubyBGaW5kZXI + Confirmar exclusão de arquivos no Finder 1211912703 @@ -1034,6 +1061,7 @@ aWdodCwgcG9yw6ltIHV0aWxpemEgbWFpcyBlc3Bhw6dvIGVtIGRpc2NvLg 292 {{124, 42}, {23, 22}} + YES 604110336 @@ -1061,6 +1089,7 @@ aWdodCwgcG9yw6ltIHV0aWxpemEgbWFpcyBlc3Bhw6dvIGVtIGRpc2NvLg {{10, 33}, {373, 316}} + Armazenamento @@ -1096,7 +1125,6 @@ aWdodCwgcG9yw6ltIHV0aWxpemEgbWFpcyBlc3Bhw6dvIGVtIGRpc2NvLg 256 {{118, 162}, {212, 38}} - YES 2 1 @@ -1129,8 +1157,8 @@ aWdodCwgcG9yw6ltIHV0aWxpemEgbWFpcyBlc3Bhw6dvIGVtIGRpc2NvLg 0 Solicitar ao iniciar NV - 1 + 1 1211912703 0 @@ -1185,7 +1213,7 @@ AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES -AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABBxwAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS +AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAksAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAJLGFw cGwCAAAAbW50clJHQiBYWVogB9UAAwALABYABAAmYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAPbWAAEAAAAA0y1iZXJnGIxw8W4jzRphRSyje/thewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -1255,7 +1283,7 @@ AAA 67239424 134217728 - QXRpdmFyIENyaXB0b2dyYWZpYSBkZSBOb3Rhc+KApg + Ativar Criptografia de Notas… -2038284033 @@ -1279,7 +1307,7 @@ AAA 604110336 134217728 - QWx0ZXJhcuKApg + Alterar… -2038284033 @@ -1303,7 +1331,7 @@ AAA 67239424 71303168 - RnJhc2UgZGUgU2VndXJhbsOnYTo + Frase de Segurança: @@ -1338,10 +1366,10 @@ AAA 537787936 0 - 2.560000e+02 - 6.400000e+01 - 2.048000e+03 - 6.400000e+01 + 256 + 64 + 2048 + 64 YES @@ -1413,8 +1441,7 @@ AAA 67239424 272629760 - UG9kZSBibG9xdWVhciB1dGlsaXTDoXJpb3MgZGUgbW9uaXRvcmHDp8OjbyBkZSB0ZWNsYWRvIChrZXls -b2dnZXIpLg + Pode bloquear utilitários de monitoração de teclado (keylogger). @@ -1448,24 +1475,25 @@ b2dnZXIpLg {{10, 33}, {373, 316}} - U2VndXJhbsOnYQ + Segurança - + 0 YES YES YES - + {368, 346} + NSView NSResponder @@ -1474,14 +1502,13 @@ b2dnZXIpLg 2 {{695, 282}, {360, 240}} 1886912512 - T3DDp8O1ZXMgZGUgSG9zcGVkYWdlbSBXZWI + Opções de Hospedagem Web NSPanel View - {3.40282e+38, 3.40282e+38} {213, 107} @@ -1510,9 +1537,15 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg {360, 240} - {{0, 0}, {1920, 1178}} + {{0, 0}, {1440, 878}} {213, 129} - {3.40282e+38, 3.40282e+38} + {1e+13, 1e+13} + + + + 256 + {{2, 2}, {125, 1}} + @@ -1910,7 +1943,7 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg -2 - RmlsZSdzIE93bmVyA + File's Owner -1 @@ -2345,20 +2378,9 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg YES - - - 256 - {{2, 2}, {125, 1}} - - - - 109 - - - 113 @@ -2766,110 +2788,71 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg + + 109 + + + YES - + YES -1.IBPluginDependency -2.IBPluginDependency -3.IBPluginDependency - -3.ImportedFromIB2 10.CustomClassName 10.IBPluginDependency - 10.ImportedFromIB2 100.IBPluginDependency - 100.ImportedFromIB2 101.IBPluginDependency - 101.ImportedFromIB2 102.IBPluginDependency - 102.ImportedFromIB2 103.IBPluginDependency - 103.ImportedFromIB2 108.IBPluginDependency - 108.ImportedFromIB2 109.IBPluginDependency - 109.ImportedFromIB2 11.IBPluginDependency - 11.ImportedFromIB2 110.IBPluginDependency - 110.ImportedFromIB2 111.IBPluginDependency - 111.ImportedFromIB2 112.IBPluginDependency - 112.ImportedFromIB2 113.IBPluginDependency - 113.ImportedFromIB2 12.IBPluginDependency - 12.ImportedFromIB2 - 121.IBEditorWindowLastContentRect + 121.IBPluginDependency 121.IBWindowTemplateEditedContentRect - 121.ImportedFromIB2 - 121.windowTemplate.hasMinSize - 121.windowTemplate.maxSize - 121.windowTemplate.minSize 122.IBPluginDependency - 122.ImportedFromIB2 125.IBPluginDependency - 125.ImportedFromIB2 127.IBPluginDependency - 127.ImportedFromIB2 128.IBPluginDependency - 128.ImportedFromIB2 129.IBPluginDependency - 129.ImportedFromIB2 13.CustomClassName 13.IBPluginDependency - 13.ImportedFromIB2 130.IBPluginDependency - 130.ImportedFromIB2 133.IBPluginDependency - 133.ImportedFromIB2 14.IBPluginDependency - 14.ImportedFromIB2 15.IBPluginDependency - 15.ImportedFromIB2 16.IBAttributePlaceholdersKey 16.IBPluginDependency - 16.ImportedFromIB2 179.IBPluginDependency - 179.ImportedFromIB2 18.IBPluginDependency - 18.ImportedFromIB2 184.IBPluginDependency - 184.ImportedFromIB2 188.IBPluginDependency - 188.ImportedFromIB2 19.IBAttributePlaceholdersKey 19.IBPluginDependency - 19.ImportedFromIB2 190.IBPluginDependency - 190.ImportedFromIB2 191.IBPluginDependency - 191.ImportedFromIB2 192.IBPluginDependency - 192.ImportedFromIB2 193.IBPluginDependency - 193.ImportedFromIB2 194.IBPluginDependency - 194.ImportedFromIB2 196.IBPluginDependency - 196.ImportedFromIB2 199.IBPluginDependency - 199.ImportedFromIB2 20.IBAttributePlaceholdersKey 20.IBPluginDependency - 20.ImportedFromIB2 21.IBAttributePlaceholdersKey 21.IBPluginDependency - 21.ImportedFromIB2 216.IBPluginDependency 217.IBPluginDependency 218.IBPluginDependency 219.IBPluginDependency 22.IBPluginDependency - 22.ImportedFromIB2 220.IBPluginDependency 221.IBPluginDependency 222.IBPluginDependency @@ -2881,7 +2864,6 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg 228.IBPluginDependency 229.IBPluginDependency 23.IBPluginDependency - 23.ImportedFromIB2 230.IBPluginDependency 231.IBPluginDependency 232.IBPluginDependency @@ -2893,7 +2875,6 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg 238.IBPluginDependency 239.IBPluginDependency 24.IBPluginDependency - 24.ImportedFromIB2 240.IBPluginDependency 241.IBPluginDependency 242.IBPluginDependency @@ -2906,7 +2887,6 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg 249.IBPluginDependency 249.IBShouldRemoveOnLegacySave 25.IBPluginDependency - 25.ImportedFromIB2 250.IBPluginDependency 250.IBShouldRemoveOnLegacySave 251.IBPluginDependency @@ -2925,117 +2905,65 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg 258.IBPluginDependency 259.IBPluginDependency 26.IBPluginDependency - 26.ImportedFromIB2 260.IBPluginDependency 263.IBAttributePlaceholdersKey 263.IBPluginDependency - 263.ImportedFromIB2 264.IBPluginDependency 29.IBPluginDependency - 29.ImportedFromIB2 30.IBPluginDependency - 30.ImportedFromIB2 32.IBPluginDependency - 32.ImportedFromIB2 34.IBPluginDependency - 34.ImportedFromIB2 36.IBPluginDependency - 36.ImportedFromIB2 37.IBPluginDependency - 37.ImportedFromIB2 39.IBAttributePlaceholdersKey 39.IBPluginDependency - 39.ImportedFromIB2 40.IBPluginDependency - 40.ImportedFromIB2 41.IBPluginDependency - 41.ImportedFromIB2 42.IBPluginDependency - 42.ImportedFromIB2 43.CustomClassName 43.IBPluginDependency - 43.ImportedFromIB2 - 5.IBEditorWindowLastContentRect 5.IBPluginDependency - 5.ImportedFromIB2 6.IBPluginDependency - 6.ImportedFromIB2 7.IBPluginDependency - 7.ImportedFromIB2 8.IBPluginDependency - 8.ImportedFromIB2 9.IBPluginDependency - 9.ImportedFromIB2 92.IBPluginDependency - 92.ImportedFromIB2 93.IBPluginDependency - 93.ImportedFromIB2 98.IBPluginDependency - 98.ImportedFromIB2 - 99.IBEditorWindowLastContentRect 99.IBPluginDependency - 99.ImportedFromIB2 YES com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - FileKindListView com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - {{0, 605}, {360, 240}} + com.apple.InterfaceBuilder.CocoaPlugin {{0, 605}, {360, 240}} - - - {1.79769e+308, 1.79769e+308} - {213, 107} com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - FileKindListView com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - ToolTip @@ -3045,49 +2973,35 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - ToolTip ToolTip - UmVtb3ZlciBleHRlbnPDo28gZGUgYXJxdWl2bw + Remover extensão de arquivo com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - ToolTip ToolTip - QWRpY2lvbmFyIG5vdmEgZXh0ZW5zw6NvIGRlIGFycXVpdm8 + Adicionar nova extensão de arquivo com.apple.InterfaceBuilder.CocoaPlugin - ToolTip @@ -3097,13 +3011,11 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -3115,7 +3027,6 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -3127,7 +3038,6 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin @@ -3138,112 +3048,75 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - + com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - + com.apple.InterfaceBuilder.CocoaPlugin - + com.apple.InterfaceBuilder.CocoaPlugin - + com.apple.InterfaceBuilder.CocoaPlugin - + com.apple.InterfaceBuilder.CocoaPlugin - + com.apple.InterfaceBuilder.CocoaPlugin - + com.apple.InterfaceBuilder.CocoaPlugin - + com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin ToolTip ToolTip - RGVmaW5pciBjb21vIGV4dGVuc8OjbyBkZSBhcnF1aXZvIHBhZHLDo28gcGFyYSBub3ZhcyBub3Rhcw + Definir como extensão de arquivo padrão para novas notas com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - YES - - YES - - - YES - + + com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - NSSecureTextField com.apple.InterfaceBuilder.CocoaPlugin - - {{341, 493}, {368, 346}} com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - {{370, 676}, {328, 93}} com.apple.InterfaceBuilder.CocoaPlugin - YES - - YES - - - YES - + + YES - - YES - - - YES - + + 266 @@ -3258,81 +3131,23 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg storageFormatPopupButton NSPopUpButton - - IBProjectSource - NotationPrefsViewController.h - - - - FileKindListView - NSTableView - - IBUserSource - - - - - FirstResponder - NSObject - - IBUserSource - - - - - NSObject - - IBProjectSource - BookmarksController.h - - - - NSObject - - IBProjectSource - FastListDataSource.h - - - - NSObject - - IBProjectSource - GlobalPrefs.h - - - - NSObject - - IBProjectSource - NotationController.h - - - - NSObject - - IBProjectSource - NotationFileManager.h - - - - NSObject - - IBProjectSource - NoteObject.h + + storageFormatPopupButton + + storageFormatPopupButton + NSPopUpButton + - - - NSObject IBProjectSource - PassphrasePicker.h + ./Classes/FileKindListView.h NSObject YES - + YES didAdjustSubviews: willAdjustSubviews: @@ -3343,68 +3158,28 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg RBSplitView - - IBProjectSource - RBSplitView/RBSplitView.h - - - - NSObject - - IBProjectSource - SyncResponseFetcher.h - - - - NSObject - - IBProjectSource - SyncServiceSessionProtocol.h - - - - NSObject - - IBUserSource - - - - - NSTableHeaderView - - IBProjectSource - HeaderViewWIthMenu.h - - - - NSTableHeaderView - NSView - - IBUserSource - + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + + didAdjustSubviews: + RBSplitView + + + willAdjustSubviews: + RBSplitView + + - - - NSTableView IBProjectSource - NotesTableView.h - - - - NSTableView - NSControl - - IBUserSource - - - - - NSWindow - NSResponder - - IBUserSource - + ./Classes/NSObject.h @@ -3412,7 +3187,7 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg NSObject YES - + YES addedExtension: addedType: @@ -3451,9 +3226,98 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg id + + YES + + YES + addedExtension: + addedType: + changePassphrase: + changedFileDeletionWarningSettings: + changedFileStorageFormat: + changedKeyLength: + changedKeychainSettings: + changedSecureTextEntry: + makeDefaultExtension: + removeFromKeychain: + removedExtension: + removedType: + syncFrequencyChange: + toggledEncryption: + toggledSyncing: + visitSimplenoteSite: + + + YES + + addedExtension: + id + + + addedType: + id + + + changePassphrase: + id + + + changedFileDeletionWarningSettings: + id + + + changedFileStorageFormat: + id + + + changedKeyLength: + id + + + changedKeychainSettings: + id + + + changedSecureTextEntry: + id + + + makeDefaultExtension: + id + + + removeFromKeychain: + id + + + removedExtension: + id + + + removedType: + id + + + syncFrequencyChange: + id + + + toggledEncryption: + id + + + toggledSyncing: + id + + + visitSimplenoteSite: + id + + + YES - + YES allowedExtensionsTable allowedTypesTable @@ -3514,37 +3378,161 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg NSWindow - - - - NotationPrefsViewController - NSObject - - IBUserSource - + + YES + + YES + allowedExtensionsTable + allowedTypesTable + changePasswordButton + confirmFileDeletionButton + enableEncryptionButton + enabledSyncButton + fileAttributesHelpText + keyLengthField + keyLengthStepper + makeDefaultExtensionButton + newExtensionButton + newTypeButton + passwordSettingsMatrix + removeExtensionButton + removeFromKeychainButton + removeTypeButton + secureTextEntryButton + storageFormatPopupButton + syncAccountField + syncEncAlertField + syncEncAlertView + syncPasswordField + syncingFrequency + verifyStatusField + verifyStatusImageView + view + webOptionsWindow + + + YES + + allowedExtensionsTable + NSTableView + + + allowedTypesTable + NSTableView + + + changePasswordButton + NSButton + + + confirmFileDeletionButton + NSButton + + + enableEncryptionButton + NSButton + + + enabledSyncButton + NSButton + + + fileAttributesHelpText + NSTextField + + + keyLengthField + NSTextField + + + keyLengthStepper + NSStepper + + + makeDefaultExtensionButton + NSButton + + + newExtensionButton + NSButton + + + newTypeButton + NSButton + + + passwordSettingsMatrix + NSMatrix + + + removeExtensionButton + NSButton + + + removeFromKeychainButton + NSButton + + + removeTypeButton + NSButton + + + secureTextEntryButton + NSButton + + + storageFormatPopupButton + NSPopUpButton + + + syncAccountField + NSTextField + + + syncEncAlertField + NSTextField + + + syncEncAlertView + NSImageView + + + syncPasswordField + NSTextField + + + syncingFrequency + NSPopUpButton + + + verifyStatusField + NSTextField + + + verifyStatusImageView + NSImageView + + + view + NSView + + + webOptionsWindow + NSWindow + + - - - RBSplitSubview - NSView IBProjectSource - RBSplitView/RBSplitSubview.h - - - - RBSplitSubview - - IBProjectSource - RBSplitView/RBSplitViewPrivateDefines.h + ./Classes/NotationPrefsViewController.h RBSplitSubview NSView - IBUserSource - + IBProjectSource + ./Classes/RBSplitSubview.h @@ -3554,24 +3542,64 @@ bGl6ZSBlc3RlIG1vZGVsbyBIVE1MOg delegate id - - - - RBSplitView - - - - RBSplitView - RBSplitSubview + + delegate + + delegate + id + + - IBUserSource - + IBProjectSource + ./Classes/RBSplitView.h 0 - ../Notation.xcodeproj + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES 3 + + YES + + YES + Add + Add_Pressed + MakeDefault + MakeDefault_Pressed + NSMenuCheckmark + NSMenuMixedState + NSRadioButton + NSSwitch + Remove + Remove_Pressed + TinyAlert + statusError + + + YES + {23, 22} + {23, 22} + {22, 22} + {22, 22} + {9, 8} + {7, 2} + {16, 15} + {15, 15} + {22, 22} + {22, 22} + {18, 18} + {16, 16} + + diff --git a/pt.lproj/NotationPrefsView.nib/keyedobjects.nib b/pt.lproj/NotationPrefsView.nib/keyedobjects.nib index f552acbb..ef0350cd 100644 Binary files a/pt.lproj/NotationPrefsView.nib/keyedobjects.nib and b/pt.lproj/NotationPrefsView.nib/keyedobjects.nib differ diff --git a/pt.lproj/Preferences.xib b/pt.lproj/Preferences.xib index 539bc15d..776cf61b 100644 --- a/pt.lproj/Preferences.xib +++ b/pt.lproj/Preferences.xib @@ -1,17 +1,16 @@ - + 1050 - 10J869 - 1305 - 1038.35 + 10K540 + 1306 + 1038.36 461.00 com.apple.InterfaceBuilder.CocoaPlugin - 1305 + 1306 - - YES + NSUserDefaultsController NSPopUpButton NSButton @@ -30,17 +29,15 @@ NSWindowTemplate NSTextField NSPopUpButtonCell - - - YES + + com.apple.InterfaceBuilder.CocoaPlugin - + PluginDependencyRecalculationVersion - - YES + PrefsWindowController @@ -69,16 +66,16 @@ {{7, 11}, {399, 334}} + - {{0, 0}, {1920, 1178}} + {{0, 0}, {1440, 878}} {399, 129} {1e+13, 1e+13} 256 - - YES + 12 @@ -117,13 +114,13 @@ 268 - {{163, 15}, {186, 14}} + {{163, 15}, {192, 14}} YES 68288064 272630784 - This will immediately restart NV + This will immediately restart nvALT LucidaGrande 11 @@ -262,8 +259,7 @@ YES OtherViews - - YES + @@ -302,7 +298,7 @@ 3 - + 3 YES @@ -484,7 +480,7 @@ - + {368, 277} NSView @@ -493,8 +489,7 @@ 256 - - YES + 256 @@ -546,8 +541,7 @@ YES OtherViews - - YES + @@ -571,7 +565,7 @@ _popUpItemAction: - + 3 YES @@ -589,7 +583,7 @@ NSResponder - + {368, 406} NSView @@ -599,14 +593,72 @@ 256 - - YES + + + + 268 + {{116, 73}, {226, 28}} + + + YES + + 67239424 + 272629760 + Match opening characters, like a left bracket, with closing characters. + + + + + + + + + 264 + {{98, 78}, {22, 18}} + + + + YES + + 67239424 + 0 + + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{18, 79}, {77, 17}} + + + + YES + + 67239424 + 71303168 + Auto-pair: + + + + + + 268 - {{157, 14}, {194, 26}} + {{157, 16}, {194, 26}} + YES -2076049856 @@ -634,8 +686,7 @@ YES OtherViews - - YES + @@ -659,7 +710,7 @@ _popUpItemAction: - + 1 @@ -671,9 +722,10 @@ 264 - {{98, 62}, {146, 18}} + {{98, 49}, {146, 18}} + YES 67239424 @@ -693,7 +745,7 @@ 264 - {{18, 63}, {77, 17}} + {{18, 50}, {77, 17}} @@ -711,9 +763,10 @@ 264 - {{116, 88}, {247, 42}} + {{116, 111}, {247, 42}} + YES 67239424 @@ -728,7 +781,7 @@ 264 - {{15, 138}, {80, 34}} + {{15, 158}, {80, 34}} @@ -746,7 +799,7 @@ 264 - {{98, 134}, {235, 18}} + {{98, 154}, {235, 18}} @@ -769,7 +822,7 @@ 264 - {{98, 154}, {255, 18}} + {{98, 174}, {255, 18}} @@ -793,9 +846,10 @@ 268 - {{21, 20}, {134, 17}} + {{21, 22}, {134, 17}} + YES 67239424 @@ -814,14 +868,14 @@ 264 - {{98, 305}, {240, 38}} + {{98, 325}, {240, 38}} + YES 2 1 - - YES + 67239424 0 @@ -858,7 +912,7 @@ 200 25 - + {240, 18} {4, 2} 1143480320 @@ -873,10 +927,8 @@ 549453824 {18, 18} - - YES - - YES + + @@ -967,8 +1019,8 @@ nCoAAAAAuE1yAAAAAAAAAAAAAAAAAAAAAAB0ZXh0AAAAAENvcHlyaWdodCBBcHBsZSBDb21wdXRlciwg SW5jLiwgMjAwNQAAAAA - - + + 3 MCAwAA @@ -987,9 +1039,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{11, 321}, {84, 22}} + {{11, 341}, {84, 22}} + YES 67239424 @@ -1004,9 +1057,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{97, 271}, {254, 30}} + {{97, 291}, {254, 30}} + YES 67239424 @@ -1021,9 +1075,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{98, 362}, {144, 18}} + {{98, 382}, {144, 18}} + YES -2080244224 @@ -1044,9 +1099,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{98, 387}, {252, 18}} + {{98, 407}, {252, 18}} + YES 67239424 @@ -1067,9 +1123,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{11, 383}, {84, 22}} + {{11, 403}, {84, 22}} + YES 67239424 @@ -1084,9 +1141,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{16, 360}, {79, 21}} + {{16, 380}, {79, 21}} + YES 67239424 @@ -1101,9 +1159,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{37, 208}, {58, 17}} + {{37, 228}, {58, 17}} + YES 67239424 @@ -1118,9 +1177,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{98, 187}, {242, 18}} + {{98, 207}, {242, 18}} + YES 67239424 @@ -1141,9 +1201,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{98, 240}, {162, 18}} + {{98, 260}, {162, 18}} + YES -2080244224 @@ -1164,9 +1225,10 @@ SW5jLiwgMjAwNQAAAAA 264 - {{98, 207}, {183, 18}} + {{98, 227}, {183, 18}} + YES 67239424 @@ -1184,10 +1246,11 @@ SW5jLiwgMjAwNQAAAAA 25 - - {368, 425} + + {368, 445} + NSView @@ -1196,13 +1259,13 @@ SW5jLiwgMjAwNQAAAAA 256 - - YES + 268 {{56, 81}, {172, 18}} + YES -2080244224 @@ -1264,6 +1327,7 @@ SW5jLiwgMjAwNQAAAAA 264 {{310, 22}, {36, 13}} + YES 67763712 @@ -1280,6 +1344,7 @@ SW5jLiwgMjAwNQAAAAA 264 {{43, 20}, {149, 17}} + YES 67239424 @@ -1296,6 +1361,7 @@ SW5jLiwgMjAwNQAAAAA 268 {{193, 20}, {113, 15}} + YES -2079981824 @@ -1317,6 +1383,7 @@ SW5jLiwgMjAwNQAAAAA 268 {{43, 45}, {212, 17}} + YES 67239424 @@ -1333,6 +1400,7 @@ SW5jLiwgMjAwNQAAAAA 264 {{252, 43}, {22, 18}} + YES 67239424 @@ -1354,6 +1422,7 @@ SW5jLiwgMjAwNQAAAAA 264 {{43, 139}, {326, 14}} + YES 67239424 @@ -1368,17 +1437,14 @@ SW5jLiwgMjAwNQAAAAA 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - + {{217, 235}, {52, 24}} + YES YES @@ -1391,6 +1457,7 @@ SW5jLiwgMjAwNQAAAAA 268 {{90, 238}, {121, 18}} + YES -2080244224 @@ -1413,6 +1480,7 @@ SW5jLiwgMjAwNQAAAAA 264 {{35, 287}, {51, 17}} + YES 67239424 @@ -1429,6 +1497,7 @@ SW5jLiwgMjAwNQAAAAA 264 {{291, 279}, {96, 32}} + YES 67239424 @@ -1452,6 +1521,7 @@ SW5jLiwgMjAwNQAAAAA 266 {{92, 284}, {197, 23}} + YES 71433728 @@ -1475,6 +1545,7 @@ SW5jLiwgMjAwNQAAAAA 264 {{162, 165}, {49, 17}} + YES 67239424 @@ -1489,17 +1560,14 @@ SW5jLiwgMjAwNQAAAAA 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - + {{217, 161}, {52, 24}} + YES YES @@ -1509,6 +1577,7 @@ SW5jLiwgMjAwNQAAAAA 264 {{162, 197}, {49, 17}} + YES 67239424 @@ -1523,33 +1592,30 @@ SW5jLiwgMjAwNQAAAAA 264 - - YES - - YES - - NSColor pasteboard type - + + + NSColor pasteboard type - + {{217, 193}, {52, 24}} + YES YES - + {420, 328} + NSView NSResponder YES - + - - YES + generalView @@ -2194,15 +2260,28 @@ SW5jLiwgMjAwNQAAAAA 482 - + + + changedAutoPairing: + + + + 489 + + + + autoPairButton + + + + 490 + + - - YES + 0 - - YES - + @@ -2227,10 +2306,9 @@ SW5jLiwgMjAwNQAAAAA 5 - - YES + - + Preferences Window @@ -2242,8 +2320,7 @@ SW5jLiwgMjAwNQAAAAA 155 - - YES + @@ -2258,128 +2335,115 @@ SW5jLiwgMjAwNQAAAAA - + general view 157 - - YES + - + 158 - - YES + - + 172 - - YES + - + 174 - - YES + - + 175 - - YES + - + 178 - - YES + - + 287 - - YES + - + 288 - - YES + - + 289 - - YES + - + 323 - - YES + - + 250 - - YES + - + database view 251 - - YES + - + 252 - - YES + - + @@ -2390,8 +2454,7 @@ SW5jLiwgMjAwNQAAAAA 268 - - YES + @@ -2408,22 +2471,24 @@ SW5jLiwgMjAwNQAAAAA - + - + + + + editing view 271 - - YES + - + @@ -2439,91 +2504,81 @@ SW5jLiwgMjAwNQAAAAA 274 - - YES + - + 275 - - YES + - + 276 - - YES + - + 278 - - YES + - + 279 - - YES + - + 280 - - YES + - + 282 - - YES + - + 283 - - YES + - + 307 - - YES + - + 311 - - YES + - + @@ -2534,10 +2589,9 @@ SW5jLiwgMjAwNQAAAAA 326 - - YES + - + @@ -2588,10 +2642,9 @@ SW5jLiwgMjAwNQAAAAA 337 - - YES + - + @@ -2652,13 +2705,12 @@ SW5jLiwgMjAwNQAAAAA 159 - - YES + - + @@ -2684,12 +2736,11 @@ SW5jLiwgMjAwNQAAAAA 253 - - YES + - + @@ -2710,8 +2761,7 @@ SW5jLiwgMjAwNQAAAAA 352 - - YES + @@ -2730,17 +2780,16 @@ SW5jLiwgMjAwNQAAAAA - + fonts colors view 354 - - YES + - + @@ -2756,46 +2805,41 @@ SW5jLiwgMjAwNQAAAAA 357 - - YES + - + 358 - - YES + - + 359 - - YES + - + 360 - - YES + - + 361 - - YES + - + @@ -2836,28 +2880,25 @@ SW5jLiwgMjAwNQAAAAA 380 - - YES + - + 381 - - YES + - + 382 - - YES + - + @@ -2888,10 +2929,9 @@ SW5jLiwgMjAwNQAAAAA 394 - - YES + - + @@ -2902,28 +2942,25 @@ SW5jLiwgMjAwNQAAAAA 403 - - YES + - + 404 - - YES + - + 405 - - YES + - + @@ -2944,10 +2981,9 @@ SW5jLiwgMjAwNQAAAAA 408 - - YES + - + @@ -2958,10 +2994,9 @@ SW5jLiwgMjAwNQAAAAA 407 - - YES + - + @@ -2972,10 +3007,9 @@ SW5jLiwgMjAwNQAAAAA 406 - - YES + - + @@ -2986,10 +3020,9 @@ SW5jLiwgMjAwNQAAAAA 409 - - YES + - + @@ -3000,37 +3033,33 @@ SW5jLiwgMjAwNQAAAAA 449 - - YES + - + 450 - - YES + - + 451 - - YES + - + 452 - - YES + - + @@ -3056,19 +3085,17 @@ SW5jLiwgMjAwNQAAAAA 457 - - YES + - + 458 - - YES + - + @@ -3084,19 +3111,17 @@ SW5jLiwgMjAwNQAAAAA 467 - - YES + - + 468 - - YES + - + @@ -3112,30 +3137,27 @@ SW5jLiwgMjAwNQAAAAA 475 - - YES + - + 476 - - YES + - + 477 - - YES + - + @@ -3153,614 +3175,398 @@ SW5jLiwgMjAwNQAAAAA - + + 483 + + + + + + + + 484 + + + + + + + + 485 + + + + + + + + 486 + + + + + 487 + + + + + 488 + + + + - - YES - - YES - -3.IBPluginDependency - -3.ImportedFromIB2 - 155.IBEditorWindowLastContentRect - 155.IBPluginDependency - 155.ImportedFromIB2 - 157.IBPluginDependency - 157.IBViewBoundsToFrameTransform - 157.ImportedFromIB2 - 158.IBPluginDependency - 158.IBViewBoundsToFrameTransform - 158.ImportedFromIB2 - 159.IBEditorWindowLastContentRect - 159.IBPluginDependency - 159.ImportedFromIB2 - 160.IBPluginDependency - 160.ImportedFromIB2 - 161.IBPluginDependency - 161.ImportedFromIB2 - 162.IBPluginDependency - 162.ImportedFromIB2 - 163.IBPluginDependency - 163.ImportedFromIB2 - 172.IBPluginDependency - 172.IBViewBoundsToFrameTransform - 172.ImportedFromIB2 - 174.IBPluginDependency - 174.IBViewBoundsToFrameTransform - 174.ImportedFromIB2 - 175.IBPluginDependency - 175.IBViewBoundsToFrameTransform - 175.ImportedFromIB2 - 178.IBPluginDependency - 178.IBViewBoundsToFrameTransform - 178.ImportedFromIB2 - 250.IBEditorWindowLastContentRect - 250.IBPluginDependency - 250.IBPropertyAccessControl - 250.ImportedFromIB2 - 251.IBPluginDependency - 251.ImportedFromIB2 - 252.IBPluginDependency - 252.IBPropertyAccessControl - 252.ImportedFromIB2 - 253.IBEditorWindowLastContentRect - 253.IBPluginDependency - 253.ImportedFromIB2 - 254.IBPluginDependency - 254.ImportedFromIB2 - 255.IBPluginDependency - 255.ImportedFromIB2 - 256.IBPluginDependency - 256.ImportedFromIB2 - 257.IBPluginDependency - 257.ImportedFromIB2 - 268.IBEditorWindowLastContentRect - 268.IBPluginDependency - 268.ImportedFromIB2 - 271.IBPluginDependency - 271.IBViewBoundsToFrameTransform - 271.ImportedFromIB2 - 272.IBPluginDependency - 272.ImportedFromIB2 - 273.IBPluginDependency - 273.ImportedFromIB2 - 274.IBPluginDependency - 274.IBViewBoundsToFrameTransform - 274.ImportedFromIB2 - 275.IBPluginDependency - 275.IBViewBoundsToFrameTransform - 275.ImportedFromIB2 - 276.IBPluginDependency - 276.IBViewBoundsToFrameTransform - 276.ImportedFromIB2 - 278.IBPluginDependency - 278.IBViewBoundsToFrameTransform - 278.ImportedFromIB2 - 279.IBPluginDependency - 279.IBViewBoundsToFrameTransform - 279.ImportedFromIB2 - 280.IBPluginDependency - 280.IBViewBoundsToFrameTransform - 280.ImportedFromIB2 - 282.IBPluginDependency - 282.IBViewBoundsToFrameTransform - 282.ImportedFromIB2 - 283.IBPluginDependency - 283.IBViewBoundsToFrameTransform - 283.ImportedFromIB2 - 287.IBPluginDependency - 287.IBViewBoundsToFrameTransform - 287.ImportedFromIB2 - 288.IBPluginDependency - 288.IBViewBoundsToFrameTransform - 288.ImportedFromIB2 - 289.IBPluginDependency - 289.IBViewBoundsToFrameTransform - 289.ImportedFromIB2 - 307.IBPluginDependency - 307.IBViewBoundsToFrameTransform - 307.ImportedFromIB2 - 311.IBPluginDependency - 311.IBViewBoundsToFrameTransform - 311.ImportedFromIB2 - 323.IBPluginDependency - 323.IBViewBoundsToFrameTransform - 323.ImportedFromIB2 - 325.IBPluginDependency - 326.IBPluginDependency - 327.IBPluginDependency - 328.IBPluginDependency - 329.IBPluginDependency - 330.IBPluginDependency - 331.IBPluginDependency - 332.IBPluginDependency - 333.IBPluginDependency - 335.IBPluginDependency - 336.IBPluginDependency - 337.IBPluginDependency - 340.IBPluginDependency - 341.IBPluginDependency - 342.IBPluginDependency - 344.IBPluginDependency - 345.IBPluginDependency - 346.IBPluginDependency - 347.IBPluginDependency - 348.IBPluginDependency - 349.IBPluginDependency - 350.IBPluginDependency - 351.IBPluginDependency - 352.IBEditorWindowLastContentRect - 352.IBPluginDependency - 352.ImportedFromIB2 - 354.IBPluginDependency - 355.IBPluginDependency - 355.IBPropertyAccessControl - 355.ImportedFromIB2 - 356.IBPluginDependency - 356.IBPropertyAccessControl - 356.ImportedFromIB2 - 357.IBPluginDependency - 357.IBPropertyAccessControl - 357.ImportedFromIB2 - 358.IBPluginDependency - 358.IBPropertyAccessControl - 358.ImportedFromIB2 - 359.IBPluginDependency - 359.IBPropertyAccessControl - 359.IBViewBoundsToFrameTransform - 359.ImportedFromIB2 - 360.IBPluginDependency - 360.IBPropertyAccessControl - 360.IBViewBoundsToFrameTransform - 360.ImportedFromIB2 - 361.IBPluginDependency - 361.IBPropertyAccessControl - 361.IBViewBoundsToFrameTransform - 361.ImportedFromIB2 - 362.IBPluginDependency - 363.IBPluginDependency - 364.IBPluginDependency - 365.IBPluginDependency - 366.IBPluginDependency - 367.IBPluginDependency - 371.IBPluginDependency - 371.IBViewBoundsToFrameTransform - 371.ImportedFromIB2 - 380.IBPluginDependency - 380.IBPropertyAccessControl - 380.IBViewBoundsToFrameTransform - 380.ImportedFromIB2 - 381.IBPluginDependency - 381.IBViewBoundsToFrameTransform - 381.ImportedFromIB2 - 382.IBPluginDependency - 382.IBViewBoundsToFrameTransform - 383.IBPluginDependency - 383.IBViewBoundsToFrameTransform - 384.IBPluginDependency - 385.IBPluginDependency - 386.IBPluginDependency - 394.IBPluginDependency - 394.IBViewBoundsToFrameTransform - 395.IBPluginDependency - 403.IBPluginDependency - 403.IBPropertyAccessControl - 403.IBViewBoundsToFrameTransform - 403.ImportedFromIB2 - 404.IBPluginDependency - 404.IBViewBoundsToFrameTransform - 404.ImportedFromIB2 - 405.IBPluginDependency - 405.IBViewBoundsToFrameTransform - 406.IBPluginDependency - 406.IBViewBoundsToFrameTransform - 407.IBPluginDependency - 407.IBViewBoundsToFrameTransform - 407.ImportedFromIB2 - 408.IBPluginDependency - 408.IBViewBoundsToFrameTransform - 408.ImportedFromIB2 - 409.IBPluginDependency - 409.IBViewBoundsToFrameTransform - 409.ImportedFromIB2 - 410.IBPluginDependency - 411.IBPluginDependency - 412.IBPluginDependency - 413.IBPluginDependency - 414.IBPluginDependency - 415.IBPluginDependency - 416.IBPluginDependency - 449.IBPluginDependency - 449.IBViewBoundsToFrameTransform - 449.ImportedFromIB2 - 450.IBPluginDependency - 450.IBViewBoundsToFrameTransform - 450.ImportedFromIB2 - 451.IBPluginDependency - 451.IBViewBoundsToFrameTransform - 451.ImportedFromIB2 - 452.IBPluginDependency - 452.IBViewBoundsToFrameTransform - 452.ImportedFromIB2 - 453.IBPluginDependency - 454.IBPluginDependency - 455.IBPluginDependency - 456.IBPluginDependency - 457.IBPluginDependency - 457.ImportedFromIB2 - 458.IBPluginDependency - 458.ImportedFromIB2 - 459.IBPluginDependency - 460.IBPluginDependency - 467.IBPluginDependency - 467.IBViewBoundsToFrameTransform - 468.IBPluginDependency - 468.IBViewBoundsToFrameTransform - 469.IBPluginDependency - 470.IBPluginDependency - 475.IBPluginDependency - 476.IBPluginDependency - 5.IBEditorWindowLastContentRect - 5.IBPluginDependency - 5.IBPropertyAccessControl - 5.IBWindowTemplateEditedContentRect - 5.ImportedFromIB2 - 6.IBPluginDependency - 6.ImportedFromIB2 + + com.apple.InterfaceBuilder.CocoaPlugin + + {{554, 457}, {368, 277}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABB0AAAw0cAAA - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - {{554, 457}, {368, 277}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABB0AAAw0cAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDJgAAw0oAAA - - - {{713, 641}, {125, 73}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCAAAAwmwAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCAAAAwggAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCAAAAwvQAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDhQAAw0oAAA - - - {{452, 95}, {368, 406}} - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - - {{614, 420}, {178, 63}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - {{674, 438}, {368, 290}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC0AAAwywAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAwywAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCzgAAwwIAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC0AAAw1AAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC0AAAw2kAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBiAAAw2kAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBsAAAw1EAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCLAAAwmAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC0AAAwhAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBkAAAwx0AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDKQAAwyAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDggAAwyQAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC0AAAwq4AAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC0AAAwmAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCRAAAwsQAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{533, 580}, {420, 265}} - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCEAAAwqQAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABDkYAAwrIAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCuAAAwqoAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - AUNhAABCoAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCAAAAwoAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCCAAAwgAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDIAAAwdgAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - AQAAAABCHAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABBoAAAwggAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - - P4AAAL+AAABCMAAAwrAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDggAAwlgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCTAAAwlwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDSQAAweAAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCTAAAwfAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDnwAAweAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABDrYAAweAAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCyAAAwqgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCHAAAwtgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABC7AAAwzgAAA - - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqAAAwkwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - - P4AAAL+AAABCqAAAwkwAAA - - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{329, 268}, {399, 334}} - com.apple.InterfaceBuilder.CocoaPlugin - - {{329, 268}, {399, 334}} - - com.apple.InterfaceBuilder.CocoaPlugin - + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDJgAAw0oAAA - - - YES - - - + + {{713, 641}, {125, 73}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCAAAAwmwAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCAAAAwggAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCAAAAwvQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDhQAAw0oAAA + + + {{452, 95}, {368, 406}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + {{614, 420}, {178, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{674, 438}, {368, 290}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC0AAAwywAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAwywAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCzgAAwwIAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC0AAAw1AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC0AAAw2kAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw2kAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBsAAAw1EAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCLAAAwmAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC0AAAwhAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBkAAAwx0AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDKQAAwyAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDggAAwyQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC0AAAwq4AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC0AAAwmAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCRAAAwsQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{533, 580}, {420, 265}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCEAAAwqQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDkYAAwrIAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCuAAAwqoAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + AUNhAABCoAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCAAAAwoAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCCAAAwgAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDIAAAwdgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABCHAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBoAAAwggAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCMAAAwrAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDggAAwlgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSQAAweAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAwfAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDnwAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDrYAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCHAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC7AAAwzgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{329, 268}, {399, 334}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{329, 268}, {399, 334}} + + com.apple.InterfaceBuilder.CocoaPlugin + + + - - YES - - - + - 482 + 490 - - YES + FirstResponder @@ -3782,343 +3588,229 @@ SW5jLiwgMjAwNQAAAAA NotationPrefsViewController NSObject - - YES - - YES - addedExtension: - addedType: - changePassphrase: - changedFileDeletionWarningSettings: - changedFileStorageFormat: - changedKeyLength: - changedKeychainSettings: - changedSecureTextEntry: - makeDefaultExtension: - removeFromKeychain: - removedExtension: - removedType: - syncFrequencyChange: - toggledEncryption: - toggledSyncing: - visitSimplenoteSite: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + addedExtension: + id - - - YES - - YES - addedExtension: - addedType: - changePassphrase: - changedFileDeletionWarningSettings: - changedFileStorageFormat: - changedKeyLength: - changedKeychainSettings: - changedSecureTextEntry: - makeDefaultExtension: - removeFromKeychain: - removedExtension: - removedType: - syncFrequencyChange: - toggledEncryption: - toggledSyncing: - visitSimplenoteSite: - - - YES - - addedExtension: - id - - - addedType: - id - - - changePassphrase: - id - - - changedFileDeletionWarningSettings: - id - - - changedFileStorageFormat: - id - - - changedKeyLength: - id - - - changedKeychainSettings: - id - - - changedSecureTextEntry: - id - - - makeDefaultExtension: - id - - - removeFromKeychain: - id - - - removedExtension: - id - - - removedType: - id - - - syncFrequencyChange: - id - - - toggledEncryption: - id - - - toggledSyncing: - id - - - visitSimplenoteSite: - id - + + addedType: + id - - - YES - - YES - allowedExtensionsTable - allowedTypesTable - changePasswordButton - confirmFileDeletionButton - enableEncryptionButton - enabledSyncButton - fileAttributesHelpText - keyLengthField - keyLengthStepper - makeDefaultExtensionButton - newExtensionButton - newTypeButton - passwordSettingsMatrix - removeExtensionButton - removeFromKeychainButton - removeTypeButton - secureTextEntryButton - storageFormatPopupButton - syncAccountField - syncEncAlertField - syncEncAlertView - syncPasswordField - syncingFrequency - verifyStatusField - verifyStatusImageView - view - webOptionsWindow - - - YES - NSTableView - NSTableView - NSButton - NSButton - NSButton - NSButton - NSTextField - NSTextField - NSStepper - NSButton - NSButton - NSButton - NSMatrix - NSButton - NSButton - NSButton - NSButton - NSPopUpButton - NSTextField - NSTextField - NSImageView - NSTextField - NSPopUpButton - NSTextField - NSImageView - NSView - NSWindow - - - - YES - - YES - allowedExtensionsTable - allowedTypesTable - changePasswordButton - confirmFileDeletionButton - enableEncryptionButton - enabledSyncButton - fileAttributesHelpText - keyLengthField - keyLengthStepper - makeDefaultExtensionButton - newExtensionButton - newTypeButton - passwordSettingsMatrix - removeExtensionButton - removeFromKeychainButton - removeTypeButton - secureTextEntryButton - storageFormatPopupButton - syncAccountField - syncEncAlertField - syncEncAlertView - syncPasswordField - syncingFrequency - verifyStatusField - verifyStatusImageView - view - webOptionsWindow - - - YES - - allowedExtensionsTable - NSTableView - - - allowedTypesTable - NSTableView - - - changePasswordButton - NSButton - - - confirmFileDeletionButton - NSButton - - - enableEncryptionButton - NSButton - - - enabledSyncButton - NSButton - - - fileAttributesHelpText - NSTextField - - - keyLengthField - NSTextField - - - keyLengthStepper - NSStepper - - - makeDefaultExtensionButton - NSButton - - - newExtensionButton - NSButton - - - newTypeButton - NSButton - - - passwordSettingsMatrix - NSMatrix - - - removeExtensionButton - NSButton - - - removeFromKeychainButton - NSButton - - - removeTypeButton - NSButton - - - secureTextEntryButton - NSButton - - - storageFormatPopupButton - NSPopUpButton - - - syncAccountField - NSTextField - - - syncEncAlertField - NSTextField - - - syncEncAlertView - NSImageView - - - syncPasswordField - NSTextField - - - syncingFrequency - NSPopUpButton - - - verifyStatusField - NSTextField - - - verifyStatusImageView - NSImageView - - - view - NSView - - - webOptionsWindow - NSWindow - + + changePassphrase: + id - + + changedFileDeletionWarningSettings: + id + + + changedFileStorageFormat: + id + + + changedKeyLength: + id + + + changedKeychainSettings: + id + + + changedSecureTextEntry: + id + + + makeDefaultExtension: + id + + + removeFromKeychain: + id + + + removedExtension: + id + + + removedType: + id + + + syncFrequencyChange: + id + + + toggledEncryption: + id + + + toggledSyncing: + id + + + visitSimplenoteSite: + id + + + + NSTableView + NSTableView + NSButton + NSButton + NSButton + NSButton + NSTextField + NSTextField + NSStepper + NSButton + NSButton + NSButton + NSMatrix + NSButton + NSButton + NSButton + NSButton + NSPopUpButton + NSTextField + NSTextField + NSImageView + NSTextField + NSPopUpButton + NSTextField + NSImageView + NSView + NSWindow + + + + allowedExtensionsTable + NSTableView + + + allowedTypesTable + NSTableView + + + changePasswordButton + NSButton + + + confirmFileDeletionButton + NSButton + + + enableEncryptionButton + NSButton + + + enabledSyncButton + NSButton + + + fileAttributesHelpText + NSTextField + + + keyLengthField + NSTextField + + + keyLengthStepper + NSStepper + + + makeDefaultExtensionButton + NSButton + + + newExtensionButton + NSButton + + + newTypeButton + NSButton + + + passwordSettingsMatrix + NSMatrix + + + removeExtensionButton + NSButton + + + removeFromKeychainButton + NSButton + + + removeTypeButton + NSButton + + + secureTextEntryButton + NSButton + + + storageFormatPopupButton + NSPopUpButton + + + syncAccountField + NSTextField + + + syncEncAlertField + NSTextField + + + syncEncAlertView + NSImageView + + + syncPasswordField + NSTextField + + + syncingFrequency + NSPopUpButton + + + verifyStatusField + NSTextField + + + verifyStatusImageView + NSImageView + + + view + NSView + + + webOptionsWindow + NSWindow + + IBProjectSource ./Classes/NotationPrefsViewController.h @@ -4127,475 +3819,335 @@ SW5jLiwgMjAwNQAAAAA PrefsWindowController NSObject - - YES - - YES - changeBodyFont: - changedAltRows: - changedAutoSuggestLinks: - changedBackgroundTextColorWell: - changedExternalEditorsMenu: - changedForegroundTextColorWell: - changedHighlightSearchTerms: - changedMakeURLsClickable: - changedNoteDeletion: - changedNotesFolderLocation: - changedQuitBehavior: - changedRTL: - changedSearchHighlightColorWell: - changedShowGrid: - changedSoftTabs: - changedSpellChecking: - changedStyledTextBehavior: - changedTabBehavior: - changedTableText: - changedTitleCompletion: - changedUseMarkdownImport: - changedUseReadability: - setAppShortcut: - setMaxWidth: - toggleHideDockIcon: - toggleKeepsTextWidthInWindow: - - - YES - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id - id + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + changeBodyFont: + id - - - YES - - YES - changeBodyFont: - changedAltRows: - changedAutoSuggestLinks: - changedBackgroundTextColorWell: - changedExternalEditorsMenu: - changedForegroundTextColorWell: - changedHighlightSearchTerms: - changedMakeURLsClickable: - changedNoteDeletion: - changedNotesFolderLocation: - changedQuitBehavior: - changedRTL: - changedSearchHighlightColorWell: - changedShowGrid: - changedSoftTabs: - changedSpellChecking: - changedStyledTextBehavior: - changedTabBehavior: - changedTableText: - changedTitleCompletion: - changedUseMarkdownImport: - changedUseReadability: - setAppShortcut: - setMaxWidth: - toggleHideDockIcon: - toggleKeepsTextWidthInWindow: - - - YES - - changeBodyFont: - id - - - changedAltRows: - id - - - changedAutoSuggestLinks: - id - - - changedBackgroundTextColorWell: - id - - - changedExternalEditorsMenu: - id - - - changedForegroundTextColorWell: - id - - - changedHighlightSearchTerms: - id - - - changedMakeURLsClickable: - id - - - changedNoteDeletion: - id - - - changedNotesFolderLocation: - id - - - changedQuitBehavior: - id - - - changedRTL: - id - - - changedSearchHighlightColorWell: - id - - - changedShowGrid: - id - - - changedSoftTabs: - id - - - changedSpellChecking: - id - - - changedStyledTextBehavior: - id - - - changedTabBehavior: - id - - - changedTableText: - id - - - changedTitleCompletion: - id - - - changedUseMarkdownImport: - id - - - changedUseReadability: - id - - - setAppShortcut: - id - - - setMaxWidth: - id - - - toggleHideDockIcon: - id - - - toggleKeepsTextWidthInWindow: - id - + + changedAltRows: + id - - - YES - - YES - altRowsButton - appList - appShortcutField - autoSuggestLinksButton - backgroundColorWell - bodyTextFontField - checkSpellingButton - completeNoteTitlesButton - confirmDeletionButton - databaseView - editingView - externalEditorMenuButton - folderLocationsMenuButton - fontsColorsView - foregroundColorWell - generalView - highlightSearchTermsButton - makeURLsClickable - maxWidthSlider - notationPrefsView - notationPrefsViewController - quitWhenClosingButton - rtlButton - searchHighlightColorWell - showGridButton - softTabsButton - styledTextButton - tabKeyRadioMatrix - tableTextMenuButton - tableTextSizeField - togDockButton - togDockLabel - useMarkdownImportButton - useReadabilityButton - window - - - YES - NSButton - NSComboBox - NSTextField - NSButton - NSColorWell - NSTextField - NSButton - NSButton - NSButton - NSView - NSView - NSPopUpButton - NSPopUpButton - NSView - NSColorWell - NSView - NSButton - NSButton - NSSlider - NSView - NotationPrefsViewController - NSButton - NSButton - NSColorWell - NSButton - NSButton - NSButton - NSMatrix - NSPopUpButton - NSTextField - NSButton - NSTextField - NSButton - NSButton - NSWindow - - - - YES - - YES - altRowsButton - appList - appShortcutField - autoSuggestLinksButton - backgroundColorWell - bodyTextFontField - checkSpellingButton - completeNoteTitlesButton - confirmDeletionButton - databaseView - editingView - externalEditorMenuButton - folderLocationsMenuButton - fontsColorsView - foregroundColorWell - generalView - highlightSearchTermsButton - makeURLsClickable - maxWidthSlider - notationPrefsView - notationPrefsViewController - quitWhenClosingButton - rtlButton - searchHighlightColorWell - showGridButton - softTabsButton - styledTextButton - tabKeyRadioMatrix - tableTextMenuButton - tableTextSizeField - togDockButton - togDockLabel - useMarkdownImportButton - useReadabilityButton - window - - - YES - - altRowsButton - NSButton - - - appList - NSComboBox - - - appShortcutField - NSTextField - - - autoSuggestLinksButton - NSButton - - - backgroundColorWell - NSColorWell - - - bodyTextFontField - NSTextField - - - checkSpellingButton - NSButton - - - completeNoteTitlesButton - NSButton - - - confirmDeletionButton - NSButton - - - databaseView - NSView - - - editingView - NSView - - - externalEditorMenuButton - NSPopUpButton - - - folderLocationsMenuButton - NSPopUpButton - - - fontsColorsView - NSView - - - foregroundColorWell - NSColorWell - - - generalView - NSView - - - highlightSearchTermsButton - NSButton - - - makeURLsClickable - NSButton - - - maxWidthSlider - NSSlider - - - notationPrefsView - NSView - - - notationPrefsViewController - NotationPrefsViewController - - - quitWhenClosingButton - NSButton - - - rtlButton - NSButton - - - searchHighlightColorWell - NSColorWell - - - showGridButton - NSButton - - - softTabsButton - NSButton - - - styledTextButton - NSButton - - - tabKeyRadioMatrix - NSMatrix - - - tableTextMenuButton - NSPopUpButton - - - tableTextSizeField - NSTextField - - - togDockButton - NSButton - - - togDockLabel - NSTextField - - - useMarkdownImportButton - NSButton - - - useReadabilityButton - NSButton - - - window - NSWindow - + + changedAutoPairing: + id - + + changedAutoSuggestLinks: + id + + + changedBackgroundTextColorWell: + id + + + changedExternalEditorsMenu: + id + + + changedForegroundTextColorWell: + id + + + changedHighlightSearchTerms: + id + + + changedMakeURLsClickable: + id + + + changedNoteDeletion: + id + + + changedNotesFolderLocation: + id + + + changedQuitBehavior: + id + + + changedRTL: + id + + + changedSearchHighlightColorWell: + id + + + changedShowGrid: + id + + + changedSoftTabs: + id + + + changedSpellChecking: + id + + + changedStyledTextBehavior: + id + + + changedTabBehavior: + id + + + changedTableText: + id + + + changedTitleCompletion: + id + + + changedUseMarkdownImport: + id + + + changedUseReadability: + id + + + setAppShortcut: + id + + + setMaxWidth: + id + + + toggleHideDockIcon: + id + + + toggleKeepsTextWidthInWindow: + id + + + + NSButton + NSComboBox + NSTextField + NSButton + NSButton + NSColorWell + NSTextField + NSButton + NSButton + NSButton + NSView + NSView + NSPopUpButton + NSPopUpButton + NSView + NSColorWell + NSView + NSButton + NSButton + NSSlider + NSView + NotationPrefsViewController + NSButton + NSButton + NSColorWell + NSButton + NSButton + NSButton + NSMatrix + NSPopUpButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSWindow + + + + altRowsButton + NSButton + + + appList + NSComboBox + + + appShortcutField + NSTextField + + + autoPairButton + NSButton + + + autoSuggestLinksButton + NSButton + + + backgroundColorWell + NSColorWell + + + bodyTextFontField + NSTextField + + + checkSpellingButton + NSButton + + + completeNoteTitlesButton + NSButton + + + confirmDeletionButton + NSButton + + + databaseView + NSView + + + editingView + NSView + + + externalEditorMenuButton + NSPopUpButton + + + folderLocationsMenuButton + NSPopUpButton + + + fontsColorsView + NSView + + + foregroundColorWell + NSColorWell + + + generalView + NSView + + + highlightSearchTermsButton + NSButton + + + makeURLsClickable + NSButton + + + maxWidthSlider + NSSlider + + + notationPrefsView + NSView + + + notationPrefsViewController + NotationPrefsViewController + + + quitWhenClosingButton + NSButton + + + rtlButton + NSButton + + + searchHighlightColorWell + NSColorWell + + + showGridButton + NSButton + + + softTabsButton + NSButton + + + styledTextButton + NSButton + + + tabKeyRadioMatrix + NSMatrix + + + tableTextMenuButton + NSPopUpButton + + + tableTextSizeField + NSTextField + + + togDockButton + NSButton + + + togDockLabel + NSTextField + + + useMarkdownImportButton + NSButton + + + useReadabilityButton + NSButton + + + window + NSWindow + + IBProjectSource ./Classes/PrefsWindowController.h - + 0 IBCocoaFramework @@ -4607,28 +4159,13 @@ SW5jLiwgMjAwNQAAAAA com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - YES 3 - - YES - - YES - NSMenuCheckmark - NSMenuMixedState - NSRadioButton - NSSwitch - - - YES - {9, 8} - {7, 2} - {16, 15} - {15, 15} - - + + {9, 8} + {7, 2} + {16, 15} + {15, 15} + diff --git a/zh.lproj/BlorPasswordRetriever.nib/designable.nib b/zh.lproj/BlorPasswordRetriever.nib/designable.nib new file mode 100644 index 00000000..a457eaa3 --- /dev/null +++ b/zh.lproj/BlorPasswordRetriever.nib/designable.nib @@ -0,0 +1,1369 @@ + + + + 1060 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + BlorPasswordRetriever + + + FirstResponder + + + NSApplication + + + 1 + 2 + {{181, 320}, {507, 172}} + 1886912512 + 提供口令 + NSPanel + + View + + {1.79769e+308, 1.79769e+308} + {378, 110} + + + 256 + + YES + + + 266 + {{92, 90}, {398, 62}} + + YES + + 69336577 + 272629760 + 6ZyA6KaB6L6T5YWl5Y+j5Luk5omN6IO95LuO5LiL5YiX56yU6K6w5Lit5a+85YWlCueslOiusOeslOiu +sOeslOiusOeslOiusOeslOiusOeslOiusA + + STHeitiTC-Light + 13 + 16 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 289 + {{379, 12}, {114, 32}} + + YES + + 604110336 + 134217728 + 立即导入 + + LucidaGrande + 13 + 1044 + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 289 + {{297, 12}, {82, 32}} + + YES + + 67239424 + 134217728 + 取消 + + + -2038284033 + 268435457 + + + q + 200 + 25 + + + + + 268 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{20, 90}, {62, 62}} + + YES + + 130560 + 33554432 + + NSImage + NSApplicationIcon + + 0 + 0 + 0 + NO + + YES + + + + 256 + {{67, 52}, {89, 27}} + + YES + + 67239424 + 71303168 + 口令: + + + + + + + + + 290 + {{161, 60}, {326, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + + + {507, 172} + + + {{0, 0}, {1680, 1028}} + {378, 132} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + window + + + + 309 + + + + importAction: + + + + 321 + + + + cancelAction: + + + + 322 + + + + importButton + + + + 326 + + + + helpStringField + + + + 327 + + + + passphraseField + + + + 333 + + + + cancelButton + + + + 339 + + + + initialFirstResponder + + + + 340 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 307 + + + YES + + + + get passphrase + + + 308 + + + YES + + + + + + + + + + + 318 + + + YES + + + + + + 319 + + + YES + + + + + + 320 + + + YES + + + + + + 328 + + + YES + + + + + + 330 + + + YES + + + + + + 331 + + + YES + + + + + + 342 + + + + + 343 + + + + + 344 + + + + + 345 + + + + + 346 + + + + + 347 + + + + + -3 + + + Application + + + + + YES + + YES + -3.IBPluginDependency + 307.IBEditorWindowLastContentRect + 307.IBPluginDependency + 307.IBWindowTemplateEditedContentRect + 307.ImportedFromIB2 + 307.windowTemplate.hasMinSize + 307.windowTemplate.minSize + 308.IBPluginDependency + 308.ImportedFromIB2 + 318.IBPluginDependency + 318.IBPropertyAccessControl + 318.ImportedFromIB2 + 319.IBPluginDependency + 319.IBPropertyAccessControl + 319.ImportedFromIB2 + 320.IBPluginDependency + 320.IBPropertyAccessControl + 320.ImportedFromIB2 + 328.IBPluginDependency + 328.IBPropertyAccessControl + 328.ImportedFromIB2 + 330.IBPluginDependency + 330.ImportedFromIB2 + 331.CustomClassName + 331.IBPluginDependency + 331.IBPropertyAccessControl + 331.ImportedFromIB2 + 342.IBPluginDependency + 343.IBPluginDependency + 344.IBPluginDependency + 345.IBPluginDependency + 346.IBPluginDependency + 347.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + {{464, 361}, {507, 172}} + com.apple.InterfaceBuilder.CocoaPlugin + {{464, 361}, {507, 172}} + + + {378, 110} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 347 + + + + YES + + BlorPasswordRetriever + NSObject + + YES + + YES + cancelAction: + importAction: + + + YES + id + id + + + + YES + + YES + cancelAction: + importAction: + + + YES + + cancelAction: + id + + + importAction: + id + + + + + YES + + YES + cancelButton + helpStringField + importButton + passphraseField + window + + + YES + NSButton + NSTextField + NSButton + NSTextField + NSWindow + + + + YES + + YES + cancelButton + helpStringField + importButton + passphraseField + window + + + YES + + cancelButton + NSButton + + + helpStringField + NSTextField + + + importButton + NSButton + + + passphraseField + NSTextField + + + window + NSWindow + + + + + IBProjectSource + BlorPasswordRetriever.h + + + + BlorPasswordRetriever + NSObject + + IBUserSource + + + + + FirstResponder + NSObject + + : + id + + + : + + : + id + + + + IBUserSource + + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + + didAdjustSubviews: + RBSplitView + + + willAdjustSubviews: + RBSplitView + + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + delegate + + delegate + id + + + + + + RBSplitView + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSImageCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSImageCell.h + + + + NSImageView + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSImageView.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSPanel + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSPanel.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSSecureTextField + NSTextField + + IBFrameworkSource + AppKit.framework/Headers/NSSecureTextField.h + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + NSApplicationIcon + {128, 128} + + + diff --git a/zh.lproj/BlorPasswordRetriever.nib/keyedobjects.nib b/zh.lproj/BlorPasswordRetriever.nib/keyedobjects.nib new file mode 100644 index 00000000..6761bd00 Binary files /dev/null and b/zh.lproj/BlorPasswordRetriever.nib/keyedobjects.nib differ diff --git a/zh.lproj/CarbonErrorStrings.plist b/zh.lproj/CarbonErrorStrings.plist new file mode 100755 index 00000000..9b82e006 --- /dev/null +++ b/zh.lproj/CarbonErrorStrings.plist @@ -0,0 +1,166 @@ + + + + + -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 + 没有足够的权限写入文件 + -64 + 驱动器未安装 + -120 + 无法找到目录 + -121 + 已打开过多目录 + -122 + 文件夹无法移动到自身的子文件夹 + -123 + 卷标类型错误 + -124 + 服务器卷标断开连接 + -127 + 文件系统驱动软件存在问题 + -128 + 操作已取消 + -818 + 数据无法解析 + -819 + 无法初始化临时文件 + -820 + 无法应用临时文件 + -821 + 认证错误 + -822 + 数据无法解压缩 + -823 + 您尚未输入口令 + -824 + 数据无法被正确格式化 + -825 + 笔记解码后包含不匹配数值 + -1300 + 无法在文件系统上找到指定 ID + -1301 + 文件 ID 已存在 + -1302 + 文件实际为文件夹 + -1303 + 文件在另一分卷上 + -1304 + 不可预料的分类更改 + -1306 + 文件试图自己修改其内容 + -1307 + 文件无法匹配文件 ID + -1308 + 分卷被错误载入 + -1309 + 文件在限制范围外被载入 + -1310 + 文件或分卷过大 + -1311 + 分卷已被虚拟内存系统使用 + -1327 + 文件控制区列表访问错误 + -1400 + 文件系统返回未知错误 + -1401 + 文件系统查询无效 + -1402 + 不可用的分支名称 + -1403 + 缓存未初始化 + -1404 + 错误的分支编号 + -1405 + 所请求的文件分类信息是错误的 + -1406 + 分类信息缓存未初始化 + -1407 + 该文件夹实是文件 + -1409 + 文件所指定的分支不存在 + -1410 + 请求的文件名过长而不可用 + -1411 + 未指定文件名 + -1412 + 访问文件时被指定了错误的读取位置 + -1413 + 文件分配错误 + -1417 + 没有更多可查找的内容 + -1418 + 未指定要从目录中读取的项目 + -1419 + 搜搜参数错误 + -1420 + 文件系统不一致 + -1421 + 文件已存在分支 + -1422 + 迭代目录时遇到错误参数 + -1423 + 指定的目录迭代器错误 + -1424 + 目录迭代器使用错误 + -1425 + 磁盘空间已满 + -5000 + 您的帐号没有访问目录的权限 + + diff --git a/zh.lproj/DeletionManager.nib/designable.nib b/zh.lproj/DeletionManager.nib/designable.nib new file mode 100644 index 00000000..b8c3c466 --- /dev/null +++ b/zh.lproj/DeletionManager.nib/designable.nib @@ -0,0 +1,628 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSScroller + NSButton + NSScrollView + NSTextFieldCell + NSButtonCell + NSImageView + NSImageCell + NSTableView + NSCustomObject + NSView + NSWindowTemplate + NSTextField + NSTableColumn + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + DeletionManager + + + FirstResponder + + + NSApplication + + + 9 + 2 + {{568, 610}, {371, 222}} + 1886913536 + Notes Deleted Externally + + NSPanel + + + View + + {371, 200} + + + 256 + + + + 266 + {{102, 138}, {252, 68}} + + YES + + 67239424 + 272629760 + The following files no longer exist in the notes folder—restore them to disk or delete them from Notational Velocity, too? + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 268 + + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + {{24, 144}, {62, 62}} + + YES + + 130560 + 33554432 + + NSImage + NSApplicationIcon + + 0 + 1 + 0 + NO + + YES + + + + 274 + + + + 2304 + + + + 256 + {314, 38} + + YES + + + 256 + {{129, 0}, {16, 17}} + + + + 311 + 40 + 1000 + + 75628096 + 2048 + + + LucidaGrande + 11 + 3100 + + + 3 + MC4zMzMzMzI5OQA + + + 6 + System + headerTextColor + + + + + 337772096 + 2048 + + + + 6 + System + controlBackgroundColor + + + + + 3 + YES + YES + + + + 3 + 2 + + 3 + MQA + + + 6 + System + gridColor + + 3 + MC41AA + + + 17 + 306184192 + + + 4 + 15 + 0 + YES + 0 + + + {{1, 1}, {314, 38}} + + + + + 4 + + + + 256 + {{315, 1}, {15, 38}} + + + _doScroller: + 0.9473684 + + + + -2147483392 + {{-100, -100}, {128, 15}} + + 1 + + _doScroller: + 0.99047620000000003 + + + {{20, 82}, {331, 40}} + + + 18 + + + + QSAAAEEgAABBmAAAQZgAAA + + + + 289 + {{130, 12}, {90, 32}} + + YES + + 67239424 + 134217728 + Delete + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 289 + {{220, 12}, {137, 32}} + + YES + + 67239424 + 134217728 + Restore to Disk + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 288 + {{18, 58}, {297, 18}} + + YES + + 67239424 + 0 + Do not show this message again + + + 1211912703 + 2 + + NSSwitch + + + + 200 + 25 + + + + {{7, 11}, {371, 222}} + + + {{0, 0}, {1440, 878}} + {371, 222} + {1e+13, 1e+13} + externallyDeletedNotesTable + + + + + + + tableView + + + + 336 + + + + window + + + + 337 + + + + deleteAction: + + + + 338 + + + + restoreAction: + + + + 339 + + + + dataSource + + + + 340 + + + + delegate + + + + 341 + + + + confirmDeletionButton + + + + 353 + + + + changeConfirmDeletion: + + + + 354 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 328 + + + + + + Multiple Note External Deletion + + + 329 + + + + + + + + + + + + + 330 + + + + + + + + + + 331 + + + + + + + + 332 + + + + + + + + 333 + + + + + + + + 334 + + + + + + + + 335 + + + + + + + + 343 + + + + + 344 + + + + + 345 + + + + + 346 + + + + + 347 + + + + + 348 + + + + + 349 + + + + + + + + 350 + + + + + 351 + + + + + + + + 352 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + {{363, 663}, {371, 222}} + com.apple.InterfaceBuilder.CocoaPlugin + {{363, 663}, {371, 222}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 354 + + + + + FirstResponder + + : + id + + + : + + : + id + + + + IBUserSource + + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + NSApplicationIcon + {128, 128} + + + diff --git a/zh.lproj/DeletionManager.nib/keyedobjects.nib b/zh.lproj/DeletionManager.nib/keyedobjects.nib new file mode 100644 index 00000000..b28f50a3 Binary files /dev/null and b/zh.lproj/DeletionManager.nib/keyedobjects.nib differ diff --git a/zh.lproj/EncodingsManager.nib/designable.nib b/zh.lproj/EncodingsManager.nib/designable.nib new file mode 100644 index 00000000..b66b7fd7 --- /dev/null +++ b/zh.lproj/EncodingsManager.nib/designable.nib @@ -0,0 +1,860 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + YES + NSPopUpButton + NSScroller + NSButton + NSMenu + NSScrollView + NSTextFieldCell + NSButtonCell + NSMenuItem + NSCustomObject + NSTextView + NSView + NSWindowTemplate + NSTextField + NSPopUpButtonCell + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + EncodingsManager + + + FirstResponder + + + NSApplication + + + 11 + 2 + {{473, 509}, {412, 366}} + 1886912512 + Panel + + NSPanel + + + View + + {378, 210} + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 2322 + {{0, 21}, {370, 14}} + + + + + + + + + + + + YES + + + 6 + + + + 370 + 1 + + + 2913 + 0 + + + 3 + MQA + + + YES + + YES + NSBackgroundColor + NSColor + + + YES + + 6 + System + selectedTextBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + selectedTextColor + + 3 + MAA + + + + + + + YES + + YES + NSColor + NSUnderline + + + YES + + 1 + MCAwIDEAA + + + + + + + 6 + {410, 1e+07} + {114, 0} + + + + {{1, 1}, {370, 185}} + + + + + + + {4, -5} + 1 + + 4 + + + + -2147483392 + {{-30, 1}, {15, 174}} + + + + _doScroller: + 1 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {{20, 60}, {372, 187}} + + + + 530 + + + + + + + 266 + {{17, 263}, {378, 26}} + + + YES + + -2076049856 + 2048 + + LucidaGrande + 13 + 1044 + + + 109199615 + 1 + + + + + + 400 + 75 + + + Item1 + + 1048576 + 2147483647 + 1 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + _popUpItemAction: + + + YES + + + OtherViews + + + YES + + + + Item2 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + Item3 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + 3 + YES + YES + 1 + + + + + 266 + {{17, 295}, {378, 51}} + + + YES + + 67239424 + 272629760 + Notational Velocity 假设当前文件 “%@” 以下列编码保存: + + + + 6 + System + controlColor + + + + 6 + System + controlTextColor + + + + + + + 289 + {{270, 12}, {128, 32}} + + + YES + + 67239424 + 134217728 + 确认编码 + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 289 + {{188, 12}, {82, 32}} + + + YES + + 67239424 + 134217728 + 取消 + + + -2038284033 + 1 + + + Gw + 200 + 25 + + + + {{7, 11}, {412, 366}} + + + + {{0, 0}, {1440, 878}} + {378, 232} + {1e+13, 1e+13} + + + + + YES + + + window + + + + 309 + + + + okAction: + + + + 321 + + + + cancelAction: + + + + 322 + + + + encodingsPopUpButton + + + + 323 + + + + chooseEncoding: + + + + 324 + + + + textView + + + + 325 + + + + okButton + + + + 326 + + + + helpStringField + + + + 327 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 307 + + + YES + + + + Panel + + + 308 + + + YES + + + + + + + + + + 311 + + + YES + + + + + + + + 312 + + + + + 313 + + + YES + + + + + + 318 + + + YES + + + + + + 319 + + + YES + + + + + + 320 + + + YES + + + + + + 329 + + + YES + + + + + + 330 + + + + + 331 + + + + + 332 + + + + + 314 + + + YES + + + + + + + + 317 + + + + + 316 + + + + + 315 + + + + + 333 + + + + + 334 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 307.IBEditorWindowLastContentRect + 307.IBPluginDependency + 307.IBPropertyAccessControl + 307.IBWindowTemplateEditedContentRect + 307.ImportedFromIB2 + 308.IBPluginDependency + 308.ImportedFromIB2 + 311.IBPluginDependency + 311.ImportedFromIB2 + 312.IBPluginDependency + 312.ImportedFromIB2 + 313.IBPluginDependency + 313.ImportedFromIB2 + 314.IBPluginDependency + 314.ImportedFromIB2 + 315.IBPluginDependency + 315.ImportedFromIB2 + 316.IBPluginDependency + 316.ImportedFromIB2 + 317.IBPluginDependency + 317.ImportedFromIB2 + 318.IBPluginDependency + 318.IBPropertyAccessControl + 318.ImportedFromIB2 + 319.IBPluginDependency + 319.IBPropertyAccessControl + 319.ImportedFromIB2 + 320.IBPluginDependency + 320.IBPropertyAccessControl + 320.ImportedFromIB2 + 329.IBPluginDependency + 330.IBPluginDependency + 331.IBPluginDependency + 332.IBPluginDependency + 333.IBPluginDependency + 333.IBShouldRemoveOnLegacySave + 334.IBPluginDependency + 334.IBShouldRemoveOnLegacySave + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{316, 314}, {412, 366}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{316, 314}, {412, 366}} + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + YES + + + + + + YES + + + + + 334 + + + + YES + + EncodingsManager + NSObject + + YES + + YES + cancelAction: + chooseEncoding: + okAction: + + + YES + id + id + id + + + + YES + + YES + cancelAction: + chooseEncoding: + okAction: + + + YES + + cancelAction: + id + + + chooseEncoding: + id + + + okAction: + id + + + + + YES + + YES + encodingsPopUpButton + helpStringField + okButton + textView + window + + + YES + NSPopUpButton + NSTextField + NSButton + NSTextView + NSPanel + + + + YES + + YES + encodingsPopUpButton + helpStringField + okButton + textView + window + + + YES + + encodingsPopUpButton + NSPopUpButton + + + helpStringField + NSTextField + + + okButton + NSButton + + + textView + NSTextView + + + window + NSPanel + + + + + IBProjectSource + ./Classes/EncodingsManager.h + + + + FirstResponder + + : + id + + + : + + : + id + + + + IBUserSource + + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + YES + + YES + NSMenuCheckmark + NSMenuMixedState + + + YES + {9, 8} + {7, 2} + + + + diff --git a/zh.lproj/EncodingsManager.nib/keyedobjects.nib b/zh.lproj/EncodingsManager.nib/keyedobjects.nib new file mode 100644 index 00000000..df3a1a46 Binary files /dev/null and b/zh.lproj/EncodingsManager.nib/keyedobjects.nib differ diff --git a/zh.lproj/ExporterManager.nib/designable.nib b/zh.lproj/ExporterManager.nib/designable.nib new file mode 100644 index 00000000..672af430 --- /dev/null +++ b/zh.lproj/ExporterManager.nib/designable.nib @@ -0,0 +1,503 @@ + + + + 1060 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + ExporterManager + + + FirstResponder + + + NSApplication + + + + 256 + + YES + + + 256 + {{98, 16}, {189, 26}} + + YES + + -2076049856 + 2048 + + LucidaGrande + 13 + 1044 + + + 109199615 + 1 + + LucidaGrande + 13 + 16 + + + + + + 400 + 75 + + + Microsoft Word 文档 + + 1048576 + 2147483647 + 1 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + _popUpItemAction: + 4 + + + YES + + + OtherViews + + + YES + + + 纯文本格式 + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + 多信息文本格式 + + 1048576 + 2147483647 + + + _popUpItemAction: + 2 + + + + + HTML 文档 + + 1048576 + 2147483647 + + + _popUpItemAction: + 3 + + + + + + Microsoft Word XML 文档 + + 1048576 + 2147483647 + + + _popUpItemAction: + 5 + + + + + 3 + 3 + YES + YES + 1 + + + + + 256 + {{17, 23}, {79, 17}} + + YES + + 67239424 + 71303168 + 文件格式: + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + {304, 60} + + + NSView + + NSResponder + + + + + YES + + + accessoryView + + + + 350 + + + + formatSelectorPopup + + + + 351 + + + + formatSelectorChanged: + + + + 353 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 341 + + + YES + + + + + View + + + 342 + + + YES + + + + + + 347 + + + YES + + + + + + 355 + + + YES + + + + + + 356 + + + + + 343 + + + YES + + + + + + + + + + 349 + + + + + 348 + + + + + 346 + + + + + 345 + + + + + 344 + + + + + -3 + + + Application + + + + + YES + + YES + 341.IBEditorWindowLastContentRect + 341.IBPluginDependency + 341.ImportedFromIB2 + 342.IBPluginDependency + 342.ImportedFromIB2 + 343.IBEditorWindowLastContentRect + 343.IBPluginDependency + 343.ImportedFromIB2 + 344.IBPluginDependency + 344.ImportedFromIB2 + 345.IBPluginDependency + 345.ImportedFromIB2 + 346.IBPluginDependency + 346.ImportedFromIB2 + 347.IBPluginDependency + 347.ImportedFromIB2 + 348.IBPluginDependency + 348.ImportedFromIB2 + 349.IBPluginDependency + 349.ImportedFromIB2 + + + YES + {{399, 505}, {304, 60}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{420, 484}, {235, 103}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + YES + + + YES + + + + + YES + + + YES + + + + 356 + + + + YES + + ExporterManager + NSObject + + formatSelectorChanged: + id + + + formatSelectorChanged: + + formatSelectorChanged: + id + + + + YES + + YES + accessoryView + formatSelectorPopup + + + YES + NSView + NSPopUpButton + + + + YES + + YES + accessoryView + formatSelectorPopup + + + YES + + accessoryView + NSView + + + formatSelectorPopup + NSPopUpButton + + + + + IBUserSource + + + + + FirstResponder + NSObject + + : + id + + + : + + : + id + + + + IBUserSource + + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + YES + + YES + NSMenuCheckmark + NSMenuMixedState + + + YES + {9, 8} + {7, 2} + + + + diff --git a/zh.lproj/ExporterManager.nib/keyedobjects.nib b/zh.lproj/ExporterManager.nib/keyedobjects.nib new file mode 100644 index 00000000..ffb4fe0f Binary files /dev/null and b/zh.lproj/ExporterManager.nib/keyedobjects.nib differ diff --git a/zh.lproj/FindPanel.nib/designable.nib b/zh.lproj/FindPanel.nib/designable.nib new file mode 100644 index 00000000..3447c6fd --- /dev/null +++ b/zh.lproj/FindPanel.nib/designable.nib @@ -0,0 +1,662 @@ + + + + 1060 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + MultiTextFinder + + + FirstResponder + + + NSApplication + + + 19 + 2 + {{696, 526}, {465, 92}} + -260571136 + 在已过滤的笔记中查找 + NSPanel + + View + + {1.79769e+308, 1.79769e+308} + {300, 92} + + + 256 + + YES + + + 268 + {{17, 51}, {36, 18}} + + YES + + 67239424 + 71303168 + 5p+l5om+Ogo + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 266 + {{58, 49}, {253, 23}} + + YES + + -1804468671 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + + + + 265 + {{321, 44}, {130, 32}} + + YES + + 67239424 + 134217728 + 下一个 + + + -2038284033 + 1 + + LucidaGrande + 13 + 16 + + + + 200 + 25 + + + + + 265 + {{321, 12}, {130, 32}} + + YES + + 67239424 + 134217728 + 上一个 + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 264 + {{72, 21}, {97, 18}} + + YES + + -2080244224 + 0 + 忽略大小写 + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 264 + {{187, 21}, {112, 18}} + + YES + + 67239424 + 0 + 整段词组 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {465, 92} + + + {{0, 0}, {1680, 1028}} + {300, 108} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + window + + + + 344 + + + + initialFirstResponder + + + + 367 + + + + findStringField + + + + 369 + + + + ignoreCaseButton + + + + 370 + + + + entirePhraseButton + + + + 371 + + + + nextButton + + + + 372 + + + + previousButton + + + + 373 + + + + findNext: + + + + 374 + + + + findPrevious: + + + + 375 + + + + changeEntirePhrase: + + + + 376 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 342 + + + YES + + + + Panel + + + 343 + + + YES + + + + + + + + + + + 345 + + + YES + + + + + + 347 + + + YES + + + + + + 349 + + + YES + + + + + + 350 + + + YES + + + + + + 355 + + + YES + + + + + + 362 + + + YES + + + + + + 378 + + + + + 379 + + + + + 380 + + + + + 381 + + + + + 382 + + + + + 383 + + + + + -3 + + + Application + + + + + YES + + YES + 342.IBEditorWindowLastContentRect + 342.IBPluginDependency + 342.IBWindowTemplateEditedContentRect + 342.ImportedFromIB2 + 342.windowTemplate.hasMinSize + 342.windowTemplate.minSize + 343.IBPluginDependency + 343.ImportedFromIB2 + 345.IBPluginDependency + 345.ImportedFromIB2 + 347.IBPluginDependency + 347.ImportedFromIB2 + 349.IBPluginDependency + 349.ImportedFromIB2 + 350.IBPluginDependency + 350.ImportedFromIB2 + 355.IBPluginDependency + 355.ImportedFromIB2 + 362.IBPluginDependency + 362.ImportedFromIB2 + + + YES + {{461, 599}, {465, 92}} + com.apple.InterfaceBuilder.CocoaPlugin + {{461, 599}, {465, 92}} + + + {300, 92} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + YES + + + YES + + + + + YES + + + YES + + + + 383 + + + + YES + + FirstResponder + NSObject + + : + id + + + : + + : + id + + + + IBUserSource + + + + + MultiTextFinder + NSObject + + YES + + YES + changeEntirePhrase: + findNext: + findPrevious: + + + YES + id + id + id + + + + YES + + YES + changeEntirePhrase: + findNext: + findPrevious: + + + YES + + changeEntirePhrase: + id + + + findNext: + id + + + findPrevious: + id + + + + + YES + + YES + entirePhraseButton + findStringField + ignoreCaseButton + nextButton + previousButton + window + + + YES + NSButton + NSTextField + NSButton + NSButton + NSButton + NSPanel + + + + YES + + YES + entirePhraseButton + findStringField + ignoreCaseButton + nextButton + previousButton + window + + + YES + + entirePhraseButton + NSButton + + + findStringField + NSTextField + + + ignoreCaseButton + NSButton + + + nextButton + NSButton + + + previousButton + NSButton + + + window + NSPanel + + + + + IBUserSource + + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + NSSwitch + {15, 15} + + + diff --git a/zh.lproj/FindPanel.nib/keyedobjects.nib b/zh.lproj/FindPanel.nib/keyedobjects.nib new file mode 100644 index 00000000..b36b6823 Binary files /dev/null and b/zh.lproj/FindPanel.nib/keyedobjects.nib differ diff --git a/zh.lproj/FindPanel.strings b/zh.lproj/FindPanel.strings new file mode 100755 index 00000000..cab06713 Binary files /dev/null and b/zh.lproj/FindPanel.strings differ diff --git a/zh.lproj/ImporterAccessory.nib/designable.nib b/zh.lproj/ImporterAccessory.nib/designable.nib new file mode 100644 index 00000000..27c4b3ca --- /dev/null +++ b/zh.lproj/ImporterAccessory.nib/designable.nib @@ -0,0 +1,348 @@ + + + + 1030 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + AlienNoteImporter + + + FirstResponder + + + NSApplication + + + + 256 + + YES + + + 268 + {{18, 18}, {181, 18}} + + YES + + 67239424 + 0 + 导入文件创建时间 + + LucidaGrande + 13 + 1044 + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + {217, 54} + + + NSView + + NSResponder + + + + + YES + + + grabCreationDatesButton + + + + 361 + + + + importAccessoryView + + + + 362 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 341 + + + YES + + + + View + + + 357 + + + YES + + + + + + 365 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 341.IBEditorWindowLastContentRect + 341.IBPluginDependency + 341.ImportedFromIB2 + 357.IBPluginDependency + 357.ImportedFromIB2 + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{329, 997}, {217, 54}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + YES + + + YES + + + + + YES + + + YES + + + + 365 + + + + YES + + AlienNoteImporter + NSObject + + YES + + YES + grabCreationDatesButton + importAccessoryView + receptionDelegate + source + + + YES + NSButton + NSView + id + id + + + + YES + + YES + grabCreationDatesButton + importAccessoryView + receptionDelegate + source + + + YES + + grabCreationDatesButton + NSButton + + + importAccessoryView + NSView + + + receptionDelegate + id + + + source + id + + + + + IBUserSource + + + + + FirstResponder + NSObject + + : + id + + + : + + : + id + + + + IBUserSource + + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + + didAdjustSubviews: + RBSplitView + + + willAdjustSubviews: + RBSplitView + + + + + IBUserSource + + + + + RBSplitSubview + NSView + + IBUserSource + + + + + RBSplitView + RBSplitSubview + + IBUserSource + + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + NSSwitch + {15, 15} + + + diff --git a/zh.lproj/ImporterAccessory.nib/keyedobjects.nib b/zh.lproj/ImporterAccessory.nib/keyedobjects.nib new file mode 100644 index 00000000..de16382b Binary files /dev/null and b/zh.lproj/ImporterAccessory.nib/keyedobjects.nib differ diff --git a/zh.lproj/InfoPlist.strings b/zh.lproj/InfoPlist.strings new file mode 100755 index 00000000..415a9cc5 Binary files /dev/null and b/zh.lproj/InfoPlist.strings differ diff --git a/zh.lproj/KeyDerivationManager.nib/designable.nib b/zh.lproj/KeyDerivationManager.nib/designable.nib new file mode 100644 index 00000000..bc410deb --- /dev/null +++ b/zh.lproj/KeyDerivationManager.nib/designable.nib @@ -0,0 +1,1244 @@ + + + + 1030 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + KeyDerivationManager + + + FirstResponder + + + NSApplication + + + + 256 + + YES + + + 256 + {{141, 46}, {272, 25}} + + YES + + 67501824 + 0 + + + + + Helvetica + 12 + 16 + + + 1 + 0.01 + 0.29999999999999999 + 0.0 + 10 + 0 + NO + NO + + + + + 256 + {{-3, 53}, {139, 22}} + + YES + + 67239424 + 71303168 + 密钥演算时间: + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 256 + {{138, 6}, {48, 32}} + + YES + + 67239424 + 138412032 + 更快启动速度 + + STHeitiTC-Light + 11 + 16 + + + + + + + + + 256 + {{362, 0}, {51, 38}} + + YES + + 67239424 + 138412032 + 更强的安全性 + + + + + + + + + 256 + {{181, 12}, {179, 26}} + + YES + + 68288064 + 138413056 + 672 ms + + + + + + + + + 1280 + + {{117, 17}, {16, 16}} + + 28938 + 16 + 100 + + + {413, 75} + + + NSView + + NSResponder + + + + + YES + + + view + + + + 334 + + + + slider + + + + 335 + + + + hashDurationField + + + + 336 + + + + sliderChanged: + + + + 337 + + + + iterationEstimatorProgress + + + + 345 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 328 + + + YES + + + + + + + + + View + + + 329 + + + YES + + + + + + 330 + + + YES + + + + + + 331 + + + YES + + + + + + 332 + + + YES + + + + + + 333 + + + YES + + + + + + 344 + + + + + 347 + + + + + 348 + + + + + 349 + + + + + 350 + + + + + 351 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 328.IBEditorWindowLastContentRect + 328.IBPluginDependency + 328.IBPropertyAccessControl + 328.ImportedFromIB2 + 329.CustomClassName + 329.IBPluginDependency + 329.ImportedFromIB2 + 330.IBPluginDependency + 330.IBPropertyAccessControl + 330.ImportedFromIB2 + 331.IBPluginDependency + 331.IBPropertyAccessControl + 331.ImportedFromIB2 + 332.IBPluginDependency + 332.IBPropertyAccessControl + 332.IBViewBoundsToFrameTransform + 332.ImportedFromIB2 + 333.IBPluginDependency + 333.ImportedFromIB2 + 344.IBPluginDependency + 344.ImportedFromIB2 + 347.IBPluginDependency + 348.IBPluginDependency + 349.IBPluginDependency + 350.IBPluginDependency + 351.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{527, 504}, {413, 75}} + com.apple.InterfaceBuilder.CocoaPlugin + + + KeyDerivationDelaySlider + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDsQAAwhAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 351 + + + + YES + + FirstResponder + NSObject + + : + id + + + : + + : + id + + + + IBUserSource + + + + + KeyDerivationDelaySlider + NSSlider + + delegate + id + + + delegate + + delegate + id + + + + IBProjectSource + KeyDerivationDelaySlider.h + + + + KeyDerivationDelaySlider + NSSlider + + IBUserSource + + + + + KeyDerivationManager + NSObject + + sliderChanged: + id + + + sliderChanged: + + sliderChanged: + id + + + + YES + + YES + hashDurationField + iterationEstimatorProgress + slider + view + + + YES + NSTextField + NSProgressIndicator + KeyDerivationDelaySlider + NSView + + + + YES + + YES + hashDurationField + iterationEstimatorProgress + slider + view + + + YES + + hashDurationField + NSTextField + + + iterationEstimatorProgress + NSProgressIndicator + + + slider + KeyDerivationDelaySlider + + + view + NSView + + + + + IBProjectSource + KeyDerivationManager.h + + + + KeyDerivationManager + NSObject + + IBUserSource + + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + + didAdjustSubviews: + RBSplitView + + + willAdjustSubviews: + RBSplitView + + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + NSObject + + IBUserSource + + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitSubview + NSView + + IBUserSource + + + + + RBSplitView + RBSplitSubview + + delegate + id + + + delegate + + delegate + id + + + + + + RBSplitView + + + + RBSplitView + RBSplitSubview + + IBUserSource + + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSProgressIndicator + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSProgressIndicator.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSSlider + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSSlider.h + + + + NSSliderCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSSliderCell.h + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + diff --git a/zh.lproj/KeyDerivationManager.nib/keyedobjects.nib b/zh.lproj/KeyDerivationManager.nib/keyedobjects.nib new file mode 100644 index 00000000..f0d4f740 Binary files /dev/null and b/zh.lproj/KeyDerivationManager.nib/keyedobjects.nib differ diff --git a/zh.lproj/Localizable.strings b/zh.lproj/Localizable.strings new file mode 100755 index 00000000..0b998472 Binary files /dev/null and b/zh.lproj/Localizable.strings differ diff --git a/zh.lproj/MainMenu.xib b/zh.lproj/MainMenu.xib new file mode 100644 index 00000000..7def0c58 --- /dev/null +++ b/zh.lproj/MainMenu.xib @@ -0,0 +1,5301 @@ + + + + 1050 + 10K540 + 1306 + 1038.36 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSTextView + NSScroller + NSTableHeaderView + NSMenuItem + NSMenu + NSTextFieldCell + NSButtonCell + NSButton + NSTokenField + NSProgressIndicator + NSTokenFieldCell + NSScrollView + NSTableView + NSCustomView + NSCustomObject + NSView + NSWindowTemplate + NSTextField + NSUserDefaultsController + + + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + + NSApplication + + + FirstResponder + + + NSApplication + + + 4111 + 2 + {{280, 392}, {397, 464}} + 1618477056 + nvALT + NSWindow + + View + + {213, 107} + + + 256 + {{7, 11}, {397, 464}} + + + + {{0, 0}, {1440, 878}} + {213, 129} + {1e+13, 1e+13} + NotationWindow + + + MainMenu + + + + nvALT + + 1048576 + 2147483647 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + submenuAction: + + nvALT + + + + 关于 nvALT + + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 偏好设置… + , + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 检查更新… + + 1048576 + 2147483647 + + + 88 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 服务 + + 1048576 + 2147483647 + + + submenuAction: + + 服务 + + _NSServicesMenu + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 隐藏 nvALT + h + 1048576 + 2147483647 + + + + + + 隐藏其他 + h + 1572864 + 2147483647 + + + + + + 显示全部 + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 退出 nvALT + q + 1048576 + 2147483647 + + + + + _NSAppleMenu + + + + + 笔记 + + 1048576 + 2147483647 + + + submenuAction: + 89 + + 笔记 + + + + 重命名 + r + 1048576 + 2147483647 + + + 90 + + + + 标签 + T + 1048576 + 2147483647 + + + 92 + + + + 删除 + CA + 1048576 + 2147483647 + + + 91 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 搜索或创建… + l + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 导入… + + 1048576 + 2147483647 + + + 93 + + + + 导出… + e + 1048576 + 2147483647 + + + 94 + + + + 在 Finder 中显示 + R + 1048576 + 2147483647 + + + + + + Edit With + + 2147483647 + + + 88 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 页面设置… + P + 1048576 + 2147483647 + + + 95 + + + + 打印… + p + 1048576 + 2147483647 + + + 96 + + + + + + + 编辑 + + 1048576 + 2147483647 + + + submenuAction: + + 编辑 + + + + 撤销 + z + 1048576 + 2147483647 + + + + + + 重做 + Z + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 剪切 + x + 1048576 + 2147483647 + + + + + + 拷贝 + c + 1048576 + 2147483647 + + + + + + 拷贝 URL + c + 1572864 + 2147483647 + + + + + + 粘贴 + v + 1048576 + 2147483647 + + + + + + 粘贴为新笔记 + V + 1048576 + 2147483647 + + + + + + 清除 + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 全选 + a + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 查找 + + 1048576 + 2147483647 + + + submenuAction: + + 查找 + + + + 查找… + f + 1048576 + 2147483647 + + + 1 + + + + 查找下一个 + g + 1048576 + 2147483647 + + + 2 + + + + 查找上一个 + G + 1048576 + 2147483647 + + + 3 + + + + 查找所选内容 + e + 1048576 + 2147483647 + + + 7 + + + + + + + 拼写和语法 + + 1048576 + 2147483647 + + + submenuAction: + + 拼写和语法 + + + + 显示拼写和语法… + : + 1048576 + 2147483647 + + + + + + 立即检查文稿 + ; + 1048576 + 2147483647 + + + + + + 键入时检查拼写 + + 1048576 + 2147483647 + + + + + + + + + 转换 + + 1048576 + 2147483647 + + + submenuAction: + + 转换 + + + + 变为大写 + + 1048576 + 2147483647 + + + + + + 变为小写 + + 1048576 + 2147483647 + + + + + + 首字母大写 + + 1048576 + 2147483647 + + + + + + + + + + + + 查看 + + 1048576 + 2147483647 + + + submenuAction: + 99 + + 查看 + + + + YES + YES + Enter Full Screen + f + 1310720 + 2147483647 + + + 314 + + + + 切换为横向排版 + l + 1572864 + 2147483647 + + + + + + Collapse Notes List + C + 1048576 + 2147483647 + + + + + + Color Schemes + + 2147483647 + + + submenuAction: + + Color Schemes + + + + B/W + 1 + 1572864 + 2147483647 + 1 + + + + + + Low Contrast + 2 + 1572864 + 2147483647 + + + + + + User Scheme + 3 + 1572864 + 2147483647 + + + + + + + + + YES + YES + + + 2147483647 + + + + + + 分栏 + + 1048576 + 2147483647 + + + submenuAction: + 97 + + 分栏 + + + + 项目 + + 1048576 + 2147483647 + 1 + + + + + + + + + 排列 + + 1048576 + 2147483647 + + + submenuAction: + 98 + + 排列 + + + + 项目 + + 1048576 + 2147483647 + + + + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + YES + Show Word Count + K + 1048576 + 2147483647 + + + + + + 列表中显示笔记预览 + p + 1572864 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 下一个笔记 + j + 1048576 + 2147483647 + + + 106 + + + + 上一个笔记 + k + 1048576 + 2147483647 + + + 107 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 取消选择 + d + 1048576 + 2147483647 + + + 101 + + + + + + + 书签 + + 1048576 + 2147483647 + + + submenuAction: + 103 + + 书签 + + + + 项目 + + 1048576 + 2147483647 + + + + + + + + + 格式 + + 1048576 + 2147483647 + + + submenuAction: + + 格式 + + + + 纯文本样式 + t + 1048576 + 2147483647 + + + + + + 粗体 + b + 1048576 + 2147483647 + + + 2 + + Bold + + + LucidaGrande-Bold + 14 + 16 + + + + + + + + 斜体 + i + 1048576 + 2147483647 + + + 1 + + Italic + + + LucidaGrande + 14 + 16 + + + + 4 + + + 28 + + + 56 + + + 84 + + + 112 + + + 140 + + + 168 + + + 196 + + + 224 + + + 252 + + + 280 + + + 308 + + + 336 + + + + + + + + + 加删除线 + y + 1048576 + 2147483647 + + + + Strikethrough + + + + + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 向左缩进 + [ + 1048576 + 2147483647 + + + + + + 向右缩进 + ] + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 修正文本编码… + + 1048576 + 2147483647 + + + 102 + + + + + + + Preview + + 2147483647 + + + submenuAction: + + Preview + + + + (Multi)Markdown + + 2147483647 + + + 13372 + + + + Textile + + 2147483647 + + + 13373 + + + + YES + YES + + + 2147483647 + + + + + + Toggle Preview Window + p + 1310720 + 2147483647 + + + + + + Toggle Source View + u + 1048576 + 2147483647 + + + + + + Lock Note to Preview + L + 1572864 + 2147483647 + + + + + + Print Preview / PDF + P + 1572864 + 2147483647 + + + + + + Save Preview HTML + S + 1048576 + 2147483647 + + + + + + + + + 窗口 + + 1048576 + 2147483647 + + + submenuAction: + + 窗口 + + + + 最小化 + m + 1048576 + 2147483647 + + + + + + 关闭 + w + 1048576 + 2147483647 + + + + + + 缩放 + + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 前置全部窗口 + + 1048576 + 2147483647 + + + + + _NSWindowsMenu + + + + + 帮助 + + 1048576 + 2147483647 + + + submenuAction: + + 帮助 + + + + 键盘快捷键 + + 2147483647 + + + 1 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + nvALT 网站 + + 2147483647 + + + 5 + + + + ElasticThreads 网站 + + 2147483647 + + + 6 + + + + Brett Terpstra 网站 + + 2147483647 + + + 7 + + + + Notational Velocity 网站 + + 2147483647 + + + 3 + + + + 开发网站 + + 2147483647 + + + 4 + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 致谢 + + 2147483647 + + + 2 + + + + + + _NSMainMenu + + + AppController + + + + 274 + + + + 319 + {{0, 43}, {147, 23}} + + YES + + 67239424 + 138412032 + No Note Selected + + Helvetica + 18 + 16 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 3 + MC40OTU5Njc3NDU4AA + + + + + {147, 102} + + EmptyView + NSView + + + NSFontManager + + + + 258 + + + + 257 + + NSStringPboardType + + {{206, 6}, {145, 14}} + + YES + + 67239424 + 67239936 + + LucidaGrande + 11 + 3100 + + + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + 0.0 + 0 + + 2 + + + + 266 + {381, 23} + + + YES + + -1804468671 + 268436480 + + + LucidaGrande + 13 + 1044 + + + YES + + + 6 + System + textColor + + + + + + {381, 23} + + DFView + NSResponder + + + 1 + 2 + {{454, 634}, {353, 106}} + -260571136 + + NSPanel + + View + + {213, 107} + + + 256 + + + + 256 + {{240, 12}, {99, 32}} + + YES + + 67239424 + 134217728 + Quit Now + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 1280 + + {{20, 54}, {32, 32}} + + + 20490 + 100 + + + + 256 + {{70, 60}, {266, 20}} + + + YES + + 67239424 + 272629760 + Waiting for changes to finish uploading… + + + + + + + + {{7, 11}, {353, 106}} + + + {{0, 0}, {1440, 878}} + {213, 129} + {1e+13, 1e+13} + + + barMenu + + + + 书签 + + 1048576 + 2147483647 + + + submenuAction: + 901 + + 书签 + + + + 项目 + + 1048576 + 2147483647 + + + + + + + + + 格式 + + 1048576 + 2147483647 + + + submenuAction: + + 格式 + + + + 纯文本样式 + t + 1048576 + 2147483647 + + + + + + 粗体 + b + 1048576 + 2147483647 + + + 2 + + Bold + + + + + + 斜体 + i + 1048576 + 2147483647 + + + 1 + + Italic + + + + + + 加删除线 + y + 1048576 + 2147483647 + + + + Strikethrough + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 向左缩进 + [ + 1048576 + 2147483647 + + + + + + 向右缩进 + ] + 1048576 + 2147483647 + + + + + + YES + YES + + + 1048576 + 2147483647 + + + + + + 修正文本编码… + + 1048576 + 2147483647 + + + 102 + + + + + + + YES + YES + + + 2147483647 + + + + + + 搜索或创建… + l + 1048576 + 2147483647 + + + + + + 在 Finder 中显示 + R + 1048576 + 2147483647 + + + + + + 重命名 + r + 1048576 + 2147483647 + + + 90 + + + + 标签 + T + 1048576 + 2147483647 + + + 92 + + + + 删除 + CA + 1048576 + 2147483647 + + + 91 + + + + Insert Link + + 2147483647 + + + + + + YES + YES + + + 2147483647 + + + + + + 切换为横向排版 + l + 1572864 + 2147483647 + + + + + + Collapse Notes List + C + 1048576 + 2147483647 + + + + + + Color Schemes + + 2147483647 + + + submenuAction: + + Color Schemes + + + + YES + B/W + 1 + 1572864 + 2147483647 + 1 + + + + + + YES + Low Contrast + 2 + 1572864 + 2147483647 + + + + + + YES + User Scheme + 3 + 1572864 + 2147483647 + + + + + + + + + YES + YES + + + 2147483647 + + + + + + 偏好设置… + , + 1048576 + 2147483647 + + + + + + 检查更新… + + 1048576 + 2147483647 + + + 902 + + + + 退出 nvALT + q + 1048576 + 2147483647 + + + + + + + + 268 + {163, 96} + StatusItemView + + + YES + + + + 274 + + + + 2304 + + + + 2322 + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + Apple URL pasteboard type + CorePasteboardFlavorType 0x6D6F6F76 + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + NeXT font pasteboard type + NeXT ruler pasteboard type + WebURLsWithTitlesPboardType + public.url + + {399, 14} + + + + + + + + + + + + + + 6 + + + + 399 + 1 + + + 67120871 + 0 + + + + + 6 + System + selectedTextBackgroundColor + + + + 6 + System + selectedTextColor + + + + + + + 1 + MCAwIDEAA + + + + + + 6 + {798, 1e+07} + {80, 0} + + + + {399, 304} + + + + + 1 + MSAwLjA0OTMwMjU1MTkgMC4wNjEwOTIxMzgyOQA + + + {4, 5} + + 12582912 + + + + + + TU0AKgAAAHCAFUqgBVKsAAAAwdVQUqwaEQeIRGJRGFlYqwWLQ+JxuOQpVRmEx2RROKwOQyOUQSPyaUym +SxqWyKXyeYxyZzWbSuJTScRCbz2Nz+gRKhUOfTqeUai0OSxiWTiBQSHSGFquGwekxyAgAAAOAQAAAwAA +AAEAEAAAAQEAAwAAAAEAEAAAAQIAAwAAAAIACAAIAQMAAwAAAAEABQAAAQYAAwAAAAEAAQAAAREABAAA +AAEAAAAIARIAAwAAAAEAAQAAARUAAwAAAAEAAgAAARYAAwAAAAEAEAAAARcABAAAAAEAAABnARwAAwAA +AAEAAQAAAT0AAwAAAAEAAgAAAVIAAwAAAAEAAQAAAVMAAwAAAAIAAQABAAAAAA + + + + + + 3 + MCAwAA + + + + + + + -2147479296 + {{384, 0}, {15, 304}} + + 2 + + _doScroller: + 1 + + + + -2147479296 + {{-100, -100}, {384, 15}} + + + 1 + 2 + + _doScroller: + 1 + 0.94565218687057495 + + + {399, 304} + + 528 + + + + + + + 274 + + + + 2304 + + + + 4352 + {399, 136} + + + YES + + + 256 + {399, 17} + + + + + + + -2147483392 + {{384, 0}, {16, 17}} + + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 14 + -633307136 + + + 1 + 15 + 0 + YES + 0 + + + {{0, 17}, {399, 136}} + + + + + 6 + System + controlBackgroundColor + + + + + + -2147483392 + {{384, 17}, {15, 136}} + + 2 + + _doScroller: + 0.47058823704719543 + + + + -2147483392 + {{-100, -100}, {382, 15}} + + + 1 + 2 + + _doScroller: + 0.96598637104034424 + + + + 2304 + + + + {399, 17} + + + + + 4 + + + + {399, 153} + + 528 + + + + + + QSAAAEEgAABBgAAAQYAAAA + + + + + + + performMiniaturize: + + + + 37 + + + + arrangeInFront: + + + + 39 + + + + runPageLayout: + + + + 87 + + + + terminate: + + + + 139 + + + + hideOtherApplications: + + + + 146 + + + + hide: + + + + 152 + + + + unhideAllApplications: + + + + 153 + + + + cut: + + + + 175 + + + + paste: + + + + 176 + + + + redo: + + + + 178 + + + + selectAll: + + + + 179 + + + + undo: + + + + 180 + + + + copy: + + + + 181 + + + + showGuessPanel: + + + + 188 + + + + checkSpelling: + + + + 190 + + + + toggleContinuousSpellChecking: + + + + 192 + + + + performZoom: + + + + 198 + + + + window + + + + 217 + + + + delegate + + + + 219 + + + + editorStatusView + + + + 348 + + + + labelText + + + + 350 + + + + showPreferencesWindow: + + + + 381 + + + + performClose: + + + + 496 + + + + renameNote: + + + + 526 + + + + fixFileEncoding: + + + + 536 + + + + bringFocusToControlField: + + + + 555 + + + + shiftLeftAction: + + + + 568 + + + + shiftRightAction: + + + + 569 + + + + delete: + + + + 773 + + + + defaultStyle: + + + + 978 + + + + bold: + + + + 981 + + + + italic: + + + + 982 + + + + importNotes: + + + + 986 + + + + printNote: + + + + 987 + + + + exportNote: + + + + 988 + + + + tagNote: + + + + 995 + + + + delegate + + + + 1020 + + + + notesTableView + + + + 1021 + + + + delegate + + + + 1024 + + + + nextKeyView + + + + 1025 + + + + notesTableView + + + + 1027 + + + + textView + + + + 1030 + + + + incrementNoteSelection: + + + + 1035 + + + + incrementNoteSelection: + + + + 1036 + + + + paste: + + + + 1037 + + + + deselectAll: + + + + 1038 + + + + delegate + + + + 1040 + + + + delegate + + + + 1041 + + + + sparkleUpdateItem + + + + 1052 + + + + toggleNoteBodyPreviews: + + + + 1065 + + + + delegate + + + + 1068 + + + + nextKeyView + + + + 1069 + + + + notesTable + + + + 1070 + + + + fieldAction: + + + + 1071 + + + + controlField + + + + 1072 + + + + controlField + + + + 1073 + + + + field + + + + 1074 + + + + nextKeyView + + + + 1076 + + + + nextKeyView + + + + 1077 + + + + nextKeyView + + + + 1078 + + + + syncWaitSpinner + + + + 1084 + + + + syncWaitPanel + + + + 1085 + + + + syncWaitQuit: + + + + 1086 + + + + showHelpDocument: + + + + 1089 + + + + showHelpDocument: + + + + 1090 + + + + showHelpDocument: + + + + 1091 + + + + showHelpDocument: + + + + 1092 + + + + uppercaseWord: + + + + 1098 + + + + lowercaseWord: + + + + 1099 + + + + capitalizeWord: + + + + 1100 + + + + strikethroughNV: + + + + 1112 + + + + deleteNote: + + + + 1114 + + + + switchViewLayout: + + + + 1117 + + + + copyNoteLink: + + + + 1119 + + + + toggleCollapse: + + + + 1129 + + + + delegate + + + + 1164 + + + + statBarMenu + + + + 1165 + + + + bringFocusToControlField: + + + + 1167 + + + + tagNote: + + + + 1169 + + + + renameNote: + + + + 1171 + + + + deleteNote: + + + + 1173 + + + + toggleCollapse: + + + + 1175 + + + + switchViewLayout: + + + + 1177 + + + + showPreferencesWindow: + + + + 1181 + + + + terminate: + + + + 1184 + + + + defaultStyle: + + + + 1196 + + + + fixFileEncoding: + + + + 1197 + + + + strikethroughNV: + + + + 1198 + + + + shiftRightAction: + + + + 1199 + + + + shiftLeftAction: + + + + 1200 + + + + italic: + + + + 1201 + + + + bold: + + + + 1202 + + + + revealNote: + + + + 1208 + + + + revealNote: + + + + 1222 + + + + setBWColorScheme: + + + + 1223 + + + + setBWColorScheme: + + + + 1224 + + + + setLCColorScheme: + + + + 1225 + + + + setLCColorScheme: + + + + 1226 + + + + setUserColorScheme: + + + + 1227 + + + + setUserColorScheme: + + + + 1228 + + + + performFindPanelAction: + + + + 1233 + + + + performFindPanelAction: + + + + 1234 + + + + performFindPanelAction: + + + + 1235 + + + + performFindPanelAction: + + + + 1236 + + + + togglePreview: + + + + 1245 + + + + toggleSourceView: + + + + 1246 + + + + savePreview: + + + + 1247 + + + + selectPreviewMode: + + + + 1248 + + + + textilePreview + + + + 1250 + + + + multiMarkdownPreview + + + + 1251 + + + + selectPreviewMode: + + + + 1252 + + + + orderFrontStandardAboutPanel: + + + + 1254 + + + + toggleWordCount: + + + + 1257 + + + + value: values.ShowWordCount + + + + + + value: values.ShowWordCount + value + values.ShowWordCount + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 1268 + + + + wordCounter + + + + 1272 + + + + delegate + + + + 1273 + + + + previewToggler + + + + 1274 + + + + notesScrollView + + + + 1275 + + + + textScrollView + + + + 1276 + + + + mainView + + + + 1283 + + + + showHelpDocument: + + + + 1289 + + + + showHelpDocument: + + + + 1290 + + + + showHelpDocument: + + + + 1291 + + + + printPreview: + + + + 1294 + + + + printPreviewItem + + + + 1295 + + + + lockPreview: + + + + 1296 + + + + lockNoteItem + + + + 1297 + + + + initialFirstResponder + + + + 1303 + + + + nextKeyView + + + + 1305 + + + + nextKeyView + + + + 1306 + + + + fsMenuItem + + + + 1308 + + + + toggleFullScreen: + + + + 1309 + + + + insertLink: + + + + 1311 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 21 + + + + + + notation + + + 2 + + + + + + 29 + + + + + + + + + + + + + + MainMenu + + + 19 + + + + + + + + 24 + + + + + + + + + + + + 5 + + + + + 23 + + + + + 92 + + + + + 197 + + + + + 489 + + + + + 56 + + + + + + + + 57 + + + + + + + + + + + + + + + + + + + + 58 + + + + + 129 + + + + + 131 + + + + + + + + 130 + + + + + 134 + + + + + 136 + + + + + 143 + + + + + 144 + + + + + 145 + + + + + 149 + + + + + 150 + + + + + 196 + + + + + 990 + + + + + 991 + + + + + 83 + + + + + + + + 81 + + + + + + + + + + + + + + + + + + + + 77 + + + + + 78 + + + + + 79 + + + + + 392 + + + + + 393 + + + + + 394 + + + + + 395 + + + + + 396 + + + + + 553 + + + + + 554 + + + + + 994 + + + + + 103 + + + + + + + + 106 + + + + + + + + + + + + + + + + 111 + + + + + 1053 + + + + + 1055 + + + + + 1057 + + + + + 1058 + + + + + 1087 + + + + + 163 + + + + + + + + 169 + + + + + + + + + + + + + + + + + + + + + + 156 + + + + + 157 + + + + + 158 + + + + + 160 + + + + + 168 + + + + + + + + 159 + + + + + + + + + + + 154 + + + + + 161 + + + + + 162 + + + + + 167 + + + + + 171 + + + + + 172 + + + + + 173 + + + + + 184 + + + + + + + + 185 + + + + + + + + + + 187 + + + + + 189 + + + + + 191 + + + + + 550 + + + + + 557 + + + + + 771 + + + + + 1000 + + + + + 1093 + + + + + + + + 1094 + + + + + + + + + + 1095 + + + + + 1096 + + + + + 1097 + + + + + 382 + + + + + + + + 383 + + + + + + + + + + + + + + + + + + + + + + 386 + + + + + + + + 387 + + + + + + + + 388 + + + + + 389 + + + + + + + + 390 + + + + + + + + 391 + + + + + 507 + + + + + 508 + + + + + 520 + + + + + 521 + + + + + 522 + + + + + 1061 + + + + + 1062 + + + + + 397 + + + + + + + + 398 + + + + + + + + + + + + + + + + 534 + + + + + 563 + + + + + 564 + + + + + 565 + + + + + 574 + + + + + 575 + + + + + 576 + + + + + 577 + + + + + 977 + + + + + 996 + + + + + + + + 997 + + + + + + + + 998 + + + + + 213 + + + AppController + + + 341 + + + + + + editorStatus + + + 342 + + + + + + + + 452 + + + Font Manager + + + 1066 + + + + + + + fieldcustomview + + + 1067 + + + + + + + + 1079 + + + + + + quit waiting + + + 1080 + + + + + + + + + + 1081 + + + + + + + + 1082 + + + + + 1083 + + + + + + + + 1102 + + + + + 1103 + + + + + 1104 + + + + + 1105 + + + + + -3 + + + Application + + + 1115 + + + + + 1116 + + + + + 1118 + + + + + 1127 + + + + + 1130 + + + + + + + + + + + + + + + + + + + + + + + + 1131 + + + + + + + + 1135 + + + + + 1138 + + + + + 1139 + + + + + 1159 + + + + + + + + + + 1160 + + + + + 1161 + + + + + 1162 + + + + + 1163 + + + + + 1166 + + + + + 1168 + + + + + 1170 + + + + + 1172 + + + + + 1176 + + + + + 1180 + + + + + 1183 + + + + + 1185 + + + + + + + + 1186 + + + + + + + + + + + + + + + + 1187 + + + + + 1188 + + + + + 1189 + + + + + 1190 + + + + + 1191 + + + + + 1192 + + + + + 1193 + + + + + 1194 + + + + + 1195 + + + + + 1203 + + + + + + + + 1204 + + + + + + + + 1205 + + + + + 1206 + + + + + 1207 + + + + + 1210 + + + + + + + + 1211 + + + + + + + + + + 1212 + + + + + 1213 + + + + + 1214 + + + + + 1221 + + + + + 1237 + + + + + + + + 1238 + + + + + + + + + + + + + + + 1239 + + + + + 1240 + + + + + 1241 + + + + + 1242 + + + + + 1243 + + + + + 1244 + + + + + 1255 + + + + + 1258 + + + + + 1270 + + + + + + Word Count Token + + + 1271 + + + + + 1016 + + + + + + + + Scroll View - Linking Editor + + + 1017 + + + Linking Editor + + + 1109 + + + Scroller + + + 1110 + + + + + 1013 + + + + + + + + + + + 1014 + + + + + 1106 + + + + + 1107 + + + + + 1108 + + + + + 1174 + + + + + 1284 + + + + + 1285 + + + + + 1286 + + + + + 1292 + + + + + 1293 + + + + + 1298 + + + + + + 1307 + + + + + 1310 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + AugmentedScrollView + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwxcAAA + + NotesTableView + com.apple.InterfaceBuilder.CocoaPlugin + ETScrollView + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAw5cAAA + + LinkingEditor + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{612, 672}, {227, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + DualField + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{329, 739}, {353, 106}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{485, 523}, {136, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + HeaderViewWithMenu + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{688, 289}, {226, 293}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{914, 399}, {172, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{914, 559}, {94, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + WordCountToken + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAAAAAAAAwaAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{485, 543}, {174, 83}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{312, 562}, {173, 273}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{485, 543}, {182, 63}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + ETContentView + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{702, 301}, {397, 464}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{566, 743}, {162, 93}} + com.apple.InterfaceBuilder.CocoaPlugin + {{190, 835}, {480, 20}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{358, 572}, {220, 263}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{578, 723}, {94, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{578, 703}, {94, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{450, 672}, {172, 163}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{202, 622}, {165, 213}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{266, 602}, {204, 233}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{404, 812}, {94, 23}} + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 1311 + + + + + AppController + NSObject + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + bringFocusToControlField: + id + + + copyNoteLink: + id + + + deleteNote: + id + + + editNoteExternally: + id + + + exportNote: + id + + + fieldAction: + id + + + importNotes: + id + + + lockPreview: + id + + + multiTag: + id + + + openFileInEditor: + id + + + printNote: + id + + + printPreview: + id + + + renameNote: + id + + + revealNote: + id + + + savePreview: + id + + + selectPreviewMode: + id + + + setBWColorScheme: + id + + + setLCColorScheme: + id + + + setUserColorScheme: + id + + + sharePreview: + id + + + showHelpDocument: + id + + + showPreferencesWindow: + id + + + switchFullScreen: + id + + + switchViewLayout: + id + + + syncWaitQuit: + id + + + tagNote: + id + + + toggleCollapse: + id + + + toggleNVActivation: + id + + + togglePreview: + id + + + toggleSourceView: + id + + + toggleWordCount: + id + + + + EmptyView + DualField + NSMenuItem + NSMenuItem + ETContentView + NSMenuItem + AugmentedScrollView + NotesTableView + NSMenuItem + NSMenuItem + NSMenuItem + NSMenuItem + NSMenu + NSPanel + NSProgressIndicator + NSScrollView + LinkingEditor + NSMenuItem + NSWindow + WordCountToken + + + + editorStatusView + EmptyView + + + field + DualField + + + fsMenuItem + NSMenuItem + + + lockNoteItem + NSMenuItem + + + mainView + ETContentView + + + multiMarkdownPreview + NSMenuItem + + + notesScrollView + AugmentedScrollView + + + notesTableView + NotesTableView + + + previewToggler + NSMenuItem + + + printPreviewItem + NSMenuItem + + + savePreviewItem + NSMenuItem + + + sparkleUpdateItem + NSMenuItem + + + statBarMenu + NSMenu + + + syncWaitPanel + NSPanel + + + syncWaitSpinner + NSProgressIndicator + + + textScrollView + NSScrollView + + + textView + LinkingEditor + + + textilePreview + NSMenuItem + + + window + NSWindow + + + wordCounter + WordCountToken + + + + IBProjectSource + ./Classes/AppController.h + + + + AugmentedScrollView + NSScrollView + + IBProjectSource + ./Classes/AugmentedScrollView.h + + + + DFView + NSView + + IBProjectSource + ./Classes/DFView.h + + + + DualField + NSTextField + + notesTable + NSTableView + + + notesTable + + notesTable + NSTableView + + + + IBProjectSource + ./Classes/DualField.h + + + + ETContentView + NSView + + IBProjectSource + ./Classes/ETContentView.h + + + + ETScrollView + NSScrollView + + IBProjectSource + ./Classes/ETScrollView.h + + + + EmptyView + NSView + + labelText + NSTextField + + + labelText + + labelText + NSTextField + + + + IBProjectSource + ./Classes/EmptyView.h + + + + FirstResponder + + id + id + id + id + id + id + id + id + + + + bold: + id + + + defaultStyle: + id + + + deleteToBeginningOfLine: + id + + + deleteWordBackward: + id + + + italic: + id + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + strikethroughNV: + id + + + + IBUserSource + + + + + HeaderViewWithMenu + NSTableHeaderView + + IBProjectSource + ./Classes/HeaderViewWithMenu.h + + + + LinkingEditor + NSTextView + + id + id + id + + + + insertLink: + id + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + + NSTextField + NotesTableView + + + + controlField + NSTextField + + + notesTableView + NotesTableView + + + + IBProjectSource + ./Classes/LinkingEditor.h + + + + NSDocument + + id + id + id + id + id + id + + + + printDocument: + id + + + revertDocumentToSaved: + id + + + runPageLayout: + id + + + saveDocument: + id + + + saveDocumentAs: + id + + + saveDocumentTo: + id + + + + IBProjectSource + ./Classes/NSDocument.h + + + + NotesTableView + NSTableView + + id + id + + + + actionHideShowColumn: + id + + + toggleNoteBodyPreviews: + id + + + + controlField + NSTextField + + + controlField + + controlField + NSTextField + + + + IBProjectSource + ./Classes/NotesTableView.h + + + + StatusItemView + NSView + + IBProjectSource + ./Classes/StatusItemView.h + + + + WebView + + reloadFromOrigin: + id + + + reloadFromOrigin: + + reloadFromOrigin: + id + + + + IBProjectSource + ./Classes/WebView.h + + + + WordCountToken + NSTokenField + + IBProjectSource + ./Classes/WordCountToken.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + {9, 8} + {7, 2} + + + diff --git a/zh.lproj/MarkupPreview.xib b/zh.lproj/MarkupPreview.xib new file mode 100644 index 00000000..a1634a79 --- /dev/null +++ b/zh.lproj/MarkupPreview.xib @@ -0,0 +1,1054 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + 1306 + 30 + + + NSTextView + NSScroller + NSButton + NSScrollView + NSButtonCell + NSTextFieldCell + NSTabView + WebView + NSCustomObject + NSTabViewItem + NSWindowTemplate + NSView + NSTextField + NSCustomView + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + + + + PreviewController + + + FirstResponder + + + NSApplication + + + + 268 + + + + 268 + {{4, 61}, {12, 13}} + + + YES + + 67239424 + 134512640 + + + LucidaGrande + 9 + 3614 + + + 138690815 + 6 + + NSImage + TabClose_Front_Rollover + + + NSImage + TabClose_Front_Pressed + + + Gw + 400 + 75 + + + + + 264 + {{0, 47}, {256, 14}} + + YES + + 68288064 + 138544128 + URL in clipboard + + LucidaGrande + 11 + 3100 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {256, 78} + + + NSView + + + + 268 + + + + 268 + {{-3, 43}, {244, 14}} + + YES + + 68288064 + 138544128 + Share note online via Peggd? + + + + + 1 + MC45OTk5MDMwODI4IDEgMC45OTk4MzAwMDc2AA + + + + + {238, 65} + + NSView + + + 27 + 2 + {{948, 217}, {445, 528}} + -461896704 + Preview + NSPanel + + {350, 400} + + + 256 + + + + 4114 + {{0, 34}, {445, 494}} + + + + + 1 + + + 256 + + + + 274 + + Apple HTML pasteboard type + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple URL pasteboard type + Apple Web Archive pasteboard type + NSColor pasteboard type + NSFilenamesPboardType + NSStringPboardType + NeXT RTFD pasteboard type + NeXT Rich Text Format v1.0 pasteboard type + NeXT TIFF v4.0 pasteboard type + WebURLsWithTitlesPboardType + public.png + public.url + public.url-name + + {445, 494} + + + + + + previewWebView + + + NO + YES + + + {445, 494} + + + + Preview + + + + + 2 + + + 256 + + + + 274 + + + + 2304 + + + + 2322 + {{0, 61}, {445, 14}} + + + + + + + + + + + + + + 134 + + + + 445 + 1 + + + 11521 + 0 + + + 3 + MQA + + + + 6 + System + selectedTextBackgroundColor + + + + 6 + System + selectedTextColor + + 3 + MAA + + + + + + + 1 + MCAwIDEAA + + + {8, -8} + 13 + + + + + + 6 + {463, 1e+07} + {223, 0} + + + + {445, 494} + + + + + + {4, -5} + 1 + + 4 + + + + -2147483392 + {{429, 1}, {15, 492}} + + + _doScroller: + 1 + 0.85256409645080566 + + + + -2147483392 + {{-100, -100}, {87, 18}} + + + 1 + + _doScroller: + 1 + 0.94565218687057495 + + + {445, 494} + + + 528 + + + + + + {445, 494} + + + Source + + + + + + + LucidaGrande + 13 + 1044 + + 6 + YES + + + + + + + 289 + {{300, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + LucidaGrande-Bold + 12 + 16 + + + -1228128001 + 402653357 + + NSImage + HUDIconLock + + + L + 400 + 75 + + + + + 289 + {{404, 7}, {28, 19}} + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 268435693 + + NSImage + HUDIconSave + + + S + 400 + 75 + + + + + 289 + {{370, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 173 + + NSImage + HUDIconShare + + + + 400 + 75 + + + + + 289 + {{334, 7}, {28, 19}} + + + YES + 0.80000000000000004 + 2 + YES + + 67239424 + 134217728 + + + + -2033958657 + 402653357 + + NSImage + HUDIconPrint + + + P + 400 + 75 + + + + + 292 + {{10, 7}, {99, 19}} + + + YES + + -2080244224 + 134217728 + View Source + + LucidaGrande + 12 + 16 + + + -2038021889 + 164 + + + + 400 + 75 + + + + {{7, 11}, {445, 528}} + + + {{0, 0}, {1920, 1058}} + {350, 416} + {1e+13, 1e+13} + PreviewPanel + + + + + + + shareNotification + + + + 138 + + + + shareConfirmation + + + + 169 + + + + urlTextField + + + + 191 + + + + hideShareURL: + + + + 194 + + + + delegate + + + + 241 + + + + window + + + + 242 + + + + tabView + + + + 243 + + + + frameLoadDelegate + + + + 244 + + + + policyDelegate + + + + 245 + + + + resourceLoadDelegate + + + + 246 + + + + UIDelegate + + + + 247 + + + + preview + + + + 248 + + + + sourceView + + + + 249 + + + + makePreviewSticky: + + + + 269 + + + + saveHTML: + + + + 274 + + + + shareAsk: + + + + 275 + + + + printPreview: + + + + 278 + + + + printPreviewButton + + + + 280 + + + + shareButton + + + + 281 + + + + saveButton + + + + 282 + + + + stickyPreviewButton + + + + 283 + + + + switchTabs: + + + + 286 + + + + tabSwitcher + + + + 287 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 133 + + + + + + + Share URL + + + 157 + + + + + + Confirm Share + + + 189 + + + + + + + + 190 + + + + + 192 + + + + + + + + 193 + + + + + 200 + + + + + + + + 201 + + + + + 214 + + + + + + Panel - Preview + + + 215 + + + + + + + + + + + + + 216 + + + + + + + + + 217 + + + + + + + + 218 + + + + + + + + 219 + + + + + + + + 220 + + + + + + + + 225 + + + + + + + + + + 226 + + + + + 227 + + + + + 228 + + + + + 229 + + + + + 261 + + + + + + + + 262 + + + + + 263 + + + + + + + + 264 + + + + + 265 + + + + + + + + 266 + + + + + 267 + + + + + + + + 268 + + + + + 284 + + + + + + + + 285 + + + + + + + + {{471, 675}, {206, 55}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{499, 564}, {238, 65}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCPAAAwjAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDNAAAwkAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAADAQAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.WebKitIBPlugin + + ToolTip + + ToolTip + + Lock note to preview + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Save Preview + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Share on Peggd + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Print/PDF + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 287 + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + {512, 512} + {512, 512} + {512, 512} + {512, 512} + {12, 13} + {12, 13} + + + diff --git a/zh.lproj/NotationPrefsView.nib/designable.nib b/zh.lproj/NotationPrefsView.nib/designable.nib new file mode 100644 index 00000000..b39239b6 --- /dev/null +++ b/zh.lproj/NotationPrefsView.nib/designable.nib @@ -0,0 +1,4331 @@ + + + + 1030 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + NotationPrefsViewController + + + FirstResponder + + + NSApplication + + + + 256 + + YES + + + 274 + {{-12, -10}, {393, 362}} + + + YES + + sync + + + 256 + + YES + + + 256 + {{114, 237}, {208, 22}} + + YES + + -1804468671 + 272630784 + + + LucidaGrande + 13 + 1044 + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + 3 + MAA + + + + + + + 256 + {{40, 239}, {69, 17}} + + YES + + 67239424 + 71303168 + 登录: + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + + + + + + 256 + {{40, 207}, {69, 17}} + + YES + + 67239424 + 71303168 + 密码: + + + + + + + + + 256 + {{114, 205}, {208, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + + + + + + 256 + {{189, 70}, {163, 32}} + + YES + + 67239424 + 134217728 + 更多信息… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 256 + {{27, 129}, {319, 5}} + + {0, 0} + + 67239424 + 0 + Box + + + + 3 + MCAwLjgwMDAwMDAxAA + + + 3 + 2 + 0 + NO + + + + 256 + {{24, 106}, {325, 17}} + + YES + + 67239424 + 272629760 + 笔记将会与 Simplenote iPhone 应用及网站保持同步。 + + STHeitiTC-Light + 13 + 16 + + + + + + + + + -2147483380 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{330, 239}, {16, 16}} + + YES + + 130560 + 33554432 + + NSImage + statusError + + 0 + 2 + 0 + NO + + YES + + + + 268 + {{14, 183}, {311, 14}} + + YES + + 68288064 + 71435264 + + + LucidaGrande + 11 + 3100 + + + + + 6 + System + disabledControlTextColor + + 3 + MC4zMzMzMzMzMzMzAA + + + + + + + 268 + {{63, 149}, {111, 26}} + + YES + + -2076049856 + 2048 + + + 109199615 + 1 + + + 400 + 75 + + + 30 分钟 + + 1048576 + 2147483647 + 1 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + _popUpItemAction: + 30 + + + YES + + OtherViews + + YES + + + 1 分钟 + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + 5 分钟 + + 1048576 + 2147483647 + + + _popUpItemAction: + 5 + + + + + 10 分钟 + + 1048576 + 2147483647 + + + _popUpItemAction: + 10 + + + + + + 3 + 1 + YES + YES + 2 + + + + + 268 + {{24, 156}, {41, 17}} + + YES + + 68288064 + 272630784 + 每隔: + + + + + + + + + 268 + {{180, 156}, {212, 17}} + + YES + + 68288064 + 272630784 + 检查一次远程内容 + + + + + + + + + 268 + {{25, 278}, {208, 18}} + + YES + + 67239424 + 0 + 与 Simplenote 同步: + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 268 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{27, 17}, {18, 18}} + + YES + + 130560 + 33554432 + + NSImage + TinyAlert + + 0 + 2 + 0 + NO + + YES + + + + 268 + {{50, 19}, {299, 14}} + + YES + + 67239424 + 272760832 + 警告: 笔记内容将会以明文内容传输。 + + + + + + + + {{10, 33}, {373, 316}} + + + 同步 + + + + + storage + + + 256 + + YES + + + 256 + + YES + + + 2304 + + YES + + + 256 + {77, 74} + + + YES + + + 256 + {77, 17} + + + + + + + 256 + {{78, 0}, {12, 17}} + + + + + YES + + 73.755369999999999 + 60.147950000000002 + 77 + + 75628096 + 2048 + 扩展 + + + 3 + MC4zMzMzMzI5OQA + + + 6 + System + headerTextColor + + + + + 337772096 + 2048 + + + + 6 + System + controlBackgroundColor + + + + + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 14 + 306184192 + + + 4 + 15 + 0 + YES + 0 + + + {{1, 17}, {77, 74}} + + + + + 4 + + + + 256 + {{78, 17}, {11, 74}} + + + 256 + + _doScroller: + 0.46250000000000002 + + + + -2147483392 + {{-100, -100}, {128, 15}} + + 257 + + _doScroller: + 0.99047620000000003 + + + + 2304 + + YES + + + {{1, 0}, {77, 17}} + + + + + 4 + + + + {{80, 73}, {90, 92}} + + + 18 + + + + + + QSAAAEEgAABBgAAAQYAAAA + + + + 256 + + YES + + + 2304 + + YES + + + 256 + {77, 74} + + + YES + + + 256 + {77, 17} + + + + + + + 256 + {{78, 0}, {12, 17}} + + + + + YES + + 73.62012 + 55.62012 + 74 + + 75628096 + 2048 + 文件类型 + + + 3 + MC4zMzMzMzI5OQA + + + + + 337772096 + 2048 + + + + + + YES + + + + 3 + 2 + + + 14 + 306184192 + + + 4 + 15 + 0 + YES + 0 + + + {{1, 17}, {77, 74}} + + + + + 4 + + + + 256 + {{78, 17}, {11, 74}} + + + 256 + + _doScroller: + 0.46250000000000002 + + + + -2147483392 + {{-100, -100}, {128, 15}} + + 257 + + _doScroller: + 0.99047620000000003 + + + + 2304 + + YES + + + {{1, 0}, {77, 17}} + + + + + 4 + + + + {{199, 73}, {90, 92}} + + + 18 + + + + + + QSAAAEEgAABBgAAAQYAAAA + + + + 256 + {{42, 168}, {265, 22}} + + + YES + + 67239424 + 4194304 + 识别下列文件类型: + + + + + + + + + 256 + {{42, 198}, {305, 33}} + + + YES + + 67239424 + 272629760 + * 使用独立的文件可以让您在 Spotlight 中搜索到笔记,但相对的要浪费一些磁盘空间。 + + + + + + + + + 292 + {{80, 42}, {23, 22}} + + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + NSImage + Add + + + NSImage + Add_Pressed + + + + + + 200 + 25 + + + + + 292 + {{102, 42}, {23, 22}} + + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + NSImage + Remove + + + NSImage + Remove_Pressed + + + + + + 200 + 25 + + + + + 292 + {{124, 42}, {23, 22}} + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + NSImage + MakeDefault + + + NSImage + MakeDefault_Pressed + + + + + + 200 + 25 + + + + + 292 + {{199, 43}, {23, 22}} + + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + + + + + + 200 + 25 + + + + + 292 + {{221, 43}, {23, 22}} + + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + + + + + + 200 + 25 + + + + + 256 + {{42, 279}, {208, 17}} + + + YES + + 67239424 + 4194304 + 笔记在本地存储为: + + + + + + + + + 256 + {{43, 13}, {312, 18}} + + + YES + + 604110336 + 0 + 显示确认删除窗口 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 256 + {{42, 247}, {282, 26}} + + + 4 + YES + + -2076049856 + 2048 + + + 109199615 + 1 + + + + + + 400 + 75 + + + 格式化的 HTML 文档 * + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + 3 + + + YES + + + OtherViews + + + YES + + + 单数据库 (允许加密) + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + YES + YES + + + 1048576 + 2147483647 + + + _popUpItemAction: + -1 + + + + + 纯文本格式 * + + 1048576 + 2147483647 + + + _popUpItemAction: + 1 + + + + + 多信息文本格式 * + + 1048576 + 2147483647 + + + _popUpItemAction: + 2 + + + + + + 4 + 3 + YES + YES + 1 + + + + {{10, 33}, {373, 316}} + + + 存储 + + + + + security + + + 256 + + YES + + + 256 + {{43, 278}, {75, 17}} + + + YES + + 67239424 + 71303168 + 加密: + + + + + + + + + 256 + {{121, 170}, {172, 38}} + + + YES + 2 + 1 + + YES + + -2080244224 + 0 + 在钥匙链中保存 + + + 1211912703 + 0 + + NSRadioButton + + + + + + 200 + 25 + + + 67239424 + 0 + 每次提醒 + + + 1 + 1211912703 + 0 + + + + 200 + 25 + + + {172, 18} + {4, 2} + 1143472128 + NSActionCell + + 67239424 + 0 + Radio + + 1211912703 + 0 + + 549453824 + {18, 18} + + YES + + YES + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw +IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ +29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 +dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA +AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG +AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ +0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ +7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ +5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ +3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD +AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns +AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ +6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ +/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ +///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl +YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA +AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD +AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu +AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB +AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES +AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS +AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAAksAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAJLGFw +cGwCAAAAbW50clJHQiBYWVogB9UAAwALABYABAAmYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAPbWAAEAAAAA0y1iZXJnGIxw8W4jzRphRSyje/thewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAMZGVzYwAAARQAAABDY3BydAAAAVgAAAAsclhZWgAAAYQAAAAUZ1hZWgAAAZgAAAAUYlhZWgAA +AawAAAAUd3RwdAAAAcAAAAAUYmtwdAAAAdQAAAAUclRSQwAAAegAAAAOZ1RSQwAAAfgAAAAOYlRSQwAA +AggAAAAOdmNndAAAAhgAAAMSYmVyaAAABSwAAAQAZGVzYwAAAAAAAAAWRGVsbDIwMDVGUFdDYWxpYnJh +dGVkAAAAAAAAAAAAAAAWRGVsbDIwMDVGUFdDYWxpYnJhdGVkAAB0ZXh0AAAAAENvcHlyaWdodCAxOTk4 +LTIwMDEgYmVyZ2Rlc2lnbiBpbmMuAFhZWiAAAAAAAABvoAAAOPUAAAORWFlaIAAAAAAAAGKXAAC3hwAA +GNpYWVogAAAAAAAAJJ8AAA+EAAC2w1hZWiAAAAAAAADzUAABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAA +AABjdXJ2AAAAAAAAAAEBzAAAY3VydgAAAAAAAAABAcwAAGN1cnYAAAAAAAAAAQHMAAB2Y2d0AAAAAAAA +AAAAAwEAAAEABwcICQoLDQ4QERMVFxkaHB4fISIkJSYoKSorLC0vMDEyMzQ1Njc4OTs8PT4/QEFCQ0VG +R0hJSktMTU9QUVJTVFVWV1hZW1xdXl9gYWJjZGVnaGlqa2xtbm9wcnN0dXZ3eHl6fH1+f4CBgoOEhYaH +iImKi4yNjo+QkZKTk5SVlpeYmZmam5ydnp6foKGio6Okpaamp6ipqqqrrK2trq+wsLGys7S0tba3t7i5 +urq7vL29vr/AwcHCw8TFxcbHyMjJysvMzM3Oz9DR0dLT1NXV1tfY2dra29zd3t/f4OHi4+Tk5ebn6Onq +6uvs7e7v8PHx8vP09fb3+Pn6+vv8/f7/AAUFBQUGBgcICQoLDA0ODxASExQWFxkaHB4fISIkJicpKywu +LzEyNDU3ODo7PT4/QUJDRUZHSElLTE1OT1BRUlNUVVZXWFlaW1xdXl9gYWJjZGVmZ2hpa2xtbm9wcXJz +dXZ3eHl7fH1+f4GCg4SFhoeIiYqLjI2Njo+QkZGSk5OUlZaWl5iZmpqbnJ2enp+goaKio6SlpqanqKmq +q6usra6vr7CxsrOztLW2t7e4ubq6u7y9vb6/wMDBwsPDxMXGx8fIycrLy8zNzs/P0NHS09TU1dbX2NnZ +2tvc3d7f4OHh4uPk5ebn6Onq6+zs7e7v8PHy8/T19vf4+fr7/P3+/wAGBwcICQoLDQ4QERMVFhgaGx0f +ICIjJCYnKCorLC0uMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSUpLTE1OT1BRUlRVVldYWVpbXV5fYGFi +Y2RmZ2hpamtsbW5wcXJzdHV2d3h5ent8fX5/gIGCg4SFhoeIiYqLjI2Oj5CRkpOUlZaWl5iZmpucnZ2e +n6ChoqKjpKWlpqeoqKmqqqusra2ur6+wsbKys7S0tba3uLi5uru8vb6/v8DBwsPExcbHyMnKy8zNzs/Q +0dLT1NXW19fY2drb3N3e3t/g4eLj5OTl5ufo6Onq6+zt7e7v8PHx8vP09fX29/j5+fr7/P39/v8AAGJl +cmgAAAAAY2hhbgAAAAQAAAADb3JpZwAAAAT/////ZHN0cAAAAAQAAAACY3RybAAAAAwAAAABAAAAAAAA +AGRyZXNvAAAACAAABpAAAAQaZnJlcQAAAAQAAAA8Yml0ZAAAAAgAAAABAAAAIGRhdGUAAAAkAAAAJgAA +AAQAAAAWAAAACwAAAAIAAABpAAAABQAAAEUAAAAAZ2FtYQAAAAQ/5mZmcmltZAAAA1QAAAEAAAAACjzn +H0w/gAAAAAAAAAAAAAcAAAAGAAAABQAAAAQAAAADAAAACQAAAAIAAAAIAAAAAQAAAAA8gICBPQCAgT2A +gIE+AICBPoCAgT7AwME/AAAAP0BAQD+AAAAAAAAAPg6WYT5E6Aw+io71PsRx8D8Lq+w/JalpPzmllT9e +HCM/gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQCAgT5FCM0AAAAAAAAAAD2AgIE+ipQHAAAAAAAA +AAA+AICBPsRyHAAAAAAAAAAAPoCAgT8Lq/wAAAAAAAAAAD8AgIE/OgygAAAAAAAAAAA/QMDBP15iJAAA +AAAAAAAAP4AAAD+AAAA/AICBPzn01T+AAAA/gAAAP4AAAD+AAAA/gAAAP4AAAAAAAAk8nlyOP4AAAAAA +AAAAAAAFAAAABAAAAAcAAAADAAAABgAAAAIAAAAIAAAAAQAAAAA9gICBPgCAgT4wsLE+gICBPpCQkT8A +AAA/EBAQP4AAAAAAAAA+jFZwPsKkaD7lZjo/C2z0PxGgTT84CrM/QRCVP4AAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAD4AgIE+wqR9AAAAAAAAAAA+gICBPwttCz2AgIE+jGjmPpCQkT8RmaQAAAAAAAAAAD8A +gIE/OHMcPYCAgT6MZiM/AICBPzhVzAAAAAAAAAAAP4AAAD+AAAA+AICBPsKjVD+AAAA/gAAAP4AAAD+A +AAA/gAAAP4AAAAAAAAo80bjYP4AAAAAAAAAAAAAJAAAACAAAAAYAAAAFAAAAAwAAAAcAAAACAAAABAAA +AAEAAAAAPICAgT0AgIE9gICBPgCAgT6AgIE+wMDBPwAAAD8gICA/gAAAAAAAAD4KEPo+Qk7bPoYqQj7B +E58/CUbSPyQEBT82+Mc/TUERP4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AgIE+QkepAAAAAAAA +AAA9gICBPoYsGQAAAAAAAAAAPgCAgT7BE7wAAAAAAAAAAD6AgIE/CUbrAAAAAAAAAAA/AICBPzdiEz4A +gIE+wROVPyCgoT9NlUsAAAAAAAAAAD+AAAA/gAAAPoCAgT8JRt8/gAAAP4AAAD+AAAA/gAAAP4AAAD+A +AAA + + + + + + 3 + MCAwAA + + + + 400 + 75 + + + + + + + + + 256 + {{117, 268}, {211, 32}} + + + YES + + 67239424 + 134217728 + 开启笔记加密… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 256 + {{117, 219}, {101, 32}} + + + YES + + 604110336 + 134217728 + 修改… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 256 + {{19, 229}, {99, 17}} + + + YES + + 67239424 + 71303168 + 口令: + + + + + + + + + -2147483392 + {{43, 6}, {75, 23}} + + + YES + + 67239424 + 71303168 + 加密位数: + + + + + + + + + -2147483392 + {{190, 5}, {19, 27}} + + + YES + + 537787936 + 0 + + 256 + 64 + 2048 + 64 + YES + + + + + -2147483392 + {{123, 8}, {67, 22}} + + + YES + + -1536033215 + 272630784 + 256 + + + YES + + + + + + + 256 + {{19, 135}, {99, 17}} + + + YES + + 67239424 + 71303168 + 键盘: + + + + + + + + + 256 + {{121, 133}, {133, 18}} + + + YES + + 67239424 + 0 + 加强文本安全 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 256 + {{120, 108}, {216, 19}} + + + YES + + 67239424 + 272629760 + 可防止部分键盘记录工具 + + + + + + + + + -2147483392 + {{117, 42}, {149, 32}} + + YES + + 604110336 + 134217728 + 从钥匙链中删除 + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + {{10, 33}, {373, 316}} + + + 安全 + + + + + + + 0 + YES + YES + + YES + + + + + {368, 346} + + NSView + NSResponder + + + 3 + 2 + {{695, 282}, {360, 240}} + 1886912512 + Web Hosting Options + + NSPanel + + + View + + {1.79769e+308, 1.79769e+308} + {213, 107} + + + 256 + + YES + + + 256 + {{17, 20}, {326, 200}} + + YES + + 67239424 + 272629760 + W3hdIG1ha2Ugbm90ZXMgd2l0aCB0aGVzZSBsYWJlbHMgcHVibGljbHkgdmlld2FibGU6CgpbeF0gbWFr +ZSBhbGwgbm90ZXMgcHVibGljbHkgdmlld2FibGUgZXhjZXB0IGZvciB0aG9zZSB3aXRoIHRoZXNlIGxh +YmVsczoKClt4XSByZXF1aXJlIHBhc3N3b3JkIHRvIHZpZXcgbm90ZXMgb24gdGhlIHdlYgoKW3hdIHVz +ZSB0aGlzIEhUTUwgdGVtcGxhdGU6A + + + + + + + + {{1, 1}, {360, 240}} + + {{0, 0}, {1920, 1178}} + {213, 129} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + nextKeyView + + + + 51 + + + + nextKeyView + + + + 54 + + + + allowedExtensionsTable + + + + 58 + + + + allowedTypesTable + + + + 59 + + + + newExtensionButton + + + + 60 + + + + removeExtensionButton + + + + 61 + + + + newTypeButton + + + + 62 + + + + removeTypeButton + + + + 63 + + + + changePasswordButton + + + + 64 + + + + passwordSettingsMatrix + + + + 65 + + + + view + + + + 71 + + + + enableEncryptionButton + + + + 73 + + + + addedExtension: + + + + 75 + + + + removedExtension: + + + + 76 + + + + addedType: + + + + 77 + + + + removedType: + + + + 78 + + + + toggledEncryption: + + + + 79 + + + + changePassphrase: + + + + 80 + + + + changedKeychainSettings: + + + + 81 + + + + changedFileDeletionWarningSettings: + + + + 95 + + + + confirmFileDeletionButton + + + + 97 + + + + storageFormatPopupButton + + + + 104 + + + + changedFileStorageFormat: + + + + 105 + + + + storageFormatPopupButton + + + + 106 + + + + storageFormatPopupButton + + + + 107 + + + + keyLengthField + + + + 114 + + + + keyLengthStepper + + + + 115 + + + + changedKeyLength: + + + + 116 + + + + webOptionsWindow + + + + 123 + + + + secureTextEntryButton + + + + 131 + + + + changedSecureTextEntry: + + + + 132 + + + + removeFromKeychainButton + + + + 134 + + + + removeFromKeychain: + + + + 135 + + + + fileAttributesHelpText + + + + 138 + + + + verifyStatusImageView + + + + 181 + + + + verifyStatusField + + + + 186 + + + + visitSimplenoteSite: + + + + 187 + + + + syncPasswordField + + + + 203 + + + + syncAccountField + + + + 204 + + + + syncingFrequency + + + + 205 + + + + syncFrequencyChange: + + + + 206 + + + + enabledSyncButton + + + + 207 + + + + toggledSyncing: + + + + 208 + + + + syncEncAlertField + + + + 261 + + + + syncEncAlertView + + + + 262 + + + + makeDefaultExtensionButton + + + + 266 + + + + makeDefaultExtension: + + + + 267 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 5 + + + YES + + + + View + + + 6 + + + YES + + + + + + + + 7 + + + YES + + + + + + 8 + + + YES + + + + + + + + + + + + + + + + + 9 + + + YES + + + + + + + + + 10 + + + YES + + + + + + 11 + + + YES + + + + + + 12 + + + YES + + + + + + + + + 13 + + + YES + + + + + + 14 + + + YES + + + + + + 15 + + + YES + + + + + + 16 + + + YES + + + + + + 18 + + + YES + + + + + + 19 + + + YES + + + + + + 20 + + + YES + + + + + + 21 + + + YES + + + + + + 92 + + + YES + + + + + + 93 + + + YES + + + + + + 98 + + + YES + + + + + + 22 + + + YES + + + + + + 23 + + + YES + + + + + + + + + + + + + + + + + 24 + + + YES + + + + + + + + 25 + + + + + 26 + + + + + 29 + + + YES + + + + + + 30 + + + YES + + + + + + 32 + + + YES + + + + + + 34 + + + YES + + + + + + 110 + + + YES + + + + + + 111 + + + YES + + + + + + 112 + + + YES + + + + + + 128 + + + YES + + + + + + 129 + + + YES + + + + + + 130 + + + YES + + + + + + 133 + + + YES + + + + + + 36 + + + YES + + + + + + 37 + + + YES + + + + + + + + + + + + + + + + + + + + 39 + + + YES + + + + + + 40 + + + YES + + + + + + 41 + + + YES + + + + + + 42 + + + YES + + + + + + 43 + + + YES + + + + + + 108 + + + YES + + + 256 + {{2, 2}, {125, 1}} + + + + + + + 109 + + + + + 113 + + + YES + + + + + + 179 + + + YES + + + + + + 184 + + + YES + + + + + + 188 + + + YES + + + + + + 194 + + + YES + + + + + + 199 + + + YES + + + + + + 121 + + + YES + + + + web hosting options + + + 122 + + + YES + + + + + + 125 + + + YES + + + + + + 216 + + + + + 217 + + + + + 218 + + + + + 219 + + + + + 220 + + + + + 221 + + + + + 222 + + + + + 223 + + + + + 224 + + + YES + + + + + + 225 + + + + + 226 + + + + + 227 + + + + + 228 + + + + + 229 + + + + + 230 + + + + + 231 + + + + + 232 + + + + + 233 + + + + + 234 + + + + + 235 + + + + + 236 + + + + + 237 + + + + + 238 + + + + + 239 + + + + + 240 + + + + + 241 + + + + + 242 + + + + + 243 + + + + + 244 + + + YES + + + + + + 245 + + + + + 246 + + + + + 247 + + + + + 248 + + + + + 249 + + + + + 250 + + + + + 99 + + + YES + + + + + + + + + + 127 + + + + + 103 + + + + + 102 + + + + + 101 + + + + + 100 + + + + + 190 + + + YES + + + + + + + + + 196 + + + + + 193 + + + + + 192 + + + + + 191 + + + + + 251 + + + + + 252 + + + + + 253 + + + + + 254 + + + + + 255 + + + + + 256 + + + + + 257 + + + YES + + + + + + 258 + + + + + 259 + + + YES + + + + + + 260 + + + + + 263 + + + YES + + + + + + 264 + + + + + 268 + + + YES + + + + + + 269 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 10.CustomClassName + 10.IBPluginDependency + 10.ImportedFromIB2 + 100.IBPluginDependency + 100.ImportedFromIB2 + 101.IBPluginDependency + 101.ImportedFromIB2 + 102.IBPluginDependency + 102.ImportedFromIB2 + 103.IBPluginDependency + 103.ImportedFromIB2 + 108.IBPluginDependency + 108.ImportedFromIB2 + 109.IBPluginDependency + 109.ImportedFromIB2 + 11.IBPluginDependency + 11.ImportedFromIB2 + 110.IBPluginDependency + 110.ImportedFromIB2 + 111.IBPluginDependency + 111.ImportedFromIB2 + 112.IBPluginDependency + 112.ImportedFromIB2 + 113.IBPluginDependency + 113.ImportedFromIB2 + 12.IBPluginDependency + 12.ImportedFromIB2 + 121.IBPluginDependency + 121.ImportedFromIB2 + 121.windowTemplate.hasMinSize + 121.windowTemplate.minSize + 122.IBPluginDependency + 122.ImportedFromIB2 + 125.IBPluginDependency + 125.ImportedFromIB2 + 127.IBPluginDependency + 127.ImportedFromIB2 + 128.IBPluginDependency + 128.ImportedFromIB2 + 129.IBPluginDependency + 129.ImportedFromIB2 + 13.CustomClassName + 13.IBPluginDependency + 13.ImportedFromIB2 + 130.IBPluginDependency + 130.ImportedFromIB2 + 133.IBPluginDependency + 133.ImportedFromIB2 + 14.IBPluginDependency + 14.ImportedFromIB2 + 15.IBPluginDependency + 15.ImportedFromIB2 + 16.IBAttributePlaceholdersKey + 16.IBPluginDependency + 16.ImportedFromIB2 + 179.IBPluginDependency + 179.ImportedFromIB2 + 18.IBPluginDependency + 18.ImportedFromIB2 + 184.IBPluginDependency + 184.IBViewBoundsToFrameTransform + 184.ImportedFromIB2 + 188.IBPluginDependency + 188.IBViewBoundsToFrameTransform + 188.ImportedFromIB2 + 19.IBAttributePlaceholdersKey + 19.IBPluginDependency + 19.ImportedFromIB2 + 190.IBEditorWindowLastContentRect + 190.IBPluginDependency + 190.ImportedFromIB2 + 191.IBPluginDependency + 191.ImportedFromIB2 + 192.IBPluginDependency + 192.ImportedFromIB2 + 193.IBPluginDependency + 193.ImportedFromIB2 + 194.IBPluginDependency + 194.IBViewBoundsToFrameTransform + 194.ImportedFromIB2 + 196.IBPluginDependency + 196.ImportedFromIB2 + 199.IBPluginDependency + 199.ImportedFromIB2 + 20.IBAttributePlaceholdersKey + 20.IBPluginDependency + 20.ImportedFromIB2 + 21.IBAttributePlaceholdersKey + 21.IBPluginDependency + 21.ImportedFromIB2 + 216.IBPluginDependency + 217.IBPluginDependency + 218.IBPluginDependency + 219.IBPluginDependency + 22.IBPluginDependency + 22.ImportedFromIB2 + 220.IBPluginDependency + 221.IBPluginDependency + 222.IBPluginDependency + 223.IBPluginDependency + 224.IBPluginDependency + 225.IBPluginDependency + 226.IBPluginDependency + 227.IBPluginDependency + 228.IBPluginDependency + 229.IBPluginDependency + 23.IBPluginDependency + 23.ImportedFromIB2 + 230.IBPluginDependency + 231.IBPluginDependency + 232.IBPluginDependency + 233.IBPluginDependency + 234.IBPluginDependency + 235.IBPluginDependency + 236.IBPluginDependency + 237.IBPluginDependency + 238.IBPluginDependency + 239.IBPluginDependency + 24.IBPluginDependency + 24.ImportedFromIB2 + 240.IBPluginDependency + 241.IBPluginDependency + 242.IBPluginDependency + 243.IBPluginDependency + 244.IBPluginDependency + 245.IBPluginDependency + 246.IBPluginDependency + 247.IBPluginDependency + 248.IBPluginDependency + 249.IBPluginDependency + 249.IBShouldRemoveOnLegacySave + 25.IBPluginDependency + 25.ImportedFromIB2 + 250.IBPluginDependency + 250.IBShouldRemoveOnLegacySave + 251.IBPluginDependency + 251.IBShouldRemoveOnLegacySave + 252.IBPluginDependency + 252.IBShouldRemoveOnLegacySave + 253.IBPluginDependency + 253.IBShouldRemoveOnLegacySave + 254.IBPluginDependency + 254.IBShouldRemoveOnLegacySave + 255.IBPluginDependency + 255.IBShouldRemoveOnLegacySave + 256.IBPluginDependency + 256.IBShouldRemoveOnLegacySave + 257.IBPluginDependency + 257.IBViewBoundsToFrameTransform + 258.IBPluginDependency + 259.IBPluginDependency + 259.IBViewBoundsToFrameTransform + 26.IBPluginDependency + 26.ImportedFromIB2 + 260.IBPluginDependency + 263.IBAttributePlaceholdersKey + 263.IBPluginDependency + 263.ImportedFromIB2 + 264.IBPluginDependency + 268.IBPluginDependency + 268.IBViewBoundsToFrameTransform + 268.ImportedFromIB2 + 269.IBPluginDependency + 29.IBPluginDependency + 29.ImportedFromIB2 + 30.IBPluginDependency + 30.ImportedFromIB2 + 32.IBPluginDependency + 32.ImportedFromIB2 + 34.IBPluginDependency + 34.ImportedFromIB2 + 36.IBPluginDependency + 36.ImportedFromIB2 + 37.IBPluginDependency + 37.ImportedFromIB2 + 39.IBAttributePlaceholdersKey + 39.IBPluginDependency + 39.IBViewBoundsToFrameTransform + 39.ImportedFromIB2 + 40.IBPluginDependency + 40.ImportedFromIB2 + 41.IBPluginDependency + 41.ImportedFromIB2 + 42.IBPluginDependency + 42.ImportedFromIB2 + 43.CustomClassName + 43.IBPluginDependency + 43.ImportedFromIB2 + 5.IBEditorWindowLastContentRect + 5.IBPluginDependency + 5.ImportedFromIB2 + 6.IBPluginDependency + 6.IBViewBoundsToFrameTransform + 6.ImportedFromIB2 + 7.IBPluginDependency + 7.ImportedFromIB2 + 8.IBPluginDependency + 8.ImportedFromIB2 + 9.IBPluginDependency + 9.ImportedFromIB2 + 92.IBPluginDependency + 92.ImportedFromIB2 + 93.IBPluginDependency + 93.ImportedFromIB2 + 98.IBPluginDependency + 98.ImportedFromIB2 + 99.IBEditorWindowLastContentRect + 99.IBPluginDependency + 99.ImportedFromIB2 + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + FileKindListView + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + {213, 107} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + FileKindListView + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Add new file type + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBYAAAw0MAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDbgAAwy0AAA + + + + ToolTip + + ToolTip + + Remove file extension + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{394, 475}, {143, 83}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBwAAAwyoAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Add new file extension + + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Remove file type + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + AUHYAABBiAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCSAAAwfgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + ToolTip + + ToolTip + + Set as default file extension for new notes + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDNAAAwykAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + + YES + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDPQAAwpYAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + {{344, 381}, {368, 346}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAADBQAAAw68AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{373, 564}, {282, 93}} + com.apple.InterfaceBuilder.CocoaPlugin + + + + + YES + + + YES + + + + + YES + + + YES + + + + 269 + + + + YES + + FileKindListView + NSTableView + + storageFormatPopupButton + NSPopUpButton + + + IBProjectSource + NotationPrefsViewController.h + + + + FileKindListView + NSTableView + + IBUserSource + + + + + FirstResponder + NSObject + + IBUserSource + + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + FastListDataSource.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + NSObject + + IBUserSource + + + + + NSTableHeaderView + + IBProjectSource + HeaderViewWIthMenu.h + + + + NSTableHeaderView + NSView + + IBUserSource + + + + + NSTableView + + IBProjectSource + NotesTableView.h + + + + NSTableView + NSControl + + IBUserSource + + + + + NSWindow + NSResponder + + IBUserSource + + + + + NotationPrefsViewController + NSObject + + YES + + YES + addedExtension: + addedType: + changePassphrase: + changedFileDeletionWarningSettings: + changedFileStorageFormat: + changedKeyLength: + changedKeychainSettings: + changedSecureTextEntry: + makeDefaultExtension: + removeFromKeychain: + removedExtension: + removedType: + syncFrequencyChange: + toggledEncryption: + toggledSyncing: + visitSimplenoteSite: + + + YES + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + YES + + YES + allowedExtensionsTable + allowedTypesTable + changePasswordButton + confirmFileDeletionButton + enableEncryptionButton + enabledSyncButton + fileAttributesHelpText + keyLengthField + keyLengthStepper + makeDefaultExtensionButton + newExtensionButton + newTypeButton + passwordSettingsMatrix + removeExtensionButton + removeFromKeychainButton + removeTypeButton + secureTextEntryButton + storageFormatPopupButton + syncAccountField + syncEncAlertField + syncEncAlertView + syncPasswordField + syncingFrequency + verifyStatusField + verifyStatusImageView + view + webOptionsWindow + + + YES + NSTableView + NSTableView + NSButton + NSButton + NSButton + NSButton + NSTextField + NSTextField + NSStepper + NSButton + NSButton + NSButton + NSMatrix + NSButton + NSButton + NSButton + NSButton + NSPopUpButton + NSTextField + NSTextField + NSImageView + NSTextField + NSPopUpButton + NSTextField + NSImageView + NSView + NSWindow + + + + + + NotationPrefsViewController + NSObject + + IBUserSource + + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitSubview + NSView + + IBUserSource + + + + + RBSplitView + RBSplitSubview + + delegate + id + + + + + RBSplitView + + + + RBSplitView + RBSplitSubview + + IBUserSource + + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSBox + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSBox.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSImageCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSImageCell.h + + + + NSImageView + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSImageView.h + + + + NSMatrix + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSMatrix.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSMenuItem + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSMenuItemCell + NSButtonCell + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItemCell.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSPanel + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSPanel.h + + + + NSPopUpButton + NSButton + + IBFrameworkSource + AppKit.framework/Headers/NSPopUpButton.h + + + + NSPopUpButtonCell + NSMenuItemCell + + IBFrameworkSource + AppKit.framework/Headers/NSPopUpButtonCell.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSScrollView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSScrollView.h + + + + NSScroller + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSScroller.h + + + + NSSecureTextField + NSTextField + + IBFrameworkSource + AppKit.framework/Headers/NSSecureTextField.h + + + + NSStepper + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSStepper.h + + + + NSStepperCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSStepperCell.h + + + + NSTabView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSTabView.h + + + + NSTabViewItem + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTabViewItem.h + + + + NSTableColumn + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableColumn.h + + + + NSTableHeaderView + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSTableHeaderView.h + + + + NSTableView + NSControl + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + diff --git a/zh.lproj/NotationPrefsView.nib/keyedobjects.nib b/zh.lproj/NotationPrefsView.nib/keyedobjects.nib new file mode 100644 index 00000000..78774ce4 Binary files /dev/null and b/zh.lproj/NotationPrefsView.nib/keyedobjects.nib differ diff --git a/zh.lproj/PTKeyComboPanel.nib/designable.nib b/zh.lproj/PTKeyComboPanel.nib/designable.nib new file mode 100644 index 00000000..f192a28f --- /dev/null +++ b/zh.lproj/PTKeyComboPanel.nib/designable.nib @@ -0,0 +1,723 @@ + + + + 1060 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + PTKeyComboPanel + + + FirstResponder + + + NSApplication + + + 1 + 2 + {{290, 345}, {394, 165}} + 1886912512 + + NSWindow + + View + + {1.79769e+308, 1.79769e+308} + {213, 107} + + + 256 + + YES + + + 256 + {{152, 60}, {173, 22}} + + YES + + -2072904127 + 138413056 + + + LucidaGrande + 13 + 1044 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + 3 + MAA + + + + + + + 256 + {{130, 12}, {84, 32}} + + YES + + 67239424 + 137887744 + 无热键 + + + -2038284033 + 1 + + Helvetica + 13 + 16 + + + + + + 200 + 25 + + + + + 256 + {{214, 12}, {82, 32}} + + YES + + 67239424 + 137887744 + 取消 + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 256 + {{69, 90}, {308, 55}} + + YES + + 67239424 + 4194304 + 请输入用于 %@ 的组合键。 + + LucidaGrande-Bold + 13 + 2072 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + + + + + + 256 + {{69, 62}, {81, 17}} + + YES + + 67239424 + 71303168 + 组合: + + + + + + + + + 256 + {{296, 12}, {84, 32}} + + YES + + 67239424 + 134217728 + 确定 + + + -2038284033 + 1 + + + + 200 + 25 + + + + + 256 + {{44, 60}, {22, 20}} + + YES + + 67239424 + 0 + + + + 1211945471 + 2 + + NSRadioButton + + + + + + 200 + 25 + + + + + 256 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{20, 113}, {32, 32}} + + YES + + 130560 + 33554432 + + NSImage + PTKeyboardIcon + + 0 + 2 + 0 + NO + + YES + + + {394, 165} + + + {{0, 0}, {1680, 1028}} + {213, 129} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + ok: + + + + 31 + + + + clear: + + + + 34 + + + + window + + + + 41 + + + + mKeyBcaster + + + + 45 + + + + mComboField + + + + 46 + + + + mTitleField + + + + 47 + + + + cancel: + + + + 51 + + + + initialFirstResponder + + + + 52 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 19 + + + YES + + + + Panel + + + 20 + + + YES + + + + + + + + + + + + + 22 + + + YES + + + + + + 23 + + + YES + + + + + + 24 + + + YES + + + + + + 26 + + + YES + + + + + + 27 + + + YES + + + + + + 28 + + + YES + + + + + + 33 + + + YES + + + + + + 48 + + + YES + + + + + + 54 + + + + + 55 + + + + + 56 + + + + + 57 + + + + + 58 + + + + + 59 + + + + + 60 + + + + + 61 + + + + + -3 + + + Application + + + + + YES + + YES + 19.IBEditorWindowLastContentRect + 19.IBPluginDependency + 19.IBWindowTemplateEditedContentRect + 19.ImportedFromIB2 + 19.windowTemplate.hasMinSize + 19.windowTemplate.minSize + 20.IBPluginDependency + 20.ImportedFromIB2 + 22.IBPluginDependency + 22.ImportedFromIB2 + 23.IBPluginDependency + 23.ImportedFromIB2 + 24.IBPluginDependency + 24.ImportedFromIB2 + 26.IBPluginDependency + 26.ImportedFromIB2 + 27.IBPluginDependency + 27.ImportedFromIB2 + 28.IBPluginDependency + 28.ImportedFromIB2 + 33.CustomClassName + 33.IBAttributePlaceholdersKey + 33.IBPluginDependency + 33.ImportedFromIB2 + 48.IBPluginDependency + 48.ImportedFromIB2 + + + YES + {{405, 703}, {394, 165}} + com.apple.InterfaceBuilder.CocoaPlugin + {{405, 703}, {394, 165}} + + + {213, 107} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + PTKeyBroadcaster + + ToolTip + + ToolTip + + CkJhc2VkIG9uIENvY29hSG90S2V5TGliCmh0dHA6Ly93d3cucm9ndWVhbW9lYmEuY29tLwo + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + YES + + + YES + + + + + YES + + + YES + + + + 61 + + + + YES + + FirstResponder + NSObject + + IBUserSource + + + + + PTKeyBroadcaster + NSButton + + IBUserSource + + + + + PTKeyComboPanel + NSWindowController + + YES + + YES + cancel: + clear: + ok: + + + YES + id + id + id + + + + YES + + YES + cancel: + clear: + ok: + + + YES + + cancel: + id + + + clear: + id + + + ok: + id + + + + + YES + + YES + mComboField + mKeyBcaster + mTitleField + + + YES + NSTextField + PTKeyBroadcaster + NSTextField + + + + YES + + YES + mComboField + mKeyBcaster + mTitleField + + + YES + + mComboField + NSTextField + + + mKeyBcaster + PTKeyBroadcaster + + + mTitleField + NSTextField + + + + + IBUserSource + + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + PTKeyboardIcon + {128, 128} + + + diff --git a/zh.lproj/PTKeyComboPanel.nib/keyedobjects.nib b/zh.lproj/PTKeyComboPanel.nib/keyedobjects.nib new file mode 100644 index 00000000..46aac86a Binary files /dev/null and b/zh.lproj/PTKeyComboPanel.nib/keyedobjects.nib differ diff --git a/zh.lproj/PassphraseChanger.nib/designable.nib b/zh.lproj/PassphraseChanger.nib/designable.nib new file mode 100644 index 00000000..ad395b3c --- /dev/null +++ b/zh.lproj/PassphraseChanger.nib/designable.nib @@ -0,0 +1,1966 @@ + + + + 1060 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + PassphraseChangerController + + + FirstResponder + + + NSApplication + + + SFPasswordAssistantInspectorController + + + 3 + 2 + {{449, 381}, {506, 215}} + 1886912512 + 选择新口令 + + NSPanel + + + View + + {1.79769e+308, 1.79769e+308} + {213, 107} + + + 256 + + YES + + + 264 + + YES + + + 266 + {{17, 257}, {472, 23}} + + YES + + 67239424 + 272629760 + 请选择用于保护笔记的新口令。 + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 256 + {{17, 194}, {111, 22}} + + YES + + 67239424 + 71303168 + 新口令: + + + + + + + + + 256 + {{62, 164}, {66, 22}} + + YES + + 67239424 + 71303168 + 重新输入: + + + + + + + + + 256 + {{463, 197}, {23, 22}} + + YES + + 67239424 + 134217728 + + + LucidaGrande + 10 + 16 + + + -2042347265 + 2 + + NSImage + PasswordAssistantButton + + + NSImage + PasswordAssistantButtonPressed + + + + 400 + 75 + + + + + 256 + {{133, 197}, {326, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + + + + 256 + {{133, 167}, {353, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + + + + + + 256 + {{131, 143}, {294, 18}} + + YES + + 67239424 + 0 + 在钥匙串中记住该口令 + + + 1211912703 + 2 + + NSSwitch + + + + 200 + 25 + + + + + 256 + {{50, 224}, {78, 22}} + + YES + + 67239424 + 71303168 + 当前口令: + + + + + + + + + 256 + {{133, 227}, {353, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + + + + + + 264 + {{25, 105}, {13, 13}} + + YES + + 67239424 + 0 + + + + -1198636801 + 5 + + + + + + 200 + 25 + + + + + 264 + {{43, 102}, {133, 17}} + + YES + + 67239424 + 272629760 + 更多安全选项 + + LucidaGrande + 11 + 3100 + + + + + + + + + -2147483392 + {{46, 20}, {413, 74}} + + NSView + NSResponder + + + {{0, -85}, {506, 300}} + + NSView + + + + 289 + + YES + + + 256 + {{96, 12}, {82, 32}} + + YES + + 604110336 + 134217728 + 确认 + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 256 + {{14, 12}, {82, 32}} + + YES + + 67239424 + 134217728 + 取消 + + + -2038284033 + 1 + + + Gw + 200 + 25 + + + + {{314, 0}, {192, 60}} + + NSView + + + {506, 215} + + + {{0, 0}, {1920, 1178}} + {213, 129} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + showPasswordAssistantPanel: + + + + 361 + + + + okNewPassword: + + + + 362 + + + + cancelNewPassword: + + + + 363 + + + + rememberChangeButton + + + + 364 + + + + cancelChangedButton + + + + 365 + + + + okChangeButton + + + + 366 + + + + verifyChangedPasswordField + + + + 367 + + + + newPasswordField + + + + 368 + + + + changePassphraseWindow + + + + 369 + + + + _newPassword + + + + 370 + + + + _verifyPassword + + + + 371 + + + + _baseWindow + + + + 372 + + + + currentPasswordField + + + + 375 + + + + _originalPassword + + + + 376 + + + + initialFirstResponder + + + + 377 + + + + nextKeyView + + + + 378 + + + + nextKeyView + + + + 379 + + + + nextKeyView + + + + 380 + + + + disclosureButton + + + + 386 + + + + dismissalButtonsView + + + + 387 + + + + upperButtonsView + + + + 388 + + + + advancedHelpField + + + + 389 + + + + advancedView + + + + 390 + + + + discloseAdvancedSettings: + + + + 391 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 342 + + + SFPasswordAssistantInspectorController + + + 343 + + + YES + + + + Select a passphrase + + + 344 + + + YES + + + + + + + 384 + + + YES + + + + + + + 354 + + + YES + + + + + + 355 + + + YES + + + + + + 385 + + + YES + + + + + + + + + + + + + + + + + 346 + + + YES + + + + + + 351 + + + YES + + + + + + 353 + + + YES + + + + + + 356 + + + YES + + + + + + 357 + + + YES + + + + + + 358 + + + YES + + + + + + 360 + + + YES + + + + + + 373 + + + YES + + + + + + 374 + + + YES + + + + + + 381 + + + YES + + + + + + 382 + + + YES + + + + + + 383 + + + + + 393 + + + + + 394 + + + + + 395 + + + + + 396 + + + + + 397 + + + + + 398 + + + + + 399 + + + + + 400 + + + + + 401 + + + + + 402 + + + + + 403 + + + + + 404 + + + + + 405 + + + + + -3 + + + Application + + + + + YES + + YES + -3.IBPluginDependency + 342.ImportedFromIB2 + 343.IBEditorWindowLastContentRect + 343.IBPluginDependency + 343.IBWindowTemplateEditedContentRect + 343.ImportedFromIB2 + 343.windowTemplate.hasMinSize + 343.windowTemplate.minSize + 344.IBPluginDependency + 344.ImportedFromIB2 + 346.IBPluginDependency + 346.ImportedFromIB2 + 351.IBPluginDependency + 351.ImportedFromIB2 + 353.IBPluginDependency + 353.ImportedFromIB2 + 354.IBPluginDependency + 354.IBViewBoundsToFrameTransform + 354.ImportedFromIB2 + 355.IBPluginDependency + 355.IBPropertyAccessControl + 355.ImportedFromIB2 + 356.IBPluginDependency + 356.ImportedFromIB2 + 357.CustomClassName + 357.IBPluginDependency + 357.ImportedFromIB2 + 358.CustomClassName + 358.IBPluginDependency + 358.ImportedFromIB2 + 360.IBPluginDependency + 360.IBPropertyAccessControl + 360.ImportedFromIB2 + 373.IBPluginDependency + 373.ImportedFromIB2 + 374.CustomClassName + 374.IBPluginDependency + 374.ImportedFromIB2 + 381.IBPluginDependency + 381.ImportedFromIB2 + 382.IBPluginDependency + 382.ImportedFromIB2 + 383.IBPluginDependency + 383.ImportedFromIB2 + 384.IBPluginDependency + 384.IBPropertyAccessControl + 384.ImportedFromIB2 + 385.IBPluginDependency + 385.ImportedFromIB2 + 393.IBPluginDependency + 394.IBPluginDependency + 395.IBPluginDependency + 396.IBPluginDependency + 397.IBPluginDependency + 398.IBPluginDependency + 399.IBPluginDependency + 400.IBPluginDependency + 401.IBPluginDependency + 402.IBPluginDependency + 403.IBPluginDependency + 404.IBPluginDependency + 405.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{407, 302}, {506, 215}} + com.apple.InterfaceBuilder.CocoaPlugin + {{407, 302}, {506, 215}} + + + {213, 107} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCwAAAwigAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 405 + + + + YES + + FirstResponder + NSObject + + : + id + + + : + + : + id + + + + IBUserSource + + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + + didAdjustSubviews: + RBSplitView + + + willAdjustSubviews: + RBSplitView + + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + PassphraseChangerController + NSObject + + YES + + YES + cancelNewPassword: + discloseAdvancedSettings: + okNewPassword: + + + YES + id + id + id + + + + YES + + YES + cancelNewPassword: + discloseAdvancedSettings: + okNewPassword: + + + YES + + cancelNewPassword: + id + + + discloseAdvancedSettings: + id + + + okNewPassword: + id + + + + + YES + + YES + advancedHelpField + advancedView + cancelChangedButton + changePassphraseWindow + currentPasswordField + disclosureButton + dismissalButtonsView + newPasswordField + okChangeButton + rememberChangeButton + upperButtonsView + verifyChangedPasswordField + + + YES + NSTextField + NSView + NSButton + NSPanel + NSSecureTextField + NSButton + NSView + NSSecureTextField + NSButton + NSButton + NSView + NSSecureTextField + + + + YES + + YES + advancedHelpField + advancedView + cancelChangedButton + changePassphraseWindow + currentPasswordField + disclosureButton + dismissalButtonsView + newPasswordField + okChangeButton + rememberChangeButton + upperButtonsView + verifyChangedPasswordField + + + YES + + advancedHelpField + NSTextField + + + advancedView + NSView + + + cancelChangedButton + NSButton + + + changePassphraseWindow + NSPanel + + + currentPasswordField + NSSecureTextField + + + disclosureButton + NSButton + + + dismissalButtonsView + NSView + + + newPasswordField + NSSecureTextField + + + okChangeButton + NSButton + + + rememberChangeButton + NSButton + + + upperButtonsView + NSView + + + verifyChangedPasswordField + NSSecureTextField + + + + + IBUserSource + + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + delegate + + delegate + id + + + + + + RBSplitView + + + + SFPasswordAssistantInspectorController + NSObject + + showPasswordAssistantPanel: + id + + + showPasswordAssistantPanel: + + showPasswordAssistantPanel: + id + + + + YES + + YES + _baseWindow + _newPassword + _originalPassword + _verifyPassword + + + YES + NSWindow + NSTextField + NSTextField + NSTextField + + + + YES + + YES + _baseWindow + _newPassword + _originalPassword + _verifyPassword + + + YES + + _baseWindow + NSWindow + + + _newPassword + NSTextField + + + _originalPassword + NSTextField + + + _verifyPassword + NSTextField + + + + + IBProjectSource + SFPasswordAssistantInspectorController.h + + + + SFPasswordAssistantInspectorController + NSObject + + IBUserSource + + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSPanel + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSPanel.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSSecureTextField + NSTextField + + IBFrameworkSource + AppKit.framework/Headers/NSSecureTextField.h + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + YES + + YES + PasswordAssistantButton + PasswordAssistantButtonPressed + + + YES + {128, 128} + {128, 128} + + + + diff --git a/zh.lproj/PassphraseChanger.nib/keyedobjects.nib b/zh.lproj/PassphraseChanger.nib/keyedobjects.nib new file mode 100644 index 00000000..62b72a2e Binary files /dev/null and b/zh.lproj/PassphraseChanger.nib/keyedobjects.nib differ diff --git a/zh.lproj/PassphrasePicker.nib/designable.nib b/zh.lproj/PassphrasePicker.nib/designable.nib new file mode 100644 index 00000000..b0b61458 --- /dev/null +++ b/zh.lproj/PassphrasePicker.nib/designable.nib @@ -0,0 +1,1988 @@ + + + + 1060 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + PassphrasePickerController + + + FirstResponder + + + NSApplication + + + SFPasswordAssistantInspectorController + + + 3 + 2 + {{378, 572}, {474, 243}} + 1886912512 + 选择一个口令 + NSPanel + + View + + {1.79769e+308, 1.79769e+308} + {214.545, 107} + + + 256 + + YES + + + 264 + + YES + + + 266 + {{17, 247}, {440, 41}} + + YES + + 67239424 + 272629760 + 请选择一个用于保护笔记的口令,但是如果您忘记了这个口令,并不可能进行恢复,所以请牢记该口令。 + + STHeitiTC-Light + 13 + 16 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 264 + {{17, 207}, {440, 23}} + + YES + + 67239424 + 272629760 + 您的口令可以包含任意字符,长度不限。 + + + + + + + + + 264 + {{20, 236}, {434, 5}} + + {0, 0} + + 67239424 + 0 + Box + + LucidaGrande + 13 + 1044 + + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 3 + MCAwLjgwMDAwMDAxAA + + + 3 + 2 + 0 + NO + + + + 264 + {{17, 174}, {79, 22}} + + YES + + 67239424 + 71303168 + 口令: + + + + + + + + + 264 + {{17, 132}, {79, 34}} + + YES + + 67239424 + 71303168 + 重新输入: + + + + + + + + + 264 + {{431, 177}, {23, 22}} + + YES + + 67239424 + 134217728 + + + LucidaGrande + 10 + 16 + + + -2042347265 + 2 + + NSImage + PasswordAssistantButton + + + NSImage + PasswordAssistantButtonPressed + + + + 400 + 75 + + + + + 264 + {{101, 177}, {326, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + + 6 + System + textColor + + + + + + + 264 + {{101, 147}, {353, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + + + + + + 264 + {{99, 123}, {265, 18}} + + YES + + 67239424 + 0 + 在钥匙串中记住该口令 + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 264 + {{20, 85}, {13, 13}} + + YES + + 67239424 + 0 + + + + -1198636801 + 5 + + + + + + 200 + 25 + + + + + 264 + {{38, 82}, {128, 17}} + + YES + + 67239424 + 272629760 + 更多安全选项 + + STHeitiTC-Light + 11 + 16 + + + + + + + + + -2147483392 + {{41, 0}, {413, 74}} + + NSView + + + {{0, -65}, {474, 308}} + + NSView + + + + 289 + + YES + + + 256 + {{96, 12}, {82, 32}} + + YES + + 604110336 + 134217728 + 确认 + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 256 + {{14, 12}, {82, 32}} + + YES + + 67239424 + 134217728 + 取消 + + + -2038284033 + 1 + + + Gw + 200 + 25 + + + + {{282, 0}, {192, 60}} + + NSView + + + {474, 243} + + + {{0, 0}, {1920, 1178}} + {214.545, 129} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + showPasswordAssistantPanel: + + + + 361 + + + + okNewPassword: + + + + 362 + + + + cancelNewPassword: + + + + 363 + + + + rememberNewButton + + + + 364 + + + + cancelNewButton + + + + 365 + + + + okNewButton + + + + 366 + + + + verifyNewPasswordField + + + + 367 + + + + newPasswordField + + + + 368 + + + + newPassphraseWindow + + + + 369 + + + + _newPassword + + + + 370 + + + + _verifyPassword + + + + 371 + + + + _baseWindow + + + + 372 + + + + discloseAdvancedSettings: + + + + 386 + + + + disclosureButton + + + + 387 + + + + dismissalButtonsView + + + + 388 + + + + upperButtonsView + + + + 390 + + + + window + + + + 391 + + + + nextKeyView + + + + 392 + + + + nextKeyView + + + + 393 + + + + initialFirstResponder + + + + 394 + + + + advancedView + + + + 395 + + + + advancedHelpField + + + + 396 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 342 + + + SFPasswordAssistantInspectorController + + + 343 + + + YES + + + + Select a passphrase + + + 344 + + + YES + + + + + + + 376 + + + YES + + + + + + + 354 + + + YES + + + + + + 355 + + + YES + + + + + + 389 + + + YES + + + + + + + + + + + + + + + + + 346 + + + YES + + + + + + 347 + + + YES + + + + + + 348 + + + YES + + + 256 + {{2, 2}, {125, 1}} + + + + + + 349 + + + + + 351 + + + YES + + + + + + 353 + + + YES + + + + + + 356 + + + YES + + + + + + 357 + + + YES + + + + + + 358 + + + YES + + + + + + 360 + + + YES + + + + + + 374 + + + YES + + + + + + 375 + + + YES + + + + + + 385 + + + + + 398 + + + + + 399 + + + + + 400 + + + + + 401 + + + + + 402 + + + + + 403 + + + + + 404 + + + + + 405 + + + + + 406 + + + + + 407 + + + + + 408 + + + + + 409 + + + + + -3 + + + Application + + + + + YES + + YES + -3.IBPluginDependency + 342.ImportedFromIB2 + 343.IBEditorWindowLastContentRect + 343.IBPluginDependency + 343.IBPropertyAccessControl + 343.IBWindowTemplateEditedContentRect + 343.ImportedFromIB2 + 343.windowTemplate.hasMinSize + 343.windowTemplate.minSize + 344.IBPluginDependency + 344.ImportedFromIB2 + 346.IBPluginDependency + 346.IBPropertyAccessControl + 346.ImportedFromIB2 + 347.IBPluginDependency + 347.IBPropertyAccessControl + 347.ImportedFromIB2 + 348.IBPluginDependency + 348.IBPropertyAccessControl + 348.ImportedFromIB2 + 349.IBPluginDependency + 349.ImportedFromIB2 + 351.IBPluginDependency + 351.IBPropertyAccessControl + 351.ImportedFromIB2 + 353.IBPluginDependency + 353.IBPropertyAccessControl + 353.ImportedFromIB2 + 354.IBPluginDependency + 354.IBPropertyAccessControl + 354.ImportedFromIB2 + 355.IBPluginDependency + 355.IBPropertyAccessControl + 355.ImportedFromIB2 + 356.IBPluginDependency + 356.ImportedFromIB2 + 357.CustomClassName + 357.IBPluginDependency + 357.ImportedFromIB2 + 358.CustomClassName + 358.IBPluginDependency + 358.ImportedFromIB2 + 360.IBPluginDependency + 360.IBPropertyAccessControl + 360.ImportedFromIB2 + 374.IBPluginDependency + 374.ImportedFromIB2 + 375.IBPluginDependency + 375.IBPropertyAccessControl + 375.ImportedFromIB2 + 376.IBPluginDependency + 376.IBPropertyAccessControl + 376.ImportedFromIB2 + 385.IBPluginDependency + 385.ImportedFromIB2 + 389.IBPluginDependency + 389.ImportedFromIB2 + 398.IBPluginDependency + 399.IBPluginDependency + 400.IBPluginDependency + 401.IBPluginDependency + 402.IBPluginDependency + 403.IBPluginDependency + 403.IBPropertyAccessControl + 404.IBPluginDependency + 405.IBPluginDependency + 406.IBPluginDependency + 407.IBPluginDependency + 408.IBPluginDependency + 409.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{774, 194}, {474, 243}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{774, 194}, {474, 243}} + + + {214.545, 107} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 409 + + + + YES + + FirstResponder + NSObject + + : + id + + + : + + : + id + + + + IBUserSource + + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + + didAdjustSubviews: + RBSplitView + + + willAdjustSubviews: + RBSplitView + + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + PassphrasePickerController + NSObject + + YES + + YES + cancelNewPassword: + discloseAdvancedSettings: + okNewPassword: + + + YES + id + id + id + + + + YES + + YES + cancelNewPassword: + discloseAdvancedSettings: + okNewPassword: + + + YES + + cancelNewPassword: + id + + + discloseAdvancedSettings: + id + + + okNewPassword: + id + + + + + YES + + YES + advancedHelpField + advancedView + cancelNewButton + disclosureButton + dismissalButtonsView + newPassphraseWindow + newPasswordField + okNewButton + rememberNewButton + upperButtonsView + verifyNewPasswordField + window + + + YES + NSTextField + NSView + NSButton + NSButton + NSView + NSPanel + NSSecureTextField + NSButton + NSButton + NSView + NSSecureTextField + NSPanel + + + + YES + + YES + advancedHelpField + advancedView + cancelNewButton + disclosureButton + dismissalButtonsView + newPassphraseWindow + newPasswordField + okNewButton + rememberNewButton + upperButtonsView + verifyNewPasswordField + window + + + YES + + advancedHelpField + NSTextField + + + advancedView + NSView + + + cancelNewButton + NSButton + + + disclosureButton + NSButton + + + dismissalButtonsView + NSView + + + newPassphraseWindow + NSPanel + + + newPasswordField + NSSecureTextField + + + okNewButton + NSButton + + + rememberNewButton + NSButton + + + upperButtonsView + NSView + + + verifyNewPasswordField + NSSecureTextField + + + window + NSPanel + + + + + IBUserSource + + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + delegate + + delegate + id + + + + + + RBSplitView + + + + SFPasswordAssistantInspectorController + NSObject + + showPasswordAssistantPanel: + id + + + showPasswordAssistantPanel: + + showPasswordAssistantPanel: + id + + + + YES + + YES + _baseWindow + _newPassword + _originalPassword + _verifyPassword + + + YES + NSWindow + NSTextField + NSTextField + NSTextField + + + + YES + + YES + _baseWindow + _newPassword + _originalPassword + _verifyPassword + + + YES + + _baseWindow + NSWindow + + + _newPassword + NSTextField + + + _originalPassword + NSTextField + + + _verifyPassword + NSTextField + + + + + IBProjectSource + SFPasswordAssistantInspectorController.h + + + + SFPasswordAssistantInspectorController + NSObject + + IBUserSource + + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSBox + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSBox.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSPanel + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSPanel.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSSecureTextField + NSTextField + + IBFrameworkSource + AppKit.framework/Headers/NSSecureTextField.h + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + YES + + YES + NSSwitch + PasswordAssistantButton + PasswordAssistantButtonPressed + + + YES + {15, 15} + {128, 128} + {128, 128} + + + + diff --git a/zh.lproj/PassphrasePicker.nib/keyedobjects.nib b/zh.lproj/PassphrasePicker.nib/keyedobjects.nib new file mode 100644 index 00000000..62f1f60d Binary files /dev/null and b/zh.lproj/PassphrasePicker.nib/keyedobjects.nib differ diff --git a/zh.lproj/PassphraseRetriever.nib/designable.nib b/zh.lproj/PassphraseRetriever.nib/designable.nib new file mode 100644 index 00000000..36e53706 --- /dev/null +++ b/zh.lproj/PassphraseRetriever.nib/designable.nib @@ -0,0 +1,1427 @@ + + + + 1040 + 10J567 + 740 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 740 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + PassphraseRetriever + + + FirstResponder + + + NSApplication + + + 1 + 2 + {{510, 376}, {507, 194}} + 1886912512 + 提供口令 + NSPanel + + View + + {1.79769e+308, 1.79769e+308} + {378, 110} + + + 256 + + YES + + + 266 + {{92, 112}, {398, 62}} + + YES + + 69336577 + 272629760 + 请输入用于访问笔记 OOXX 的口令 + + STHeitiTC-Light + 13 + 16 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 289 + {{411, 12}, {82, 32}} + + YES + + 604110336 + 134217728 + 确认 + + LucidaGrande + 13 + 1044 + + + -2038284033 + 1 + + + DQ + 200 + 25 + + + + + 289 + {{329, 12}, {82, 32}} + + YES + + 67239424 + 134217728 + 取消 + + + -2038284033 + 268435457 + + + q + 200 + 25 + + + + + 268 + + YES + + YES + Apple PDF pasteboard type + Apple PICT pasteboard type + Apple PNG pasteboard type + NSFilenamesPboardType + NeXT Encapsulated PostScript v1.2 pasteboard type + NeXT TIFF v4.0 pasteboard type + + + {{20, 112}, {62, 62}} + + YES + + 130560 + 33554432 + + NSImage + NSApplicationIcon + + 0 + 1 + 0 + NO + + YES + + + + 256 + {{42, 82}, {114, 19}} + + YES + + 67239424 + 71303168 + 口令: + + + + + + + + + 290 + {{161, 82}, {326, 22}} + + YES + + -1804468671 + 272630784 + + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + + + + + + 292 + {{159, 58}, {330, 18}} + + YES + + 67239424 + 0 + 在钥匙串中记住该口令 + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + -2147483356 + {{14, 12}, {118, 32}} + + YES + + 67239424 + 134217728 + 使用其他笔记 + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + {507, 194} + + + {{0, 0}, {1920, 1178}} + {378, 132} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + window + + + + 309 + + + + okAction: + + + + 321 + + + + cancelAction: + + + + 322 + + + + okButton + + + + 326 + + + + helpStringField + + + + 327 + + + + passphraseField + + + + 333 + + + + rememberKeychainButton + + + + 334 + + + + differentNotes: + + + + 337 + + + + differentFolderButton + + + + 338 + + + + cancelButton + + + + 339 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 307 + + + YES + + + + get passphrase + + + 308 + + + YES + + + + + + + + + + + + + 318 + + + YES + + + + + + 319 + + + YES + + + + + + 320 + + + YES + + + + + + 328 + + + YES + + + + + + 330 + + + YES + + + + + + 331 + + + YES + + + + + + 332 + + + YES + + + + + + 336 + + + YES + + + + + + 341 + + + + + 342 + + + + + 343 + + + + + 344 + + + + + 345 + + + + + 346 + + + + + 347 + + + + + 348 + + + + + + + YES + + YES + -3.IBPluginDependency + -3.ImportedFromIB2 + 307.IBEditorWindowLastContentRect + 307.IBPluginDependency + 307.IBWindowTemplateEditedContentRect + 307.ImportedFromIB2 + 307.windowTemplate.hasMinSize + 307.windowTemplate.minSize + 308.IBPluginDependency + 308.ImportedFromIB2 + 318.IBPluginDependency + 318.IBPropertyAccessControl + 318.ImportedFromIB2 + 319.IBPluginDependency + 319.IBPropertyAccessControl + 319.ImportedFromIB2 + 320.IBPluginDependency + 320.IBPropertyAccessControl + 320.ImportedFromIB2 + 328.IBPluginDependency + 328.ImportedFromIB2 + 330.IBPluginDependency + 330.ImportedFromIB2 + 331.CustomClassName + 331.IBPluginDependency + 331.IBPropertyAccessControl + 331.ImportedFromIB2 + 332.IBPluginDependency + 332.ImportedFromIB2 + 336.IBPluginDependency + 336.IBPropertyAccessControl + 336.IBViewBoundsToFrameTransform + 336.ImportedFromIB2 + 341.IBPluginDependency + 342.IBPluginDependency + 343.IBPluginDependency + 344.IBPluginDependency + 345.IBPluginDependency + 346.IBPluginDependency + 347.IBPluginDependency + 348.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + {{418, 258}, {507, 194}} + com.apple.InterfaceBuilder.CocoaPlugin + {{418, 258}, {507, 194}} + + + {378, 110} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + NSSecureTextField + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABBYAAAwigAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 348 + + + + YES + + FirstResponder + NSObject + + : + id + + + IBUserSource + + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + FastListDataSource.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + NSObject + + IBUserSource + + + + + PassphraseRetriever + NSObject + + YES + + YES + cancelAction: + differentNotes: + okAction: + + + YES + id + id + id + + + + YES + + YES + cancelButton + differentFolderButton + helpStringField + okButton + passphraseField + rememberKeychainButton + window + + + YES + NSButton + NSButton + NSTextField + NSButton + NSTextField + NSButton + NSPanel + + + + IBProjectSource + PassphraseRetriever.h + + + + PassphraseRetriever + NSObject + + IBUserSource + + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitSubview + NSView + + IBUserSource + + + + + RBSplitView + RBSplitSubview + + delegate + id + + + + + RBSplitView + + + + RBSplitView + RBSplitSubview + + IBUserSource + + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSImageCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSImageCell.h + + + + NSImageView + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSImageView.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSPanel + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSPanel.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSSecureTextField + NSTextField + + IBFrameworkSource + AppKit.framework/Headers/NSSecureTextField.h + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + + 0 + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + diff --git a/zh.lproj/PassphraseRetriever.nib/keyedobjects.nib b/zh.lproj/PassphraseRetriever.nib/keyedobjects.nib new file mode 100644 index 00000000..99c555f2 Binary files /dev/null and b/zh.lproj/PassphraseRetriever.nib/keyedobjects.nib differ diff --git a/zh.lproj/Preferences.xib b/zh.lproj/Preferences.xib new file mode 100644 index 00000000..36c80885 --- /dev/null +++ b/zh.lproj/Preferences.xib @@ -0,0 +1,4150 @@ + + + + 1050 + 10K540 + 1306 + 1038.36 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSUserDefaultsController + NSPopUpButton + NSButton + NSMenu + NSTextFieldCell + NSButtonCell + NSMenuItem + NSBox + NSColorWell + NSMatrix + NSSlider + NSSliderCell + NSCustomView + NSCustomObject + NSView + NSWindowTemplate + NSTextField + NSPopUpButtonCell + + + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + + PrefsWindowController + + + FirstResponder + + + NSApplication + + + 7 + 2 + {{322, 522}, {399, 334}} + 1886912512 + Preferences + + NSWindow + + + View + + {399, 107} + + + 256 + {{7, 11}, {399, 334}} + + + + + {{0, 0}, {1440, 878}} + {399, 129} + {1e+13, 1e+13} + + + + 256 + + + + 12 + {{0, 39}, {368, 5}} + + {0, 0} + + 67239424 + 0 + Box + + LucidaGrande + 13 + 1044 + + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 3 + MCAwLjgwMDAwMDAxMTkAA + + + 3 + 2 + 0 + NO + + + + 268 + {{160, 15}, {192, 14}} + + YES + + 68288064 + 272630784 + This will immediately restart nvALT + + LucidaGrande + 11 + 16 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 264 + {{34, 9}, {121, 25}} + + YES + + 67239424 + 134217728 + Hide Dock Icon + + + -2038284033 + 35 + + + + + + 200 + 25 + + + + + 264 + {{32, 48}, {269, 18}} + + YES + + 67239424 + 0 + Show menu bar icon (restart required) + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + + 264 + {{68, 239}, {101, 17}} + + YES + + 67239424 + 71303168 + 列表文字大小: + + HiraKakuProN-W3 + 13 + 16 + + + + + + + + + 264 + {{171, 233}, {95, 26}} + + YES + + -2076049856 + 2048 + + + 109199615 + 1 + + + + + + 400 + 75 + + + + + 1048576 + 2147483647 + 1 + + NSImage + NSMenuCheckmark + + + NSImage + NSMenuMixedState + + _popUpItemAction: + 1 + + + YES + + OtherViews + + + + + + + 1048576 + 2147483647 + + + _popUpItemAction: + 2 + + + + + YES + YES + + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + 其他… + + 1048576 + 2147483647 + + + _popUpItemAction: + 3 + + + + + 3 + YES + YES + 1 + + + + + 264 + {{32, 97}, {242, 18}} + + YES + + -2080244224 + 0 + 删除笔记时需确认 + + STHeitiTC-Light + 13 + 16 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{32, 72}, {223, 18}} + + YES + + -2080244224 + 0 + 关闭窗口时退出程序 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{32, 160}, {286, 18}} + + YES + + -2080244224 + 0 + 搜索时自动选择相关笔记 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + -2147483384 + {{271, 237}, {61, 22}} + + YES + + -1804468671 + 272630784 + + + 大小 + + YES + + + 6 + System + textColor + + + + + + + 264 + {{8, 195}, {161, 20}} + + YES + + 67239424 + 71303168 + 显示主界面热键: + + + + + + + + + 264 + {{174, 196}, {89, 22}} + + YES + + -2072904127 + 272630784 + + + (无) + + YES + + + + + + + 264 + {{262, 188}, {79, 32}} + + YES + + 67239424 + 134217728 + 设置… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 264 + {{49, 121}, {286, 33}} + + YES + + 67239424 + 272629760 + 当笔记非常多时,自动选择相关笔记可能会影响显示速度 + + HiraKakuProN-W3 + 11 + 16 + + + + + + + + {368, 277} + NSView + NSResponder + + + + 256 + + + + 256 + {{17, 368}, {154, 17}} + + + YES + + 67239424 + 71303168 + 从该文件夹中读取笔记: + + + + + + + + + 256 + {{173, 362}, {178, 26}} + + + YES + + -2076049856 + 2048 + + + 109199615 + 1 + + + + + + 400 + 75 + + + Item1 + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + + + + Item2 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + Item3 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + 3 + YES + YES + 1 + + + + + 256 + {368, 346} + + + NSView + + NSResponder + + + {368, 406} + + + NSView + + NSResponder + + + + 256 + + + + 268 + {{118, 70}, {226, 28}} + + + YES + + 67239424 + 272629760 + Match opening characters, like a left bracket, with closing characters. + + + + + + + + + 264 + {{100, 75}, {22, 18}} + + + + YES + + 67239424 + 0 + + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{20, 76}, {77, 17}} + + + + YES + + 67239424 + 71303168 + Auto-pair: + + + + + + + + + 268 + {{153, 16}, {194, 26}} + + + + YES + + -2076049856 + 2048 + + + 109199615 + 129 + + + 400 + 75 + + + Item 1 + + 1048576 + 2147483647 + 1 + + + _popUpItemAction: + + + YES + + OtherViews + + + + + Item 2 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + Item 3 + + 1048576 + 2147483647 + + + _popUpItemAction: + + + + + + 1 + YES + YES + 2 + + + + + 264 + {{118, 107}, {247, 42}} + + + + YES + + 67239424 + 272629760 + Hold down Option while dragging a link to the notes list to temporarily enable Readability. + + LucidaGrande + 11 + 3100 + + + + + + + + + 268 + {{17, 23}, {134, 17}} + + + + YES + + 67239424 + 272629760 + External Text Editor: + + LucidaGrande + 13 + 16 + + + + + + + + + 264 + {{100, 323}, {219, 38}} + + + + YES + 2 + 1 + + + 67239424 + 0 + 行缩进 + + + 1211912703 + 2 + + NSRadioButton + + + + 200 + 25 + + + -2080244224 + 0 + 移动到下一焦点 + + + 1 + 1211912703 + 2 + + + + 200 + 25 + + + {219, 18} + {4, 2} + 1143472128 + NSActionCell + + 67239424 + 0 + Radio + + 1211912703 + 0 + + 549453824 + {18, 18} + + + + + + TU0AKgAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAADwRERGLJycnySsrK/A1NTXw +IyMjyRwcHIsJCQk8AAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFFRUVdVBQUOCoqKj/ +29vb//n5+f/6+vr/2tra/6qqqv9UVFTgHx8fdQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUZGRl5 +dXV198PDw//8/Pz////////////////////////////U1NT/fHx89yUlJXkAAAAFAAAAAAAAAAAAAAAA +AAAAAxEREUZqamrmtbW1/+3t7f/+/v7//v7+//7+/v/9/f3//f39//39/f/39/f/xMTE/3d3d+YZGRlG +AAAAAwAAAAAAAAAAAAAACkJCQqGtra3/xsbG/+vr6//y8vL/9fX1//X19f/z8/P/9fX1//Ly8v/u7u7/ +0tLS/6+vr/9KSkqhAAAACgAAAAAAAAAAAAAAF3h4eN2/v7//z8/P/93d3f/q6ur/7+/v/+/v7//w8PD/ +7e3t/+3t7f/i4uL/zs7O/8XFxf98fHzdAAAAFwAAAAAAAAADAAAAJKSkpPjOzs7/2dnZ/+Dg4P/i4uL/ +5eXl/+bm5v/n5+f/5eXl/+Li4v/e3t7/2tra/9DQ0P+srKz4AAAAJAAAAAMAAAADAAAALrCwsPrW1tb/ +3t7e/+Tk5P/p6en/6+vr/+zs7P/p6en/6+vr/+fn5//k5OT/4ODg/9nZ2f+zs7P6AAAALgAAAAMAAAAD +AAAALp2dnezg4OD/5eXl/+rq6v/u7u7/8PDw//Dw8P/x8fH/8PDw/+7u7v/q6ur/5ubm/+Hh4f+ZmZns +AAAALgAAAAMAAAADAAAAJG5ubs/l5eX/6enp/+/v7//y8vL/9vb2//r6+v/5+fn/9/f3//b29v/x8fH/ +6+vr/+Tk5P9ra2vPAAAAJAAAAAMAAAAAAAAAFy4uLpPCwsL67Ozs//Pz8//5+fn//v7+//7+/v/+/v7/ +/v7+//v7+//19fX/8PDw/8LCwvosLCyTAAAAFwAAAAAAAAAAAAAACgAAAENfX1/S5OTk/vn5+f/+/v7/ +///////////////////////////8/Pz/5ubm/l9fX9IAAABDAAAACgAAAAAAAAAAAAAAAwAAABcAAABl +YmJi3NLS0v3////////////////////////////////V1dX9ZGRk3AAAAGUAAAAXAAAAAwAAAAAAAAAA +AAAAAAAAAAUAAAAfAAAAZTMzM8KAgIDwv7+//O3t7f/t7e3/v7+//ICAgPAzMzPCAAAAZQAAAB8AAAAF +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAFwAAAEMAAAB3AAAAnwAAALMAAACzAAAAnwAAAHcAAABD +AAAAFwAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAoAAAAXAAAAJAAAAC4AAAAu +AAAAJAAAABcAAAAKAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgEAAAMAAAABABIAAAEB +AAMAAAABABIAAAECAAMAAAAEAAAFxgEDAAMAAAABAAEAAAEGAAMAAAABAAIAAAERAAQAAAABAAAACAES +AAMAAAABAAEAAAEVAAMAAAABAAQAAAEWAAMAAAABABIAAAEXAAQAAAABAAAFEAEcAAMAAAABAAEAAAFS +AAMAAAABAAEAAAFTAAMAAAAEAAAFzodzAAcAAA3oAAAF1gAAAAAACAAIAAgACAABAAEAAQABAAAN6GFw +cGwCAAAAbW50clJHQiBYWVogB9YAAgAUAAkAJQANYWNzcEFQUEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAPbWAAEAAAAA0y1hcHBsFJOBBrYKo+osFI6rc4AAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAOclhZWgAAASwAAAAUZ1hZWgAAAUAAAAAUYlhZWgAAAVQAAAAUd3RwdAAAAWgAAAAUY2hhZAAA +AXwAAAAsclRSQwAAAagAAAAOZ1RSQwAAAbgAAAAOYlRSQwAAAcgAAAAOdmNndAAAAdgAAAMSbmRpbgAA +BOwAAAY+ZGVzYwAACywAAABkZHNjbQAAC5AAAAH+bW1vZAAADZAAAAAoY3BydAAADbgAAAAtWFlaIAAA +AAAAAHEwAABEvAAAD2VYWVogAAAAAAAAYbkAAKGYAAApKFhZWiAAAAAAAAAj7QAAGccAAJqYWFlaIAAA +AAAAAPNSAAEAAAABFs9zZjMyAAAAAAABDEIAAAXe///zJgAAB5IAAP2R///7ov///aMAAAPcAADAbGN1 +cnYAAAAAAAAAAQHNAABjdXJ2AAAAAAAAAAEBzQAAY3VydgAAAAAAAAABAc0AAHZjZ3QAAAAAAAAAAAAD +AQAAAQADBAYICQsMDg8REhMVFxgaGxweHyEiJCUnKCorLC4vMTIzNTY4OTo8PT5AQUJERUdISUpMTU5Q +UVJUVVZYWVpbXF5fYGFiY2VmZ2hpamttbm9wcXJzdHV3eHl6e3x9fn+AgoOEhYaHiImKi4yNjo+QkZKT +lJWWl5iZmpucnZ6foKGio6SlpqanqKmqq6ysra6vsLGxsrO0tba2t7i5urq7vL29vr/AwMHCw8PExcbG +x8jJycrLy8zNzs7P0NDR0tLT1NTV1tbX19jZ2drb29zd3d7e3+Dg4eLi4+Tk5ebm5+jp6err6+zt7u7v +8PHx8vP09fb29/j5+vr7/P3+/v8AAwUHCAoLDQ8QEhMVFhgaGx0eICEjJCYnKSorLS4wMTM0NTc4OTs8 +PT9AQUNERUZISUpLTU5PUFJTVFVWWFlaW1xeX2BhYmNkZWZoaWprbG1ub3Bxc3R1dnd4eXp7fH1+f4CB +goOEhYaHiImKi4yNjo+QkZKTlJWWl5eYmZqbnJ2en6CgoaKjpKWmpqeoqaqrrK2trq+wsbKys7S1tre3 +uLm6u7y8vb6/wMHBwsPExcXGx8jJycrLzM3Nzs/Q0dHS09PU1dbW19jY2dra29zd3d7f3+Dh4uLj5OTl +5ufn6Onp6uvs7O3u7u/w8fHy8/T09fb29/j5+fr7/Pz9/v7/AAIDBAUGCAkKCwwNDg8QERITFBUWFxgZ +GhscHR4fICEiIyQlJicoKSorLC0uLzAxMjM0NTU2Nzg5Ojs8PT4/QEFCQ0RFRkdISUpKS0xNTk9QUVJT +VFRVVldYWVpbXF1dXl9gYWJjZGRlZmdoaWpqa2xtbm9wcHFyc3R1dXZ3eHl6e3t8fX5/gIGCgoOEhYaH +iIiJiouMjY6Oj5CRkpOUlJWWl5iZmZqbnJ2enp+goaKjpKSlpqeoqamqq6ytrq6vsLGys7S1tba3uLm6 +uru8vb6/v8DBwsPExcXGx8jJysvMzc7P0dLT1NXX2Nnb3d7g4uPl5+nr7O7x8/X3+fz+/wAAbmRpbgAA +AAAAAAY2AACNngAAV2UAAE0oAACGwgAAKCEAABpHAABQDQAAVDkAAvMzAAKj1wABoUcAAwEAAAIAAAAA +AAEAAwAIAA4AFgAfACoANgBEAFMAZAB1AIcAmwCzAMwA5AD+ARkBNgFSAW8BjgGvAdAB8wIYAj4CZQKR +ArsC5QMSAz8DbAObA8sD/AQvBGEElQTLBQMFQAV/BbsF+AY2BnMGswb1BzcHeQe+CAUITAiVCOUJOQmF +CdUKJQp2CskLHgtzC8kMIAx4DNENLA2cDf0OXQ6+DyAPgw/oEE8QsxEdEYcR8hJeEtATPxOvFCMUmhUa +FZ0WIhaqFzIXuxhIGNgZahn8GpAbJxu9HFUc6R2FHiEevR9bH/0goSFJIfQimCNBI/EkoSVSJgQmtSdn +KB8o3CmSKlIrFSvVLJktYS4pLvEvvjCPMWAyMzMHM9w0vjWVNnc3Wjg+OSI6BjrsO9k8yj27Pqw/nkCU +QYtCg0OBRIVFiUaMR45Imkm6SutMFk1VTotPwFD5UjlTg1TMVhVXXlivWgFbWFy3Xh9fhWDqYlRj02VH +Zr5oQGnKa1Fs5G52cBVxtHNYdQR2tnhpeh97532uf32BTIMbhO2G0oi5ipyMi46EkHuSb5RolnSYlprc +nTmfj6HtpEamqakIq12txbAksoq08rdYuba8Fb54wN3DPMWYx/bKTsyrzvzRVdOq1fvYR9qV3N/eu+EJ +41HlOOdp6a/rtO3L8BTyOfQy9nn4wfqh/QT//wAAAAAAAQADAAYADAASABoAJAAvADsASABXAGcAdwCJ +AJwAsADFANwA9AEOASkBRAFgAX0BnAG8Ad0CAAIkAkoCcAKWAr4C6AMUA0EDbgOdA80D/wQyBGUEmgTR +BQoFQwV9BboF+QY4BncGuwcAB0UHiQfSCBwIaAi1CQMJUwmlCfsKTwqmCv8LWgu2DBMMcAzPDS8NlA37 +DmMOyw80D54QDBB5EOgRWRHMEkAStxMvE6cUIhShFSUVqhYzFr0XSRfVGGUY+RmPGiQavRtYG/IcjR0q +HcoeaR8LH7EgWyEHIbYiZCMTI8ckfyU3JfAmqidkKCYo6ymqKnYrRSwMLN4tsy6DL1owNjEUMfMy1DO3 +NKM1ijZ5N2w4XzlROkQ7ODw6PTs+PD89QEJBSUJRQ19Ec0WIRpxHr0jKSfpLNUxsTaxO6FAhUWJSolPz +VT1WhlfSWR9ablvFXSFegF/dYTdimGQJZW9m12hIab9rLWyobiRvo3Ercqd0MXW/d0943np0fBF9r39V +gPmCm4RAhfCHp4laiw+M0Y6YkF2SHZPclbWXlJl/m5mdrp/Boduj7qYVqDSqVax6rp2wxrL2tSm3X7mP +u8O9/MA+woHEuMb+yTrLhs3I0BXSZdSz1vzZR9uf3fDgSeKd5PHnUemg6/vuV/C/8yL1ifft+lz82/// +AAAAAQADAAkAEwAgAC8AQgBXAG8AiQCpANEA9AEaAUIBawGWAcQB9QIoAl4CqgLkAyIDYQOiA+UEKwRw +BLoFBwVzBcYGGgZuBscHIgd9B9sIPAifCSwJlQoBCm8K3wtTC8cMPQy0DTMN4A5hDuQPaA/vEHgRAxGQ +EiAStBNJE+AUfBUdFcAWaxcTF78YbxkkGdoakxtPHAocxh2GHkYfCB/PIJshayI7Iwsj4SS7JZUmcSdH +KC0pESn3KuMr0CzBLbYupS+hMJ8xnjKfM6M0sDW2Nsk33DjwOgQ7GDw6PV0+gD+kQNBB8kMlRFxFlUbP +R/5JN0ptS6JM2k4UT09Qf1HBUwZUT1WXVtpYK1l0WsJcGF1zXtNgKWGDYulkU2W1ZxtojGn9a2xs425Y +b9RxU3LMdE511HdbeOB6a3v7fY1/JIC6gkyD34V5hxuIvYpai/+NrY9bkQaSq5RWlg2XuplSmvKci55C +n/ChpaNipSmm9qi9qpGsbK5FsByx77PDtZ63cLlNuxi85761wHXCJ8PWxYjHM8jLymbL/M1/zvnQcdHk +01HUvdYU12XYttoD20Xcfd2N3oLfn+DF4eXjCeQW5PPl4ub36AHpB+oP6wHrzOye7Znuku+H8HPxWPIo +8unzs/SX9Xr2WPc1+A/45vmg+lr7Ivvy/Mr9q/63//8AAGRlc2MAAAAAAAAACkNvbG9yIExDRAAAAAAA +AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAABtbHVjAAAAAAAAAA8AAAAMaXRJVAAAABQAAADEZnJGUgAAAEIAAADYbmJOTwAA +ABIAAAEaZXNFUwAAABIAAAEsZmlGSQAAABAAAAE+cHRQVAAAABgAAAFOemhUVwAAAA4AAAFmamFKUAAA +AA4AAAF0bmxOTAAAABYAAAGCZGVERQAAABAAAAGYa29LUgAAAAwAAAGoZW5VUwAAABIAAAG0c3ZTRQAA +ABAAAAHGZGFESwAAABwAAAHWemhDTgAAAAwAAAHyAEwAQwBEACAAYwBvAGwAbwByAGkAyQBjAHIAYQBu +ACAA4AAgAGMAcgBpAHMAdABhAHUAeAAgAGwAaQBxAHUAaQBkAGUAcwAgAGMAbwB1AGwAZQB1AHIARgBh +AHIAZwBlAC0ATABDAEQATABDAEQAIABjAG8AbABvAHIAVgDkAHIAaQAtAEwAQwBEAEwAQwBEACAAYwBv +AGwAbwByAGkAZABvX2mCcm2yZnaYb3k6VmgwqzDpMPwAIABMAEMARABLAGwAZQB1AHIAZQBuAC0ATABD +AEQARgBhAHIAYgAtAEwAQwBEzuy37AAgAEwAQwBEAEMAbwBsAG8AcgAgAEwAQwBEAEYA5AByAGcALQBM +AEMARABMAEMARAAtAGYAYQByAHYAZQBzAGsA5gByAG1faYJyACAATABDAEQAAG1tb2QAAAAAAAAGEAAA +nCoAAAAAuE1yAAAAAAAAAAAAAAAAAAAAAAB0ZXh0AAAAAENvcHlyaWdodCBBcHBsZSBDb21wdXRlciwg +SW5jLiwgMjAwNQAAAAA + + + + + + 3 + MCAwAA + + + + 400 + 75 + + 1 + + + + + + + + 264 + {{32, 339}, {65, 22}} + + + + YES + + 67239424 + 71303168 + Tab 键: + + + + + + + + + 264 + {{118, 287}, {229, 30}} + + + + YES + + 67239424 + 272629760 + Option-Tab 总是执行缩进;Shift-Tab 总是反向切换焦点 + + + + + + + + + 264 + {{100, 47}, {146, 18}} + + + + YES + + 67239424 + 0 + Right-To-Left (RTL) + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{20, 48}, {77, 17}} + + + + YES + + 67239424 + 71303168 + Direction: + + + + + + + + + 264 + {{100, 372}, {137, 18}} + + + + YES + + -2080244224 + 0 + 键入时检查拼写 + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{100, 396}, {246, 18}} + + + + YES + + 67239424 + 0 + 从其他程序复制时保留基本样式 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{17, 392}, {80, 22}} + + + + YES + + 67239424 + 71303168 + 带样式文字: + + + + + + + + + 264 + {{20, 364}, {77, 26}} + + + + YES + + 67239424 + 71303168 + 拼写和语法: + + + + + + + + + 264 + {{17, 154}, {80, 34}} + + + + YES + + 67239424 + 71303168 + URL Import: + + + + + + + + + 264 + {{100, 150}, {235, 18}} + + + + YES + + 67239424 + 0 + Process with Readability + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{100, 170}, {255, 18}} + + + + YES + + 67239424 + 0 + Convert imported URLs to Markdown + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{39, 224}, {58, 17}} + + + + YES + + 67239424 + 71303168 + 链接: + + + + + + + + + 264 + {{100, 203}, {242, 18}} + + + + YES + + 67239424 + 0 + 输入笔记链接时提供建议 + + + 1211912703 + 2 + + + + 200 + 25 + + + + + 264 + {{100, 258}, {157, 18}} + + + + YES + + -2080244224 + 0 + 软缩进 (空格) + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{100, 223}, {183, 18}} + + + + YES + + 67239424 + 0 + 链接可点击 + + + 1211912703 + 2 + + + + + 200 + 25 + + + + {368, 434} + + + + + NSView + + NSResponder + + + + 256 + + + + 268 + {{92, 78}, {172, 18}} + + + YES + + -2080244224 + 67108864 + Alternating Row Colors: + + + 1210864127 + 2 + + + + + 200 + 25 + + + + + 268 + {{95, 98}, {169, 18}} + + + YES + + -2080244224 + 67108864 + Show Grid Lines in List: + + + 1210864127 + 2 + + + + + 200 + 25 + + + + + 264 + {{346, 22}, {38, 13}} + + YES + + 67239424 + 4194304 + pixels + + + + + + + + + 264 + {{317, 22}, {36, 13}} + + + YES + + 67763712 + 4194304 + 1000 + + + + + + + + + 264 + {{50, 20}, {149, 17}} + + + YES + + 67239424 + 4194304 + Max. Note Body Width: + + + + + + + + + 268 + {{200, 20}, {113, 15}} + + + YES + + -2079981824 + 131072 + + + 1000 + 350 + 604.16666666666663 + 0.0 + 0 + 1 + NO + NO + + + + + 268 + {{50, 45}, {212, 17}} + + + YES + + 67239424 + 4194304 + Keep Note Body Width Readable: + + + + + + + + + 264 + {{259, 43}, {22, 18}} + + + YES + + 67239424 + 0 + + + + 1215582719 + 2 + + + + 200 + 25 + + + + + 264 + {{35, 130}, {326, 14}} + + + YES + + 67239424 + 4194304 + Text and Background Colors affect User Color Scheme only. + + + + + + + + + 268 + {{167, 229}, {77, 18}} + + + YES + + -2080244224 + 0 + 搜索高亮: + + + 1211912703 + 2 + + + + + 200 + 25 + + + + + 264 + {{35, 275}, {76, 20}} + + + YES + + 67239424 + 71303168 + 正文字体: + + + + + + + + + 264 + {{312, 268}, {79, 32}} + + + YES + + -2080244224 + 134217728 + 设置… + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + + 266 + {{116, 275}, {197, 23}} + + + YES + + 71433728 + 272630272 + Helvetica 12 + + + YES + + 3 + MQA + + 2 + + + + + + + + 264 + {{151, 156}, {94, 17}} + + + YES + + 67239424 + 71303168 + 背景: + + + + + + + + + 264 + + + NSColor pasteboard type + + + {{251, 152}, {52, 24}} + + + YES + YES + + + + + 264 + {{122, 188}, {123, 17}} + + + YES + + 67239424 + 71303168 + 正文: + + + + + + + + + 264 + + + NSColor pasteboard type + + + {{251, 184}, {52, 24}} + + + YES + YES + + + + + 264 + + + NSColor pasteboard type + + + {{251, 226}, {52, 24}} + + + YES + YES + + 1 + MC4wNTgxMzA0OTg5OCAwLjA1NTU0MTg5OTA2IDEAA + + + + {420, 319} + + NSView + NSResponder + + + YES + + + + + + + generalView + + + + 236 + + + + window + + + + 238 + + + + changedQuitBehavior: + + + + 239 + + + + changedNoteDeletion: + + + + 240 + + + + changedTitleCompletion: + + + + 241 + + + + changedTableText: + + + + 245 + + + + tableTextSizeField + + + + 246 + + + + tableTextMenuButton + + + + 249 + + + + notationPrefsView + + + + 258 + + + + databaseView + + + + 259 + + + + folderLocationsMenuButton + + + + 260 + + + + changedNotesFolderLocation: + + + + 263 + + + + completeNoteTitlesButton + + + + 265 + + + + confirmDeletionButton + + + + 266 + + + + quitWhenClosingButton + + + + 267 + + + + setAppShortcut: + + + + 290 + + + + appShortcutField + + + + 291 + + + + checkSpellingButton + + + + 293 + + + + tabKeyRadioMatrix + + + + 294 + + + + changedSpellChecking: + + + + 296 + + + + changedTabBehavior: + + + + 297 + + + + editingView + + + + 298 + + + + autoSuggestLinksButton + + + + 299 + + + + styledTextButton + + + + 300 + + + + changedStyledTextBehavior: + + + + 301 + + + + changedAutoSuggestLinks: + + + + 302 + + + + softTabsButton + + + + 309 + + + + changedSoftTabs: + + + + 310 + + + + makeURLsClickable + + + + 312 + + + + changedMakeURLsClickable: + + + + 313 + + + + changedSearchHighlightColorWell: + + + + 382 + + + + bodyTextFontField + + + + 394 + + + + changeBodyFont: + + + + 395 + + + + searchHighlightColorWell + + + + 412 + + + + highlightSearchTermsButton + + + + 419 + + + + changedBackgroundTextColorWell: + + + + 420 + + + + changedForegroundTextColorWell: + + + + 421 + + + + changedHighlightSearchTerms: + + + + 422 + + + + backgroundColorWell + + + + 423 + + + + foregroundColorWell + + + + 424 + + + + fontsColorsView + + + + 425 + + + + value: values.StatusBarItem + + + + + + value: values.StatusBarItem + value + values.StatusBarItem + 2 + + + 437 + + + + value: values.KeepsMaxTextWidth + + + + + + value: values.KeepsMaxTextWidth + value + values.KeepsMaxTextWidth + 2 + + + 448 + + + + togDockButton + + + + 450 + + + + togDockLabel + + + + 451 + + + + toggleKeepsTextWidthInWindow: + + + + 469 + + + + setMaxWidth: + + + + 479 + + + + maxWidthSlider + + + + 480 + + + + hidden: values.TextEditor + + + + + + hidden: values.TextEditor + hidden + values.TextEditor + + NSValueTransformerName + NSIsNil + + 2 + + + 505 + + + + title: values.HideDockIcon + + + + + + title: values.HideDockIcon + title + values.HideDockIcon + 2 + + + 506 + + + + toggleHideDockIcon: + + + + 507 + + + + value: values.NoteBodyMaxWidth + + + + + + value: values.NoteBodyMaxWidth + value + values.NoteBodyMaxWidth + 2 + + + 508 + + + + hidden: values.KeepsMaxTextWidth + + + + + + hidden: values.KeepsMaxTextWidth + hidden + values.KeepsMaxTextWidth + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 517 + + + + hidden: values.KeepsMaxTextWidth + + + + + + hidden: values.KeepsMaxTextWidth + hidden + values.KeepsMaxTextWidth + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 519 + + + + hidden: values.KeepsMaxTextWidth + + + + + + hidden: values.KeepsMaxTextWidth + hidden + values.KeepsMaxTextWidth + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 520 + + + + hidden: values.KeepsMaxTextWidth + + + + + + hidden: values.KeepsMaxTextWidth + hidden + values.KeepsMaxTextWidth + + NSValueTransformerName + NSNegateBoolean + + 2 + + + 521 + + + + changedUseMarkdownImport: + + + + 530 + + + + changedUseReadability: + + + + 531 + + + + useMarkdownImportButton + + + + 532 + + + + useReadabilityButton + + + + 533 + + + + readabilityHint + + + + 538 + + + + changedRTL: + + + + 547 + + + + rtlButton + + + + 548 + + + + changedShowGrid: + + + + 557 + + + + changedAltRows: + + + + 558 + + + + showGridButton + + + + 559 + + + + altRowsButton + + + + 560 + + + + externalEditorMenuButton + + + + 567 + + + + changedExternalEditorsMenu: + + + + 568 + + + + changedAutoPairing: + + + + 575 + + + + autoPairButton + + + + 576 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 5 + + + + + + Preferences Window + + + 6 + + + + + 155 + + + + + + + + + + + + + + + + + + + general view + + + 157 + + + + + + + + 158 + + + + + + + + 172 + + + + + + + + 174 + + + + + + + + 175 + + + + + + + + 178 + + + + + + + + 287 + + + + + + + + 288 + + + + + + + + 289 + + + + + + + + 323 + + + + + + + + 250 + + + + + + + + database view + + + 251 + + + + + + + + 252 + + + + + + + + 257 + + + + + 268 + + + + + + + + + + + + + + + + + + + + + + + + + + + editing view + + + 271 + + + + + + + + + + 272 + + + + + 273 + + + + + 274 + + + + + + + + 275 + + + + + + + + 276 + + + + + + + + 278 + + + + + + + + 279 + + + + + + + + 280 + + + + + + + + 282 + + + + + + + + 283 + + + + + + + + 307 + + + + + + + + 311 + + + + + + + + 325 + + + + + 326 + + + + + + + + 327 + + + + + 328 + + + + + 329 + + + + + 330 + + + + + 331 + + + + + 332 + + + + + 333 + + + + + 335 + + + + + 336 + + + + + 337 + + + + + + + + 340 + + + + + 341 + + + + + 342 + + + + + 344 + + + + + 345 + + + + + 346 + + + + + 347 + + + + + 348 + + + + + 349 + + + + + 350 + + + + + 351 + + + + + 159 + + + + + + + + + + + 163 + + + + + 162 + + + + + 161 + + + + + 160 + + + + + 253 + + + + + + + + + + 256 + + + + + 255 + + + + + 254 + + + + + 352 + + + + + + + + + + + + + + + + + + + + + + + fonts colors view + + + 387 + + + + + + + + 388 + + + + + + + + 389 + + + + + + + + 390 + + + + + 391 + + + + + 392 + + + + + 429 + + + + + + + + 430 + + + + + + + + 431 + + + + + + + + 432 + + + + + 433 + + + + + 434 + + + + + 435 + + + + + 436 + + + + + 454 + + + + + + + + 455 + + + + + 467 + + + + + + + + 468 + + + + + 354 + + + + + 415 + + + + + + + + 416 + + + + + 400 + + + + + 396 + + + + + 397 + + + + + + + + 398 + + + + + 401 + + + + + + + + 402 + + + + + 440 + + + + + + + + 443 + + + + + 441 + + + + + + + + 442 + + + + + 470 + + + + + + + + 471 + + + + + 472 + + + + + + + + 473 + + + + + 487 + + + + + + + + 488 + + + + + 492 + + + + + + + + 493 + + + + + 522 + + + + + + + + 523 + + + + + + + + 524 + + + + + + + + 525 + + + + + 526 + + + + + 527 + + + + + 536 + + + + + + + + 537 + + + + + 542 + + + + + + + + 543 + + + + + + + + 544 + + + + + 545 + + + + + 549 + + + + + + + + 550 + + + + + 552 + + + + + + + + 553 + + + + + 561 + + + + + + + + 562 + + + + + + + + 563 + + + + + + + + + + 564 + + + + + 565 + + + + + 566 + + + + + 569 + + + + + + + + 570 + + + + + + + + 571 + + + + + + + + 572 + + + + + 573 + + + + + 574 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{103, 499}, {368, 277}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + {{263, 685}, {119, 73}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + {{257, 450}, {368, 406}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + {{51, 443}, {368, 413}} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAw2QAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCAAAAw2QAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC7AAAwzgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBiAAAw3AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCHAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAww8AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{102, 378}, {420, 319}} + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABCAAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABC5AAAwkwAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABDgoAAwlQAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCBAAAwkAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABDGgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCgAAAwy0AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + AUNcAABC9AAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABC3gAAww0AAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCAAAAwoAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCCAAAwgAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDIAAAwdgAAA + + com.apple.InterfaceBuilder.CocoaPlugin + + AQAAAABCHAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDggAAwlgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAwlwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABBoAAAwggAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + P4AAAL+AAABCDAAAwrAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDSQAAweAAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCTAAAwfAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDnwAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABDrYAAweAAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + {{329, 268}, {399, 334}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{329, 268}, {399, 334}} + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCyAAAwqgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCHAAAwtgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABC7AAAwzgAAA + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCqAAAwkwAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + + 576 + + + + + FirstResponder + + : + id + + + : + + : + id + + + + IBUserSource + + + + + NotationPrefsViewController + NSObject + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + addedExtension: + id + + + addedType: + id + + + changePassphrase: + id + + + changedFileDeletionWarningSettings: + id + + + changedFileStorageFormat: + id + + + changedKeyLength: + id + + + changedKeychainSettings: + id + + + changedSecureTextEntry: + id + + + makeDefaultExtension: + id + + + removeFromKeychain: + id + + + removedExtension: + id + + + removedType: + id + + + syncFrequencyChange: + id + + + toggledEncryption: + id + + + toggledSyncing: + id + + + visitSimplenoteSite: + id + + + + NSTableView + NSTableView + NSButton + NSButton + NSButton + NSButton + NSTextField + NSTextField + NSStepper + NSButton + NSButton + NSButton + NSMatrix + NSButton + NSButton + NSButton + NSButton + NSPopUpButton + NSTextField + NSTextField + NSImageView + NSTextField + NSPopUpButton + NSTextField + NSImageView + NSView + NSWindow + + + + allowedExtensionsTable + NSTableView + + + allowedTypesTable + NSTableView + + + changePasswordButton + NSButton + + + confirmFileDeletionButton + NSButton + + + enableEncryptionButton + NSButton + + + enabledSyncButton + NSButton + + + fileAttributesHelpText + NSTextField + + + keyLengthField + NSTextField + + + keyLengthStepper + NSStepper + + + makeDefaultExtensionButton + NSButton + + + newExtensionButton + NSButton + + + newTypeButton + NSButton + + + passwordSettingsMatrix + NSMatrix + + + removeExtensionButton + NSButton + + + removeFromKeychainButton + NSButton + + + removeTypeButton + NSButton + + + secureTextEntryButton + NSButton + + + storageFormatPopupButton + NSPopUpButton + + + syncAccountField + NSTextField + + + syncEncAlertField + NSTextField + + + syncEncAlertView + NSImageView + + + syncPasswordField + NSTextField + + + syncingFrequency + NSPopUpButton + + + verifyStatusField + NSTextField + + + verifyStatusImageView + NSImageView + + + view + NSView + + + webOptionsWindow + NSWindow + + + + IBProjectSource + ./Classes/NotationPrefsViewController.h + + + + PrefsWindowController + NSObject + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + changeBodyFont: + id + + + changedAltRows: + id + + + changedAutoPairing: + id + + + changedAutoSuggestLinks: + id + + + changedBackgroundTextColorWell: + id + + + changedExternalEditorsMenu: + id + + + changedForegroundTextColorWell: + id + + + changedHighlightSearchTerms: + id + + + changedMakeURLsClickable: + id + + + changedNoteDeletion: + id + + + changedNotesFolderLocation: + id + + + changedQuitBehavior: + id + + + changedRTL: + id + + + changedSearchHighlightColorWell: + id + + + changedShowGrid: + id + + + changedSoftTabs: + id + + + changedSpellChecking: + id + + + changedStyledTextBehavior: + id + + + changedTabBehavior: + id + + + changedTableText: + id + + + changedTitleCompletion: + id + + + changedUseMarkdownImport: + id + + + changedUseReadability: + id + + + setAppShortcut: + id + + + setMaxWidth: + id + + + toggleHideDockIcon: + id + + + toggleKeepsTextWidthInWindow: + id + + + + NSButton + NSComboBox + NSTextField + NSButton + NSButton + NSColorWell + NSTextField + NSButton + NSButton + NSButton + NSView + NSView + NSPopUpButton + NSPopUpButton + NSView + NSColorWell + NSView + NSButton + NSButton + NSSlider + NSView + NotationPrefsViewController + NSButton + NSButton + NSColorWell + NSButton + NSButton + NSButton + NSMatrix + NSPopUpButton + NSTextField + NSButton + NSTextField + NSButton + NSButton + NSWindow + + + + altRowsButton + NSButton + + + appList + NSComboBox + + + appShortcutField + NSTextField + + + autoPairButton + NSButton + + + autoSuggestLinksButton + NSButton + + + backgroundColorWell + NSColorWell + + + bodyTextFontField + NSTextField + + + checkSpellingButton + NSButton + + + completeNoteTitlesButton + NSButton + + + confirmDeletionButton + NSButton + + + databaseView + NSView + + + editingView + NSView + + + externalEditorMenuButton + NSPopUpButton + + + folderLocationsMenuButton + NSPopUpButton + + + fontsColorsView + NSView + + + foregroundColorWell + NSColorWell + + + generalView + NSView + + + highlightSearchTermsButton + NSButton + + + makeURLsClickable + NSButton + + + maxWidthSlider + NSSlider + + + notationPrefsView + NSView + + + notationPrefsViewController + NotationPrefsViewController + + + quitWhenClosingButton + NSButton + + + rtlButton + NSButton + + + searchHighlightColorWell + NSColorWell + + + showGridButton + NSButton + + + softTabsButton + NSButton + + + styledTextButton + NSButton + + + tabKeyRadioMatrix + NSMatrix + + + tableTextMenuButton + NSPopUpButton + + + tableTextSizeField + NSTextField + + + togDockButton + NSButton + + + togDockLabel + NSTextField + + + useMarkdownImportButton + NSButton + + + useReadabilityButton + NSButton + + + window + NSWindow + + + + IBProjectSource + ./Classes/PrefsWindowController.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + {9, 8} + {7, 2} + {15, 15} + + + diff --git a/zh.lproj/SaveHTMLPreview.nib/designable.nib b/zh.lproj/SaveHTMLPreview.nib/designable.nib new file mode 100644 index 00000000..f39809b5 --- /dev/null +++ b/zh.lproj/SaveHTMLPreview.nib/designable.nib @@ -0,0 +1,462 @@ + + + + 1050 + 10J869 + 1305 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1305 + + + YES + NSCustomView + NSTextField + NSButtonCell + NSTextFieldCell + NSButton + NSCustomObject + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + YES + + YES + + + + + YES + + PreviewController + + + FirstResponder + + + NSApplication + + + + 268 + + YES + + + 268 + {{25, 9}, {244, 34}} + + + + YES + + 67239424 + 138412032 + Select this to embed the ouput within your current preview HTML and CSS + + LucidaGrande + 11 + 16 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 1 + MC40MTMwNDM0NzgzIDAuNDEzMDQzNDc4MyAwLjQxMzA0MzQ3ODMAA + + + + + + 268 + {{26, 49}, {242, 18}} + + + + YES + + -2080244224 + 0 + Include preview template in output + + LucidaGrande + 13 + 1044 + + + 1211912703 + 2 + + NSImage + NSSwitch + + + NSSwitch + + + + 200 + 25 + + + + {286, 75} + + + + NSView + + + + + YES + + + accessoryView + + + + 41 + + + + includeTemplate + + + + 44 + + + + templateNote + + + + 47 + + + + + YES + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 7 + + + YES + + + + + View + + + 42 + + + YES + + + + + + 43 + + + + + 45 + + + YES + + + + + + 46 + + + + + + + YES + + YES + 42.IBPluginDependency + 42.IBViewBoundsToFrameTransform + 43.IBPluginDependency + 45.IBPluginDependency + 46.IBPluginDependency + 7.IBEditorWindowLastContentRect + 7.IBPluginDependency + 7.IBUserGuides + 7.WindowOrigin + 7.editorWindowContentRectSynchronizationRect + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + P4AAAL+AAABCiAAAwggAAA + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + {{297, 274}, {286, 58}} + com.apple.InterfaceBuilder.CocoaPlugin + + YES + + {332, 343} + {{403, 401}, {264, 327}} + + + + YES + + + + + + YES + + + + + 47 + + + + YES + + PreviewController + NSWindowController + + YES + + YES + cancelShare: + hideShareURL: + openShareURL: + saveHTML: + shareAsk: + shareNote: + switchTabs: + + + YES + id + id + id + id + id + id + id + + + + YES + + YES + cancelShare: + hideShareURL: + openShareURL: + saveHTML: + shareAsk: + shareNote: + switchTabs: + + + YES + + cancelShare: + id + + + hideShareURL: + id + + + openShareURL: + id + + + saveHTML: + id + + + shareAsk: + id + + + shareNote: + id + + + switchTabs: + id + + + + + YES + + YES + accessoryView + includeTemplate + preview + shareConfirmation + shareNotification + sourceView + tabView + templateNote + urlTextField + + + YES + NSView + NSButton + WebView + NSView + NSView + NSTextView + NSTabView + NSTextField + NSTextField + + + + YES + + YES + accessoryView + includeTemplate + preview + shareConfirmation + shareNotification + sourceView + tabView + templateNote + urlTextField + + + YES + + accessoryView + NSView + + + includeTemplate + NSButton + + + preview + WebView + + + shareConfirmation + NSView + + + shareNotification + NSView + + + sourceView + NSTextView + + + tabView + NSTabView + + + templateNote + NSTextField + + + urlTextField + NSTextField + + + + + IBProjectSource + ./Classes/PreviewController.h + + + + WebView + + reloadFromOrigin: + id + + + reloadFromOrigin: + + reloadFromOrigin: + id + + + + IBProjectSource + ./Classes/WebView.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + 3 + + NSSwitch + {15, 15} + + + diff --git a/zh.lproj/SaveHTMLPreview.nib/keyedobjects.nib b/zh.lproj/SaveHTMLPreview.nib/keyedobjects.nib new file mode 100644 index 00000000..08a0f01f Binary files /dev/null and b/zh.lproj/SaveHTMLPreview.nib/keyedobjects.nib differ diff --git a/zh.lproj/SavedSearches.nib/designable.nib b/zh.lproj/SavedSearches.nib/designable.nib new file mode 100644 index 00000000..7e0dce03 --- /dev/null +++ b/zh.lproj/SavedSearches.nib/designable.nib @@ -0,0 +1,744 @@ + + + + 1060 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + SavedSearchesController + + + FirstResponder + + + NSApplication + + + 27 + 2 + {{495, 324}, {317, 207}} + -260571136 + 笔记书签 + + NSPanel + + + View + + {1.79769e+308, 1.79769e+308} + {255, 64} + + + 256 + + YES + + + 274 + + YES + + + 2304 + + YES + + + 256 + {284, 157} + + YES + + + 256 + {{285, 0}, {12, 17}} + + + YES + + description + 226 + 40 + 1000 + + 75628096 + 2048 + Bookmark + + LucidaGrande + 11 + 3100 + + + 3 + MC4zMzMzMzI5OQA + + + 6 + System + headerTextColor + + 3 + MAA + + + + + 337772096 + 2048 + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlBackgroundColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + + + 1 + YES + YES + + + + keyEquiv + 52.056640625 + 23.056640625 + 1000 + + 75628096 + 2048 + Key + + + 6 + System + headerColor + + 3 + MQA + + + + + + 337772096 + 67110912 + + + + + + 1 + YES + + + + 3 + 2 + + + 6 + System + gridColor + + 3 + MC41AA + + + 17 + 306184192 + + + 5 + 15 + 0 + YES + 0 + + + {{1, 1}, {284, 157}} + + + + + 4 + + + + 256 + {{285, 1}, {11, 157}} + + 256 + + _doScroller: + 0.82631576061248779 + + + + -2147483392 + {{-100, -100}, {132, 11}} + + 257 + + _doScroller: + 0.99047619104385376 + + + {{10, 39}, {297, 159}} + + + 18 + + + + QSAAAEEgAABBmAAAQZgAAA + + + + 292 + {{10, 9}, {23, 22}} + + + YES + + 67239424 + 134217728 + + + + 138690815 + 6 + + NSImage + Add + + + NSImage + Add_Pressed + + + + + + 200 + 25 + + + + + 292 + {{32, 9}, {23, 22}} + + YES + + 604110336 + 134217728 + + + + 138690815 + 6 + + NSImage + Remove + + + NSImage + Remove_Pressed + + + + + + 200 + 25 + + + + {317, 207} + + + {{0, 0}, {1920, 1178}} + {255, 80} + {1.79769e+308, 1.79769e+308} + bookmarksWindow + + + + + YES + + + nextKeyView + + + + 369 + + + + addBookmarkButton + + + + 372 + + + + removeBookmarkButton + + + + 373 + + + + bookmarksTableView + + + + 374 + + + + window + + + + 375 + + + + addBookmark: + + + + 376 + + + + removeBookmark: + + + + 377 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 354 + + + YES + + + + Panel + + + 355 + + + YES + + + + + + + + 363 + + + YES + + + + + + + + 364 + + + YES + + + + + + + 366 + + + YES + + + + + + 378 + + + YES + + + + + + 367 + + + YES + + + + + + 368 + + + YES + + + + + + 383 + + + + + 384 + + + + + 385 + + + + + 386 + + + + + 387 + + + + + 388 + + + + + -3 + + + Application + + + + + YES + + YES + 354.IBEditorWindowLastContentRect + 354.IBPluginDependency + 354.IBWindowTemplateEditedContentRect + 354.ImportedFromIB2 + 354.windowTemplate.hasMinSize + 354.windowTemplate.minSize + 355.IBPluginDependency + 355.ImportedFromIB2 + 363.IBPluginDependency + 363.ImportedFromIB2 + 364.CustomClassName + 364.IBPluginDependency + 364.ImportedFromIB2 + 366.IBPluginDependency + 366.ImportedFromIB2 + 367.IBAttributePlaceholdersKey + 367.IBPluginDependency + 367.ImportedFromIB2 + 368.IBAttributePlaceholdersKey + 368.IBPluginDependency + 368.ImportedFromIB2 + 378.IBPluginDependency + 378.ImportedFromIB2 + 385.IBShouldRemoveOnLegacySave + 386.IBShouldRemoveOnLegacySave + 387.IBShouldRemoveOnLegacySave + 388.IBShouldRemoveOnLegacySave + + + YES + {{425, 629}, {317, 207}} + com.apple.InterfaceBuilder.CocoaPlugin + {{425, 629}, {317, 207}} + + + {255, 64} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + BookmarksTable + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Create an account. + + + com.apple.InterfaceBuilder.CocoaPlugin + + + ToolTip + + ToolTip + + Remove an account. + + + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + + + + YES + + + YES + + + + + YES + + + YES + + + + 388 + + + + YES + + BookmarksTable + NSTableView + + IBUserSource + + + + + FirstResponder + NSObject + + : + id + + + : + + : + id + + + + IBUserSource + + + + + SavedSearchesController + NSObject + + YES + + YES + addBookmark: + removeBookmark: + + + YES + id + id + + + + YES + + YES + addBookmark: + removeBookmark: + + + YES + + addBookmark: + id + + + removeBookmark: + id + + + + + YES + + YES + addBookmarkButton + bookmarksTableView + removeBookmarkButton + window + + + YES + NSButton + NSTableView + NSButton + NSPanel + + + + YES + + YES + addBookmarkButton + bookmarksTableView + removeBookmarkButton + window + + + YES + + addBookmarkButton + NSButton + + + bookmarksTableView + NSTableView + + + removeBookmarkButton + NSButton + + + window + NSPanel + + + + + IBUserSource + + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + + 3 + + YES + + YES + Add + Add_Pressed + Remove + Remove_Pressed + + + YES + {128, 128} + {128, 128} + {128, 128} + {128, 128} + + + + diff --git a/zh.lproj/SavedSearches.nib/keyedobjects.nib b/zh.lproj/SavedSearches.nib/keyedobjects.nib new file mode 100644 index 00000000..ebda7949 Binary files /dev/null and b/zh.lproj/SavedSearches.nib/keyedobjects.nib differ diff --git a/zh.lproj/TagEditingManager.xib b/zh.lproj/TagEditingManager.xib new file mode 100644 index 00000000..50353374 --- /dev/null +++ b/zh.lproj/TagEditingManager.xib @@ -0,0 +1,630 @@ + + + + 1050 + 10J869 + 1306 + 1038.35 + 461.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 1306 + + + NSTextField + NSTextFieldCell + NSWindowTemplate + NSView + NSCustomObject + + + com.apple.InterfaceBuilder.CocoaPlugin + + + + + TagEditingManager + + + FirstResponder + + + NSApplication + + + 8219 + 2 + {{122, 324}, {322, 55}} + -461896704 + Modify or Add Tags to Selected Notes: + NSPanel + + {2000, 55} + {150, 55} + + + 256 + + + + 268 + {{20, 20}, {282, 22}} + + + + YES + + -1804468671 + 268436480 + + + LucidaGrande + 13 + 1044 + + + YES + + 6 + System + textBackgroundColor + + 3 + MQA + + + + 6 + System + textColor + + 3 + MAA + + + + + + {{7, 11}, {322, 55}} + + + + + {{0, 0}, {1440, 878}} + {150, 74} + {2000, 74} + + + + + + + tagField + + + + 412 + + + + tagPanel + + + + 413 + + + + multiTag: + + + + 425 + + + + initialFirstResponder + + + + 436 + + + + + + 0 + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + -3 + + + Application + + + 370 + + + + + + + + 371 + + + + + + + + 372 + + + + + + + + 373 + + + + + + + com.apple.InterfaceBuilder.CocoaPlugin + {{625, 720}, {322, 55}} + com.apple.InterfaceBuilder.CocoaPlugin + {{625, 720}, {322, 55}} + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + + + 436 + + + + + AppController + NSObject + + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + id + + + + bringFocusToControlField: + id + + + copyNoteLink: + id + + + deleteNote: + id + + + exportNote: + id + + + fieldAction: + id + + + importNotes: + id + + + multiTag: + id + + + openFileInEditor: + id + + + printNote: + id + + + renameNote: + id + + + revealNote: + id + + + savePreview: + id + + + selectPreviewMode: + id + + + setBWColorScheme: + id + + + setLCColorScheme: + id + + + setUserColorScheme: + id + + + sharePreview: + id + + + showHelpDocument: + id + + + showPreferencesWindow: + id + + + switchViewLayout: + id + + + syncWaitQuit: + id + + + tagNote: + id + + + toggleCollapse: + id + + + toggleFullscreen: + id + + + toggleNVActivation: + id + + + togglePreview: + id + + + toggleSourceView: + id + + + toggleWordCount: + id + + + + EmptyView + DualField + ETContentView + NSMenuItem + AugmentedScrollView + NotesTableView + NSMenuItem + NSMenuItem + NSMenu + NSPanel + NSProgressIndicator + NSScrollView + LinkingEditor + NSMenuItem + NSWindow + WordCountToken + + + + editorStatusView + EmptyView + + + field + DualField + + + mainView + ETContentView + + + multiMarkdownPreview + NSMenuItem + + + notesScrollView + AugmentedScrollView + + + notesTableView + NotesTableView + + + previewToggler + NSMenuItem + + + sparkleUpdateItem + NSMenuItem + + + statBarMenu + NSMenu + + + syncWaitPanel + NSPanel + + + syncWaitSpinner + NSProgressIndicator + + + textScrollView + NSScrollView + + + textView + LinkingEditor + + + textilePreview + NSMenuItem + + + window + NSWindow + + + wordCounter + WordCountToken + + + + IBProjectSource + ./Classes/AppController.h + + + + AugmentedScrollView + NSScrollView + + IBProjectSource + ./Classes/AugmentedScrollView.h + + + + DualField + NSTextField + + notesTable + NSTableView + + + notesTable + + notesTable + NSTableView + + + + IBProjectSource + ./Classes/DualField.h + + + + ETContentView + NSView + + IBProjectSource + ./Classes/ETContentView.h + + + + EmptyView + NSView + + labelText + NSTextField + + + labelText + + labelText + NSTextField + + + + IBProjectSource + ./Classes/EmptyView.h + + + + FirstResponder + + : + id + + + : + + : + id + + + + IBUserSource + + + + + LinkingEditor + NSTextView + + id + id + + + + shiftLeftAction: + id + + + shiftRightAction: + id + + + + NSTextField + NotesTableView + + + + controlField + NSTextField + + + notesTableView + NotesTableView + + + + IBProjectSource + ./Classes/LinkingEditor.h + + + + NotesTableView + NSTableView + + id + id + + + + actionHideShowColumn: + id + + + toggleNoteBodyPreviews: + id + + + + controlField + NSTextField + + + controlField + + controlField + NSTextField + + + + IBProjectSource + ./Classes/NotesTableView.h + + + + TagEditingManager + NSObject + + NSTextField + NSPanel + + + + tagField + NSTextField + + + tagPanel + NSPanel + + + + IBProjectSource + ./Classes/TagEditingManager.h + + + + WordCountToken + NSTokenField + + IBProjectSource + ./Classes/WordCountToken.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + YES + 3 + + diff --git a/zh.lproj/URLGetter.nib/designable.nib b/zh.lproj/URLGetter.nib/designable.nib new file mode 100644 index 00000000..8a89277b --- /dev/null +++ b/zh.lproj/URLGetter.nib/designable.nib @@ -0,0 +1,1221 @@ + + + + 1060 + 10J567 + 823 + 1038.35 + 462.00 + + com.apple.InterfaceBuilder.CocoaPlugin + 823 + + + YES + + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + + + PluginDependencyRecalculationVersion + + + + YES + + URLGetter + + + FirstResponder + + + NSApplication + + + 1 + 2 + {{566, 537}, {460, 122}} + 1886912512 + 下载进度 + + NSPanel + + + View + + {1.79769e+308, 1.79769e+308} + {213, 107} + + + 256 + + YES + + + 1282 + + {{18, 18}, {346, 20}} + + 16396 + 1 + + + + 258 + {{17, 68}, {426, 34}} + + YES + + 67239424 + 272629760 + aHR0cDovL3d3dy5hcHBsZS5jb20vQmFjb24ucGRmCuWPpuS4gOihjA + + LucidaGrande + 13 + 1044 + + + + 6 + System + controlColor + + 3 + MC42NjY2NjY2NjY3AA + + + + 6 + System + controlTextColor + + 3 + MAA + + + + + + + 258 + {{17, 43}, {326, 17}} + + YES + + 67239424 + 272629760 + 正在下载: 90KB of 25MB + + STHeitiTC-Light + 11 + 16 + + + + + + + + + 256 + {{364, 12}, {82, 32}} + + YES + + 67239424 + 134217728 + 取消 + + + -2038284033 + 1 + + + + + + 200 + 25 + + + + {460, 122} + + + {{0, 0}, {1920, 1178}} + {213, 129} + {1.79769e+308, 1.79769e+308} + + + + + YES + + + progress + + + + 335 + + + + progressStatus + + + + 336 + + + + objectURLStatus + + + + 337 + + + + cancelButton + + + + 338 + + + + window + + + + 339 + + + + cancelDownload: + + + + 340 + + + + + YES + + 0 + + YES + + + + + + -2 + + + File's Owner + + + -1 + + + First Responder + + + 328 + + + YES + + + + Panel + + + 329 + + + YES + + + + + + + + + 331 + + + + + 332 + + + YES + + + + + + 333 + + + YES + + + + + + 334 + + + YES + + + + + + 342 + + + + + 343 + + + + + 344 + + + + + -3 + + + Application + + + + + YES + + YES + -3.IBPluginDependency + 328.IBEditorWindowLastContentRect + 328.IBPluginDependency + 328.IBPropertyAccessControl + 328.IBWindowTemplateEditedContentRect + 328.ImportedFromIB2 + 328.windowTemplate.hasMinSize + 328.windowTemplate.minSize + 329.IBPluginDependency + 329.ImportedFromIB2 + 331.IBPluginDependency + 331.IBPropertyAccessControl + 331.ImportedFromIB2 + 332.IBPluginDependency + 332.IBPropertyAccessControl + 332.ImportedFromIB2 + 333.IBPluginDependency + 333.IBPropertyAccessControl + 333.ImportedFromIB2 + 334.IBPluginDependency + 334.IBPropertyAccessControl + 334.ImportedFromIB2 + 342.IBPluginDependency + 343.IBPluginDependency + 344.IBPluginDependency + + + YES + com.apple.InterfaceBuilder.CocoaPlugin + {{485, 552}, {460, 122}} + com.apple.InterfaceBuilder.CocoaPlugin + + {{485, 552}, {460, 122}} + + + {213, 107} + com.apple.InterfaceBuilder.CocoaPlugin + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + + + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + com.apple.InterfaceBuilder.CocoaPlugin + + + + YES + + + YES + + + + + YES + + + YES + + + + 344 + + + + YES + + FirstResponder + NSObject + + : + id + + + : + + : + id + + + + IBUserSource + + + + + NSObject + + IBProjectSource + BookmarksController.h + + + + NSObject + + IBProjectSource + GlobalPrefs.h + + + + NSObject + + IBProjectSource + NotationController.h + + + + NSObject + + IBProjectSource + NotationFileManager.h + + + + NSObject + + IBProjectSource + NoteObject.h + + + + NSObject + + IBProjectSource + PassphrasePicker.h + + + + NSObject + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + RBSplitView + RBSplitView + + + + YES + + YES + didAdjustSubviews: + willAdjustSubviews: + + + YES + + didAdjustSubviews: + RBSplitView + + + willAdjustSubviews: + RBSplitView + + + + + IBProjectSource + RBSplitView/RBSplitView.h + + + + NSObject + + IBProjectSource + SyncResponseFetcher.h + + + + NSObject + + IBProjectSource + SyncServiceSessionProtocol.h + + + + RBSplitSubview + NSView + + IBProjectSource + RBSplitView/RBSplitSubview.h + + + + RBSplitSubview + + IBProjectSource + RBSplitView/RBSplitViewPrivateDefines.h + + + + RBSplitView + RBSplitSubview + + delegate + id + + + delegate + + delegate + id + + + + + + RBSplitView + + + + URLGetter + NSObject + + YES + + YES + cancelDownload: + startProgressIndication: + + + YES + id + id + + + + YES + + YES + cancelDownload: + startProgressIndication: + + + YES + + cancelDownload: + id + + + startProgressIndication: + id + + + + + YES + + YES + cancelButton + delegate + objectURLStatus + progress + progressStatus + userData + window + + + YES + NSButton + id + NSTextField + NSProgressIndicator + NSTextField + id + NSPanel + + + + YES + + YES + cancelButton + delegate + objectURLStatus + progress + progressStatus + userData + window + + + YES + + cancelButton + NSButton + + + delegate + id + + + objectURLStatus + NSTextField + + + progress + NSProgressIndicator + + + progressStatus + NSTextField + + + userData + id + + + window + NSPanel + + + + + IBProjectSource + URLGetter.h + + + + URLGetter + NSObject + + IBUserSource + + + + + + YES + + NSActionCell + NSCell + + IBFrameworkSource + AppKit.framework/Headers/NSActionCell.h + + + + NSApplication + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSApplication.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSApplicationScripting.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSColorPanel.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSHelpManager.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSPageLayout.h + + + + NSApplication + + IBFrameworkSource + AppKit.framework/Headers/NSUserInterfaceItemSearching.h + + + + NSButton + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSButton.h + + + + NSButtonCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSButtonCell.h + + + + NSCell + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSCell.h + + + + NSControl + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSControl.h + + + + NSFormatter + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFormatter.h + + + + NSMenu + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSMenu.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSAccessibility.h + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDictionaryController.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSDragging.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontManager.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSFontPanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSKeyValueBinding.h + + + + NSObject + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSNibLoading.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSOutlineView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSPasteboard.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSSavePanel.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSTableView.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSToolbarItem.h + + + + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSView.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSError.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSFileManager.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyValueObserving.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSKeyedArchiver.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObject.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSObjectScripting.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSPortCoder.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSRunLoop.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptClassDescription.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptKeyValueCoding.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptObjectSpecifiers.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSScriptWhoseTests.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSThread.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURL.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLConnection.h + + + + NSObject + + IBFrameworkSource + Foundation.framework/Headers/NSURLDownload.h + + + + NSObject + + IBFrameworkSource + PrintCore.framework/Headers/PDEPluginInterface.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFAuthorizationView.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFCertificatePanel.h + + + + NSObject + + IBFrameworkSource + SecurityInterface.framework/Headers/SFChooseIdentityPanel.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUAppcast.h + + + + NSObject + + IBFrameworkSource + Sparkle.framework/Headers/SUUpdater.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebDownload.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebEditingDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebFrameLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebJavaPlugIn.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPlugin.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPluginContainer.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebPolicyDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebResourceLoadDelegate.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebScriptObject.h + + + + NSObject + + IBFrameworkSource + WebKit.framework/Headers/WebUIDelegate.h + + + + NSPanel + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSPanel.h + + + + NSProgressIndicator + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSProgressIndicator.h + + + + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSInterfaceStyle.h + + + + NSResponder + NSObject + + IBFrameworkSource + AppKit.framework/Headers/NSResponder.h + + + + NSTextField + NSControl + + IBFrameworkSource + AppKit.framework/Headers/NSTextField.h + + + + NSTextFieldCell + NSActionCell + + IBFrameworkSource + AppKit.framework/Headers/NSTextFieldCell.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSClipView.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSMenuItem.h + + + + NSView + + IBFrameworkSource + AppKit.framework/Headers/NSRulerView.h + + + + NSView + NSResponder + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSDrawer.h + + + + NSWindow + NSResponder + + IBFrameworkSource + AppKit.framework/Headers/NSWindow.h + + + + NSWindow + + IBFrameworkSource + AppKit.framework/Headers/NSWindowScripting.h + + + + + 0 + IBCocoaFramework + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.macosx + + + + com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 + + + YES + ../Notation.xcodeproj + 3 + + diff --git a/zh.lproj/URLGetter.nib/keyedobjects.nib b/zh.lproj/URLGetter.nib/keyedobjects.nib new file mode 100644 index 00000000..4db1782e Binary files /dev/null and b/zh.lproj/URLGetter.nib/keyedobjects.nib differ