├── .gitignore ├── BetterDictionary.xcodeproj └── project.pbxproj ├── BetterDictionary ├── BetterDictionary-Info.plist ├── BetterDictionary-Prefix.pch ├── BetterDictionary.h ├── BetterDictionary.m ├── DebugLog.h ├── DebugLog.m ├── Dictionary+Automator.icns ├── Dictionary+Automator.png ├── Dictionary.icns ├── Dictionary.png ├── DrawerController.h ├── DrawerController.m ├── NSAttributedString+Hyperlink.h ├── NSAttributedString+Hyperlink.m ├── NSObjectAdditions.h ├── NSObjectAdditions.m ├── NSView+ExploreViews.h ├── NSView+ExploreViews.m ├── add.png ├── add@2x.png ├── en.lproj │ └── InfoPlist.strings ├── remove.png ├── remove@2x.png ├── sidebar-dark.png ├── sidebar-dark@2x.png ├── sidebar-light.png └── sidebar-light@2x.png ├── Headers ├── Dictionary.app headers │ ├── Leopard │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── BrowserWindowTabView.h │ │ ├── CDStructures.h │ │ ├── DSAXIgnoredSplitView.h │ │ ├── DSDictionaryObj.h │ │ ├── DSDictionaryProtocol-Protocol.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableColumn.h │ │ ├── DSIndexTableView.h │ │ ├── DelayedMenuSegmentedCell.h │ │ ├── DelayedMenuSegmentedControl.h │ │ ├── DictionaryBook.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryController.h │ │ ├── DictionaryConverter.h │ │ ├── DictionaryFilterButton.h │ │ ├── DictionaryFilterView.h │ │ ├── DictionaryFoundIndexItem.h │ │ ├── DictionaryFoundRecords.h │ │ ├── DictionaryRecord.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionaryWebView.h │ │ ├── DragDropArrayController.h │ │ ├── EmbossedTextField.h │ │ ├── EmbossedTextFieldCell.h │ │ ├── GetURLScriptCommand.h │ │ ├── IDXDictionaryObj.h │ │ ├── ImageWindowController.h │ │ ├── MetalTabHeaderView.h │ │ ├── MetalTabLabelView.h │ │ ├── NSAppleEventDescriptor-CocoaExtensions.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSNumber-_SlidingExtras.h │ │ ├── NSSearchField-DictionaryServiceExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSView-_SlidingExtras.h │ │ ├── NSWorkspace-CocoaExtensions.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── OnlineDictionaryObj.h │ │ ├── OnlineDictionaryRecord.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── SlidingAnimation.h │ │ ├── SlidingView.h │ │ ├── TextAccessibilityObj.h │ │ ├── WebAccessibilityObj.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WebWrapScrollView.h │ │ ├── WikipediaDictionaryObj.h │ │ ├── WikipediaDictionaryRecord.h │ │ ├── WikipediaIndexLookupController.h │ │ ├── WikipediaIndexLookupURLConnection.h │ │ └── WikipediaLanguageHandler.h │ ├── Lion │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── CDStructures.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexHeaderCell.h │ │ ├── DSIndexSplitView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableView.h │ │ ├── DSShadowOverlay.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryBrowserWindow.h │ │ ├── DictionaryController.h │ │ ├── DictionaryObj.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionaryScopeBar.h │ │ ├── DictionaryScopeBarButton.h │ │ ├── DictionarySearchField.h │ │ ├── DictionarySearchFieldCell.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionarySearchOperation.h │ │ ├── DictionaryWebView.h │ │ ├── DictionaryWindowTitleCell.h │ │ ├── DragDropArrayController.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSSpellChecker-MyExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSTableViewDataSource-Protocol.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WikipediaAPIRequester.h │ │ └── WikipediaDictionaryObj.h │ ├── Mavericks │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── CDStructures.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexSplitView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableView.h │ │ ├── DSShadowOverlay.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryBrowserWindow.h │ │ ├── DictionaryController.h │ │ ├── DictionaryHistory.h │ │ ├── DictionaryHistoryDelegate-Protocol.h │ │ ├── DictionaryHistoryItem.h │ │ ├── DictionaryObj.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionaryScopeBar.h │ │ ├── DictionaryScopeBarButton.h │ │ ├── DictionarySearchField.h │ │ ├── DictionarySearchFieldCell.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionarySearchOperation.h │ │ ├── DictionaryWebView.h │ │ ├── DictionaryWindowTitleCell.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSPageControllerDelegate-Protocol.h │ │ ├── NSSpellChecker-MyExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── SnapbackButtonCell.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WebWrapScrollView.h │ │ ├── WikipediaAPIRequester.h │ │ └── WikipediaDictionaryObj.h │ ├── Mountain Lion │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── CDStructures.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexHeaderCell.h │ │ ├── DSIndexSplitView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableView.h │ │ ├── DSShadowOverlay.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryBrowserWindow.h │ │ ├── DictionaryController.h │ │ ├── DictionaryHistory.h │ │ ├── DictionaryHistoryDelegate-Protocol.h │ │ ├── DictionaryHistoryItem.h │ │ ├── DictionaryObj.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionaryScopeBar.h │ │ ├── DictionaryScopeBarButton.h │ │ ├── DictionarySearchField.h │ │ ├── DictionarySearchFieldCell.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionarySearchOperation.h │ │ ├── DictionaryWebView.h │ │ ├── DictionaryWindowTitleCell.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSPageControllerDelegate-Protocol.h │ │ ├── NSSpellChecker-MyExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── SnapbackButtonCell.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WebWrapScrollView.h │ │ ├── WikipediaAPIRequester.h │ │ └── WikipediaDictionaryObj.h │ ├── Snow Leopard │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── BrowserWindowTabView.h │ │ ├── CDStructures.h │ │ ├── DSAXIgnoredSplitView.h │ │ ├── DSDictionaryObj.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableColumn.h │ │ ├── DSIndexTableView.h │ │ ├── DictionaryBook.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryController.h │ │ ├── DictionaryFilterButton.h │ │ ├── DictionaryFilterView.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionaryWebView.h │ │ ├── DragDropArrayController.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSSearchField-DictionaryServiceExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ └── WikipediaDictionaryObj.h │ └── Yosemite │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── CDStructures.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexSplitView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableView.h │ │ ├── DSShadowOverlay.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryController.h │ │ ├── DictionaryHistory.h │ │ ├── DictionaryHistoryDelegate-Protocol.h │ │ ├── DictionaryHistoryItem.h │ │ ├── DictionaryObj.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionaryScopeBar.h │ │ ├── DictionaryScopeBarButton.h │ │ ├── DictionarySearchField.h │ │ ├── DictionarySearchFieldCell.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionarySearchOperation.h │ │ ├── DictionaryWebView.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSPageControllerDelegate-Protocol.h │ │ ├── NSSpellChecker-MyExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── ScopeBarViewController.h │ │ ├── SnapbackButtonCell.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WebWrapScrollView.h │ │ ├── WikipediaAPIRequester.h │ │ └── WikipediaDictionaryObj.h └── Lookup.framework headers │ └── Mountain Lion │ ├── CDStructures.h │ ├── LUAccessibilityTextAccessor.h │ ├── LUBingImagesModule.h │ ├── LUColorView.h │ ├── LUConfiguration.h │ ├── LUDictionaryServicesModule.h │ ├── LUExtractor.h │ ├── LUGoogleImagesModule.h │ ├── LUImageCellInaccessible.h │ ├── LUImageInfo.h │ ├── LUImageView.h │ ├── LUImagesModule.h │ ├── LULookupDefinitionModule.h │ ├── LUModule.h │ ├── LUModuleHeader.h │ ├── LUModuleInfo.h │ ├── LUModuleView.h │ ├── LUNoResultsViewController.h │ ├── LUPresenter.h │ ├── LUResultsPopover.h │ ├── LUResultsTitleViewController.h │ ├── LUResultsViewController.h │ ├── LURolloverHighlight.h │ ├── LUSearchTermIndicator.h │ ├── LUTSMDocumentTextAccessor.h │ ├── LUTextAccessor.h │ ├── LUTextFieldCellInaccessible.h │ ├── LUTextInputClientTextAccessor.h │ ├── LUTextInputTextAccessor.h │ ├── LUTitleLink.h │ ├── LUWebFrameViewTextAccessor.h │ ├── LUWebKitModule.h │ ├── LUWebServicesPreferences.h │ ├── LUYahooImagesModule.h │ ├── Lookup │ ├── NSAnimationDelegate-Protocol.h │ ├── NSAttributedString-LUTextAccessor_Protected.h │ ├── NSDefinitionExternalModule-Protocol.h │ ├── NSFindIndicatorDelegate-Protocol.h │ ├── NSObject-Protocol.h │ ├── NSPopoverDelegate-Protocol.h │ ├── NSScreen-LUScreenExtensions.h │ ├── NSTextInput-Protocol.h │ ├── NSTextInputClient-Protocol.h │ ├── NSURLConnectionDelegate-Protocol.h │ └── NSWindow-LUWindowExtensions.h ├── Images ├── BetterDictionary-Lion.png ├── BetterDictionary-Mavericks.png ├── BetterDictionary-MountainLion.png ├── BetterDictionary-SnowLeopard.png ├── BetterDictionary-Yosemite.png └── EasySIMBL.png ├── Installers ├── BetterDictionary-0.95.pkg ├── BetterDictionary-0.96.pkg ├── BetterDictionary-0.97.pkg ├── BetterDictionary-0.98 │ ├── BetterDictionary-0.98.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Application Stub │ │ │ ├── Resources │ │ │ ├── AutomatorApplet.icns │ │ │ ├── Dutch.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── English.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── French.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── German.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── Italian.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── Japanese.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── SIMBL-0.9.9.pkg │ │ │ ├── Spanish.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ar.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ca.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── cs.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── da.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── el.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── fi.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── he.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── hr.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── hu.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ko.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── no.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── pl.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── pt.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── pt_PT.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ro.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ru.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── sk.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── sv.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── th.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── tr.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── uk.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── zh_CN.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ └── zh_TW.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ └── document.wflow │ ├── BetterDictionary-0.98.zip │ ├── Install Script.scpt │ └── Installer-v0.98.workflow │ │ └── Contents │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow ├── BetterDictionary-0.99 │ ├── BetterDictionary-v0.99.zip │ ├── BetterDictionary.bundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── BetterDictionary │ │ │ └── Resources │ │ │ ├── Dictionary.icns │ │ │ ├── add.png │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── remove.png │ │ │ ├── sidebar-dark.png │ │ │ └── sidebar-light.png │ └── migrate-data ├── BetterDictionary-0.991 │ ├── BetterDictionary-v0.991.zip │ └── migrate-data ├── BetterDictionary-0.992 │ ├── BetterDictionary-v0.992-macupdate.zip │ ├── BetterDictionary-v0.992.zip │ ├── Installation Guide.pages │ ├── Installation Guide.pdf │ └── migrate-data ├── SIMBL Uninstaller.zip └── SIMBL-0.9.9.pkg ├── README.markdown └── Resources └── BetterDictionaryIcons.sketch /.gitignore: -------------------------------------------------------------------------------- 1 | ## 2 | ## from http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects/349129#349129 3 | ## 4 | BetterDictionary.bundle/ 5 | 6 | # Mac OS X 7 | .DS_Store 8 | 9 | 10 | # Xcode 11 | *.pbxuser 12 | *.mode1v3 13 | *.mode2v3 14 | *.perspectivev3 15 | *.xcuserstate 16 | project.xcworkspace/ 17 | xcuserdata/ 18 | 19 | # Generated files 20 | *.[oa] 21 | *.pyc 22 | *.6 23 | 6.out 24 | 25 | # Python modules 26 | MANIFEST 27 | dist/ 28 | build/ 29 | 30 | # Backup files 31 | *~.nib 32 | 33 | # Etc. 34 | *.swp 35 | build/ 36 | -------------------------------------------------------------------------------- /BetterDictionary/BetterDictionary-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'BetterDictionary' target in the 'BetterDictionary' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #define NS_BUILD_32_LIKE_64 1 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /BetterDictionary/DebugLog.h: -------------------------------------------------------------------------------- 1 | /* 2 | * DebugLog.h 3 | * DebugLog 4 | * 5 | * Created by Karl Kraft on 3/22/09. 6 | * Copyright 2009 Karl Kraft. All rights reserved. 7 | * http://www.karlkraft.com/index.php/2009/03/23/114/ 8 | * 9 | */ 10 | 11 | #define DEBUG 0 12 | 13 | #if DEBUG 14 | #define DebugLog(args...) _DebugLog(__FILE__,__LINE__,args); 15 | #else 16 | #define DebugLog(x...) 17 | #endif 18 | 19 | void _DebugLog(const char *file, int lineNumber, NSString *format,...); 20 | -------------------------------------------------------------------------------- /BetterDictionary/DebugLog.m: -------------------------------------------------------------------------------- 1 | /* 2 | * DebugLog.m 3 | * DebugLog 4 | * 5 | * Created by Karl Kraft on 3/22/09. 6 | * Copyright 2009 Karl Kraft. All rights reserved. 7 | * 8 | */ 9 | 10 | #include "DebugLog.h" 11 | 12 | void _DebugLog(const char *file, int lineNumber, NSString *format,...) { 13 | va_list ap; 14 | 15 | va_start (ap, format); 16 | if (![format hasSuffix: @"\n"]) { 17 | format = [format stringByAppendingString: @"\n"]; 18 | } 19 | NSString *body = [[NSString alloc] initWithFormat: format arguments: ap]; 20 | va_end (ap); 21 | NSString *fileName=[[NSString stringWithUTF8String:file] lastPathComponent]; 22 | fprintf(stderr,"%s:%d %s",[fileName UTF8String],lineNumber,[body UTF8String]); 23 | [body release]; 24 | } 25 | 26 | -------------------------------------------------------------------------------- /BetterDictionary/Dictionary+Automator.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/BetterDictionary/Dictionary+Automator.icns -------------------------------------------------------------------------------- /BetterDictionary/Dictionary+Automator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/BetterDictionary/Dictionary+Automator.png -------------------------------------------------------------------------------- /BetterDictionary/Dictionary.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/BetterDictionary/Dictionary.icns -------------------------------------------------------------------------------- /BetterDictionary/Dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/BetterDictionary/Dictionary.png -------------------------------------------------------------------------------- /BetterDictionary/DrawerController.h: -------------------------------------------------------------------------------- 1 | // 2 | // DrawerController.h 3 | // BetterDictionary 4 | // 5 | // Created by Pooria Azimi on 14/Nov/13. 6 | // Copyright (c) 2013 Tehran Polytechnic. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface DrawerController : NSObject { 13 | NSDrawer *drawer; 14 | } 15 | 16 | - (void)setupWithWindow:(NSWindow *)parentWindow; 17 | - (void)setContentView:(NSView *)view; 18 | 19 | - (void)openDrawer:(id)sender; 20 | - (void)closeDrawer:(id)sender; 21 | - (void)toggleDrawer:(id)sender; 22 | 23 | @property (assign) NSWindow *parentWindow; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /BetterDictionary/NSAttributedString+Hyperlink.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSAttributedString+Hyperlink.h 3 | // CloudPost 4 | // 5 | // Created by Christian Stropp on 01.09.09. 6 | // Copyright 2009 Christian S. All rights reserved. 7 | // https://github.com/ChristianS/CloudPost/blob/master/NSAttributedString-Hyperlink.h 8 | // 9 | 10 | #import 11 | 12 | @interface NSAttributedString (Hyperlink) 13 | 14 | +(id)hyperlinkFromString:(NSString*)inString withURL:(NSURL*)aURL; 15 | 16 | @end -------------------------------------------------------------------------------- /BetterDictionary/NSObjectAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSObjectAdditions.h 3 | // BetterDictionary 4 | // 5 | // Created by Pooria Azimi on 28/8/2011. 6 | // Copyright 2011-2013 Pooria Azimi. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface NSObject (NSObjectAdditions) 13 | 14 | - (id) performSelector: (SEL) selector withObject: (id) p1 15 | withObject: (id) p2 withObject: (id) p3; 16 | 17 | - (id) performSelector: (SEL) selector withObjects: (NSArray*)argumentArray; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /BetterDictionary/NSView+ExploreViews.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSView+ExploreViews.h 3 | // BetterDictionary 4 | // 5 | // Created by Pooria Azimi on 2/9/12. 6 | // 7 | // Copyright (c) 2012-2013 Pooria Azimi. All rights reserved. 8 | // 9 | 10 | #import 11 | 12 | @interface NSView (ExploreViews) 13 | 14 | - (void)exploreView; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /BetterDictionary/NSView+ExploreViews.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSView+ExploreViews.m 3 | // BetterDictionary 4 | // 5 | // Created by Pooria Azimi on 2/9/12. 6 | // 7 | // Copyright (c) 2012-2013 Pooria Azimi. All rights reserved. 8 | // 9 | 10 | #import "DebugLog.h" 11 | #import "NSView+ExploreViews.h" 12 | 13 | @implementation NSView (ExploreViews) 14 | 15 | - (void)_exploreViewAtLevel:(int)level 16 | { 17 | NSMutableString* mutableString = [[NSMutableString alloc] init]; 18 | 19 | for (int i=0; i 14 | { 15 | NSTableView *_tableView; 16 | } 17 | 18 | - (void)awakeFromNib; 19 | - (BOOL)tableView:(id)arg1 writeRowsWithIndexes:(id)arg2 toPasteboard:(id)arg3; 20 | - (unsigned long long)tableView:(id)arg1 validateDrop:(id)arg2 proposedRow:(long long)arg3 proposedDropOperation:(unsigned long long)arg4; 21 | - (BOOL)tableView:(id)arg1 acceptDrop:(id)arg2 row:(long long)arg3 dropOperation:(unsigned long long)arg4; 22 | - (void)_moveObjectsInArrangedObjectsFromIndexes:(id)arg1 toIndex:(unsigned long long)arg2; 23 | - (id)_rowsFromIndexSet:(id)arg1; 24 | - (id)_indexSetFromRows:(id)arg1; 25 | - (long long)_rowsAboveRow:(long long)arg1 inIndexSet:(id)arg2; 26 | 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/FakeRecordForResume.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @class DictionaryObj; 10 | 11 | @interface FakeRecordForResume : NSObject 12 | { 13 | DictionaryObj *_dictionaryObj; 14 | } 15 | 16 | - (id)initWithDictionaryIdentifier:(id)arg1; 17 | - (void)dealloc; 18 | - (id)anchor; 19 | - (id)dictionary; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/GetURLScriptCommand.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSScriptCommand.h" 8 | 9 | @interface GetURLScriptCommand : NSScriptCommand 10 | { 11 | } 12 | 13 | - (id)performDefaultImplementation; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/ImageWindowController.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSWindowController.h" 8 | 9 | @class DSImageView, NSURL, NSWindow; 10 | 11 | @interface ImageWindowController : NSWindowController 12 | { 13 | DSImageView *_imageView; 14 | NSURL *_imageURL; 15 | NSWindow *_parentWindow; 16 | BOOL _positioningWindow; 17 | BOOL _zoomingWindow; 18 | } 19 | 20 | + (id)createImageWindowForURL:(id)arg1 withTitle:(id)arg2 fromWindow:(id)arg3; 21 | + (void)setDefaultImageSize:(struct CGSize)arg1; 22 | - (BOOL)setImageURL:(id)arg1 andTitle:(id)arg2; 23 | - (void)dealloc; 24 | - (void)windowWillClose:(id)arg1; 25 | - (void)windowDidMove:(id)arg1; 26 | - (void)windowWillMiniaturize:(id)arg1; 27 | - (void)windowDidDeminiaturize:(id)arg1; 28 | - (BOOL)windowShouldZoom:(id)arg1 toFrame:(struct CGRect)arg2; 29 | - (void)_setParentWindow:(id)arg1; 30 | - (void)_positionWindow; 31 | - (BOOL)_tryToLocateWindow:(struct CGRect *)arg1 withLastParentFrame:(struct CGRect)arg2 preferVerticalAlign:(BOOL)arg3 strictly:(BOOL)arg4; 32 | 33 | @end 34 | 35 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSArray.h" 8 | 9 | @interface NSArray (CocoaExtensions) 10 | - (id)arrayByCommonWith:(id)arg1; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSNumber.h" 8 | 9 | @interface NSNumber (CocoaExtensions) 10 | + (id)numberWithFourCharCode:(unsigned int)arg1; 11 | - (unsigned int)fourCharCodeValue; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSObject-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | @protocol NSObject 8 | - (BOOL)isEqual:(id)arg1; 9 | - (unsigned long long)hash; 10 | - (Class)superclass; 11 | - (Class)class; 12 | - (id)self; 13 | - (struct _NSZone *)zone; 14 | - (id)performSelector:(SEL)arg1; 15 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2; 16 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2 withObject:(id)arg3; 17 | - (BOOL)isProxy; 18 | - (BOOL)isKindOfClass:(Class)arg1; 19 | - (BOOL)isMemberOfClass:(Class)arg1; 20 | - (BOOL)conformsToProtocol:(id)arg1; 21 | - (BOOL)respondsToSelector:(SEL)arg1; 22 | - (id)retain; 23 | - (oneway void)release; 24 | - (id)autorelease; 25 | - (unsigned long long)retainCount; 26 | - (id)description; 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSSpellChecker-MyExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSSpellChecker.h" 8 | 9 | @interface NSSpellChecker (MyExtensions) 10 | + (id)threadSafeSharedSpellChecker; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSString.h" 8 | 9 | @interface NSString (CocoaExtensions) 10 | + (id)stringWithFourCharCode:(unsigned int)arg1; 11 | - (unsigned int)fourCharCodeValue; 12 | - (id)attributedStringForTruncation:(unsigned long long)arg1; 13 | - (unsigned long long)commonPrefixLength:(id)arg1; 14 | - (id)normalizedKey; 15 | - (long long)normalizedKeyCompare:(id)arg1; 16 | - (long long)normalizedKeyCompare:(id)arg1 range:(struct _NSRange)arg2; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSXMLDocument.h" 8 | 9 | @interface NSXMLDocument (DictionaryServiceExtensions) 10 | + (id)documentWithMalformedXMLString:(id)arg1; 11 | - (id)initWithMalformedXMLString:(id)arg1; 12 | - (id)objectByApplyingXSLTForMainPage:(id)arg1; 13 | - (id)objectByApplyingXSLTForDictionary:(id)arg1; 14 | - (id)objectByApplyingXSLTForDictionary:(id)arg1 arguments:(id)arg2 fallback:(BOOL)arg3; 15 | - (id)objectByApplyingDefaultXSLTWithArguments:(id)arg1; 16 | - (void)specifyDefaultScript; 17 | - (void)appendGlobalDictionaryIDs; 18 | - (void)specifyCSS:(int)arg1 forDictionary:(id)arg2; 19 | - (BOOL)embedDictionaryContents:(id)arg1; 20 | - (void)embedDictionaryLinkForRecords:(id)arg1 targetFile:(id)arg2; 21 | - (void)adjustForDictionary:(id)arg1 newDictionary:(BOOL)arg2 relativePathTargets:(id)arg3; 22 | - (id)stringsForElement:(id)arg1; 23 | - (id)_fixupMalformedXMLString:(id)arg1; 24 | - (id)_cachedURL:(unsigned int)arg1 forDictionary:(id)arg2; 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTableView.h" 8 | 9 | @interface PrefDictionaryTableView : NSTableView 10 | { 11 | } 12 | 13 | - (void)rightMouseDown:(id)arg1; 14 | - (id)menuForEvent:(id)arg1; 15 | - (void)_editDictionaryLabel:(id)arg1; 16 | - (void)_revertDictionaryLabel:(id)arg1; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "WebDocumentText-Protocol.h" 8 | 9 | @protocol WebDocumentSelection 10 | - (id)pasteboardTypesForSelection; 11 | - (void)writeSelectionWithPasteboardTypes:(id)arg1 toPasteboard:(id)arg2; 12 | - (id)selectionTextRects; 13 | - (struct CGRect)selectionRect; 14 | - (id)selectionImageForcingBlackText:(BOOL)arg1; 15 | - (struct CGRect)selectionImageRect; 16 | - (id)selectionView; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol WebDocumentText 10 | - (BOOL)supportsTextEncoding; 11 | - (id)string; 12 | - (id)attributedString; 13 | - (id)selectedString; 14 | - (id)selectedAttributedString; 15 | - (void)selectAll; 16 | - (void)deselectAll; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "WebView.h" 8 | 9 | @interface WebView (DictionaryExtensions) 10 | - (void)setScrollersConfigWithSize:(unsigned long long)arg1; 11 | - (BOOL)processKeyCommand:(SEL)arg1; 12 | - (BOOL)hasSelection; 13 | - (id)webFrameHasSelection; 14 | - (BOOL)jumpToSelection; 15 | - (id)selectedString; 16 | - (struct CGRect)selectionScreenRect; 17 | - (double)scrollPositionFromTopOfPage; 18 | - (void)setScrollPositionToOffsetInPage:(double)arg1; 19 | - (void)setAllowAnimationScroll:(BOOL)arg1; 20 | - (void)forceLayoutAllFrames; 21 | - (BOOL)frameIsVisible:(id)arg1; 22 | - (BOOL)frameIsValid:(id)arg1; 23 | - (id)longestTermAtLocation:(struct CGPoint)arg1 domRange:(id *)arg2; 24 | - (BOOL)isLocation:(struct CGPoint)arg1 inDOMRange:(id)arg2; 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/CDStructures.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #pragma mark Named Structures 8 | 9 | struct CGPoint { 10 | double x; 11 | double y; 12 | }; 13 | 14 | struct CGRect { 15 | struct CGPoint origin; 16 | struct CGSize size; 17 | }; 18 | 19 | struct CGSize { 20 | double width; 21 | double height; 22 | }; 23 | 24 | struct _NSRange { 25 | unsigned long long _field1; 26 | unsigned long long _field2; 27 | }; 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSFindPanelController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSPanel, NSTextField; 10 | 11 | @interface DSFindPanelController : NSObject 12 | { 13 | NSPanel *_findPanel; 14 | NSTextField *_findTextField; 15 | NSTextField *_statusTextField; 16 | BOOL _notificationRegistered; 17 | } 18 | 19 | - (void)_applicationDidBecomeActive:(id)arg1; 20 | - (BOOL)validateMenuItem:(id)arg1; 21 | - (void)_findOnDirection:(BOOL)arg1; 22 | - (void)jumpToSelection:(id)arg1; 23 | - (void)enterSelection:(id)arg1; 24 | - (void)findPrevious:(id)arg1; 25 | - (void)findNext:(id)arg1; 26 | - (void)showFindPanel:(id)arg1; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSImageView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSImageView.h" 8 | 9 | @interface DSImageView : NSImageView 10 | { 11 | } 12 | 13 | - (BOOL)acceptsFirstResponder; 14 | - (BOOL)acceptsFirstMouse:(id)arg1; 15 | - (void)viewDidEndLiveResize; 16 | - (void)drawRect:(struct CGRect)arg1; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSIndexSplitView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSSplitView.h" 8 | 9 | @interface DSIndexSplitView : NSSplitView 10 | { 11 | } 12 | 13 | - (id)accessibilityAttributeValue:(id)arg1; 14 | - (id)dividerColor; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSIndexTableCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSTextFieldCell.h" 8 | 9 | @interface DSIndexTableCell : NSTextFieldCell 10 | { 11 | } 12 | 13 | + (id)_simplifiedChineseAttrWithBaseFont:(id)arg1 forPinyin:(BOOL)arg2; 14 | - (id)_boldedAttributedStringForBaseString:(id)arg1; 15 | - (id)_myAttributedStringValueWithController:(id)arg1 forTopLabel:(BOOL)arg2; 16 | - (void)drawInteriorWithFrame:(struct CGRect)arg1 inView:(id)arg2; 17 | - (void)drawWithExpansionFrame:(struct CGRect)arg1 inView:(id)arg2; 18 | - (struct CGRect)expansionFrameWithFrame:(struct CGRect)arg1 inView:(id)arg2; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSIndexTableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSTableView.h" 8 | 9 | @interface DSIndexTableView : NSTableView 10 | { 11 | BOOL _showingSpellCorrectedWords; 12 | } 13 | 14 | @property BOOL showingSpellCorrectedWords; // @synthesize showingSpellCorrectedWords=_showingSpellCorrectedWords; 15 | - (void)highlightSelectionInClipRect:(struct CGRect)arg1; 16 | - (void)drawBackgroundInClipRect:(struct CGRect)arg1; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSShadowOverlay.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSView.h" 8 | 9 | @class NSGradient; 10 | 11 | @interface DSShadowOverlay : NSView 12 | { 13 | NSGradient *_gradient; 14 | double _angle; 15 | } 16 | 17 | @property double angle; // @synthesize angle=_angle; 18 | @property(retain) NSGradient *gradient; // @synthesize gradient=_gradient; 19 | - (void)dealloc; 20 | - (void)drawRect:(struct CGRect)arg1; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSApplication.h" 8 | 9 | @class NSString, NSURL; 10 | 11 | @interface DictionaryBrowserApp : NSApplication 12 | { 13 | NSURL *_pendedLaunchURL; 14 | NSString *_pendedLaunchString; 15 | NSString *_pendedDictionaryPath; 16 | } 17 | 18 | - (void)_handleURLEvent:(id)arg1 withReplyEvent:(id)arg2; 19 | - (void)sendEvent:(id)arg1; 20 | - (void)preprocessEvent:(id)arg1; 21 | - (void)processPendedURLRequest; 22 | - (void)handleURLRequest:(id)arg1; 23 | - (void)processPendedStringRequest; 24 | - (void)handleStringRequest:(id)arg1 inDictionaryPath:(id)arg2; 25 | - (BOOL)hasPendedRequest; 26 | - (void)finishLaunching; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryBrowserWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSWindow.h" 8 | 9 | @class DictionaryWindowTitleCell, NSString; 10 | 11 | @interface DictionaryBrowserWindow : NSWindow 12 | { 13 | NSString *_dictionaryName; 14 | DictionaryWindowTitleCell *_customTitleCell; 15 | } 16 | 17 | @property(retain) NSString *dictionaryName; // @synthesize dictionaryName=_dictionaryName; 18 | - (id)_customTitleCell; 19 | - (void)dealloc; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryHistoryDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class DictionaryHistoryItem; 10 | 11 | @protocol DictionaryHistoryDelegate 12 | - (void)dictionaryHistoryDidEndLiveTransitionWithCancelled:(BOOL)arg1; 13 | - (void)dictionaryHistoryWillStartLiveTransition; 14 | - (BOOL)needStopTransitionBeforeUpdate; 15 | - (void)dictionaryHistorySelectedIndexDidChanged; 16 | - (void)displayDictionaryHistory:(DictionaryHistoryItem *)arg1; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryRecord.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSString; 10 | 11 | @interface DictionaryRecord : NSObject 12 | { 13 | struct __DCSRecord *_recordRef; 14 | NSString *_additionalAnchor; 15 | BOOL _guessed; 16 | } 17 | 18 | @property BOOL guessed; // @synthesize guessed=_guessed; 19 | - (struct __DCSRecord *)_DCSRecordRef; 20 | - (id)description; 21 | - (id)contentsForStyle:(long long)arg1; 22 | - (id)dataURLForStyle:(long long)arg1; 23 | - (id)subDictionary; 24 | - (id)parentDictionary; 25 | - (id)dictionary; 26 | - (id)anchor; 27 | - (void)setAnchor:(id)arg1; 28 | - (id)title; 29 | - (id)rawHeadword; 30 | - (void)setHeadword:(id)arg1; 31 | - (id)headword; 32 | - (id)keyword; 33 | - (void)dealloc; 34 | - (id)initWithDCSRecordRef:(struct __DCSRecord *)arg1; 35 | 36 | @end 37 | 38 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryRecordArray.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSArray.h" 8 | 9 | @class NSMutableArray; 10 | 11 | @interface DictionaryRecordArray : NSArray 12 | { 13 | struct __CFArray *_originalArray; 14 | NSMutableArray *_objShadowOwner; 15 | } 16 | 17 | - (id)_shadowArray; 18 | - (struct __CFArray *)_originalArray; 19 | - (id)copyWithZone:(struct _NSZone *)arg1; 20 | - (id)objectAtIndex:(unsigned long long)arg1; 21 | - (unsigned long long)count; 22 | - (void)dealloc; 23 | - (void)addRecordsFromRecordArray:(id)arg1; 24 | - (id)initWithNSArray:(id)arg1; 25 | - (id)initWithCFArray:(struct __CFArray *)arg1; 26 | 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryScopeBarButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSButton.h" 8 | 9 | @class NSMenu; 10 | 11 | @interface DictionaryScopeBarButton : NSButton 12 | { 13 | NSMenu *_contextMenu; 14 | id _representedObject; 15 | } 16 | 17 | @property(retain) id representedObject; // @synthesize representedObject=_representedObject; 18 | @property(retain) NSMenu *contextMenu; // @synthesize contextMenu=_contextMenu; 19 | - (id)menuForEvent:(id)arg1; 20 | - (void)dealloc; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionarySearchField.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSSearchField.h" 8 | 9 | @class NSString; 10 | 11 | @interface DictionarySearchField : NSSearchField 12 | { 13 | NSString *_searchString; 14 | long long _searchMethod; 15 | } 16 | 17 | @property long long searchMethod; // @synthesize searchMethod=_searchMethod; 18 | - (void)hideSnapbackButton; 19 | - (void)setSnapbackButtonWithTarget:(id)arg1 action:(SEL)arg2; 20 | - (void)setSearchStringValue:(id)arg1 displayString:(id)arg2 triggerSearch:(BOOL)arg3; 21 | - (id)searchStringValue; 22 | - (void)dealloc; 23 | - (void)awakeFromNib; 24 | 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionarySearchFieldCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSSearchFieldCell.h" 8 | 9 | @class DictionarySearchFieldEditor, SnapbackButtonCell; 10 | 11 | @interface DictionarySearchFieldCell : NSSearchFieldCell 12 | { 13 | DictionarySearchFieldEditor *_customEditor; 14 | SnapbackButtonCell *_snapbackButtonCell; 15 | } 16 | 17 | - (id)_snapbackCell; 18 | - (id)fieldEditorForView:(id)arg1; 19 | - (void)dealloc; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionarySearchFieldEditor.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSTextView.h" 8 | 9 | @class DictionarySearchField; 10 | 11 | @interface DictionarySearchFieldEditor : NSTextView 12 | { 13 | DictionarySearchField *_searchField; 14 | BOOL _changingTextSilently; 15 | } 16 | 17 | @property DictionarySearchField *searchField; // @synthesize searchField=_searchField; 18 | - (void)_setChangingTextSilently:(BOOL)arg1; 19 | - (BOOL)_isValidTextChange; 20 | - (void)doCommandBySelector:(SEL)arg1; 21 | - (void)didChangeText; 22 | 23 | @end 24 | 25 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryWebView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "WebView.h" 8 | 9 | @interface DictionaryWebView : WebView 10 | { 11 | BOOL _nowPrinting; 12 | BOOL _printingAllView; 13 | struct CGSize _savedFrameSize; 14 | double _savedFrameMargin; 15 | } 16 | 17 | - (void)_printOperationDidRun:(id)arg1 success:(BOOL)arg2 contextInfo:(void *)arg3; 18 | - (BOOL)lockingContentsForPrint; 19 | - (void)printContentsInFrame:(id)arg1 jobTitle:(id)arg2; 20 | - (BOOL)isOpaque; 21 | - (BOOL)isFlipped; 22 | - (void)setFrameSize:(struct CGSize)arg1; 23 | - (void)_adjustPrintingMarginsForHeaderAndFooter; 24 | 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryWindowTitleCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSCell.h" 8 | 9 | @interface DictionaryWindowTitleCell : NSCell 10 | { 11 | } 12 | 13 | - (void)drawInteriorWithFrame:(struct CGRect)arg1 inView:(id)arg2; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/FakeRecordForResume.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class DictionaryObj; 10 | 11 | @interface FakeRecordForResume : NSObject 12 | { 13 | DictionaryObj *_dictionaryObj; 14 | } 15 | 16 | - (id)dictionary; 17 | - (id)anchor; 18 | - (void)dealloc; 19 | - (id)initWithDictionaryIdentifier:(id)arg1; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/GetURLScriptCommand.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSScriptCommand.h" 8 | 9 | @interface GetURLScriptCommand : NSScriptCommand 10 | { 11 | } 12 | 13 | - (id)performDefaultImplementation; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSArray.h" 8 | 9 | @interface NSArray (CocoaExtensions) 10 | - (id)arrayByCommonWith:(id)arg1; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSNumber.h" 8 | 9 | @interface NSNumber (CocoaExtensions) 10 | + (id)numberWithFourCharCode:(unsigned int)arg1; 11 | - (unsigned int)fourCharCodeValue; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSObject-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | @class NSString, Protocol; 8 | 9 | @protocol NSObject 10 | - (NSString *)description; 11 | - (unsigned long long)retainCount; 12 | - (id)autorelease; 13 | - (oneway void)release; 14 | - (id)retain; 15 | - (BOOL)respondsToSelector:(SEL)arg1; 16 | - (BOOL)conformsToProtocol:(Protocol *)arg1; 17 | - (BOOL)isMemberOfClass:(Class)arg1; 18 | - (BOOL)isKindOfClass:(Class)arg1; 19 | - (BOOL)isProxy; 20 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2 withObject:(id)arg3; 21 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2; 22 | - (id)performSelector:(SEL)arg1; 23 | - (struct _NSZone *)zone; 24 | - (id)self; 25 | - (Class)class; 26 | - (Class)superclass; 27 | - (unsigned long long)hash; 28 | - (BOOL)isEqual:(id)arg1; 29 | 30 | @optional 31 | - (NSString *)debugDescription; 32 | @end 33 | 34 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSPageControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSPageController, NSString, NSViewController; 10 | 11 | @protocol NSPageControllerDelegate 12 | 13 | @optional 14 | - (void)pageControllerDidEndLiveTransition:(NSPageController *)arg1; 15 | - (void)pageControllerWillStartLiveTransition:(NSPageController *)arg1; 16 | - (void)pageController:(NSPageController *)arg1 didTransitionToObject:(id)arg2; 17 | - (void)pageController:(NSPageController *)arg1 prepareViewController:(NSViewController *)arg2 withObject:(id)arg3; 18 | - (struct CGRect)pageController:(NSPageController *)arg1 frameForObject:(id)arg2; 19 | - (NSViewController *)pageController:(NSPageController *)arg1 viewControllerForIdentifier:(NSString *)arg2; 20 | - (NSString *)pageController:(NSPageController *)arg1 identifierForObject:(id)arg2; 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSSpellChecker-MyExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSSpellChecker.h" 8 | 9 | @interface NSSpellChecker (MyExtensions) 10 | + (id)threadSafeSharedSpellChecker; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSString.h" 8 | 9 | @interface NSString (CocoaExtensions) 10 | + (id)stringWithFourCharCode:(unsigned int)arg1; 11 | - (long long)normalizedKeyCompare:(id)arg1 range:(struct _NSRange)arg2; 12 | - (long long)normalizedKeyCompare:(id)arg1; 13 | - (id)normalizedKey; 14 | - (unsigned long long)commonPrefixLength:(id)arg1; 15 | - (id)attributedStringForTruncation:(unsigned long long)arg1; 16 | - (unsigned int)fourCharCodeValue; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSURLConnectionDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSError, NSURLAuthenticationChallenge, NSURLConnection, NSURLProtectionSpace; 10 | 11 | @protocol NSURLConnectionDelegate 12 | 13 | @optional 14 | - (void)connection:(NSURLConnection *)arg1 didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)arg2; 15 | - (void)connection:(NSURLConnection *)arg1 didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)arg2; 16 | - (BOOL)connection:(NSURLConnection *)arg1 canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)arg2; 17 | - (void)connection:(NSURLConnection *)arg1 willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)arg2; 18 | - (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)arg1; 19 | - (void)connection:(NSURLConnection *)arg1 didFailWithError:(NSError *)arg2; 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSTableView.h" 8 | 9 | @interface PrefDictionaryTableView : NSTableView 10 | { 11 | } 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/SnapbackButtonCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSButtonCell.h" 8 | 9 | @class NSColor; 10 | 11 | @interface SnapbackButtonCell : NSButtonCell 12 | { 13 | NSColor *_tintColor; 14 | NSColor *_alternateTintColor; 15 | } 16 | 17 | @property(retain) NSColor *alternateTintColor; // @synthesize alternateTintColor=_alternateTintColor; 18 | @property(retain) NSColor *tintColor; // @synthesize tintColor=_tintColor; 19 | - (void)drawImage:(id)arg1 withFrame:(struct CGRect)arg2 inView:(id)arg3; 20 | - (void)dealloc; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "WebDocumentText.h" 8 | 9 | @class NSArray, NSImage, NSPasteboard, NSView; 10 | 11 | @protocol WebDocumentSelection 12 | - (NSView *)selectionView; 13 | - (struct CGRect)selectionImageRect; 14 | - (NSImage *)selectionImageForcingBlackText:(BOOL)arg1; 15 | - (struct CGRect)selectionRect; 16 | - (NSArray *)selectionTextRects; 17 | - (void)writeSelectionWithPasteboardTypes:(NSArray *)arg1 toPasteboard:(NSPasteboard *)arg2; 18 | - (NSArray *)pasteboardTypesForSelection; 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSAttributedString, NSString; 10 | 11 | @protocol WebDocumentText 12 | - (void)deselectAll; 13 | - (void)selectAll; 14 | - (NSAttributedString *)selectedAttributedString; 15 | - (NSString *)selectedString; 16 | - (NSAttributedString *)attributedString; 17 | - (NSString *)string; 18 | - (BOOL)supportsTextEncoding; 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "WebView.h" 8 | 9 | @interface WebView (DictionaryExtensions) 10 | - (BOOL)isLocation:(struct CGPoint)arg1 inDOMRange:(id)arg2; 11 | - (id)longestTermAtLocation:(struct CGPoint)arg1 inDictionaries:(struct __CFArray *)arg2 domRange:(id *)arg3; 12 | - (id)webFrameAtLocation:(struct CGPoint)arg1; 13 | - (struct CGPoint)frameOffset:(id)arg1; 14 | - (BOOL)frameIsValid:(id)arg1; 15 | - (BOOL)frameIsVisible:(id)arg1; 16 | - (void)forceLayoutAllFrames; 17 | - (void)setAllowAnimationScroll:(BOOL)arg1; 18 | - (void)setScrollPositionToOffsetInPage:(double)arg1; 19 | - (double)scrollPositionFromTopOfPage; 20 | - (struct CGRect)selectionScreenRect; 21 | - (id)selectedString; 22 | - (BOOL)jumpToSelection; 23 | - (id)webFrameHasSelection; 24 | - (BOOL)hasSelection; 25 | - (BOOL)processKeyCommand:(SEL)arg1; 26 | - (void)setScrollersConfigWithSize:(unsigned long long)arg1; 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WebWrapScrollView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit) (Debug version compiled Nov 14 2013 08:30:39). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSScrollView.h" 8 | 9 | @class WebView; 10 | 11 | @interface WebWrapScrollView : NSScrollView 12 | { 13 | WebView *_webview; 14 | struct CGRect _lastSmartZoomTargetRect; 15 | } 16 | 17 | - (struct CGRect)_selectionRect; 18 | - (void)_adjustInnerWebView:(BOOL)arg1; 19 | - (void)_scrollViewDidEndLiveMagnify:(id)arg1; 20 | - (void)scrollToEndOfDocument:(id)arg1; 21 | - (void)scrollToBeginningOfDocument:(id)arg1; 22 | - (void)smartMagnifyWithEvent:(id)arg1; 23 | - (void)setFrameSize:(struct CGSize)arg1; 24 | - (BOOL)jumpToSelection; 25 | - (void)scrollToOffset:(float)arg1 animate:(BOOL)arg2; 26 | - (void)setScrollPositionToOffsetInPage:(float)arg1; 27 | - (float)scrollPositionFromTopOfPage; 28 | - (void)reflectWebViewChangeWithResetScroll:(BOOL)arg1; 29 | - (BOOL)processKeyCommand:(SEL)arg1; 30 | - (void)dealloc; 31 | - (id)initAndReplaceWithWebView:(id)arg1; 32 | 33 | @end 34 | 35 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/CDStructures.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #pragma mark Named Structures 8 | 9 | struct CGPoint { 10 | double x; 11 | double y; 12 | }; 13 | 14 | struct CGRect { 15 | struct CGPoint origin; 16 | struct CGSize size; 17 | }; 18 | 19 | struct CGSize { 20 | double width; 21 | double height; 22 | }; 23 | 24 | struct _NSRange { 25 | unsigned long long _field1; 26 | unsigned long long _field2; 27 | }; 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSFindPanelController.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSPanel, NSTextField; 10 | 11 | @interface DSFindPanelController : NSObject 12 | { 13 | NSPanel *_findPanel; 14 | NSTextField *_findTextField; 15 | NSTextField *_statusTextField; 16 | BOOL _notificationRegistered; 17 | } 18 | 19 | - (void)_applicationDidBecomeActive:(id)arg1; 20 | - (BOOL)validateMenuItem:(id)arg1; 21 | - (void)_findOnDirection:(BOOL)arg1; 22 | - (void)jumpToSelection:(id)arg1; 23 | - (void)enterSelection:(id)arg1; 24 | - (void)findPrevious:(id)arg1; 25 | - (void)findNext:(id)arg1; 26 | - (void)showFindPanel:(id)arg1; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSImageView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSImageView.h" 8 | 9 | @interface DSImageView : NSImageView 10 | { 11 | } 12 | 13 | - (BOOL)acceptsFirstResponder; 14 | - (BOOL)acceptsFirstMouse:(id)arg1; 15 | - (void)viewDidEndLiveResize; 16 | - (void)drawRect:(struct CGRect)arg1; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSIndexHeaderCell.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTextFieldCell.h" 8 | 9 | @class NSTableView; 10 | 11 | @interface DSIndexHeaderCell : NSTextFieldCell 12 | { 13 | NSTableView *_relatedTableView; 14 | } 15 | 16 | @property NSTableView *relatedTableView; // @synthesize relatedTableView=_relatedTableView; 17 | - (void)drawInteriorWithFrame:(struct CGRect)arg1 inView:(id)arg2; 18 | 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSIndexSplitView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSSplitView.h" 8 | 9 | @interface DSIndexSplitView : NSSplitView 10 | { 11 | } 12 | 13 | - (id)accessibilityAttributeValue:(id)arg1; 14 | - (id)dividerColor; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSIndexTableCell.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTextFieldCell.h" 8 | 9 | @interface DSIndexTableCell : NSTextFieldCell 10 | { 11 | } 12 | 13 | + (id)_simplifiedChineseAttrWithBaseFont:(id)arg1 forPinyin:(BOOL)arg2; 14 | - (id)_boldedAttributedStringForBaseString:(id)arg1; 15 | - (id)_myAttributedStringValueWithController:(id)arg1 forTopLabel:(BOOL)arg2; 16 | - (void)drawInteriorWithFrame:(struct CGRect)arg1 inView:(id)arg2; 17 | - (void)drawWithExpansionFrame:(struct CGRect)arg1 inView:(id)arg2; 18 | - (struct CGRect)expansionFrameWithFrame:(struct CGRect)arg1 inView:(id)arg2; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSIndexTableView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTableView.h" 8 | 9 | @interface DSIndexTableView : NSTableView 10 | { 11 | BOOL _showingSpellCorrectedWords; 12 | } 13 | 14 | @property BOOL showingSpellCorrectedWords; // @synthesize showingSpellCorrectedWords=_showingSpellCorrectedWords; 15 | - (void)highlightSelectionInClipRect:(struct CGRect)arg1; 16 | - (void)drawBackgroundInClipRect:(struct CGRect)arg1; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSShadowOverlay.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSView.h" 8 | 9 | @class NSGradient; 10 | 11 | @interface DSShadowOverlay : NSView 12 | { 13 | NSGradient *_gradient; 14 | double _angle; 15 | } 16 | 17 | @property double angle; // @synthesize angle=_angle; 18 | @property(retain) NSGradient *gradient; // @synthesize gradient=_gradient; 19 | - (void)dealloc; 20 | - (void)drawRect:(struct CGRect)arg1; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSApplication.h" 8 | 9 | @class NSString, NSURL; 10 | 11 | @interface DictionaryBrowserApp : NSApplication 12 | { 13 | NSURL *_pendedLaunchURL; 14 | NSString *_pendedLaunchString; 15 | NSString *_pendedDictionaryPath; 16 | } 17 | 18 | - (void)_handleURLEvent:(id)arg1 withReplyEvent:(id)arg2; 19 | - (void)sendEvent:(id)arg1; 20 | - (void)preprocessEvent:(id)arg1; 21 | - (void)processPendedURLRequest; 22 | - (void)handleURLRequest:(id)arg1; 23 | - (void)processPendedStringRequest; 24 | - (void)handleStringRequest:(id)arg1 inDictionaryPath:(id)arg2; 25 | - (BOOL)hasPendedRequest; 26 | - (void)finishLaunching; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryBrowserWindow.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSWindow.h" 8 | 9 | @class DictionaryWindowTitleCell, NSString; 10 | 11 | @interface DictionaryBrowserWindow : NSWindow 12 | { 13 | NSString *_dictionaryName; 14 | DictionaryWindowTitleCell *_customTitleCell; 15 | } 16 | 17 | @property(retain) NSString *dictionaryName; // @synthesize dictionaryName=_dictionaryName; 18 | - (id)_customTitleCell; 19 | - (void)dealloc; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryHistoryDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol DictionaryHistoryDelegate 10 | - (void)dictionaryHistoryDidEndLiveTransitionWithCancelled:(BOOL)arg1; 11 | - (void)dictionaryHistoryWillStartLiveTransition; 12 | - (BOOL)needStopTransitionBeforeUpdate; 13 | - (void)dictionaryHistorySelectedIndexDidChanged; 14 | - (void)displayDictionaryHistory:(id)arg1; 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryHistoryItem.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSMutableDictionary, NSString; 10 | 11 | @interface DictionaryHistoryItem : NSObject 12 | { 13 | NSMutableDictionary *_contents; 14 | NSString *_linkSourceID; 15 | } 16 | 17 | + (id)historyItem; 18 | @property(copy, nonatomic) NSString *linkSourceID; // @synthesize linkSourceID=_linkSourceID; 19 | - (id)_contentDictionary; 20 | - (id)description; 21 | - (void)removeObjectForKey:(id)arg1; 22 | - (BOOL)boolForKey:(id)arg1; 23 | - (double)floatForKey:(id)arg1; 24 | - (long long)integerForKey:(id)arg1; 25 | - (id)objectForKey:(id)arg1; 26 | - (void)setBool:(BOOL)arg1 forKey:(id)arg2; 27 | - (void)setFloat:(double)arg1 forKey:(id)arg2; 28 | - (void)setInteger:(long long)arg1 forKey:(id)arg2; 29 | - (void)setObject:(id)arg1 forKey:(id)arg2; 30 | - (void)replaceContentsWithItem:(id)arg1; 31 | - (BOOL)isEmptyItem; 32 | - (id)serializedData; 33 | - (void)dealloc; 34 | - (id)initWithData:(id)arg1; 35 | 36 | @end 37 | 38 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryRecord.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSString; 10 | 11 | @interface DictionaryRecord : NSObject 12 | { 13 | struct __DCSRecord *_recordRef; 14 | NSString *_additionalAnchor; 15 | BOOL _guessed; 16 | } 17 | 18 | @property BOOL guessed; // @synthesize guessed=_guessed; 19 | - (struct __DCSRecord *)_DCSRecordRef; 20 | - (id)description; 21 | - (id)contentsForStyle:(long long)arg1; 22 | - (id)dataURLForStyle:(long long)arg1; 23 | - (id)subDictionary; 24 | - (id)parentDictionary; 25 | - (id)dictionary; 26 | - (id)anchor; 27 | - (void)setAnchor:(id)arg1; 28 | - (id)title; 29 | - (id)rawHeadword; 30 | - (void)setHeadword:(id)arg1; 31 | - (id)headword; 32 | - (id)keyword; 33 | - (void)dealloc; 34 | - (id)initWithDCSRecordRef:(struct __DCSRecord *)arg1; 35 | 36 | @end 37 | 38 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryRecordArray.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSArray.h" 8 | 9 | @class NSMutableArray; 10 | 11 | @interface DictionaryRecordArray : NSArray 12 | { 13 | struct __CFArray *_originalArray; 14 | NSMutableArray *_objShadowOwner; 15 | } 16 | 17 | - (id)_shadowArray; 18 | - (struct __CFArray *)_originalArray; 19 | - (id)copyWithZone:(struct _NSZone *)arg1; 20 | - (id)objectAtIndex:(unsigned long long)arg1; 21 | - (unsigned long long)count; 22 | - (void)dealloc; 23 | - (void)addRecordsFromRecordArray:(id)arg1; 24 | - (id)initWithNSArray:(id)arg1; 25 | - (id)initWithCFArray:(struct __CFArray *)arg1; 26 | 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryScopeBarButton.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSButton.h" 8 | 9 | @class NSMenu; 10 | 11 | @interface DictionaryScopeBarButton : NSButton 12 | { 13 | NSMenu *_contextMenu; 14 | id _representedObject; 15 | } 16 | 17 | @property(retain) id representedObject; // @synthesize representedObject=_representedObject; 18 | @property(retain) NSMenu *contextMenu; // @synthesize contextMenu=_contextMenu; 19 | - (id)menuForEvent:(id)arg1; 20 | - (void)dealloc; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionarySearchField.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSSearchField.h" 8 | 9 | @class NSString; 10 | 11 | @interface DictionarySearchField : NSSearchField 12 | { 13 | NSString *_searchString; 14 | long long _searchMethod; 15 | } 16 | 17 | @property long long searchMethod; // @synthesize searchMethod=_searchMethod; 18 | - (void)hideSnapbackButton; 19 | - (void)setSnapbackButtonWithTarget:(id)arg1 action:(SEL)arg2; 20 | - (void)setSearchStringValue:(id)arg1 displayString:(id)arg2 triggerSearch:(BOOL)arg3; 21 | - (id)searchStringValue; 22 | - (void)dealloc; 23 | - (void)awakeFromNib; 24 | 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionarySearchFieldCell.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSSearchFieldCell.h" 8 | 9 | @class DictionarySearchFieldEditor, SnapbackButtonCell; 10 | 11 | @interface DictionarySearchFieldCell : NSSearchFieldCell 12 | { 13 | DictionarySearchFieldEditor *_customEditor; 14 | SnapbackButtonCell *_snapbackButtonCell; 15 | } 16 | 17 | - (id)_snapbackCell; 18 | - (id)fieldEditorForView:(id)arg1; 19 | - (void)dealloc; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionarySearchFieldEditor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTextView.h" 8 | 9 | @class DictionarySearchField; 10 | 11 | @interface DictionarySearchFieldEditor : NSTextView 12 | { 13 | DictionarySearchField *_searchField; 14 | BOOL _changingTextSilently; 15 | } 16 | 17 | @property DictionarySearchField *searchField; // @synthesize searchField=_searchField; 18 | - (void)_setChangingTextSilently:(BOOL)arg1; 19 | - (BOOL)_isValidTextChange; 20 | - (void)doCommandBySelector:(SEL)arg1; 21 | - (void)didChangeText; 22 | 23 | @end 24 | 25 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryWebView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "WebView.h" 8 | 9 | @interface DictionaryWebView : WebView 10 | { 11 | BOOL _nowPrinting; 12 | BOOL _printingAllView; 13 | struct CGSize _savedFrameSize; 14 | double _savedFrameMargin; 15 | } 16 | 17 | - (void)_printOperationDidRun:(id)arg1 success:(BOOL)arg2 contextInfo:(void *)arg3; 18 | - (BOOL)lockingContentsForPrint; 19 | - (void)printContentsInFrame:(id)arg1 jobTitle:(id)arg2; 20 | - (BOOL)isFlipped; 21 | - (void)setFrameSize:(struct CGSize)arg1; 22 | - (void)_adjustPrintingMarginsForHeaderAndFooter; 23 | 24 | @end 25 | 26 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryWindowTitleCell.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSCell.h" 8 | 9 | @interface DictionaryWindowTitleCell : NSCell 10 | { 11 | } 12 | 13 | - (void)drawInteriorWithFrame:(struct CGRect)arg1 inView:(id)arg2; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/FakeRecordForResume.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @class DictionaryObj; 10 | 11 | @interface FakeRecordForResume : NSObject 12 | { 13 | DictionaryObj *_dictionaryObj; 14 | } 15 | 16 | - (id)dictionary; 17 | - (id)anchor; 18 | - (void)dealloc; 19 | - (id)initWithDictionaryIdentifier:(id)arg1; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/GetURLScriptCommand.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSScriptCommand.h" 8 | 9 | @interface GetURLScriptCommand : NSScriptCommand 10 | { 11 | } 12 | 13 | - (id)performDefaultImplementation; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSArray.h" 8 | 9 | @interface NSArray (CocoaExtensions) 10 | - (id)arrayByCommonWith:(id)arg1; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSNumber.h" 8 | 9 | @interface NSNumber (CocoaExtensions) 10 | + (id)numberWithFourCharCode:(unsigned int)arg1; 11 | - (unsigned int)fourCharCodeValue; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSObject-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | @protocol NSObject 8 | - (id)description; 9 | - (unsigned long long)retainCount; 10 | - (id)autorelease; 11 | - (oneway void)release; 12 | - (id)retain; 13 | - (BOOL)respondsToSelector:(SEL)arg1; 14 | - (BOOL)conformsToProtocol:(id)arg1; 15 | - (BOOL)isMemberOfClass:(Class)arg1; 16 | - (BOOL)isKindOfClass:(Class)arg1; 17 | - (BOOL)isProxy; 18 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2 withObject:(id)arg3; 19 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2; 20 | - (id)performSelector:(SEL)arg1; 21 | - (struct _NSZone *)zone; 22 | - (id)self; 23 | - (Class)class; 24 | - (Class)superclass; 25 | - (unsigned long long)hash; 26 | - (BOOL)isEqual:(id)arg1; 27 | 28 | @optional 29 | - (id)debugDescription; 30 | @end 31 | 32 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSPageControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol NSPageControllerDelegate 10 | 11 | @optional 12 | - (void)pageControllerDidEndLiveTransition:(id)arg1; 13 | - (void)pageControllerWillStartLiveTransition:(id)arg1; 14 | - (void)pageController:(id)arg1 didTransitionToObject:(id)arg2; 15 | - (void)pageController:(id)arg1 prepareViewController:(id)arg2 withObject:(id)arg3; 16 | - (struct CGRect)pageController:(id)arg1 frameForObject:(id)arg2; 17 | - (id)pageController:(id)arg1 viewControllerForIdentifier:(id)arg2; 18 | - (id)pageController:(id)arg1 identifierForObject:(id)arg2; 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSSpellChecker-MyExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSSpellChecker.h" 8 | 9 | @interface NSSpellChecker (MyExtensions) 10 | + (id)threadSafeSharedSpellChecker; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSString.h" 8 | 9 | @interface NSString (CocoaExtensions) 10 | + (id)stringWithFourCharCode:(unsigned int)arg1; 11 | - (long long)normalizedKeyCompare:(id)arg1 range:(struct _NSRange)arg2; 12 | - (long long)normalizedKeyCompare:(id)arg1; 13 | - (id)normalizedKey; 14 | - (unsigned long long)commonPrefixLength:(id)arg1; 15 | - (id)attributedStringForTruncation:(unsigned long long)arg1; 16 | - (unsigned int)fourCharCodeValue; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSURLConnectionDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol NSURLConnectionDelegate 10 | 11 | @optional 12 | - (void)connection:(id)arg1 didCancelAuthenticationChallenge:(id)arg2; 13 | - (void)connection:(id)arg1 didReceiveAuthenticationChallenge:(id)arg2; 14 | - (BOOL)connection:(id)arg1 canAuthenticateAgainstProtectionSpace:(id)arg2; 15 | - (void)connection:(id)arg1 willSendRequestForAuthenticationChallenge:(id)arg2; 16 | - (BOOL)connectionShouldUseCredentialStorage:(id)arg1; 17 | - (void)connection:(id)arg1 didFailWithError:(id)arg2; 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSXMLDocument.h" 8 | 9 | @interface NSXMLDocument (DictionaryServiceExtensions) 10 | + (id)documentWithMalformedXMLString:(id)arg1; 11 | - (id)_cachedURL:(unsigned int)arg1 forDictionary:(id)arg2; 12 | - (id)_fixupMalformedXMLString:(id)arg1; 13 | - (id)stringsForElement:(id)arg1; 14 | - (void)adjustForDictionary:(id)arg1 newDictionary:(BOOL)arg2 relativePathTargets:(id)arg3; 15 | - (void)embedDictionaryLinkForRecords:(id)arg1 targetFile:(id)arg2; 16 | - (BOOL)embedDictionaryContents:(id)arg1; 17 | - (void)specifyCSS:(int)arg1 forDictionary:(id)arg2; 18 | - (void)appendGlobalDictionaryIDs; 19 | - (void)specifyDefaultScript; 20 | - (id)objectByApplyingDefaultXSLTWithArguments:(id)arg1; 21 | - (id)objectByApplyingXSLTForDictionary:(id)arg1 arguments:(id)arg2 fallback:(BOOL)arg3; 22 | - (id)objectByApplyingXSLTForDictionary:(id)arg1; 23 | - (id)objectByApplyingXSLTForMainPage:(id)arg1; 24 | - (id)initWithMalformedXMLString:(id)arg1; 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTableView.h" 8 | 9 | @interface PrefDictionaryTableView : NSTableView 10 | { 11 | } 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/SnapbackButtonCell.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSButtonCell.h" 8 | 9 | @class NSColor; 10 | 11 | @interface SnapbackButtonCell : NSButtonCell 12 | { 13 | NSColor *_tintColor; 14 | NSColor *_alternateTintColor; 15 | } 16 | 17 | @property(retain) NSColor *alternateTintColor; // @synthesize alternateTintColor=_alternateTintColor; 18 | @property(retain) NSColor *tintColor; // @synthesize tintColor=_tintColor; 19 | - (void)drawImage:(id)arg1 withFrame:(struct CGRect)arg2 inView:(id)arg3; 20 | - (void)dealloc; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "WebDocumentText-Protocol.h" 8 | 9 | @protocol WebDocumentSelection 10 | - (id)selectionView; 11 | - (struct CGRect)selectionImageRect; 12 | - (id)selectionImageForcingBlackText:(BOOL)arg1; 13 | - (struct CGRect)selectionRect; 14 | - (id)selectionTextRects; 15 | - (void)writeSelectionWithPasteboardTypes:(id)arg1 toPasteboard:(id)arg2; 16 | - (id)pasteboardTypesForSelection; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol WebDocumentText 10 | - (void)deselectAll; 11 | - (void)selectAll; 12 | - (id)selectedAttributedString; 13 | - (id)selectedString; 14 | - (id)attributedString; 15 | - (id)string; 16 | - (BOOL)supportsTextEncoding; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "WebView.h" 8 | 9 | @interface WebView (DictionaryExtensions) 10 | - (BOOL)isLocation:(struct CGPoint)arg1 inDOMRange:(id)arg2; 11 | - (id)longestTermAtLocation:(struct CGPoint)arg1 inDictionaries:(struct __CFArray *)arg2 domRange:(id *)arg3; 12 | - (id)webFrameAtLocation:(struct CGPoint)arg1; 13 | - (struct CGPoint)frameOffset:(id)arg1; 14 | - (BOOL)frameIsValid:(id)arg1; 15 | - (BOOL)frameIsVisible:(id)arg1; 16 | - (void)forceLayoutAllFrames; 17 | - (void)setAllowAnimationScroll:(BOOL)arg1; 18 | - (void)setScrollPositionToOffsetInPage:(double)arg1; 19 | - (double)scrollPositionFromTopOfPage; 20 | - (struct CGRect)selectionScreenRect; 21 | - (id)selectedString; 22 | - (BOOL)jumpToSelection; 23 | - (id)webFrameHasSelection; 24 | - (BOOL)hasSelection; 25 | - (BOOL)processKeyCommand:(SEL)arg1; 26 | - (void)setScrollersConfigWithSize:(unsigned long long)arg1; 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WebWrapScrollView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSScrollView.h" 8 | 9 | @class WebView; 10 | 11 | @interface WebWrapScrollView : NSScrollView 12 | { 13 | WebView *_webview; 14 | struct CGRect _lastSmartZoomTargetRect; 15 | } 16 | 17 | - (struct CGRect)_selectionRect; 18 | - (void)_adjustInnerWebView:(BOOL)arg1; 19 | - (void)_scrollViewDidEndLiveMagnify:(id)arg1; 20 | - (void)scrollToEndOfDocument:(id)arg1; 21 | - (void)scrollToBeginningOfDocument:(id)arg1; 22 | - (void)smartMagnifyWithEvent:(id)arg1; 23 | - (void)setFrameSize:(struct CGSize)arg1; 24 | - (BOOL)jumpToSelection; 25 | - (void)scrollToOffset:(float)arg1 animate:(BOOL)arg2; 26 | - (void)setScrollPositionToOffsetInPage:(float)arg1; 27 | - (float)scrollPositionFromTopOfPage; 28 | - (void)reflectWebViewChangeWithResetScroll:(BOOL)arg1; 29 | - (BOOL)processKeyCommand:(SEL)arg1; 30 | - (void)dealloc; 31 | - (id)initAndReplaceWithWebView:(id)arg1; 32 | 33 | @end 34 | 35 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/BrowserWindowTabView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTabView.h" 8 | 9 | @interface BrowserWindowTabView : NSTabView 10 | { 11 | } 12 | 13 | - (BOOL)acceptsFirstResponder; 14 | - (BOOL)canBecomeKeyView; 15 | - (BOOL)accessibilityIsIgnored; 16 | - (id)accessibilityAttributeValue:(id)arg1; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/CDStructures.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #pragma mark Named Structures 8 | 9 | struct CGPoint { 10 | double x; 11 | double y; 12 | }; 13 | 14 | struct CGRect { 15 | struct CGPoint origin; 16 | struct CGSize size; 17 | }; 18 | 19 | struct CGSize { 20 | double width; 21 | double height; 22 | }; 23 | 24 | struct _NSRange { 25 | unsigned long long _field1; 26 | unsigned long long _field2; 27 | }; 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSAXIgnoredSplitView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSSplitView.h" 8 | 9 | @interface DSAXIgnoredSplitView : NSSplitView 10 | { 11 | } 12 | 13 | - (id)accessibilityChildrenAttribute; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSFindPanelController.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSPanel, NSTextField; 10 | 11 | @interface DSFindPanelController : NSObject 12 | { 13 | NSPanel *_findPanel; 14 | NSTextField *_findTextField; 15 | NSTextField *_statusTextField; 16 | BOOL _notificationRegistered; 17 | } 18 | 19 | - (void)showFindPanel:(id)arg1; 20 | - (void)findNext:(id)arg1; 21 | - (void)findPrevious:(id)arg1; 22 | - (void)enterSelection:(id)arg1; 23 | - (void)jumpToSelection:(id)arg1; 24 | - (void)_findOnDirection:(BOOL)arg1; 25 | - (BOOL)validateMenuItem:(id)arg1; 26 | - (void)_applicationDidBecomeActive:(id)arg1; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSImageView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSImageView.h" 8 | 9 | @interface DSImageView : NSImageView 10 | { 11 | } 12 | 13 | - (void)drawRect:(struct CGRect)arg1; 14 | - (void)viewDidEndLiveResize; 15 | - (BOOL)acceptsFirstMouse:(id)arg1; 16 | - (BOOL)acceptsFirstResponder; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSIndexTableCell.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSCell.h" 8 | 9 | @class NSDictionary; 10 | 11 | @interface DSIndexTableCell : NSCell 12 | { 13 | NSDictionary *_attribute; 14 | } 15 | 16 | - (void)drawInteriorWithFrame:(struct CGRect)arg1 inView:(id)arg2; 17 | - (void)setFont:(id)arg1; 18 | - (id)copyWithZone:(struct _NSZone *)arg1; 19 | - (void)dealloc; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSIndexTableColumn.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTableColumn.h" 8 | 9 | @class DSIndexTableCell; 10 | 11 | @interface DSIndexTableColumn : NSTableColumn 12 | { 13 | DSIndexTableCell *_topLabelCell; 14 | } 15 | 16 | - (id)dataCellForRow:(long long)arg1; 17 | - (void)dealloc; 18 | 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSIndexTableView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTableView.h" 8 | 9 | @interface DSIndexTableView : NSTableView 10 | { 11 | } 12 | 13 | - (BOOL)acceptsFirstResponder; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSApplication.h" 8 | 9 | @class NSString, NSURL; 10 | 11 | @interface DictionaryBrowserApp : NSApplication 12 | { 13 | NSURL *_pendedLaunchURL; 14 | NSString *_pendedLaunchString; 15 | NSString *_pendedDictionaryPath; 16 | } 17 | 18 | - (void)finishLaunching; 19 | - (BOOL)hasPendedRequest; 20 | - (void)handleStringRequest:(id)arg1 inDictionaryPath:(id)arg2; 21 | - (void)processPendedStringRequest; 22 | - (void)handleURLRequest:(id)arg1; 23 | - (void)processPendedURLRequest; 24 | - (void)preprocessEvent:(id)arg1; 25 | - (void)sendEvent:(id)arg1; 26 | - (void)_handleURLEvent:(id)arg1 withReplyEvent:(id)arg2; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryFilterButton.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSButton.h" 8 | 9 | @class NSMenu; 10 | 11 | @interface DictionaryFilterButton : NSButton 12 | { 13 | NSMenu *_contextMenu; 14 | } 15 | 16 | - (void)dealloc; 17 | - (id)menuForEvent:(id)arg1; 18 | - (void)setContextMenu:(id)arg1; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryRecord.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSString; 10 | 11 | @interface DictionaryRecord : NSObject 12 | { 13 | struct __DCSRecord *_recordRef; 14 | NSString *_additionalAnchor; 15 | unsigned char _censorFlag; 16 | } 17 | 18 | - (id)initWithDCSRecordRef:(struct __DCSRecord *)arg1; 19 | - (void)dealloc; 20 | - (id)keyword; 21 | - (id)headword; 22 | - (id)rawHeadword; 23 | - (id)title; 24 | - (void)setAnchor:(id)arg1; 25 | - (id)anchor; 26 | - (id)dictionary; 27 | - (id)parentDictionary; 28 | - (id)subDictionary; 29 | - (id)dataURL; 30 | - (id)contentsForStyle:(long long)arg1; 31 | - (struct __DCSRecord *)_DCSRecordRef; 32 | @property unsigned char censorFlag; // @synthesize censorFlag=_censorFlag; 33 | 34 | @end 35 | 36 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryRecordArray.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSArray.h" 8 | 9 | @class NSMutableArray; 10 | 11 | @interface DictionaryRecordArray : NSArray 12 | { 13 | struct __CFArray *_originalArray; 14 | NSMutableArray *_objShadowOwner; 15 | } 16 | 17 | - (id)initWithCFArray:(struct __CFArray *)arg1; 18 | - (id)initWithNSArray:(id)arg1; 19 | - (void)addObjectsFromRecordArray:(id)arg1; 20 | - (void)dealloc; 21 | - (unsigned long long)count; 22 | - (id)objectAtIndex:(unsigned long long)arg1; 23 | - (id)copyWithZone:(struct _NSZone *)arg1; 24 | - (struct __CFArray *)_originalArray; 25 | - (id)_shadowArray; 26 | 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryWebView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "WebView.h" 8 | 9 | @interface DictionaryWebView : WebView 10 | { 11 | BOOL _nowPrinting; 12 | BOOL _printingAllView; 13 | struct CGSize _savedFrameSize; 14 | double _savedFrameMargin; 15 | } 16 | 17 | - (void)_adjustPrintingMarginsForHeaderAndFooter; 18 | - (void)setFrameSize:(struct CGSize)arg1; 19 | - (void)printContentsInFrame:(id)arg1 jobTitle:(id)arg2; 20 | - (BOOL)lockingContentsForPrint; 21 | - (void)_printOperationDidRun:(id)arg1 success:(BOOL)arg2 contextInfo:(void *)arg3; 22 | 23 | @end 24 | 25 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DragDropArrayController.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSArrayController.h" 8 | 9 | @class NSTableView; 10 | 11 | @interface DragDropArrayController : NSArrayController 12 | { 13 | NSTableView *_tableView; 14 | } 15 | 16 | - (void)awakeFromNib; 17 | - (BOOL)tableView:(id)arg1 writeRowsWithIndexes:(id)arg2 toPasteboard:(id)arg3; 18 | - (unsigned long long)tableView:(id)arg1 validateDrop:(id)arg2 proposedRow:(long long)arg3 proposedDropOperation:(unsigned long long)arg4; 19 | - (BOOL)tableView:(id)arg1 acceptDrop:(id)arg2 row:(long long)arg3 dropOperation:(unsigned long long)arg4; 20 | - (void)_moveObjectsInArrangedObjectsFromIndexes:(id)arg1 toIndex:(unsigned long long)arg2; 21 | - (id)_rowsFromIndexSet:(id)arg1; 22 | - (id)_indexSetFromRows:(id)arg1; 23 | - (long long)_rowsAboveRow:(long long)arg1 inIndexSet:(id)arg2; 24 | 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/FakeRecordForResume.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @class DSDictionaryObj; 10 | 11 | @interface FakeRecordForResume : NSObject 12 | { 13 | DSDictionaryObj *_dictionaryObj; 14 | } 15 | 16 | - (id)initWithDictionaryIdentifier:(id)arg1; 17 | - (void)dealloc; 18 | - (id)anchor; 19 | - (id)dictionary; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/GetURLScriptCommand.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSScriptCommand.h" 8 | 9 | @interface GetURLScriptCommand : NSScriptCommand 10 | { 11 | } 12 | 13 | - (id)performDefaultImplementation; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSArray.h" 8 | 9 | @interface NSArray (CocoaExtensions) 10 | - (id)arrayByCommonWith:(id)arg1; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSNumber.h" 8 | 9 | @interface NSNumber (CocoaExtensions) 10 | + (id)numberWithFourCharCode:(unsigned int)arg1; 11 | - (unsigned int)fourCharCodeValue; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSObject-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | @protocol NSObject 8 | - (BOOL)isEqual:(id)arg1; 9 | - (unsigned long long)hash; 10 | - (Class)superclass; 11 | - (Class)class; 12 | - (id)self; 13 | - (struct _NSZone *)zone; 14 | - (id)performSelector:(SEL)arg1; 15 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2; 16 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2 withObject:(id)arg3; 17 | - (BOOL)isProxy; 18 | - (BOOL)isKindOfClass:(Class)arg1; 19 | - (BOOL)isMemberOfClass:(Class)arg1; 20 | - (BOOL)conformsToProtocol:(id)arg1; 21 | - (BOOL)respondsToSelector:(SEL)arg1; 22 | - (id)retain; 23 | - (oneway void)release; 24 | - (id)autorelease; 25 | - (unsigned long long)retainCount; 26 | - (id)description; 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSSearchField-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSSearchField.h" 8 | 9 | @interface NSSearchField (DictionaryServiceExtensions) 10 | + (id)_snapbackCell; 11 | - (void)setSnapbackButtonWithTarget:(id)arg1 action:(SEL)arg2; 12 | - (void)hideSnapbackButton; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSString.h" 8 | 9 | @interface NSString (CocoaExtensions) 10 | + (id)stringWithFourCharCode:(unsigned int)arg1; 11 | - (unsigned int)fourCharCodeValue; 12 | - (id)attributedStringForTruncation:(unsigned long long)arg1; 13 | - (unsigned long long)commonPrefixLength:(id)arg1; 14 | - (id)normalizedKey; 15 | - (long long)normalizedKeyCompare:(id)arg1; 16 | - (long long)normalizedKeyCompare:(id)arg1 range:(struct _NSRange)arg2; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSXMLDocument.h" 8 | 9 | @interface NSXMLDocument (DictionaryServiceExtensions) 10 | + (id)documentWithMalformedXMLString:(id)arg1; 11 | - (id)initWithMalformedXMLString:(id)arg1; 12 | - (id)objectByApplyingXSLTForMainPage:(id)arg1; 13 | - (id)objectByApplyingXSLTForDictionary:(id)arg1; 14 | - (id)objectByApplyingXSLTForDictionary:(id)arg1 arguments:(id)arg2 fallback:(BOOL)arg3; 15 | - (id)objectByApplyingDefaultXSLTWithArguments:(id)arg1; 16 | - (id)objectByApplyingXSLTForParentalControl:(id)arg1; 17 | - (void)specifyCSS:(int)arg1 forDictionary:(id)arg2; 18 | - (BOOL)embedDictionaryContents:(id)arg1; 19 | - (void)embedDictionaryLinkForRecords:(id)arg1 targetFile:(id)arg2; 20 | - (void)adjustForDictionary:(id)arg1 newDictionary:(BOOL)arg2 relativePathTargets:(id)arg3; 21 | - (id)stringsForElement:(id)arg1; 22 | - (id)_fixupMalformedXMLString:(id)arg1; 23 | - (id)_cachedURL:(unsigned int)arg1 forDictionary:(id)arg2; 24 | @end 25 | 26 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTableView.h" 8 | 9 | @interface PrefDictionaryTableView : NSTableView 10 | { 11 | } 12 | 13 | - (void)rightMouseDown:(id)arg1; 14 | - (id)menuForEvent:(id)arg1; 15 | - (void)_editDictionaryLabel:(id)arg1; 16 | - (void)_revertDictionaryLabel:(id)arg1; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "WebDocumentText-Protocol.h" 8 | 9 | @protocol WebDocumentSelection 10 | - (id)pasteboardTypesForSelection; 11 | - (void)writeSelectionWithPasteboardTypes:(id)arg1 toPasteboard:(id)arg2; 12 | - (id)selectionTextRects; 13 | - (struct CGRect)selectionRect; 14 | - (id)selectionImageForcingBlackText:(BOOL)arg1; 15 | - (struct CGRect)selectionImageRect; 16 | - (id)selectionView; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol WebDocumentText 10 | - (BOOL)supportsTextEncoding; 11 | - (id)string; 12 | - (id)attributedString; 13 | - (id)selectedString; 14 | - (id)selectedAttributedString; 15 | - (void)selectAll; 16 | - (void)deselectAll; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "WebView.h" 8 | 9 | @interface WebView (DictionaryExtensions) 10 | - (void)setScrollersConfigWithSize:(unsigned long long)arg1; 11 | - (BOOL)processKeyCommand:(SEL)arg1; 12 | - (BOOL)hasSelection; 13 | - (id)webFrameHasSelection; 14 | - (BOOL)jumpToSelection; 15 | - (id)selectedString; 16 | - (struct CGRect)selectionScreenRect; 17 | - (double)scrollPositionFromTopOfPage; 18 | - (void)setScrollPositionToOffsetInPage:(double)arg1; 19 | - (void)forceLayoutAllFrames; 20 | - (BOOL)frameIsVisible:(id)arg1; 21 | - (id)longestTermAtLocation:(struct CGPoint)arg1 domRange:(id *)arg2; 22 | - (BOOL)isLocation:(struct CGPoint)arg1 inDOMRange:(id)arg2; 23 | @end 24 | 25 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/CDStructures.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #pragma mark Named Structures 8 | 9 | struct CGPoint { 10 | double x; 11 | double y; 12 | }; 13 | 14 | struct CGRect { 15 | struct CGPoint origin; 16 | struct CGSize size; 17 | }; 18 | 19 | struct CGSize { 20 | double width; 21 | double height; 22 | }; 23 | 24 | struct _NSRange { 25 | unsigned long long _field1; 26 | unsigned long long _field2; 27 | }; 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSFindPanelController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSPanel, NSTextField; 10 | 11 | @interface DSFindPanelController : NSObject 12 | { 13 | NSPanel *_findPanel; 14 | NSTextField *_findTextField; 15 | NSTextField *_statusTextField; 16 | BOOL _notificationRegistered; 17 | } 18 | 19 | - (void)_applicationDidBecomeActive:(id)arg1; 20 | - (BOOL)validateMenuItem:(id)arg1; 21 | - (void)_findOnDirection:(BOOL)arg1; 22 | - (void)jumpToSelection:(id)arg1; 23 | - (void)enterSelection:(id)arg1; 24 | - (void)findPrevious:(id)arg1; 25 | - (void)findNext:(id)arg1; 26 | - (void)showFindPanel:(id)arg1; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSImageView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSImageView.h" 8 | 9 | @interface DSImageView : NSImageView 10 | { 11 | } 12 | 13 | - (BOOL)acceptsFirstResponder; 14 | - (BOOL)acceptsFirstMouse:(id)arg1; 15 | - (void)viewDidEndLiveResize; 16 | - (void)drawRect:(struct CGRect)arg1; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSIndexSplitView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSSplitView.h" 8 | 9 | @interface DSIndexSplitView : NSSplitView 10 | { 11 | } 12 | 13 | - (id)accessibilityAttributeValue:(id)arg1; 14 | - (id)dividerColor; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSIndexTableCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSTextFieldCell.h" 8 | 9 | @interface DSIndexTableCell : NSTextFieldCell 10 | { 11 | } 12 | 13 | + (id)_simplifiedChineseAttrWithBaseFont:(id)arg1 forPinyin:(BOOL)arg2; 14 | - (id)_hilightedAttributedStringForBaseString:(id)arg1 useBold:(BOOL)arg2; 15 | - (id)_myAttributedStringValueWithController:(id)arg1 forTopLabel:(BOOL)arg2; 16 | - (void)drawInteriorWithFrame:(struct CGRect)arg1 inView:(id)arg2; 17 | - (void)drawWithExpansionFrame:(struct CGRect)arg1 inView:(id)arg2; 18 | - (struct CGRect)expansionFrameWithFrame:(struct CGRect)arg1 inView:(id)arg2; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSIndexTableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSTableView.h" 8 | 9 | @interface DSIndexTableView : NSTableView 10 | { 11 | BOOL _showingSpellCorrectedWords; 12 | } 13 | 14 | @property BOOL showingSpellCorrectedWords; // @synthesize showingSpellCorrectedWords=_showingSpellCorrectedWords; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSShadowOverlay.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSView.h" 8 | 9 | @class NSGradient; 10 | 11 | @interface DSShadowOverlay : NSView 12 | { 13 | NSGradient *_gradient; 14 | double _angle; 15 | } 16 | 17 | @property double angle; // @synthesize angle=_angle; 18 | @property(retain) NSGradient *gradient; // @synthesize gradient=_gradient; 19 | - (void)dealloc; 20 | - (void)drawRect:(struct CGRect)arg1; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSApplication.h" 8 | 9 | @class NSString, NSURL; 10 | 11 | @interface DictionaryBrowserApp : NSApplication 12 | { 13 | NSURL *_pendedLaunchURL; 14 | NSString *_pendedLaunchString; 15 | NSString *_pendedDictionaryPath; 16 | } 17 | 18 | - (void)_handleURLEvent:(id)arg1 withReplyEvent:(id)arg2; 19 | - (void)sendEvent:(id)arg1; 20 | - (void)preprocessEvent:(id)arg1; 21 | - (void)processPendedURLRequest; 22 | - (void)handleURLRequest:(id)arg1; 23 | - (void)processPendedStringRequest; 24 | - (void)handleStringRequest:(id)arg1 inDictionaryPath:(id)arg2; 25 | - (BOOL)hasPendedRequest; 26 | - (void)finishLaunching; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryHistoryDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class DictionaryHistoryItem; 10 | 11 | @protocol DictionaryHistoryDelegate 12 | - (void)dictionaryHistoryDidEndLiveTransitionWithCancelled:(BOOL)arg1; 13 | - (void)dictionaryHistoryWillStartLiveTransition; 14 | - (BOOL)needStopTransitionBeforeUpdate; 15 | - (void)dictionaryHistorySelectedIndexDidChanged; 16 | - (void)displayDictionaryHistory:(DictionaryHistoryItem *)arg1; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryHistoryItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSMutableDictionary, NSString; 10 | 11 | @interface DictionaryHistoryItem : NSObject 12 | { 13 | NSMutableDictionary *_contents; 14 | NSString *_linkSourceID; 15 | } 16 | 17 | + (id)historyItem; 18 | @property(copy, nonatomic) NSString *linkSourceID; // @synthesize linkSourceID=_linkSourceID; 19 | - (id)_contentDictionary; 20 | - (id)description; 21 | - (void)removeObjectForKey:(id)arg1; 22 | - (BOOL)boolForKey:(id)arg1; 23 | - (double)floatForKey:(id)arg1; 24 | - (long long)integerForKey:(id)arg1; 25 | - (id)objectForKey:(id)arg1; 26 | - (void)setBool:(BOOL)arg1 forKey:(id)arg2; 27 | - (void)setFloat:(double)arg1 forKey:(id)arg2; 28 | - (void)setInteger:(long long)arg1 forKey:(id)arg2; 29 | - (void)setObject:(id)arg1 forKey:(id)arg2; 30 | - (void)replaceContentsWithItem:(id)arg1; 31 | - (BOOL)isEmptyItem; 32 | - (id)serializedData; 33 | - (void)dealloc; 34 | - (id)initWithData:(id)arg1; 35 | 36 | @end 37 | 38 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryRecord.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSString; 10 | 11 | @interface DictionaryRecord : NSObject 12 | { 13 | struct __DCSRecord *_recordRef; 14 | NSString *_additionalAnchor; 15 | BOOL _guessed; 16 | } 17 | 18 | @property BOOL guessed; // @synthesize guessed=_guessed; 19 | - (struct __DCSRecord *)_DCSRecordRef; 20 | - (id)description; 21 | - (id)contentsForStyle:(long long)arg1; 22 | - (id)dataURLForStyle:(long long)arg1; 23 | - (id)subDictionary; 24 | - (id)parentDictionary; 25 | - (id)dictionary; 26 | - (id)anchor; 27 | - (void)setAnchor:(id)arg1; 28 | - (id)title; 29 | - (id)rawHeadword; 30 | - (void)setHeadword:(id)arg1; 31 | - (id)headword; 32 | - (id)keyword; 33 | - (void)dealloc; 34 | - (id)initWithDCSRecordRef:(struct __DCSRecord *)arg1; 35 | 36 | @end 37 | 38 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryRecordArray.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSArray.h" 8 | 9 | @class NSMutableArray; 10 | 11 | @interface DictionaryRecordArray : NSArray 12 | { 13 | struct __CFArray *_originalArray; 14 | NSMutableArray *_objShadowOwner; 15 | } 16 | 17 | - (id)_shadowArray; 18 | - (struct __CFArray *)_originalArray; 19 | - (id)copyWithZone:(struct _NSZone *)arg1; 20 | - (id)objectAtIndex:(unsigned long long)arg1; 21 | - (unsigned long long)count; 22 | - (void)dealloc; 23 | - (void)addRecordsFromRecordArray:(id)arg1; 24 | - (id)initWithNSArray:(id)arg1; 25 | - (id)initWithCFArray:(struct __CFArray *)arg1; 26 | 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryScopeBarButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSButton.h" 8 | 9 | @class NSMenu; 10 | 11 | @interface DictionaryScopeBarButton : NSButton 12 | { 13 | NSMenu *_contextMenu; 14 | id _representedObject; 15 | } 16 | 17 | @property(retain) id representedObject; // @synthesize representedObject=_representedObject; 18 | @property(retain) NSMenu *contextMenu; // @synthesize contextMenu=_contextMenu; 19 | - (BOOL)shouldSetFontSmoothingBackgroundColor; 20 | - (id)menuForEvent:(id)arg1; 21 | - (void)dealloc; 22 | 23 | @end 24 | 25 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionarySearchField.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSSearchField.h" 8 | 9 | @class NSString; 10 | 11 | @interface DictionarySearchField : NSSearchField 12 | { 13 | NSString *_searchString; 14 | long long _searchMethod; 15 | } 16 | 17 | @property long long searchMethod; // @synthesize searchMethod=_searchMethod; 18 | - (void)hideSnapbackButton; 19 | - (void)setSnapbackButtonWithTarget:(id)arg1 action:(SEL)arg2; 20 | - (void)setSearchStringValue:(id)arg1 displayString:(id)arg2 triggerSearch:(BOOL)arg3; 21 | - (id)searchStringValue; 22 | - (void)dealloc; 23 | - (void)awakeFromNib; 24 | 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionarySearchFieldCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSSearchFieldCell.h" 8 | 9 | @class DictionarySearchFieldEditor, SnapbackButtonCell; 10 | 11 | @interface DictionarySearchFieldCell : NSSearchFieldCell 12 | { 13 | DictionarySearchFieldEditor *_customEditor; 14 | SnapbackButtonCell *_snapbackButtonCell; 15 | } 16 | 17 | - (id)_snapbackCell; 18 | - (id)fieldEditorForView:(id)arg1; 19 | - (void)dealloc; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionarySearchFieldEditor.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSTextView.h" 8 | 9 | @class DictionarySearchField; 10 | 11 | @interface DictionarySearchFieldEditor : NSTextView 12 | { 13 | DictionarySearchField *_searchField; 14 | BOOL _changingTextSilently; 15 | } 16 | 17 | @property DictionarySearchField *searchField; // @synthesize searchField=_searchField; 18 | - (void)_setChangingTextSilently:(BOOL)arg1; 19 | - (BOOL)_isValidTextChange; 20 | - (void)doCommandBySelector:(SEL)arg1; 21 | - (void)didChangeText; 22 | 23 | @end 24 | 25 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryWebView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "WebView.h" 8 | 9 | @interface DictionaryWebView : WebView 10 | { 11 | BOOL _nowPrinting; 12 | BOOL _printingAllView; 13 | struct CGSize _savedFrameSize; 14 | double _savedFrameMargin; 15 | } 16 | 17 | - (void)_printOperationDidRun:(id)arg1 success:(BOOL)arg2 contextInfo:(void *)arg3; 18 | - (BOOL)lockingContentsForPrint; 19 | - (void)printContentsInFrame:(id)arg1 jobTitle:(id)arg2; 20 | - (BOOL)isOpaque; 21 | - (BOOL)isFlipped; 22 | - (void)setFrameSize:(struct CGSize)arg1; 23 | - (void)_adjustPrintingMarginsForHeaderAndFooter; 24 | 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/FakeRecordForResume.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class DictionaryObj; 10 | 11 | @interface FakeRecordForResume : NSObject 12 | { 13 | DictionaryObj *_dictionaryObj; 14 | } 15 | 16 | - (id)dictionary; 17 | - (id)anchor; 18 | - (void)dealloc; 19 | - (id)initWithDictionaryIdentifier:(id)arg1; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/GetURLScriptCommand.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSScriptCommand.h" 8 | 9 | @interface GetURLScriptCommand : NSScriptCommand 10 | { 11 | } 12 | 13 | - (id)performDefaultImplementation; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/ImageWindowController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSWindowController.h" 8 | 9 | @class DSImageView, NSURL, NSWindow; 10 | 11 | @interface ImageWindowController : NSWindowController 12 | { 13 | DSImageView *_imageView; 14 | NSURL *_imageURL; 15 | NSWindow *_parentWindow; 16 | BOOL _positioningWindow; 17 | BOOL _zoomingWindow; 18 | } 19 | 20 | + (void)setDefaultImageSize:(struct CGSize)arg1; 21 | + (id)createImageWindowForURL:(id)arg1 withTitle:(id)arg2 fromWindow:(id)arg3; 22 | - (BOOL)_tryToLocateWindow:(struct CGRect *)arg1 withLastParentFrame:(struct CGRect)arg2 preferVerticalAlign:(BOOL)arg3 strictly:(BOOL)arg4; 23 | - (void)_positionWindow; 24 | - (void)_setParentWindow:(id)arg1; 25 | - (BOOL)windowShouldZoom:(id)arg1 toFrame:(struct CGRect)arg2; 26 | - (void)windowDidDeminiaturize:(id)arg1; 27 | - (void)windowWillMiniaturize:(id)arg1; 28 | - (void)windowDidMove:(id)arg1; 29 | - (void)windowWillClose:(id)arg1; 30 | - (void)dealloc; 31 | - (BOOL)setImageURL:(id)arg1 andTitle:(id)arg2; 32 | 33 | @end 34 | 35 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSArray.h" 8 | 9 | @interface NSArray (CocoaExtensions) 10 | - (id)arrayByCommonWith:(id)arg1; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSNumber.h" 8 | 9 | @interface NSNumber (CocoaExtensions) 10 | + (id)numberWithFourCharCode:(unsigned int)arg1; 11 | - (unsigned int)fourCharCodeValue; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSObject-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | @class NSString, Protocol; 8 | 9 | @protocol NSObject 10 | @property(readonly, copy) NSString *description; 11 | @property(readonly) Class superclass; 12 | @property(readonly) unsigned long long hash; 13 | - (struct _NSZone *)zone; 14 | - (unsigned long long)retainCount; 15 | - (id)autorelease; 16 | - (oneway void)release; 17 | - (id)retain; 18 | - (BOOL)respondsToSelector:(SEL)arg1; 19 | - (BOOL)conformsToProtocol:(Protocol *)arg1; 20 | - (BOOL)isMemberOfClass:(Class)arg1; 21 | - (BOOL)isKindOfClass:(Class)arg1; 22 | - (BOOL)isProxy; 23 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2 withObject:(id)arg3; 24 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2; 25 | - (id)performSelector:(SEL)arg1; 26 | - (id)self; 27 | - (Class)class; 28 | - (BOOL)isEqual:(id)arg1; 29 | 30 | @optional 31 | @property(readonly, copy) NSString *debugDescription; 32 | @end 33 | 34 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSPageControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSPageController, NSString, NSViewController; 10 | 11 | @protocol NSPageControllerDelegate 12 | 13 | @optional 14 | - (void)pageControllerDidEndLiveTransition:(NSPageController *)arg1; 15 | - (void)pageControllerWillStartLiveTransition:(NSPageController *)arg1; 16 | - (void)pageController:(NSPageController *)arg1 didTransitionToObject:(id)arg2; 17 | - (void)pageController:(NSPageController *)arg1 prepareViewController:(NSViewController *)arg2 withObject:(id)arg3; 18 | - (struct CGRect)pageController:(NSPageController *)arg1 frameForObject:(id)arg2; 19 | - (NSViewController *)pageController:(NSPageController *)arg1 viewControllerForIdentifier:(NSString *)arg2; 20 | - (NSString *)pageController:(NSPageController *)arg1 identifierForObject:(id)arg2; 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSSpellChecker-MyExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSSpellChecker.h" 8 | 9 | @interface NSSpellChecker (MyExtensions) 10 | + (id)threadSafeSharedSpellChecker; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSString.h" 8 | 9 | @interface NSString (CocoaExtensions) 10 | + (id)stringWithFourCharCode:(unsigned int)arg1; 11 | - (long long)normalizedKeyCompare:(id)arg1 range:(struct _NSRange)arg2; 12 | - (long long)normalizedKeyCompare:(id)arg1; 13 | - (id)normalizedKey; 14 | - (unsigned long long)commonPrefixLength:(id)arg1; 15 | - (id)attributedStringForTruncation:(unsigned long long)arg1; 16 | - (unsigned int)fourCharCodeValue; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSURLConnectionDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSError, NSURLAuthenticationChallenge, NSURLConnection, NSURLProtectionSpace; 10 | 11 | @protocol NSURLConnectionDelegate 12 | 13 | @optional 14 | - (void)connection:(NSURLConnection *)arg1 didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)arg2; 15 | - (void)connection:(NSURLConnection *)arg1 didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)arg2; 16 | - (BOOL)connection:(NSURLConnection *)arg1 canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)arg2; 17 | - (void)connection:(NSURLConnection *)arg1 willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)arg2; 18 | - (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)arg1; 19 | - (void)connection:(NSURLConnection *)arg1 didFailWithError:(NSError *)arg2; 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSXMLDocument.h" 8 | 9 | @interface NSXMLDocument (DictionaryServiceExtensions) 10 | + (id)documentWithMalformedXMLString:(id)arg1; 11 | - (id)_cachedURL:(unsigned int)arg1 forDictionary:(id)arg2; 12 | - (id)_fixupMalformedXMLString:(id)arg1; 13 | - (id)stringsForElement:(id)arg1; 14 | - (void)adjustForDictionary:(id)arg1 newDictionary:(BOOL)arg2 relativePathTargets:(id)arg3; 15 | - (void)embedDictionaryLinkForRecords:(id)arg1 targetFile:(id)arg2; 16 | - (BOOL)embedDictionaryContents:(id)arg1; 17 | - (void)specifyCSS:(int)arg1 forDictionary:(id)arg2; 18 | - (void)appendGlobalDictionaryIDs; 19 | - (void)specifyDefaultScript; 20 | - (id)objectByApplyingDefaultXSLTWithArguments:(id)arg1; 21 | - (id)objectByApplyingXSLTForDictionary:(id)arg1 arguments:(id)arg2 fallback:(BOOL)arg3; 22 | - (id)objectByApplyingXSLTForDictionary:(id)arg1; 23 | - (id)objectByApplyingXSLTForMainPage:(id)arg1; 24 | - (id)initWithMalformedXMLString:(id)arg1; 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSTableView.h" 8 | 9 | @interface PrefDictionaryTableView : NSTableView 10 | { 11 | } 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/ScopeBarViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSTitlebarAccessoryViewController.h" 8 | 9 | @class DictionaryScopeBar, NSView; 10 | 11 | @interface ScopeBarViewController : NSTitlebarAccessoryViewController 12 | { 13 | NSView *_outerView; 14 | DictionaryScopeBar *_scopeBarView; 15 | } 16 | 17 | @property(retain) DictionaryScopeBar *scopeBarView; // @synthesize scopeBarView=_scopeBarView; 18 | - (void)dealloc; 19 | - (void)awakeFromNib; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/SnapbackButtonCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSButtonCell.h" 8 | 9 | @class NSColor; 10 | 11 | @interface SnapbackButtonCell : NSButtonCell 12 | { 13 | NSColor *_tintColor; 14 | NSColor *_alternateTintColor; 15 | } 16 | 17 | @property(retain) NSColor *alternateTintColor; // @synthesize alternateTintColor=_alternateTintColor; 18 | @property(retain) NSColor *tintColor; // @synthesize tintColor=_tintColor; 19 | - (void)drawImage:(id)arg1 withFrame:(struct CGRect)arg2 inView:(id)arg3; 20 | - (void)dealloc; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "WebDocumentText.h" 8 | 9 | @class NSArray, NSImage, NSPasteboard, NSView; 10 | 11 | @protocol WebDocumentSelection 12 | - (NSView *)selectionView; 13 | - (struct CGRect)selectionImageRect; 14 | - (NSImage *)selectionImageForcingBlackText:(BOOL)arg1; 15 | - (struct CGRect)selectionRect; 16 | - (NSArray *)selectionTextRects; 17 | - (void)writeSelectionWithPasteboardTypes:(NSArray *)arg1 toPasteboard:(NSPasteboard *)arg2; 18 | - (NSArray *)pasteboardTypesForSelection; 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSAttributedString, NSString; 10 | 11 | @protocol WebDocumentText 12 | - (void)deselectAll; 13 | - (void)selectAll; 14 | - (NSAttributedString *)selectedAttributedString; 15 | - (NSString *)selectedString; 16 | - (NSAttributedString *)attributedString; 17 | - (NSString *)string; 18 | - (BOOL)supportsTextEncoding; 19 | @end 20 | 21 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "WebView.h" 8 | 9 | @interface WebView (DictionaryExtensions) 10 | - (BOOL)isLocation:(struct CGPoint)arg1 inDOMRange:(id)arg2; 11 | - (id)longestTermAtLocation:(struct CGPoint)arg1 inDictionaries:(struct __CFArray *)arg2 domRange:(id *)arg3; 12 | - (id)webFrameAtLocation:(struct CGPoint)arg1; 13 | - (struct CGPoint)frameOffset:(id)arg1; 14 | - (BOOL)frameIsValid:(id)arg1; 15 | - (BOOL)frameIsVisible:(id)arg1; 16 | - (void)forceLayoutAllFrames; 17 | - (void)setAllowAnimationScroll:(BOOL)arg1; 18 | - (void)setScrollPositionToOffsetInPage:(double)arg1; 19 | - (double)scrollPositionFromTopOfPage; 20 | - (struct CGRect)selectionScreenRect; 21 | - (id)selectedString; 22 | - (BOOL)jumpToSelection; 23 | - (id)webFrameHasSelection; 24 | - (BOOL)hasSelection; 25 | - (BOOL)processKeyCommand:(SEL)arg1; 26 | - (void)setScrollersConfigWithSize:(unsigned long long)arg1; 27 | @end 28 | 29 | -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WebWrapScrollView.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated by class-dump 3.5 (64 bit). 3 | // 4 | // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard. 5 | // 6 | 7 | #import "NSScrollView.h" 8 | 9 | @class WebView; 10 | 11 | @interface WebWrapScrollView : NSScrollView 12 | { 13 | WebView *_webview; 14 | struct CGRect _lastSmartZoomTargetRect; 15 | } 16 | 17 | - (struct CGRect)_selectionRect; 18 | - (void)_adjustInnerWebView:(BOOL)arg1; 19 | - (void)_scrollViewDidEndLiveMagnify:(id)arg1; 20 | - (void)scrollToEndOfDocument:(id)arg1; 21 | - (void)scrollToBeginningOfDocument:(id)arg1; 22 | - (void)smartMagnifyWithEvent:(id)arg1; 23 | - (void)setFrameSize:(struct CGSize)arg1; 24 | - (BOOL)jumpToSelection; 25 | - (void)scrollToOffset:(float)arg1 animate:(BOOL)arg2; 26 | - (void)setScrollPositionToOffsetInPage:(float)arg1; 27 | - (float)scrollPositionFromTopOfPage; 28 | - (void)reflectWebViewChangeWithResetScroll:(BOOL)arg1; 29 | - (BOOL)processKeyCommand:(SEL)arg1; 30 | - (void)dealloc; 31 | - (void)setupWebView:(id)arg1; 32 | 33 | @end 34 | 35 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/CDStructures.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #pragma mark Named Structures 8 | 9 | struct CGPoint { 10 | double x; 11 | double y; 12 | }; 13 | 14 | struct CGRect { 15 | struct CGPoint origin; 16 | struct CGSize size; 17 | }; 18 | 19 | struct CGSize { 20 | double width; 21 | double height; 22 | }; 23 | 24 | struct _NSRange { 25 | unsigned long long _field1; 26 | unsigned long long _field2; 27 | }; 28 | 29 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUAccessibilityTextAccessor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @interface LUAccessibilityTextAccessor : LUTextAccessor 10 | { 11 | id _accessibilityElement; 12 | } 13 | 14 | + (BOOL)canAccessTextInView:(id)arg1; 15 | + (BOOL)canAccessTextAtLocation:(struct CGPoint)arg1; 16 | @property(retain) id accessibilityElement; // @synthesize accessibilityElement=_accessibilityElement; 17 | - (id)termForRange:(struct _NSRange)arg1 textOrigin:(struct CGPoint *)arg2 language:(id *)arg3 partOfSpeech:(id *)arg4; 18 | - (id)_termAndTextOrigin:(struct CGPoint *)arg1 language:(id *)arg2 partOfSpeech:(id *)arg3; 19 | - (id)_termAtLocation:(struct CGPoint)arg1 textOrigin:(struct CGPoint *)arg2 language:(id *)arg3 partOfSpeech:(id *)arg4; 20 | - (id)initWithView:(id)arg1; 21 | - (id)initWithLocation:(struct CGPoint)arg1; 22 | - (void)dealloc; 23 | 24 | @end 25 | 26 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUBingImagesModule.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @class NSMutableSet; 10 | 11 | @interface LUBingImagesModule : LUImagesModule 12 | { 13 | unsigned long long _duplicates; 14 | unsigned long long _queryOffset; 15 | NSMutableSet *_imageURLs; 16 | } 17 | 18 | @property(retain) NSMutableSet *imageURLs; // @synthesize imageURLs=_imageURLs; 19 | @property unsigned long long queryOffset; // @synthesize queryOffset=_queryOffset; 20 | @property unsigned long long duplicates; // @synthesize duplicates=_duplicates; 21 | - (unsigned long long)maxSimultaneousDownloads; 22 | - (unsigned long long)maxThumbnails; 23 | - (id)thumbnailHeaders; 24 | - (id)queryHeaders; 25 | - (id)moreURL; 26 | - (void)lookupSearchTerm; 27 | - (void)setSearchTerm:(id)arg1 language:(id)arg2 partOfSpeech:(id)arg3; 28 | - (id)providerName; 29 | - (void)dealloc; 30 | - (id)init; 31 | 32 | @end 33 | 34 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUColorView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSView.h" 8 | 9 | @class NSColor; 10 | 11 | @interface LUColorView : NSView 12 | { 13 | NSColor *_color; 14 | } 15 | 16 | @property(retain) NSColor *color; // @synthesize color=_color; 17 | - (void)drawRect:(struct CGRect)arg1; 18 | - (void)dealloc; 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUDictionaryServicesModule.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @class NSSet; 10 | 11 | @interface LUDictionaryServicesModule : LUWebKitModule 12 | { 13 | struct __DCSDictionary *_dictionary; 14 | NSSet *_indexLanguages; 15 | } 16 | 17 | + (id)activeDictionaryModules:(BOOL)arg1; 18 | + (id)activeNetworkDictionaryModules; 19 | + (id)activeLocalDictionaryModules; 20 | @property(retain) NSSet *indexLanguages; // @synthesize indexLanguages=_indexLanguages; 21 | @property struct __DCSDictionary *dictionary; // @synthesize dictionary=_dictionary; 22 | - (id)moreDescription; 23 | - (id)moreURL; 24 | - (void)lookupSearchTerm; 25 | - (id)moduleName; 26 | - (BOOL)isCompact; 27 | - (BOOL)searchesNetwork; 28 | - (void)setSearchTerm:(id)arg1 language:(id)arg2 partOfSpeech:(id)arg3; 29 | - (void)dealloc; 30 | - (id)initWithDictionaryRef:(struct __DCSDictionary *)arg1; 31 | 32 | @end 33 | 34 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUExtractor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @interface LUExtractor : NSObject 10 | { 11 | } 12 | 13 | + (id)sharedExtractor; 14 | - (id)focusTermAndLocation:(struct CGPoint *)arg1 options:(id *)arg2; 15 | - (void)dealloc; 16 | - (id)init; 17 | 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUGoogleImagesModule.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @interface LUGoogleImagesModule : LUImagesModule 10 | { 11 | } 12 | 13 | - (unsigned long long)maxSimultaneousDownloads; 14 | - (unsigned long long)maxThumbnails; 15 | - (id)thumbnailHeaders; 16 | - (id)queryHeaders; 17 | - (id)moreURL; 18 | - (void)setSearchTerm:(id)arg1 language:(id)arg2 partOfSpeech:(id)arg3; 19 | - (id)providerName; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUImageCellInaccessible.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSImageCell.h" 8 | 9 | @interface LUImageCellInaccessible : NSImageCell 10 | { 11 | } 12 | 13 | - (BOOL)accessibilityIsIgnored; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUImageView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSImageView.h" 8 | 9 | @interface LUImageView : NSImageView 10 | { 11 | BOOL _mouseInside; 12 | } 13 | 14 | @property BOOL mouseInside; // @synthesize mouseInside=_mouseInside; 15 | - (void)mouseUp:(id)arg1; 16 | - (void)cursorUpdate:(id)arg1; 17 | - (void)mouseExited:(id)arg1; 18 | - (void)mouseEntered:(id)arg1; 19 | - (void)viewDidMoveToWindow; 20 | - (void)dealloc; 21 | - (void)awakeFromNib; 22 | - (id)init; 23 | 24 | @end 25 | 26 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LULookupDefinitionModule.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | #import "NSDefinitionExternalModule-Protocol.h" 10 | 11 | @interface LULookupDefinitionModule : NSObject 12 | { 13 | } 14 | 15 | + (void)hideDefinition; 16 | + (void)showDefinitionForTerm:(id)arg1 atLocation:(struct CGPoint)arg2 options:(id)arg3; 17 | + (struct _NSRange)tokenRangeForString:(id)arg1 range:(struct _NSRange)arg2 options:(id *)arg3; 18 | + (void)focusTermUsingQueue:(struct dispatch_queue_s *)arg1 handler:(id)arg2; 19 | - (void)showDefinitionByHotKey; 20 | - (void)showDefinitionForString:(id)arg1 range:(struct _NSRange)arg2 options:(id)arg3 originProvider:(void *)arg4 inView:(id)arg5; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUModuleView.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSView.h" 8 | 9 | @class LUModule; 10 | 11 | @interface LUModuleView : NSView 12 | { 13 | LUModule *_module; 14 | } 15 | 16 | @property LUModule *module; // @synthesize module=_module; 17 | - (void)moveDown:(id)arg1; 18 | - (void)moveUp:(id)arg1; 19 | - (BOOL)acceptsFirstResponder; 20 | - (void)mouseUp:(id)arg1; 21 | - (void)cursorUpdate:(id)arg1; 22 | - (void)viewDidMoveToWindow; 23 | - (void)dealloc; 24 | - (void)awakeFromNib; 25 | - (id)initWithFrame:(struct CGRect)arg1 module:(id)arg2; 26 | - (BOOL)isFlipped; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUNoResultsViewController.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSViewController.h" 8 | 9 | @class NSProgressIndicator, NSView; 10 | 11 | @interface LUNoResultsViewController : NSViewController 12 | { 13 | NSView *_searchingView; 14 | NSView *_noResultsView; 15 | NSProgressIndicator *_progressIndicator; 16 | } 17 | 18 | @property(retain) NSProgressIndicator *progressIndicator; // @synthesize progressIndicator=_progressIndicator; 19 | @property(retain) NSView *noResultsView; // @synthesize noResultsView=_noResultsView; 20 | @property(retain) NSView *searchingView; // @synthesize searchingView=_searchingView; 21 | - (void)dealloc; 22 | - (id)init; 23 | 24 | @end 25 | 26 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUResultsPopover.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSPopover.h" 8 | 9 | #import "NSPopoverDelegate-Protocol.h" 10 | 11 | @class NSView; 12 | 13 | @interface LUResultsPopover : NSPopover 14 | { 15 | NSView *_targetView; 16 | struct CGRect _targetRect; 17 | BOOL _everBeenShown; 18 | } 19 | 20 | @property(getter=hasEverBeenShown) BOOL everBeenShown; // @synthesize everBeenShown=_everBeenShown; 21 | @property struct CGRect targetRect; // @synthesize targetRect=_targetRect; 22 | @property(retain) NSView *targetView; // @synthesize targetView=_targetView; 23 | - (void)observeClipViewNotification:(id)arg1; 24 | - (void)observeResultsViewNotification:(id)arg1; 25 | - (void)setSearchTerm:(id)arg1 language:(id)arg2 partOfSpeech:(id)arg3 targetView:(id)arg4 targetRect:(struct CGRect)arg5; 26 | - (void)cancelOperation:(id)arg1; 27 | - (void)popoverWillClose:(id)arg1; 28 | - (void)popoverDidShow:(id)arg1; 29 | - (void)dealloc; 30 | - (id)init; 31 | 32 | @end 33 | 34 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LURolloverHighlight.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSView.h" 8 | 9 | @interface LURolloverHighlight : NSView 10 | { 11 | BOOL _mouseInside; 12 | } 13 | 14 | @property BOOL mouseInside; // @synthesize mouseInside=_mouseInside; 15 | - (void)viewDidUnhide; 16 | - (void)drawRect:(struct CGRect)arg1; 17 | - (void)cursorUpdate:(id)arg1; 18 | - (void)mouseExited:(id)arg1; 19 | - (void)mouseEntered:(id)arg1; 20 | - (void)dealloc; 21 | - (void)awakeFromNib; 22 | - (id)init; 23 | 24 | @end 25 | 26 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUSearchTermIndicator.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSFindIndicator.h" 8 | 9 | #import "NSFindIndicatorDelegate-Protocol.h" 10 | 11 | @class NSAttributedString; 12 | 13 | @interface LUSearchTermIndicator : NSFindIndicator 14 | { 15 | NSAttributedString *_searchTerm; 16 | } 17 | 18 | + (id)normalizedString:(id)arg1; 19 | @property(retain) NSAttributedString *searchTerm; // @synthesize searchTerm=_searchTerm; 20 | - (void)drawContentsForRect:(struct CGRect)arg1; 21 | - (void)setSearchTerm:(id)arg1 targetView:(id)arg2 targetRect:(struct CGRect)arg3; 22 | - (void)dealloc; 23 | - (id)init; 24 | 25 | @end 26 | 27 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTSMDocumentTextAccessor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @interface LUTSMDocumentTextAccessor : LUTextAccessor 10 | { 11 | } 12 | 13 | + (BOOL)canAccessTextInView:(id)arg1; 14 | + (BOOL)canAccessTextAtLocation:(struct CGPoint)arg1; 15 | - (id)termForRange:(struct _NSRange)arg1 textOrigin:(struct CGPoint *)arg2 language:(id *)arg3 partOfSpeech:(id *)arg4; 16 | - (id)_termAndTextOrigin:(struct CGPoint *)arg1 language:(id *)arg2 partOfSpeech:(id *)arg3; 17 | - (id)_termAtLocation:(struct CGPoint)arg1 textOrigin:(struct CGPoint *)arg2 language:(id *)arg3 partOfSpeech:(id *)arg4; 18 | - (id)initWithView:(id)arg1; 19 | - (id)initWithLocation:(struct CGPoint)arg1; 20 | - (void)dealloc; 21 | 22 | @end 23 | 24 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTextFieldCellInaccessible.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSTextFieldCell.h" 8 | 9 | @interface LUTextFieldCellInaccessible : NSTextFieldCell 10 | { 11 | } 12 | 13 | - (BOOL)accessibilityIsIgnored; 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTextInputClientTextAccessor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @class NSView; 10 | 11 | @interface LUTextInputClientTextAccessor : LUTextAccessor 12 | { 13 | NSView *_textInputClientView; 14 | } 15 | 16 | + (BOOL)canAccessTextInView:(id)arg1; 17 | + (BOOL)canAccessTextAtLocation:(struct CGPoint)arg1; 18 | @property(retain) NSView *textInputClientView; // @synthesize textInputClientView=_textInputClientView; 19 | - (id)termForRange:(struct _NSRange)arg1 textOrigin:(struct CGPoint *)arg2 language:(id *)arg3 partOfSpeech:(id *)arg4; 20 | - (id)_termAndTextOrigin:(struct CGPoint *)arg1 language:(id *)arg2 partOfSpeech:(id *)arg3; 21 | - (id)_termAtLocation:(struct CGPoint)arg1 textOrigin:(struct CGPoint *)arg2 language:(id *)arg3 partOfSpeech:(id *)arg4; 22 | - (id)initWithView:(id)arg1; 23 | - (id)initWithLocation:(struct CGPoint)arg1; 24 | - (void)dealloc; 25 | 26 | @end 27 | 28 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTextInputTextAccessor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @class NSView; 10 | 11 | @interface LUTextInputTextAccessor : LUTextAccessor 12 | { 13 | NSView *_textInputView; 14 | } 15 | 16 | + (BOOL)canAccessTextInView:(id)arg1; 17 | + (BOOL)canAccessTextAtLocation:(struct CGPoint)arg1; 18 | @property(retain) NSView *textInputView; // @synthesize textInputView=_textInputView; 19 | - (id)termForRange:(struct _NSRange)arg1 textOrigin:(struct CGPoint *)arg2 language:(id *)arg3 partOfSpeech:(id *)arg4; 20 | - (id)_termAndTextOrigin:(struct CGPoint *)arg1 language:(id *)arg2 partOfSpeech:(id *)arg3; 21 | - (id)_termAtLocation:(struct CGPoint)arg1 textOrigin:(struct CGPoint *)arg2 language:(id *)arg3 partOfSpeech:(id *)arg4; 22 | - (id)initWithView:(id)arg1; 23 | - (id)initWithLocation:(struct CGPoint)arg1; 24 | - (void)dealloc; 25 | 26 | @end 27 | 28 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUWebServicesPreferences.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject.h" 8 | 9 | @class NSString; 10 | 11 | @interface LUWebServicesPreferences : NSObject 12 | { 13 | NSString *_cachedWebSearchProvider; 14 | NSString *_cachedImageSearchProvider; 15 | } 16 | 17 | + (id)sharedPreferences; 18 | @property(retain) NSString *cachedImageSearchProvider; // @synthesize cachedImageSearchProvider=_cachedImageSearchProvider; 19 | @property(retain) NSString *cachedWebSearchProvider; // @synthesize cachedWebSearchProvider=_cachedWebSearchProvider; 20 | @property(retain) NSString *imageSearchProvider; 21 | @property(readonly) NSString *webSearchProvider; 22 | - (void)updateCachedValues; 23 | - (void)commonLUWebServicesPreferencesTeardown; 24 | - (void)finalize; 25 | - (void)dealloc; 26 | - (id)init; 27 | 28 | @end 29 | 30 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUYahooImagesModule.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import 8 | 9 | @interface LUYahooImagesModule : LUImagesModule 10 | { 11 | } 12 | 13 | - (unsigned long long)maxSimultaneousDownloads; 14 | - (unsigned long long)maxThumbnails; 15 | - (id)thumbnailHeaders; 16 | - (id)queryHeaders; 17 | - (id)moreURL; 18 | - (void)setSearchTerm:(id)arg1 language:(id)arg2 partOfSpeech:(id)arg3; 19 | - (id)providerName; 20 | 21 | @end 22 | 23 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/Lookup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Headers/Lookup.framework headers/Mountain Lion/Lookup -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSAnimationDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol NSAnimationDelegate 10 | 11 | @optional 12 | - (void)animation:(id)arg1 didReachProgressMark:(float)arg2; 13 | - (float)animation:(id)arg1 valueForProgress:(float)arg2; 14 | - (void)animationDidEnd:(id)arg1; 15 | - (void)animationDidStop:(id)arg1; 16 | - (BOOL)animationShouldStart:(id)arg1; 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSAttributedString-LUTextAccessor_Protected.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSAttributedString.h" 8 | 9 | @interface NSAttributedString (LUTextAccessor_Protected) 10 | - (double)descenderHeight; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSDefinitionExternalModule-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | @protocol NSDefinitionExternalModule 8 | - (void)showDefinitionByHotKey; 9 | - (void)showDefinitionForString:(id)arg1 range:(struct _NSRange)arg2 options:(id)arg3 originProvider:(void *)arg4 inView:(id)arg5; 10 | @end 11 | 12 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSFindIndicatorDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol NSFindIndicatorDelegate 10 | - (void)drawContentsForRect:(struct CGRect)arg1; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSObject-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | @protocol NSObject 8 | - (id)description; 9 | - (unsigned long long)retainCount; 10 | - (id)autorelease; 11 | - (oneway void)release; 12 | - (id)retain; 13 | - (BOOL)respondsToSelector:(SEL)arg1; 14 | - (BOOL)conformsToProtocol:(id)arg1; 15 | - (BOOL)isMemberOfClass:(Class)arg1; 16 | - (BOOL)isKindOfClass:(Class)arg1; 17 | - (BOOL)isProxy; 18 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2 withObject:(id)arg3; 19 | - (id)performSelector:(SEL)arg1 withObject:(id)arg2; 20 | - (id)performSelector:(SEL)arg1; 21 | - (struct _NSZone *)zone; 22 | - (id)self; 23 | - (Class)class; 24 | - (Class)superclass; 25 | - (unsigned long long)hash; 26 | - (BOOL)isEqual:(id)arg1; 27 | 28 | @optional 29 | - (id)debugDescription; 30 | @end 31 | 32 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSPopoverDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol NSPopoverDelegate 10 | 11 | @optional 12 | - (void)popoverDidClose:(id)arg1; 13 | - (void)popoverWillClose:(id)arg1; 14 | - (void)popoverDidShow:(id)arg1; 15 | - (void)popoverWillShow:(id)arg1; 16 | - (id)detachableWindowForPopover:(id)arg1; 17 | - (BOOL)popoverShouldClose:(id)arg1; 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSScreen-LUScreenExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSScreen.h" 8 | 9 | @interface NSScreen (LUScreenExtensions) 10 | + (id)_screenContainingRect:(struct CGRect)arg1; 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSTextInput-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | @protocol NSTextInput 8 | - (id)validAttributesForMarkedText; 9 | - (unsigned long long)characterIndexForPoint:(struct CGPoint)arg1; 10 | - (struct CGRect)firstRectForCharacterRange:(struct _NSRange)arg1; 11 | - (struct _NSRange)selectedRange; 12 | - (struct _NSRange)markedRange; 13 | - (id)attributedSubstringFromRange:(struct _NSRange)arg1; 14 | - (long long)conversationIdentifier; 15 | - (BOOL)hasMarkedText; 16 | - (void)unmarkText; 17 | - (void)setMarkedText:(id)arg1 selectedRange:(struct _NSRange)arg2; 18 | - (void)doCommandBySelector:(SEL)arg1; 19 | - (void)insertText:(id)arg1; 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSURLConnectionDelegate-Protocol.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSObject-Protocol.h" 8 | 9 | @protocol NSURLConnectionDelegate 10 | 11 | @optional 12 | - (void)connection:(id)arg1 didCancelAuthenticationChallenge:(id)arg2; 13 | - (void)connection:(id)arg1 didReceiveAuthenticationChallenge:(id)arg2; 14 | - (BOOL)connection:(id)arg1 canAuthenticateAgainstProtectionSpace:(id)arg2; 15 | - (void)connection:(id)arg1 willSendRequestForAuthenticationChallenge:(id)arg2; 16 | - (BOOL)connectionShouldUseCredentialStorage:(id)arg1; 17 | - (void)connection:(id)arg1 didFailWithError:(id)arg2; 18 | @end 19 | 20 | -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSWindow-LUWindowExtensions.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated by class-dump 3.3.4 (64 bit). 3 | * 4 | * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard. 5 | */ 6 | 7 | #import "NSWindow.h" 8 | 9 | @interface NSWindow (LUWindowExtensions) 10 | - (struct CGPoint)convertPointFromScreen:(struct CGPoint)arg1; 11 | - (struct CGPoint)convertPointToScreen:(struct CGPoint)arg1; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /Images/BetterDictionary-Lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Images/BetterDictionary-Lion.png -------------------------------------------------------------------------------- /Images/BetterDictionary-Mavericks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Images/BetterDictionary-Mavericks.png -------------------------------------------------------------------------------- /Images/BetterDictionary-MountainLion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Images/BetterDictionary-MountainLion.png -------------------------------------------------------------------------------- /Images/BetterDictionary-SnowLeopard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Images/BetterDictionary-SnowLeopard.png -------------------------------------------------------------------------------- /Images/BetterDictionary-Yosemite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Images/BetterDictionary-Yosemite.png -------------------------------------------------------------------------------- /Images/EasySIMBL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Images/EasySIMBL.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.95.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.95.pkg -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.96.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.96.pkg -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.97.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.97.pkg -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/MacOS/Application Stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/MacOS/Application Stub -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/AutomatorApplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/AutomatorApplet.icns -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/English.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/English.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/French.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/French.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/German.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/German.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Italian.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Italian.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/SIMBL-0.9.9.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/SIMBL-0.9.9.pkg -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ar.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ar.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ca.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ca.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/cs.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/cs.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/da.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/da.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/el.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/el.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/fi.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/fi.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/he.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/he.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/hr.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/hr.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/hu.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/hu.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ko.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ko.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/no.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/no.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pl.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pl.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pt.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pt.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ro.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ro.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ru.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ru.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/sk.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/sk.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/sv.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/sv.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/th.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/th.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/tr.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/tr.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/uk.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/uk.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/BetterDictionary-0.98.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/Install Script.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/Install Script.scpt -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/Installer-v0.98.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.98/Installer-v0.98.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary-v0.99.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.99/BetterDictionary-v0.99.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/MacOS/BetterDictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/MacOS/BetterDictionary -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/Dictionary.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/Dictionary.icns -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/add.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/remove.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/sidebar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/sidebar-dark.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/sidebar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/sidebar-light.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/migrate-data: -------------------------------------------------------------------------------- 1 | #! /usr/bin/ruby 2 | 3 | require "fileutils" 4 | 5 | from_dir = File.expand_path("~/Library/Application Support/BetterDictionary") 6 | to_dir = File.expand_path("~/Library/Containers/com.apple.Dictionary/Data/Library/Application Support/BetterDictionary") 7 | file_name = "saved-words.plist" 8 | 9 | if (File.exists? from_dir) # has already saved words with BetterDictionary 10 | if (!File.exists? to_dir) # has not yet run BetterDictionary after installing SIMBL/EasySIMBL 11 | FileUtils.mkdir to_dir 12 | end 13 | 14 | FileUtils.cp File.join(from_dir, file_name), File.join(to_dir, file_name) 15 | end 16 | 17 | system 'killall Dictionary' 18 | system 'open -a Dictionary' -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.991/BetterDictionary-v0.991.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.991/BetterDictionary-v0.991.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.991/migrate-data: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env ruby 2 | 3 | require "fileutils" 4 | 5 | from_dir = File.expand_path("~/Library/Application Support/BetterDictionary") 6 | to_dir = File.expand_path("~/Library/Containers/com.apple.Dictionary/Data/Library/Application Support/BetterDictionary") 7 | file_name = "saved-words.plist" 8 | 9 | if (File.exists? from_dir) # has already saved words with BetterDictionary 10 | if (!File.exists? to_dir) # has not yet run BetterDictionary after installing SIMBL/EasySIMBL 11 | FileUtils.mkdir to_dir 12 | end 13 | 14 | FileUtils.cp File.join(from_dir, file_name), File.join(to_dir, file_name) 15 | end 16 | 17 | system 'killall Dictionary' 18 | system 'open -a Dictionary' -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/BetterDictionary-v0.992-macupdate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.992/BetterDictionary-v0.992-macupdate.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/BetterDictionary-v0.992.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.992/BetterDictionary-v0.992.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/Installation Guide.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.992/Installation Guide.pages -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/Installation Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/BetterDictionary-0.992/Installation Guide.pdf -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/migrate-data: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env ruby 2 | 3 | require "fileutils" 4 | 5 | from_dir = File.expand_path("~/Library/Application Support/BetterDictionary") 6 | to_dir = File.expand_path("~/Library/Containers/com.apple.Dictionary/Data/Library/Application Support/BetterDictionary") 7 | file_name = "saved-words.plist" 8 | 9 | if (File.exists? from_dir) # has already saved words with BetterDictionary 10 | if (!File.exists? to_dir) # has not yet run BetterDictionary after installing SIMBL/EasySIMBL 11 | FileUtils.mkdir to_dir 12 | end 13 | 14 | FileUtils.cp File.join(from_dir, file_name), File.join(to_dir, file_name) 15 | end 16 | 17 | system 'killall Dictionary' 18 | system 'open -a Dictionary' -------------------------------------------------------------------------------- /Installers/SIMBL Uninstaller.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/SIMBL Uninstaller.zip -------------------------------------------------------------------------------- /Installers/SIMBL-0.9.9.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Installers/SIMBL-0.9.9.pkg -------------------------------------------------------------------------------- /Resources/BetterDictionaryIcons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/036bef635714801f2ddd4ae0c3ddd2baf8b5552f/Resources/BetterDictionaryIcons.sketch --------------------------------------------------------------------------------