├── YahooKeyKey-Source-1.1.2528 ├── Distributions │ └── Takao │ │ ├── README.markdown │ │ ├── CookedDatabase │ │ └── .gitignore │ │ ├── DataSource │ │ ├── Overrides │ │ │ ├── Keke-AddPinyin.txt │ │ │ ├── Signature.txt │ │ │ ├── Keke-ZPromoteHighest.txt │ │ │ ├── zonble-200903.txt │ │ │ └── Keke-AddBigram.txt │ │ ├── .gitignore │ │ └── Addendum │ │ │ ├── Yahoo.txt │ │ │ ├── Z-Politics.txt │ │ │ ├── Z-Media.txt │ │ │ ├── Z-IT.txt │ │ │ ├── Z-ACG.txt │ │ │ ├── FriendPhrases-20080526.txt │ │ │ ├── Z-Religion.txt │ │ │ └── Z-History.txt │ │ ├── DatabaseCooker │ │ ├── .gitignore │ │ ├── generate-noise.rb │ │ └── insert-file-into-db.rb │ │ ├── Keyring │ │ └── .gitignore │ │ ├── PrecompiledTools │ │ └── .gitignore │ │ ├── Installer-Windows │ │ ├── .gitignore │ │ ├── makesetup.bat │ │ ├── makesupplement.bat │ │ ├── makeextramod.bat │ │ ├── Installer.sed │ │ ├── Bitmaps │ │ │ ├── New.ico │ │ │ ├── Up.ico │ │ │ ├── info.ico │ │ │ ├── dlgbmp.bmp │ │ │ ├── bannrbmp.bmp │ │ │ └── exclamic.ico │ │ ├── Installer64.sed │ │ ├── runtime │ │ │ └── wixca.dll │ │ ├── SupplementInstaller.sed │ │ ├── makesetup64.bat │ │ └── extramod.proj │ │ ├── Installer-OSX-UI │ │ ├── package.icns │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_TW.lproj │ │ │ └── InfoPlist.strings │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ └── main.m │ │ ├── Installer-OSX-DB │ │ ├── KeyKeyDB.pmproj │ │ └── Resources │ │ │ ├── preflight │ │ │ └── postflight │ │ ├── Installer-OSX-IMK │ │ ├── KeyKey25.pmproj │ │ ├── strings │ │ │ ├── en.strings │ │ │ ├── zh_CN.strings │ │ │ └── zh_TW.strings │ │ ├── Artwork │ │ │ ├── YahooDMG.icns │ │ │ ├── DmgBackground.jpg │ │ │ ├── PackageInstaller.png │ │ │ └── DmgBackground-org.jpg │ │ └── Resources │ │ │ ├── preflight │ │ │ └── postflight │ │ ├── Installer-OSX-TSM │ │ ├── KeyKey25.pmproj │ │ ├── strings │ │ │ ├── en.strings │ │ │ ├── zh_CN.strings │ │ │ └── zh_TW.strings │ │ ├── Artwork │ │ │ ├── YahooDMG.icns │ │ │ ├── DmgBackground.jpg │ │ │ └── PackageInstaller.png │ │ └── Resources │ │ │ ├── preflight │ │ │ └── postflight │ │ ├── Installer-OSX-ExtraModules │ │ ├── Modules.pmproj │ │ ├── strings │ │ │ ├── en.strings │ │ │ ├── zh_CN.strings │ │ │ └── zh_TW.strings │ │ ├── Artwork │ │ │ └── YahooDMG.icns │ │ ├── YKAFWordCount.pmproj │ │ ├── YKReverseLookup.pmproj │ │ ├── YKAFPhraseConverter.pmproj │ │ └── Resources │ │ │ ├── preflight │ │ │ └── postflight │ │ ├── Installer-OSX-Help │ │ ├── zh_CN.lproj │ │ │ ├── preference.png │ │ │ └── InfoPlist.strings │ │ ├── zh_TW.lproj │ │ │ ├── preference.png │ │ │ └── InfoPlist.strings │ │ ├── English.lproj │ │ │ ├── preference.png │ │ │ └── InfoPlist.strings │ │ ├── main.m │ │ ├── InstallHelp.xcodeproj │ │ │ └── TemplateIcon.icns │ │ └── HelpController.h │ │ ├── TrackerSender │ │ └── OSX │ │ │ └── TrackerSender.h │ │ └── makeall-osx.sh ├── README.markdown ├── ExternalLibraries │ ├── UnitTest++ │ │ ├── UnitTest++ │ │ └── src │ │ │ ├── TestReporter.cpp │ │ │ ├── TimeHelpers.h │ │ │ ├── tests │ │ │ ├── Main.cpp │ │ │ └── TestTestSuite.cpp │ │ │ ├── ReportAssert.h │ │ │ ├── TestSuite.h │ │ │ ├── ReportAssert.cpp │ │ │ ├── UnitTest++.h │ │ │ ├── Posix │ │ │ ├── TimeHelpers.h │ │ │ └── TimeHelpers.cpp │ │ │ ├── TestList.h │ │ │ ├── DeferredTestResult.cpp │ │ │ ├── TestDetails.cpp │ │ │ ├── TestReporter.h │ │ │ ├── TestReporterStdout.h │ │ │ ├── AssertException.h │ │ │ ├── TestList.cpp │ │ │ ├── TestDetails.h │ │ │ ├── DeferredTestResult.h │ │ │ ├── AssertException.cpp │ │ │ ├── Test.h │ │ │ ├── DeferredTestReporter.h │ │ │ ├── TimeConstraint.cpp │ │ │ └── Win32 │ │ │ └── TimeHelpers.h │ ├── zlib │ │ ├── contrib │ │ │ ├── blast │ │ │ │ ├── test.txt │ │ │ │ ├── README │ │ │ │ ├── test.pk │ │ │ │ └── Makefile │ │ │ ├── infback9 │ │ │ │ └── README │ │ │ ├── masmx64 │ │ │ │ ├── bld_ml64.bat │ │ │ │ ├── gvmat64.obj │ │ │ │ └── inffasx64.obj │ │ │ ├── masmx86 │ │ │ │ ├── bld_ml32.bat │ │ │ │ ├── gvmat32.asm │ │ │ │ ├── gvmat32.obj │ │ │ │ ├── inffas32.obj │ │ │ │ ├── mkasm.bat │ │ │ │ └── readme.txt │ │ │ ├── README.contrib │ │ │ ├── puff │ │ │ │ ├── zeros.raw │ │ │ │ └── Makefile │ │ │ ├── dotzlib │ │ │ │ ├── DotZLib.chm │ │ │ │ └── DotZLib │ │ │ │ │ ├── CodecBase.cs │ │ │ │ │ ├── Deflater.cs │ │ │ │ │ ├── DotZLib.cs │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ ├── UnitTests.cs │ │ │ │ │ ├── GZipStream.cs │ │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ │ └── CircularBuffer.cs │ │ │ ├── delphi │ │ │ │ └── ZLibConst.pas │ │ │ ├── testzlib │ │ │ │ └── testzlib.txt │ │ │ ├── untgz │ │ │ │ ├── Makefile │ │ │ │ └── Makefile.msc │ │ │ ├── minizip │ │ │ │ ├── iowin32.h │ │ │ │ └── Makefile │ │ │ ├── iostream3 │ │ │ │ └── TODO │ │ │ ├── ada │ │ │ │ └── zlib.gpr │ │ │ └── iostream │ │ │ │ └── test.cpp │ │ ├── ChangeLog │ │ ├── old │ │ │ ├── zlib.html │ │ │ └── README │ │ ├── win32 │ │ │ └── VisualC.txt │ │ └── inffast.h │ ├── expat │ │ ├── doc │ │ │ ├── expat.png │ │ │ └── valid-xhtml10.png │ │ ├── win32 │ │ │ └── expat.iss │ │ ├── lib │ │ │ └── Makefile.MPW │ │ ├── bcb5 │ │ │ ├── outline.bpf │ │ │ ├── elements.bpf │ │ │ ├── expat_static.bpf │ │ │ ├── expatw_static.bpf │ │ │ ├── expat.bpf │ │ │ ├── expatw.bpf │ │ │ ├── xmlwf.bpf │ │ │ ├── setup.bat │ │ │ └── makefile.mak │ │ ├── tests │ │ │ ├── runtestspp.cpp │ │ │ ├── benchmark │ │ │ │ └── README.txt │ │ │ └── README.txt │ │ ├── xmlwf │ │ │ ├── codepage.h │ │ │ ├── xmlurl.h │ │ │ ├── filemap.h │ │ │ ├── xmlmime.h │ │ │ └── xmlfile.h │ │ └── vms │ │ │ └── README.vms │ ├── VERSIONS.txt │ ├── openssl-win32-x86 │ │ ├── lib │ │ │ └── libeay32.lib │ │ └── include │ │ │ └── openssl │ │ │ └── ebcdic.h │ ├── DotMacKit.framework │ │ └── README.txt │ └── PackageMaker.app │ │ └── README.txt ├── Loaders │ ├── Windows-IMM │ │ ├── BaseIMERPC │ │ │ ├── .gitignore │ │ │ └── BIClientRPCInterface.idl │ │ ├── BaseIMERPC-x64 │ │ │ └── .gitignore │ │ ├── ServiceUI │ │ │ ├── resource.h │ │ │ ├── app.ico │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── PreferencesMain │ │ │ ├── resource.h │ │ │ ├── app.aps │ │ │ ├── app.ico │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── BaseIME │ │ │ ├── BaseIME.ico │ │ │ ├── BaseIME.rc │ │ │ ├── Yahoo.ico │ │ │ ├── Yahoo32.ico │ │ │ ├── StatusBar.rc │ │ │ ├── BaseIME.def │ │ │ └── Resource.h │ │ ├── QuickSetup │ │ │ ├── KeyKey.ico │ │ │ ├── Properties │ │ │ │ └── Settings.settings │ │ │ └── QuickSetup.csproj.user │ │ ├── BaseIMEUI │ │ │ ├── BaseIMEUI.snk │ │ │ ├── BICandidateForm.cs │ │ │ ├── Resources │ │ │ │ ├── yahoo.png │ │ │ │ ├── barhead.bmp │ │ │ │ └── bartail.bmp │ │ │ ├── BIAboutPanel.designer.cs │ │ │ ├── StatusbarItems │ │ │ │ ├── blank.bmp │ │ │ │ ├── help.bmp │ │ │ │ ├── smart.bmp │ │ │ │ ├── zh_CN.bmp │ │ │ │ ├── zh_TW.bmp │ │ │ │ ├── cangjie.bmp │ │ │ │ ├── chinese.bmp │ │ │ │ ├── config.bmp │ │ │ │ ├── english.bmp │ │ │ │ ├── generic.bmp │ │ │ │ ├── simplex.bmp │ │ │ │ ├── fullwidth.bmp │ │ │ │ ├── halfwidth.bmp │ │ │ │ ├── menuCheck.bmp │ │ │ │ ├── phonetic.bmp │ │ │ │ ├── symbolOpen.bmp │ │ │ │ ├── menuUncheck.bmp │ │ │ │ └── symbolClose.bmp │ │ │ ├── BIKeyboardForm.designer.cs │ │ │ └── Properties │ │ │ │ └── Settings.settings │ │ ├── BaseIMEServer │ │ │ ├── BaseIMEServer.ico │ │ │ ├── BaseIMEServer.snk │ │ │ └── RemoteDataFetcherDelegate.h │ │ ├── LFPlatform │ │ │ └── Headers │ │ │ │ ├── LFPlatform.h │ │ │ │ ├── ProcessHelper.h │ │ │ │ └── RegistryHelper.h │ │ └── BaseIMETool │ │ │ └── BaseIMETool.manifest.xml │ ├── CrossPlatform │ │ ├── OVLoaderUserPersistence.mm │ │ └── OVDistributionConfig.h │ ├── OSX-TSM │ │ ├── Component.icns │ │ └── TakaoComponent-Info.plist │ └── OSX-IMK │ │ ├── Images │ │ ├── About.jpg │ │ ├── Yahoo.icns │ │ ├── Yahoo16.icns │ │ ├── Yahoo32.icns │ │ ├── FontBigger.tiff │ │ ├── FontSmaller.tiff │ │ ├── OVInputMenu.icns │ │ ├── OpenVanilla.icns │ │ └── Renaissance.icns │ │ ├── CVDictionaryWindow.h │ │ ├── CVFloatingWindow.h │ │ ├── CVDictionaryController+Orz.h │ │ ├── CVNotifyWindow.h │ │ ├── CVInputMethodToggleCell.h │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ ├── zh_CN.lproj │ │ └── InfoPlist.strings │ │ ├── zh_TW.lproj │ │ └── InfoPlist.strings │ │ ├── CVFloatingTableView.h │ │ ├── CVNotifyWindow.m │ │ ├── NSColor+LFColorExtensions.h │ │ ├── CVFloatingBackground.h │ │ ├── CVButtonViewController.h │ │ ├── NSStringExtension.h │ │ ├── CVKeyboardHelper.h │ │ ├── CVInputMethodToggleControl.h │ │ ├── CVPlainTextCandidateController.h │ │ ├── CVAboutController.h │ │ ├── CVHorizontalCandidateCell.h │ │ ├── CVBubbleTextWindow.h │ │ ├── CVInputMethodToggleWindowController.h │ │ ├── CVHorizontalCandidateControl.h │ │ ├── CVBubbleTextView.h │ │ ├── CVSymbolController.h │ │ └── CVSmileyViewController.h ├── Frameworks │ ├── Formosa │ │ ├── Ruby │ │ │ └── native_bopomofo │ │ │ │ ├── .gitignore │ │ │ │ └── extconf.rb │ │ └── Tools │ │ │ ├── unique.pl │ │ │ ├── bpmf-pinyin-raw-to-toned.rb │ │ │ ├── bpmf-pinyin-raw-to-toneless.rb │ │ │ ├── bpmf-cin-to-pinyin-raw.sh │ │ │ ├── pinyin-u-normailize.rb │ │ │ ├── unique-pinyin.py │ │ │ ├── TestPHTConversion.cpp │ │ │ ├── TestPinyinConversion.cpp │ │ │ ├── convert-bpmf-cin.rb │ │ │ └── UniqueChardef.rb │ ├── LFWebAPIToolbox │ │ ├── README.txt │ │ ├── .gitignore │ │ ├── Resources │ │ │ └── English.lproj │ │ │ │ └── InfoPlist.strings │ │ └── Source │ │ │ └── LFWebAPIToolbox_Prefix.pch │ ├── Graphene │ │ └── Tests │ │ │ └── Makefile │ ├── OpenVanilla │ │ ├── Tests │ │ │ ├── Main.cpp │ │ │ ├── TestMain.cpp │ │ │ ├── TestOVUTF8Helper.cpp │ │ │ ├── TestOVFrameworkVersion.cpp │ │ │ └── TestOVDateTimeHelper.cpp │ │ └── OpenVanilla-Info.plist │ ├── Manjusri │ │ ├── Tests │ │ │ └── Main.cpp │ │ ├── Source │ │ │ └── Node.cpp │ │ ├── Headers │ │ │ ├── Manjusri.h │ │ │ ├── OVDependency.h │ │ │ └── STLDependency.h │ │ └── Tools │ │ │ └── filter-out-search-terms.rb │ ├── LFExtensions │ │ ├── NSBezierPathAdditions.h │ │ ├── LFCrossDevelopmentTools.h │ │ └── LFExtensions-Info.plist │ ├── PlainVanilla │ │ ├── PlainVanilla-Info.plist │ │ └── Tests │ │ │ └── TestPlainVanilla-ModulePackage-Info.plist │ └── Minotaur │ │ └── Tools │ │ └── plainsign.rb ├── ModulePackages │ ├── YKAFWordCount │ │ ├── zh_TW.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ └── PackageMain.cpp │ ├── OVAFPhraseConverter │ │ ├── zh_TW.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ └── YKPhraseConverter-Windows.plist │ ├── OVAFReverseLookup │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_TW.lproj │ │ │ └── InfoPlist.strings │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ └── YKReverseLookup-Windows.plist │ ├── OVAFSearch │ │ ├── PackageMain.cpp │ │ └── OVAFSearchPackage-Info.plist │ ├── YKAFOneKey │ │ └── PackageMain.cpp │ ├── YKAFPhraseAware │ │ └── PackageMain.cpp │ ├── StaticPack │ │ └── StaticPack.h │ ├── OVAFEval │ │ └── OVAFEval-Info.plist │ ├── OVOFEscape │ │ └── OVOFEscapePackage-Info.plist │ ├── OVIMGeneric │ │ └── OVIMGenericPackage-Info.plist │ ├── OVIMTibetan │ │ └── OVIMTibetanPackage-Info.plist │ ├── OVIMMandarin │ │ └── OVIMMandarinPackage-Info.plist │ ├── OVIMEsperanto │ │ └── OVIMEsperantoPackage-Info.plist │ ├── OVIMUppercase │ │ └── OVIMUppercasePackage-Info.plist │ ├── OVIMUnicodeHEX │ │ └── OVIMUnicodeHEXPackage-Info.plist │ ├── OVOFHanConvert │ │ └── OVOFHanConvertPackage-Info.plist │ ├── OVIMAlphanumeric │ │ └── OVIMAlphanumericPackage-Info.plist │ └── OVOFAntiZhuyinwen │ │ └── OVOFAntiZhuyinwenPackage-Info.plist ├── WebResources │ ├── enter.ai │ ├── enter.gif │ ├── loading.gif │ └── speak.gif ├── Utilities │ ├── HomophoneFilter │ │ └── Windows │ │ │ ├── resource.h │ │ │ ├── app.ico │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── CinInstaller │ │ └── Windows │ │ │ ├── app.ico │ │ │ ├── cin.ico │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── resource.h │ ├── PhraseEditor │ │ ├── Windows │ │ │ ├── app.ico │ │ │ ├── Images │ │ │ │ ├── add.ico │ │ │ │ ├── remove.ico │ │ │ │ ├── editPhrase.ico │ │ │ │ └── editReading.ico │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── resource.h │ │ └── OSX │ │ │ ├── Images │ │ │ ├── add.png │ │ │ ├── delete.png │ │ │ ├── reload.png │ │ │ ├── addressBook.png │ │ │ ├── editPhrase.png │ │ │ ├── editReading.png │ │ │ └── PhraseEditor.icns │ │ │ ├── English.lproj │ │ │ ├── Localizable.strings │ │ │ └── InfoPlist.strings │ │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── zh_TW.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── PEMainWindow.h │ │ │ ├── main.m │ │ │ ├── PEDialogWindow.h │ │ │ ├── PEPhraseTableView.h │ │ │ ├── PESettingTableView.h │ │ │ └── PEDialogWindow.m │ ├── SignatureMaker │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.nib │ │ │ │ └── keyedobjects.nib │ │ ├── SignatureMaker.xcodeproj │ │ │ └── TemplateIcon.icns │ │ ├── ZBTargetView.h │ │ ├── SignatureMaker_Prefix.pch │ │ ├── main.m │ │ ├── ZBMakerController.h │ │ └── ZBTargetView.m │ ├── count-lines-of-code.sh │ ├── encodecstr.rb │ ├── VersionInfoMaker │ │ └── CocoaInit.m │ ├── uniq.pl │ ├── TextOverlay │ │ └── TextOverlay_Prefix.pch │ ├── bundle-clean.rb │ └── reform-auto-complete.pl ├── PreferenceApplications │ ├── OSX │ │ ├── Images │ │ │ ├── cangjie.tiff │ │ │ ├── general.tiff │ │ │ ├── generic.tiff │ │ │ ├── phrase.tiff │ │ │ ├── plugin.tiff │ │ │ ├── simplex.tiff │ │ │ ├── update.tiff │ │ │ ├── phonetic.tiff │ │ │ ├── playSound.tiff │ │ │ └── stopSound.tiff │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_TW.lproj │ │ │ └── InfoPlist.strings │ │ ├── main.m │ │ ├── TakaoKeyboardLayoutPopUpButton.h │ │ ├── TakaoReverseLookup.h │ │ ├── TakaoWordCount.h │ │ ├── TakaoWindow.m │ │ ├── TakaoSearch.h │ │ └── TakaoWindow.h │ ├── Windows │ │ ├── Icons │ │ │ ├── about.ico │ │ │ ├── misc.ico │ │ │ ├── cangjie.ico │ │ │ ├── general.ico │ │ │ ├── generic.ico │ │ │ ├── phrase.ico │ │ │ ├── simplex.ico │ │ │ ├── update.ico │ │ │ └── zhuyin.ico │ │ ├── Resources │ │ │ └── yahoo.bmp │ │ ├── TakaoPreference.snk │ │ └── Properties │ │ │ └── Settings.settings │ └── DownloadUpdateOSX │ │ ├── DownloadUpdate.xcodeproj │ │ └── TemplateIcon.icns │ │ ├── English.lproj │ │ ├── MainMenu.nib │ │ │ └── keyedobjects.nib │ │ └── InfoPlist.strings │ │ ├── zh_CN.lproj │ │ ├── MainMenu.nib │ │ │ └── keyedobjects.nib │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ │ └── zh_TW.lproj │ │ ├── MainMenu.nib │ │ └── keyedobjects.nib │ │ ├── InfoPlist.strings │ │ └── Localizable.strings ├── MakeTakaoWin.bat ├── COPYING ├── Studies │ ├── Win32RPCStudy │ │ ├── LIClientRPCInterface │ │ │ ├── Makefile │ │ │ └── LIClientRPCInterface.idl │ │ ├── LIServerRPCInterface │ │ │ ├── Makefile │ │ │ └── LIServerRPCInterface.idl │ │ ├── LIRPCHelper │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── SampleClient │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── SampleServer │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ └── OVIMChewing │ │ └── PackageMain.cpp ├── .gitignore ├── Takao.xml ├── UPGRADING.txt ├── DataTables │ ├── cj-punctuations-halfwidth.cin │ └── cj-punctuations-mixedwidth.cin └── ACKNOWLEDGEMENTS └── DataSource-1.1.2528 ├── BPMFMappings └── README.txt ├── SinicaCorpus └── README.txt └── YahooSearchTerms └── README.txt /YahooKeyKey-Source-1.1.2528/Distributions/Takao/README.markdown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/README.markdown: -------------------------------------------------------------------------------- 1 | Takao (Yahoo! KeyKey) 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/UnitTest++: -------------------------------------------------------------------------------- 1 | UnitTest++ -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/CookedDatabase/.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Overrides/Keke-AddPinyin.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/test.txt: -------------------------------------------------------------------------------- 1 | AIAIAIAIAIAIA -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMERPC/.gitignore: -------------------------------------------------------------------------------- 1 | *.h 2 | *.c 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DatabaseCooker/.gitignore: -------------------------------------------------------------------------------- 1 | Intermediates 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMERPC-x64/.gitignore: -------------------------------------------------------------------------------- 1 | *.h 2 | *.c 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Keyring/.gitignore: -------------------------------------------------------------------------------- 1 | *.pem 2 | *.bin 3 | *.txt 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/PrecompiledTools/.gitignore: -------------------------------------------------------------------------------- 1 | P* 2 | s* 3 | c* 4 | T* 5 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/CrossPlatform/OVLoaderUserPersistence.mm: -------------------------------------------------------------------------------- 1 | OVLoaderUserPersistence.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Ruby/native_bopomofo/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.o 3 | *.bundle 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFWebAPIToolbox/README.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008 Lithoglyph Inc. 2 | 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/.gitignore: -------------------------------------------------------------------------------- 1 | *.wixobj 2 | setup* 3 | Binary 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "字數統計模組"; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "字数统计模块"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/.gitignore: -------------------------------------------------------------------------------- 1 | SinicaCorpus 2 | YahooSearchTerms 3 | BPMFMappings 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFPhraseConverter/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "簡體中文常用詞彙轉換"; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFReverseLookup/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "字根反查模块"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFReverseLookup/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "字根反查模組"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "Word Count"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/infback9/README: -------------------------------------------------------------------------------- 1 | See infback9.h for what this is and how to use it. 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFPhraseConverter/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "简体中文常用词汇转换"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Overrides/Signature.txt: -------------------------------------------------------------------------------- 1 | +bpmf 雅虎奇摩輸入法 ㄚ,ㄏ,ㄑ,ㄇ,ㄕ,ㄖ,ㄈ 2 | +bpmf 石磐軟體 ㄕ,ㄆ,ㄖ,ㄊ 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Graphene/Tests/Makefile: -------------------------------------------------------------------------------- 1 | all: Bignum 2 | 3 | Bignum: BignumTest.cpp 4 | g++ -o $@ $< -lcrypto 5 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFReverseLookup/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "Reverse Lookup"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/WebResources/enter.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/WebResources/enter.ai -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFWebAPIToolbox/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.pbxuser 3 | *.mode1v3 4 | *.tm_build_errors 5 | Tools/SimpleServer/log/* 6 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/WebResources/enter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/WebResources/enter.gif -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/WebResources/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/WebResources/loading.gif -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/WebResources/speak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/WebResources/speak.gif -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFPhraseConverter/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleDisplayName = "Simplified Chinese Phrase Converter"; 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/README: -------------------------------------------------------------------------------- 1 | Read blast.h for purpose and usage. 2 | 3 | Mark Adler 4 | madler@alumni.caltech.edu 5 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/Main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | return UnitTest::RunAllTests(); 6 | } 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx64/bld_ml64.bat: -------------------------------------------------------------------------------- 1 | ml64.exe /Flinffasx64 /c /Zi inffasx64.asm 2 | ml64.exe /Flgvmat64 /c /Zi gvmat64.asm 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/TestMain.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | return UnitTest::RunAllTests(); 6 | } 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/Component.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by app.rc 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by app.rc 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/ChangeLog -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/About.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/About.jpg -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by app.rc 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx86/bld_ml32.bat: -------------------------------------------------------------------------------- 1 | ml /coff /Zi /c /Flgvmat32.lst gvmat32.asm 2 | ml /coff /Zi /c /Flinffas32.lst inffas32.asm 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/zlib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/zlib.html -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo16.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo16.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo32.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Yahoo32.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/makesetup.bat: -------------------------------------------------------------------------------- 1 | if exist setup.exe (del setup.exe) 2 | msbuild /target:Bootstrapper setup.proj 3 | iexpress /N Installer.sed -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/expat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/expat.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/win32/expat.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/win32/expat.iss -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/FontBigger.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/FontBigger.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/FontSmaller.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/FontSmaller.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/OVInputMenu.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/OVInputMenu.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/OpenVanilla.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/OpenVanilla.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Renaissance.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/Images/Renaissance.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.rc -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Yahoo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Yahoo.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Yahoo32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Yahoo32.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/cin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/cin.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/Makefile.MPW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/lib/Makefile.MPW -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/KeyKey.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/KeyKey.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/add.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/makesupplement.bat: -------------------------------------------------------------------------------- 1 | copy /Y ..\CookedDatabase\Supplement.db ..\..\..\release\suppinst.db 2 | iexpress /N SupplementInstaller.sed 3 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/test.pk -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/CrossPlatform/OVDistributionConfig.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #ifndef OVDistributionConfig_h 4 | #define OVDistributionConfig_h 5 | 6 | 7 | #endif 8 | 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BaseIMEUI.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BaseIMEUI.snk -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.aps -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/app.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/delete.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/reload.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/makeextramod.bat: -------------------------------------------------------------------------------- 1 | if exist setup.exe (del setup.exe) 2 | msbuild /target:Bootstrapper extramod.proj 3 | iexpress /N ExtraModules.sed 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/valid-xhtml10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/doc/valid-xhtml10.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/README.contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/README.contrib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- 1 | 2 | To build zlib using the Microsoft Visual C++ environment, 3 | use the appropriate project from the projects/ directory. 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/cangjie.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/cangjie.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/general.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/general.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/generic.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/generic.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/phrase.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/phrase.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/plugin.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/plugin.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/simplex.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/simplex.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/update.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/update.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/about.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/about.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/misc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/misc.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/Images/add.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/Images/add.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-UI/package.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-UI/package.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/TestOVUTF8Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/TestOVUTF8Helper.cpp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BICandidateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BICandidateForm.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Resources/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Resources/yahoo.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/phonetic.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/phonetic.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/playSound.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/playSound.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/stopSound.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/Images/stopSound.tiff -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/cangjie.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/cangjie.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/general.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/general.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/generic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/generic.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/phrase.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/phrase.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/simplex.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/simplex.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/update.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/update.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/zhuyin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Icons/zhuyin.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/addressBook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/addressBook.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/editPhrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/editPhrase.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/editReading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/editReading.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/Images/remove.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/Images/remove.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Installer.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Installer.sed -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/VERSIONS.txt: -------------------------------------------------------------------------------- 1 | UnitTest++ r186 2 | Expat 2.0.1 3 | sqlite 3.6.11 (amalgamated version) 4 | sqlite-cerod-see 3.6.0 (amalgamated version) 5 | sqlite-see 6 | zlib 1.2.3 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib.chm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx64/gvmat64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx64/gvmat64.obj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx86/gvmat32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx86/gvmat32.asm -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx86/gvmat32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx86/gvmat32.obj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx86/inffas32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx86/inffas32.obj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/puff/Makefile: -------------------------------------------------------------------------------- 1 | puff: puff.c puff.h 2 | cc -DTEST -o puff puff.c 3 | 4 | test: puff 5 | puff zeros.raw 6 | 7 | clean: 8 | rm -f puff puff.o 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/old/README: -------------------------------------------------------------------------------- 1 | This directory contains files that have not been updated for zlib 1.2.x 2 | 3 | (Volunteers are encouraged to help clean this up. Thanks.) 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryWindow.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | 6 | @interface CVDictionaryWindow : NSPanel { 7 | 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEServer/BaseIMEServer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEServer/BaseIMEServer.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEServer/BaseIMEServer.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEServer/BaseIMEServer.snk -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Resources/barhead.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Resources/barhead.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Resources/bartail.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Resources/bartail.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Resources/yahoo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Resources/yahoo.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/TakaoPreference.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/TakaoPreference.snk -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/PhraseEditor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/Images/PhraseEditor.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-DB/KeyKeyDB.pmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-DB/KeyKeyDB.pmproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/KeyKey25.pmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/KeyKey25.pmproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/KeyKey25.pmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/KeyKey25.pmproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/New.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/New.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/Up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/Up.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/info.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Installer64.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Installer64.sed -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestReporter.cpp: -------------------------------------------------------------------------------- 1 | #include "TestReporter.h" 2 | 3 | namespace UnitTest { 4 | 5 | 6 | TestReporter::~TestReporter() 7 | { 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/openssl-win32-x86/lib/libeay32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/openssl-win32-x86/lib/libeay32.lib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx64/inffasx64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx64/inffasx64.obj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx86/mkasm.bat: -------------------------------------------------------------------------------- 1 | cl /DASMV /I..\.. /O2 /c gvmat32c.c 2 | ml /coff /Zi /c /Flgvmat32.lst gvmat32.asm 3 | ml /coff /Zi /c /Flinffas32.lst inffas32.asm 4 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIAboutPanel.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIAboutPanel.designer.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/blank.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/blank.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/help.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/help.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/smart.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/smart.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/zh_CN.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/zh_CN.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/zh_TW.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/zh_TW.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/Images/editPhrase.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/Images/editPhrase.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/Images/editReading.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/Images/editReading.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Addendum/Yahoo.txt: -------------------------------------------------------------------------------- 1 | 奇摩 2 | 火狐 3 | 雅虎 4 | 捷徑列 5 | 生活家 6 | 知識家 7 | 迷你筆 8 | 上網方案 9 | 奇摩火狐 10 | 好打注音 11 | 學術搜尋 12 | 無名小站 13 | 無名影音 14 | 購物中心 15 | 雅虎奇摩 16 | 關鍵字廣告 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/strings/en.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/strings/en.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/strings/en.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/strings/en.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-UI/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | CFBundleName = "安装 Yahoo! 奇摩输入法"; 3 | CFBundleDisplayName = "安装 Yahoo! 奇摩输入法"; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-UI/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | CFBundleName = "安裝 Yahoo! 奇摩輸入法"; 3 | CFBundleDisplayName = "安裝 Yahoo! 奇摩輸入法"; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/dlgbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/dlgbmp.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/runtime/wixca.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/runtime/wixca.dll -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIKeyboardForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/BIKeyboardForm.designer.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/cangjie.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/cangjie.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/chinese.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/chinese.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/config.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/config.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/english.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/english.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/generic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/generic.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/simplex.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/simplex.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Artwork/YahooDMG.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Artwork/YahooDMG.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/strings/zh_CN.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/strings/zh_CN.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/strings/zh_TW.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/strings/zh_TW.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/Artwork/YahooDMG.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/Artwork/YahooDMG.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/strings/zh_CN.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/strings/zh_CN.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/strings/zh_TW.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/strings/zh_TW.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/bannrbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/bannrbmp.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/exclamic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/Bitmaps/exclamic.ico -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/CodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/CodecBase.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/Deflater.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/DotZLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/DotZLib.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/Inflater.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/UnitTests.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/fullwidth.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/fullwidth.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/halfwidth.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/halfwidth.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/menuCheck.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/menuCheck.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/phonetic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/phonetic.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/symbolOpen.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/symbolOpen.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/Modules.pmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/Modules.pmproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/SupplementInstaller.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/SupplementInstaller.sed -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/makesetup64.bat: -------------------------------------------------------------------------------- 1 | if exist setup64.exe (del setup64.exe) 2 | msbuild /target:Bootstrapper setup64.proj 3 | rename setup.exe setup64.exe 4 | iexpress /N Installer64.sed -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TimeHelpers.h: -------------------------------------------------------------------------------- 1 | #include "Config.h" 2 | 3 | #if defined UNITTEST_POSIX 4 | #include "Posix/TimeHelpers.h" 5 | #else 6 | #include "Win32/TimeHelpers.h" 7 | #endif 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/GZipStream.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/menuUncheck.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/menuUncheck.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/symbolClose.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/StatusbarItems/symbolClose.bmp -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Addendum/Z-Politics.txt: -------------------------------------------------------------------------------- 1 | 超限戰 2 | 金正日 3 | 逆轉勝 4 | 溫家寶 5 | 6 | 劉松藩 7 | 8 | 鄭瑞城 9 | 廖風德 10 | 王清峰 11 | 邱正雄 12 | 薛香川 13 | 石素梅 14 | 沈世宏 15 | 王昱婷 16 | 賴幸媛 17 | 莊國榮 18 | 19 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Artwork/DmgBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Artwork/DmgBackground.jpg -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/Artwork/DmgBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/Artwork/DmgBackground.jpg -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-UI/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | CFBundleName = "Install Yahoo! KeyKey"; 3 | CFBundleDisplayName = "Install Yahoo! KeyKey"; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/outline.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\examples\outline.c"); 2 | USELIB("Release\libexpat_mtd.lib"); 3 | //--------------------------------------------------------------------------- 4 | main 5 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingWindow.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | 6 | @interface CVFloatingWindow : NSWindow 7 | { 8 | NSPoint _initialLocation; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/strings/en.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/strings/en.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/zh_CN.lproj/preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/zh_CN.lproj/preference.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/zh_TW.lproj/preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/zh_TW.lproj/preference.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Artwork/PackageInstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Artwork/PackageInstaller.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/Artwork/PackageInstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/Artwork/PackageInstaller.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/tests/Main.cpp: -------------------------------------------------------------------------------- 1 | #include "../UnitTest++.h" 2 | #include "../TestReporterStdout.h" 3 | 4 | 5 | int main(int, char const *[]) 6 | { 7 | return UnitTest::RunAllTests(); 8 | } 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/elements.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\examples\elements.c"); 2 | USELIB("Release\libexpats_mtd.lib"); 3 | //--------------------------------------------------------------------------- 4 | main 5 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/blast/Makefile: -------------------------------------------------------------------------------- 1 | blast: blast.c blast.h 2 | cc -DTEST -o blast blast.c 3 | 4 | test: blast 5 | blast < test.pk | cmp - test.txt 6 | 7 | clean: 8 | rm -f blast blast.o 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/Artwork/YahooDMG.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/Artwork/YahooDMG.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/YKAFWordCount.pmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/YKAFWordCount.pmproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/YKReverseLookup.pmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/YKReverseLookup.pmproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/strings/zh_CN.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/strings/zh_CN.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/strings/zh_TW.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/strings/zh_TW.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/English.lproj/preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/English.lproj/preference.png -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/main.m: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | return NSApplicationMain(argc, (const char **) argv); 8 | } 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/zh_CN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/zh_TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Artwork/DmgBackground-org.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Artwork/DmgBackground-org.jpg -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFWebAPIToolbox/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Frameworks/LFWebAPIToolbox/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/SignatureMaker.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/SignatureMaker.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/unique.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | while(<>) { 3 | chomp; 4 | s/3|4|6|7//g; 5 | split; 6 | $k{$_[0]} = 1; 7 | } 8 | 9 | for $i (sort keys %k) { 10 | print "$i\n"; 11 | } 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/YKAFPhraseConverter.pmproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/YKAFPhraseConverter.pmproj -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/InstallHelp.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/InstallHelp.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVDictionaryController+Orz.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | #import "CVDictionaryController.h" 5 | 6 | @interface CVDictionaryController(Orz) 7 | 8 | - (void)showOrzSong; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/bpmf-pinyin-raw-to-toned.rb: -------------------------------------------------------------------------------- 1 | while line = gets 2 | line.chomp! 3 | line += "3" if line =~ /ˇ/ 4 | line += "2" if line =~ /ˊ/ 5 | line += "4" if line =~ /ˋ/ 6 | line += "5" if line =~ /˙/ 7 | puts line 8 | end -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyWindow.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | #import "CVFloatingWindow.h" 5 | 6 | @interface CVNotifyWindow : CVFloatingWindow 7 | { 8 | IBOutlet id _controller; 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat_static.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\lib\xmlparse.c"); 2 | USEUNIT("..\lib\xmlrole.c"); 3 | USEUNIT("..\lib\xmltok.c"); 4 | //--------------------------------------------------------------------------- 5 | #define Library 6 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw_static.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\lib\xmlparse.c"); 2 | USEUNIT("..\lib\xmlrole.c"); 3 | USEUNIT("..\lib\xmltok.c"); 4 | //--------------------------------------------------------------------------- 5 | #define Library 6 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFWebAPIToolbox/Source/LFWebAPIToolbox_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'LFWebAPIToolbox' target in the 'LFWebAPIToolbox' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/DownloadUpdate.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/DownloadUpdate.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/zh_CN.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/zh_CN.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/zh_TW.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laurence57l/KeyKey/HEAD/YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/zh_TW.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Addendum/Z-Media.txt: -------------------------------------------------------------------------------- 1 | 劉文正 2 | 加藤鷹 3 | 周玉寇 4 | 問津堂 5 | 壹傳媒 6 | 寶萊塢 7 | 赤拉尼維 8 | 蕭孋珠 9 | 明鏡週刊 10 | 明報週刊 11 | 點石齋 12 | 暴坊將軍 13 | 王哥柳哥 14 | 一翦梅 15 | 苦勞網 16 | 17 | 孫協志 18 | 王仁甫 19 | 許孟哲 20 | 小刀 21 | 22 | 銘報 23 | 文化一週 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/runtestspp.cpp: -------------------------------------------------------------------------------- 1 | // C++ compilation harness for the test suite. 2 | // 3 | // This is used to ensure the Expat headers can be included from C++ 4 | // and have everything work as expected. 5 | // 6 | #include "runtests.c" 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/codepage.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 2 | See the file COPYING for copying permission. 3 | */ 4 | 5 | int codepageMap(int cp, int *map); 6 | int codepageConvert(int cp, const char *p); 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/bpmf-pinyin-raw-to-toneless.rb: -------------------------------------------------------------------------------- 1 | dict = {} 2 | 3 | while line = gets 4 | line.chomp! 5 | line.gsub!(/ˇ|ˊ|ˋ|˙/, "") 6 | 7 | x = line.split[0] 8 | next if dict[x] 9 | dict[x] = true 10 | 11 | puts line 12 | end -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleCell.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | 6 | @interface CVInputMethodToggleCell : NSCell 7 | { 8 | BOOL _isHighlighted; 9 | } 10 | 11 | - (void)setHighlighted:(BOOL)flag; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/ReportAssert.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_ASSERT_H 2 | #define UNITTEST_ASSERT_H 3 | 4 | namespace UnitTest { 5 | 6 | void ReportAssert(char const* description, char const* filename, int lineNumber); 7 | 8 | } 9 | 10 | #endif 11 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleName = "Yahoo! KeyKey"; 2 | CFBundleDisplayName = "Yahoo! KeyKey"; 3 | NSHumanReadableCopyright = "Copyright © 2008-2010 Yahoo! Taiwan All Rights Reserved"; 4 | com.yahoo.inputmethod.KeyKey = "Yahoo! KeyKey"; 5 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleName = "Yahoo! 奇摩输入法"; 2 | CFBundleDisplayName = "Yahoo! 奇摩输入法"; 3 | NSHumanReadableCopyright = "雅虎国际资讯 版权所有\n© 2008-2010 Yahoo! Taiwan All Rights Reserved"; 4 | com.yahoo.inputmethod.KeyKey = "Yahoo! 奇摩输入法"; 5 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | CFBundleName = "Yahoo! 奇摩輸入法"; 2 | CFBundleDisplayName = "Yahoo! 奇摩輸入法"; 3 | NSHumanReadableCopyright = "雅虎國際資訊 版權所有\n© 2008-2010 Yahoo! Taiwan All Rights Reserved"; 4 | com.yahoo.inputmethod.KeyKey = "Yahoo! 奇摩輸入法"; 5 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/TrackerSender/OSX/TrackerSender.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | @interface TrackerSender : NSObject 6 | + (TrackerSender *)sharedTrackerSender; 7 | - (void)sendTrackerWithURLString:(NSString *)urlString; 8 | @end 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // PhraseEditor.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expat.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\lib\xmlparse.c"); 2 | USEUNIT("..\lib\xmlrole.c"); 3 | USEUNIT("..\lib\xmltok.c"); 4 | USEDEF("libexpat_mtd.def"); 5 | //--------------------------------------------------------------------------- 6 | #define DllEntryPoint 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/expatw.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\lib\xmlparse.c"); 2 | USEUNIT("..\lib\xmlrole.c"); 3 | USEUNIT("..\lib\xmltok.c"); 4 | USEDEF("libexpatw_mtd.def"); 5 | //--------------------------------------------------------------------------- 6 | #define DllEntryPoint 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // ServiceUI.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // HomophoneFilter.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingTableView.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | 6 | @interface CVFloatingTableView : NSTableView 7 | { 8 | NSColor *_tableBackgroundColor; 9 | } 10 | 11 | - (void)setTablebackgroundColor: (NSColor *)aColor; 12 | @end 13 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Preference"; 4 | CFBundleDisplayName = "Yahoo! KeyKey Preference"; 5 | NSHumanReadableCopyright = "Copyright © 2008-2010, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Yahoo! 奇摩输入法偏好设置"; 4 | CFBundleDisplayName = "Yahoo! 奇摩输入法偏好设置"; 5 | NSHumanReadableCopyright = "雅虎国际资讯 版权所有 © 2008-2010, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Yahoo! 奇摩輸入法偏好設定"; 4 | CFBundleDisplayName = "Yahoo! 奇摩輸入法偏好設定"; 5 | NSHumanReadableCopyright = "雅虎國際資訊 版權所有 © 2008-2010, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMERPC/BIClientRPCInterface.idl: -------------------------------------------------------------------------------- 1 | [ 2 | uuid(6876e464-0a80-4684-9fa6-bd8386c15060), 3 | version(1.0), 4 | implicit_handle (handle_t BIClientRPCInterfaceHandle) 5 | ] 6 | interface BIClientRPCInterface 7 | { 8 | void BICRequestSendFakeKey(); 9 | } 10 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // PreferencesMain.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "下载更新"; 4 | CFBundleDisplayName = "Yahoo! 奇摩輸入法下载更新程式"; 5 | NSHumanReadableCopyright = "雅虎国际资讯 版权所有 © 2008-2010, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "下載更新"; 4 | CFBundleDisplayName = "Yahoo! 奇摩輸入法下載更新程式"; 5 | NSHumanReadableCopyright = "雅虎國際資訊 版權所有 © 2008-2010, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Phrase Editor"; 4 | CFBundleDisplayName = "Yahoo! KeyKey Phrase Editor"; 5 | NSHumanReadableCopyright = "Copyright © 2008, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Yahoo! 奇摩输入法词汇编辑工具"; 4 | CFBundleDisplayName = "Yahoo! 奇摩输入法词汇编辑工具"; 5 | NSHumanReadableCopyright = "雅虎国际资讯 版权所有 © 2008-2009, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Yahoo! 奇摩輸入法詞彙編輯程式"; 4 | CFBundleDisplayName = "Yahoo! 奇摩輸入法詞彙編輯程式"; 5 | NSHumanReadableCopyright = "雅虎國際資訊 版權所有 © 2008-2009, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestSuite.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_TESTSUITE_H 2 | #define UNITTEST_TESTSUITE_H 3 | 4 | namespace UnitTestSuite { 5 | 6 | inline char const* GetSuiteName () 7 | { 8 | return "DefaultSuite"; 9 | } 10 | 11 | } 12 | 13 | #endif 14 | 15 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVNotifyWindow.m: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import "CVNotifyWindow.h" 4 | #import "CVNotifyController.h" 5 | 6 | @implementation CVNotifyWindow 7 | 8 | - (void)mouseDown:(NSEvent *)theEvent 9 | { 10 | [(CVNotifyController *)_controller fade]; 11 | } 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSColor+LFColorExtensions.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | 6 | @interface NSColor(LFColorExtensions) 7 | + (NSColor *)highlightGradientFromColor; 8 | + (NSColor *)highlightGradientToColor; 9 | - (NSColor *)gradientToColor; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | #pragma once 5 | 6 | // TODO: reference additional headers your program requires here 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/delphi/ZLibConst.pas: -------------------------------------------------------------------------------- 1 | unit ZLibConst; 2 | 3 | interface 4 | 5 | resourcestring 6 | sTargetBufferTooSmall = 'ZLib error: target buffer may be too small'; 7 | sInvalidStreamOp = 'Invalid stream operation'; 8 | 9 | implementation 10 | 11 | end. 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/testzlib/testzlib.txt: -------------------------------------------------------------------------------- 1 | To build testzLib with Visual Studio 2005: 2 | 3 | copy to a directory file from : 4 | - root of zLib tree 5 | - contrib/testzlib 6 | - contrib/masmx86 7 | - contrib/masmx64 8 | - contrib/vstudio/vc7 9 | 10 | and open testzlib8.sln -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/bpmf-cin-to-pinyin-raw.sh: -------------------------------------------------------------------------------- 1 | ruby -I ../Frameworks/Formosa/Ruby/native_bopomofo UniqueChardef.rb bpmf-ext.cin | sort | perl -MLingua::ZH::BPMFConvert -Mutf8 -CS -n -e 'chomp; $a=$_; s/\313\207|\313\212|\313\213|\313\231//g; print $a . " " . BPMF_to_Pinyin($_) . "\n"' > raw.txt 2 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/ServiceUI/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | #pragma once 5 | 6 | // TODO: reference additional headers your program requires here 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/HomophoneFilter/Windows/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | #pragma once 5 | 6 | // TODO: reference additional headers your program requires here 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/ReportAssert.cpp: -------------------------------------------------------------------------------- 1 | #include "AssertException.h" 2 | 3 | namespace UnitTest { 4 | 5 | void ReportAssert(char const* description, char const* filename, int const lineNumber) 6 | { 7 | throw AssertException(description, filename, lineNumber); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/PreferencesMain/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | #pragma once 5 | 6 | // TODO: reference additional headers your program requires here 7 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/MakeTakaoWin.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | msbuild Takao.xml /p:BuildCmd=Clean;Platform=Win32 3 | msbuild Takao.xml /p:BuildCmd=Clean;Platform=x64 4 | msbuild Takao.xml /p:BuildCmd=Build;Platform=Win32 5 | msbuild Takao.xml /p:BuildCmd=Build;Platform=x64 6 | cd Distributions\Takao\Installer-Windows 7 | call makedist 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "DownloadUpdate"; 4 | CFBundleDisplayName = "Yahoo! KeyKey DownloadUpdate"; 5 | NSHumanReadableCopyright = "Copyright © 2008-2010, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/xmlwf.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\xmlwf\codepage.c"); 2 | USEUNIT("..\xmlwf\win32filemap.c"); 3 | USEUNIT("..\xmlwf\xmlfile.c"); 4 | USEUNIT("..\xmlwf\xmlwf.c"); 5 | USELIB("Release\libexpat_mtd.lib"); 6 | //--------------------------------------------------------------------------- 7 | main 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/pinyin-u-normailize.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | while line = gets 3 | line.chomp! 4 | if line =~ /nu(\d|$)/ && line =~ /ㄋㄩ/ 5 | line.gsub!(/nu/, "nv") 6 | elsif line =~ /lu(\d|$)/ && line =~ /ㄌㄩ/ 7 | line.gsub!(/lu/, "lv") 8 | end 9 | 10 | puts line 11 | end 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/COPYING: -------------------------------------------------------------------------------- 1 | Refer to individual source code header for copyright notices. 2 | 3 | The project is based on the OpenVanilla Framework and its modules. 4 | 5 | Projects under PreferenceApplications/ and Utilities/, if unspecified, are developed by Lithoglyph Inc. for Yahoo! Taiwan. Copyright (c) 2007-2010 Yahoo! Taiwan. 6 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Addendum/Z-IT.txt: -------------------------------------------------------------------------------- 1 | 喊喳 2 | 圓體 3 | 外掛 4 | 思科 5 | 戴爾 6 | 插件 7 | 換膚 8 | 文鼎 9 | 明體 10 | 楷體 11 | 榖歌 12 | 機架 13 | 機櫃 14 | 漢音 15 | 激光 16 | 站點 17 | 索尼 18 | 組譯 19 | 網卡 20 | 網站 21 | 補丁 22 | 貼圖 23 | 黑體 24 | 張忠謀 25 | 標楷體 26 | 機上盒 27 | 細明體 28 | 許功蓋 29 | 路由器 30 | 迷你筆 31 | 鍵盤膜 32 | 集線器 33 | 黑金塔 34 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Yahoo! KeyKey Activation Help"; 4 | CFBundleDisplayName = "Yahoo! KeyKey Activation Help"; 5 | NSHumanReadableCopyright = "Copyright © 2008-2009, Yahoo! Taiwan All Rights Reserved."; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tests/Main.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | 7 | #include 8 | 9 | int main() 10 | { 11 | return UnitTest::RunAllTests(); 12 | } 13 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlurl.h: -------------------------------------------------------------------------------- 1 | #ifdef __cplusplus 2 | extern "C" { 3 | #endif 4 | 5 | int XML_URLInit(); 6 | void XML_URLUninit(); 7 | int XML_ProcessURL(XML_Parser parser, 8 | const XML_Char *url, 9 | unsigned flags); 10 | 11 | #ifdef __cplusplus 12 | } 13 | #endif 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEUI/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEMainWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // PEMainWindow.h 3 | // Takao 4 | // 5 | // Developed by Lithoglyph Inc on 2008/12/9. 6 | // Copyright 2008 Yahoo! Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface PEMainWindow : NSWindow { 13 | 14 | } 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVFloatingBackground.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | @interface CVFloatingBackground : NSView 6 | { 7 | NSColor *_backgroundFillColor; 8 | NSColor *_borderColor; 9 | } 10 | - (void)setBackgroundFillColor:(NSColor *)aColor; 11 | - (void)setBorderColor:(NSColor *)aColor; 12 | @end 13 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/LIClientRPCInterface/Makefile: -------------------------------------------------------------------------------- 1 | all: LIClientRPCInterface.h 2 | 3 | LIClientRPCInterface.h: LIClientRPCInterface.idl 4 | midl /app_config LIClientRPCInterface.idl 5 | 6 | clean: 7 | del LIClientRPCInterface.h 8 | del LIClientRPCInterface_c.c 9 | del LIClientRPCInterface_s.c 10 | 11 | rebuild: clean all 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/LIServerRPCInterface/Makefile: -------------------------------------------------------------------------------- 1 | all: LIServerRPCInterface.h 2 | 3 | LIServerRPCInterface.h: LIServerRPCInterface.idl 4 | midl /app_config LIServerRPCInterface.idl 5 | 6 | clean: 7 | del LIServerRPCInterface.h 8 | del LIServerRPCInterface_c.c 9 | del LIServerRPCInterface_s.c 10 | 11 | rebuild: clean all 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVButtonViewController.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | @interface CVButtonViewController : NSObject 6 | { 7 | NSView *_view; 8 | NSMutableArray *_buttonArray; 9 | } 10 | - (id)initWithDictionary:(NSDictionary *)d; 11 | - (NSView *)view; 12 | - (IBAction)sendString:(id)sender; 13 | @end 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/StatusBar.rc: -------------------------------------------------------------------------------- 1 | #include "resource.h" 2 | 3 | IDB_BITMAP_HEAD BITMAP "..\\BaseIMEUI\\Resources\\barhead.bmp" 4 | IDB_BITMAP_BG BITMAP "..\\BaseIMEUI\\Resources\\barbg.bmp" 5 | IDB_BITMAP_TAIL BITMAP "..\\BaseIMEUI\\Resources\\bartail.bmp" -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-Help/HelpController.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | #import 5 | 6 | @interface HelpController : NSWindowController { 7 | IBOutlet WebView *_webview; 8 | } 9 | - (void)openInternationPref; 10 | - (void)logout; 11 | - (IBAction)logout:(id)sender; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/NSStringExtension.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #include 4 | 5 | @interface NSString (SplitBySpaceWithQuote) 6 | + (NSString *)stringByColor:(NSColor *)c; 7 | - (NSString *)stringByQuoting; 8 | - (NSString *)stringByChomping; 9 | - (NSArray *)splitBySpaceWithQuote; 10 | - (NSColor *)colorByString; 11 | @end 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/count-lines-of-code.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | #Copyright (c) 2012, Yahoo! Inc. All rights reserved. 4 | #Copyrights licensed under the New BSD License. See the accompanying LICENSE 5 | #file for terms. 6 | # 7 | wc -l `find * | perl -n -e 'print if /(\.rb|\.h|\.cpp|\.cs|\.m|.mm)$/ && !/build/ && !/Document/ && !/External/ && !/immdev/'` 8 | 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/encodecstr.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | # 3 | #Copyright (c) 2012, Yahoo! Inc. All rights reserved. 4 | #Copyrights licensed under the New BSD License. See the accompanying LICENSE 5 | #file for terms. 6 | # 7 | 8 | while c = STDIN.getc 9 | if c >= 0x80 10 | printf "\\x%02x" % c 11 | else 12 | putc c 13 | end 14 | end 15 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFExtensions/NSBezierPathAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSBezierPathAdditions.h 3 | // 4 | // Copyright (c) 2007-2010 Lithoglyph Inc. All rights reserved. 5 | // 6 | 7 | #import 8 | 9 | @interface NSBezierPath (CVBezelPathAdditions) 10 | + (NSBezierPath*)bezelPathWithRect:(NSRect)boundingRect radius:(float)radius; 11 | @end 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/VersionInfoMaker/CocoaInit.m: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // [AUTO_HEADER] 7 | #import 8 | 9 | void CocoaInit() 10 | { 11 | id arp = [NSAutoreleasePool new]; 12 | } 13 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/untgz/Makefile: -------------------------------------------------------------------------------- 1 | CC=cc 2 | CFLAGS=-g 3 | 4 | untgz: untgz.o ../../libz.a 5 | $(CC) $(CFLAGS) -o untgz untgz.o -L../.. -lz 6 | 7 | untgz.o: untgz.c ../../zlib.h 8 | $(CC) $(CFLAGS) -c -I../.. untgz.c 9 | 10 | ../../libz.a: 11 | cd ../..; ./configure; make 12 | 13 | clean: 14 | rm -f untgz untgz.o *~ 15 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // PhraseEditor 4 | // 5 | // Developed by Lithoglyph Inc on 2008/10/19. 6 | // Copyright Yahoo! Inc 2008. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/LIRPCHelper/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // LIRPCHelper.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/SampleClient/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // SampleClient.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/SampleServer/stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // SampleServer.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | 7 | // TODO: reference any additional headers you need in STDAFX.H 8 | // and not in this file 9 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Addendum/Z-ACG.txt: -------------------------------------------------------------------------------- 1 | 八神 2 | 女僕 3 | 孟波 4 | 宜靜 5 | 小波 6 | 戰隊 7 | 技安 8 | 攻殼 9 | 正太 10 | 武神 11 | 聖衣 12 | 聶風 13 | 草薙 14 | 迪西 15 | 一頁書 16 | 刀劍笑 17 | 友民黨 18 | 岸和田 19 | 步驚雲 20 | 江田島 21 | 犽羽獠 22 | 素還真 23 | 聖鬥士 24 | 蛇貓教 25 | 馬榮成 26 | 黃玉郎 27 | 龍虎拳 28 | 龍虎門 29 | 傲笑紅塵 30 | 戰你娘親 31 | 火雲邪神 32 | 火鳳燎原 33 | 長門有希 34 | 阿部高和 35 | 江田島平八 36 | 奪命老妖 37 | 喬巴 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEDialogWindow.h: -------------------------------------------------------------------------------- 1 | // 2 | // PEDialogWindow.h 3 | // Takao 4 | // 5 | // Developed by Lithoglyph Inc on 2008/11/16. 6 | // Copyright 2008 Yahoo! Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface PEDialogWindow : NSWindow { 13 | IBOutlet NSButton *_cancelButton; 14 | 15 | } 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/OVIMChewing/PackageMain.cpp: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #include "OVIMChewingPackage.h" 4 | 5 | using namespace OpenVanilla; 6 | 7 | extern "C" OVModulePackage* OVModulePackageMain() 8 | { 9 | return new OVIMChewingPackage; 10 | } 11 | 12 | extern "C" unsigned int OVModulePackageFrameworkVersion() 13 | { 14 | return OVFrameworkInfo::Version(); 15 | } 16 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/LIClientRPCInterface/LIClientRPCInterface.idl: -------------------------------------------------------------------------------- 1 | [ 2 | uuid(6876e464-0a80-4684-9fa6-bd8386c15060), 3 | version(1.0), 4 | implicit_handle (handle_t g_LIClientRPCInterfaceHandle) 5 | ] 6 | interface LIClientRPCInterface 7 | { 8 | const unsigned int LICMaxStringLength = 1024; 9 | void LICSendString([in, string] const wchar_t *externalString); 10 | } 11 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/uniq.pl: -------------------------------------------------------------------------------- 1 | # reads all lines and only print out unique lines, sorted 2 | # 3 | #Copyright (c) 2012, Yahoo! Inc. All rights reserved. 4 | #Copyrights licensed under the New BSD License. See the accompanying LICENSE 5 | #file for terms. 6 | # 7 | 8 | while(<>) { 9 | chomp; 10 | $a{$_} = 1; 11 | } 12 | 13 | for $x (sort(keys(%a))) { 14 | print "$x\n"; 15 | } 16 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/main.m: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // [AUTO_HEADER] 7 | 8 | #import 9 | 10 | int main(int argc, char *argv[]) 11 | { 12 | return NSApplicationMain(argc, (const char **) argv); 13 | } 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/ZBTargetView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZBTargetView.h 3 | // SignatureMaker 4 | // 5 | /* 6 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 7 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 8 | file for terms. 9 | */ 10 | 11 | #import 12 | 13 | 14 | @interface ZBTargetView : NSView { 15 | 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Overrides/Keke-ZPromoteHighest.txt: -------------------------------------------------------------------------------- 1 | promote-highest 男配角 2 | promote-highest 懶覺 3 | promote-highest 原生 4 | promote-highest 直角 5 | promote-highest 廉價 6 | promote-highest 膠著 7 | promote-highest 知易行難 8 | promote-highest 醬油 9 | promote-highest 站立 10 | promote-highest 上衣 11 | promote-highest 匯出 12 | promote-highest 如意 13 | promote-highest 合適 14 | promote-highest 何解 15 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/TestOVFrameworkVersion.cpp: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #if defined(__APPLE__) 4 | #include 5 | #else 6 | #include "OpenVanilla.h" 7 | #endif 8 | 9 | #include "UnitTest++.h" 10 | 11 | using namespace OpenVanilla; 12 | 13 | TEST(OpenVanillaVersion) 14 | { 15 | CHECK_EQUAL(1, OVFrameworkInfo::MajorVersion()); 16 | } 17 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/BaseIME.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | ImeConversionList 3 | ImeConfigure 4 | ImeDestroy 5 | ImeEscape 6 | ImeInquire 7 | ImeProcessKey 8 | ImeSelect 9 | ImeSetActiveContext 10 | ImeToAsciiEx 11 | NotifyIME 12 | ImeRegisterWord 13 | ImeUnregisterWord 14 | ImeGetRegisterWordStyle 15 | ImeEnumRegisterWord 16 | ImeSetCompositionString 17 | ImeGetImeMenuItems 18 | BIUIWindowProc 19 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | *.ncb 3 | Debug 4 | Release 5 | *.vcproj.*.user 6 | debug 7 | release 8 | obj 9 | x64 10 | Thumbs.db 11 | build 12 | *.pbxuser 13 | *.mode1v3 14 | *.tm_build_errors 15 | *.perspectivev3 16 | .DS_Store 17 | ._* 18 | ExternalLibraries/sqlite-cerod-see/cerod_build 19 | ExternalLibraries/sqlite-cerod-see/sqlite3-cerod-see 20 | *.dmg 21 | xcuserdata 22 | project.xcworkspace 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Takao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Build 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEPhraseTableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // PEPhraseTableView.h 3 | // PhraseEditor 4 | // 5 | // Developed by Lithoglyph Inc on 2008/11/2. 6 | // Copyright 2008 Yahoo! Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface PEPhraseTableView : NSTableView 13 | { 14 | 15 | } 16 | 17 | - (void)cancelEditing:(NSText *)text; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVKeyboardHelper.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | #import 5 | 6 | @interface CVKeyboardHelper : NSObject 7 | { 8 | NSMutableArray *_validKeyboardLayouts; 9 | } 10 | + (CVKeyboardHelper *)sharedSendKey; 11 | - (void)loadValidKeyboardLayouts; 12 | - (NSArray *)validKeyboardLayouts; 13 | - (BOOL)validateKeyboardLayout:(NSString *)layout; 14 | @end 15 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/unique-pinyin.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | import sys 4 | 5 | pinyin = {} 6 | while True: 7 | line = sys.stdin.readline() 8 | if not line: 9 | break 10 | 11 | x = line.strip().split(" ") 12 | if len(x) > 1: 13 | if not pinyin.has_key(x[0]): 14 | pinyin[x[0]] = True 15 | print("%s" % x[0]) -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleControl.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | 6 | @interface CVInputMethodToggleControl : NSControl 7 | { 8 | NSMutableArray *_cellArray; 9 | int _currentIndex; 10 | NSSize _autosize; 11 | } 12 | 13 | - (void)setInputMethodArray:(NSArray *)inputMethodArray; 14 | - (void)setCurrentIndex:(int)currentIndex; 15 | - (NSSize)autosize; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/SignatureMaker_Prefix.pch: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // 7 | // Prefix header for all source files of the 'SignatureMaker' target in the 'SignatureMaker' project 8 | // 9 | 10 | #ifdef __OBJC__ 11 | #import 12 | #endif 13 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // SignatureMaker 4 | // 5 | /* 6 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 7 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 8 | file for terms. 9 | */ 10 | 11 | #import 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | return NSApplicationMain(argc, (const char **) argv); 16 | } 17 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/TextOverlay/TextOverlay_Prefix.pch: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // 7 | // Prefix header for all source files of the 'TextOverlay' target in the 'TextOverlay' project. 8 | // 9 | 10 | #ifdef __OBJC__ 11 | #import 12 | #endif 13 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/UnitTest++.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTESTCPP_H 2 | #define UNITTESTCPP_H 3 | 4 | //lint -esym(1509,*Fixture) 5 | 6 | #include "Config.h" 7 | #include "Test.h" 8 | #include "TestList.h" 9 | #include "TestSuite.h" 10 | #include "TestResults.h" 11 | 12 | #include "TestMacros.h" 13 | 14 | #include "CheckMacros.h" 15 | #include "TestRunner.h" 16 | #include "TimeConstraint.h" 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/untgz/Makefile.msc: -------------------------------------------------------------------------------- 1 | CC=cl 2 | CFLAGS=-MD 3 | 4 | untgz.exe: untgz.obj ..\..\zlib.lib 5 | $(CC) $(CFLAGS) untgz.obj ..\..\zlib.lib 6 | 7 | untgz.obj: untgz.c ..\..\zlib.h 8 | $(CC) $(CFLAGS) -c -I..\.. untgz.c 9 | 10 | ..\..\zlib.lib: 11 | cd ..\.. 12 | $(MAKE) -f win32\makefile.msc 13 | cd contrib\untgz 14 | 15 | clean: 16 | -del untgz.obj 17 | -del untgz.exe 18 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVPlainTextCandidateController.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | #import 5 | #import "CVBubbleTextView.h" 6 | #import "CVBubbleTextWindow.h" 7 | 8 | using namespace OpenVanilla; 9 | 10 | @interface CVPlainTextCandidateController : NSWindowController { 11 | } 12 | - (void)updateContent:(PVPlainTextCandidatePanel*)panel atPoint:(NSPoint)position; 13 | @end 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/tests/TestTestSuite.cpp: -------------------------------------------------------------------------------- 1 | #include "../UnitTest++.h" 2 | 3 | // We're really testing if it's possible to use the same suite in two files 4 | // to compile and link successfuly (TestTestSuite.cpp has suite with the same name) 5 | // Note: we are outside of the anonymous namespace 6 | SUITE(SameTestSuite) 7 | { 8 | TEST(DummyTest2) 9 | { 10 | (void)testResults_; 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFExtensions/LFCrossDevelopmentTools.h: -------------------------------------------------------------------------------- 1 | // 2 | // LFCrossDevelopmentTools.h 3 | // 4 | // Copyright (c) 2007-2010 Lithoglyph Inc. All rights reserved. 5 | // 6 | 7 | #import 8 | 9 | #ifdef __cplusplus 10 | extern "C" { 11 | #endif 12 | 13 | // mutually exclusive things 14 | BOOL LFIsRunningUnderOSX10_5AndAbove(); 15 | BOOL LFIsRunningUnderOSX10_4Only(); 16 | 17 | #ifdef __cplusplus 18 | }; 19 | #endif 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/stdafx.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // stdafx.cpp : source file that includes just the standard includes 7 | // CinInstaller.pch will be the pre-compiled header 8 | // stdafx.obj will contain the pre-compiled type information 9 | 10 | #include "stdafx.h" 11 | 12 | 13 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/ZBMakerController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZBMakerController.h 3 | // SignatureMaker 4 | // 5 | /* 6 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 7 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 8 | file for terms. 9 | */ 10 | 11 | #import 12 | 13 | 14 | @interface ZBMakerController : NSWindowController { 15 | IBOutlet id u_dropTarget; 16 | 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Source/Node.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | 7 | #include "Node.h" 8 | 9 | namespace Manjusri { 10 | Score Node::c_defaultUNKProbability = (Score)0; 11 | Score Node::c_defaultUNKBackoff = (Score)0; 12 | Score Node::c_defaultOverrideScore = (Score)100; 13 | }; 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/LFPlatform/Headers/LFPlatform.h: -------------------------------------------------------------------------------- 1 | // 2 | // LFPlatform.h 3 | // 4 | // Copyright (c) 2007-2010 Lithoglyph Inc. All rights reserved. 5 | // 6 | 7 | #ifndef LFPlatform_h 8 | #define LFPlatform_h 9 | 10 | #if defined(__APPLE__) 11 | #include 12 | #else 13 | #include "LogKit.h" 14 | #include "ProcessHelper.h" 15 | #include "RPCHelper.h" 16 | #include "RegistryHelper.h" 17 | #endif 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PESettingTableView.h: -------------------------------------------------------------------------------- 1 | // 2 | // PESettingTableView.h 3 | // PhraseEditor 4 | // 5 | // Developed by Lithoglyph Inc on 2008/11/2. 6 | // Copyright 2008 Yahoo! Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface PESettingTableView : NSTableView { 13 | NSMutableArray *_array; 14 | 15 | } 16 | 17 | - (void)setArray:(NSArray *)array; 18 | - (NSString *)currentReading; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-DB/Resources/preflight: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Start preflight script" 3 | VERSION_FOR_INSTALLER="2286"; 4 | URL="http://tw.rd.yahoo.com/referurl/keykey/client/installer/start/${VERSION_FOR_INSTALLER}M105/*http://tw.yimg.com/i/tw/download/ykkimg/blank.gif" 5 | /usr/bin/curl -L -A "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)" $URL > /dev/null 6 | echo "End preflight script" 7 | exit 0 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Resources/preflight: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Start preflight script" 3 | VERSION_FOR_INSTALLER="2528"; 4 | URL="http://tw.rd.yahoo.com/referurl/keykey/client/installer/start/${VERSION_FOR_INSTALLER}M105/*http://tw.yimg.com/i/tw/download/ykkimg/blank.gif" 5 | /usr/bin/curl -L -A "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)" $URL > /dev/null 6 | echo "End preflight script" 7 | exit 0 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/Resources/preflight: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Start preflight script" 3 | VERSION_FOR_INSTALLER="2528"; 4 | URL="http://tw.rd.yahoo.com/referurl/keykey/client/installer/start/${VERSION_FOR_INSTALLER}M104/*http://tw.yimg.com/i/tw/download/ykkimg/blank.gif" 5 | /usr/bin/curl -L -A "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)" $URL > /dev/null 6 | echo "End preflight script" 7 | exit 0 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/UPGRADING.txt: -------------------------------------------------------------------------------- 1 | Takao-Windows Upgrading Procedure: 2 | 3 | 1. Change version info in the following files: 4 | 5 | Under trunk/Loaders/Windows-IMM: 6 | 7 | a. Change all version info in all .vcproj and AssemblyInfo.* 8 | b. Change BIAboutPanel 9 | 10 | 2. Change version info in trunk/Distribution/Takao/Installer-Windows 11 | 12 | a. Change version number 13 | b. Change UUID for Product and Package 14 | 15 | 3. Rebuild everything 16 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMETool/BaseIMETool.manifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Addendum/FriendPhrases-20080526.txt: -------------------------------------------------------------------------------- 1 | 族繁不及備載 2 | 第一集 3 | 腐儒 4 | 午安 5 | 高盧人 6 | 精實 7 | 兒化韻 8 | 食言而肥 9 | 飄移 10 | 正港 11 | 滅絕師太 12 | 汶川 13 | 歐晉德 14 | 才會 15 | 菜市名 16 | 陳頤欣 17 | 輕鋼架 18 | 霧台村 19 | 皰疹 20 | 圍事 21 | 未爆彈 22 | 許銘傑 23 | 台式 24 | 好打注音 25 | 窮舉 26 | 雜魚 27 | 口蹄疫 28 | 不足掛齒 29 | 有情有義 30 | 石棉 31 | 餛飩 32 | 下次 33 | 砧板 34 | 棧板 35 | 何解 36 | 清泉崗 37 | 世事難料 38 | 大纛高牙 39 | 美技 40 | 黎礎寧 41 | 勇壯 42 | 黃靖倫 43 | 潘嗣敬 44 | 賴聖恩 45 | 蔡忠穎 46 | 王彥博 47 | 簡鳳君 48 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/stdafx.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // stdafx.h : include file for standard system include files, 7 | // or project specific include files that are used frequently, but 8 | // are changed infrequently 9 | #pragma once 10 | 11 | // TODO: reference additional headers your program requires here 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVAboutController.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | #import "TakaoWordCount.h" 5 | 6 | @interface CVAboutController : NSWindowController 7 | { 8 | IBOutlet id _aboutTextField; 9 | BOOL init; 10 | TakaoWordCount *_wordCountController; 11 | NSSize defaultWindowSize; 12 | } 13 | 14 | #pragma mark Interface Builder actions 15 | 16 | - (IBAction)showWindow:(id)sender; 17 | - (IBAction)launchCustomerCare:(id)sender; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/Resources/preflight: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # echo "Start preflight script" 3 | # VERSION_FOR_INSTALLER="2286"; 4 | # URL="http://tw.rd.yahoo.com/referurl/keykey/client/installer/start/${VERSION_FOR_INSTALLER}M105/*http://tw.yimg.com/i/tw/download/ykkimg/blank.gif" 5 | # /usr/bin/curl -L -A "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)" $URL > /dev/null 6 | # echo "End preflight script" 7 | exit 0 8 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/SampleServer/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | // 5 | 6 | #pragma once 7 | 8 | 9 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 10 | #include 11 | #include 12 | #include 13 | 14 | // TODO: reference additional headers your program requires here 15 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Overrides/zonble-200903.txt: -------------------------------------------------------------------------------- 1 | - 目光之城 2 | - 慕光之城 3 | - 幕光之城 4 | + 暮光之城 5 | + 戰鎚 6 | + 戰錘 7 | - 戰槌 8 | - 法證先鋒 9 | - 遊戲郭 10 | - 遙遙殺 11 | - 瑤瑤殺 12 | - 瑤瑤無名 13 | - 遙遙無名 14 | + 殺很大 15 | + 殺不用錢 16 | + 鹿林 17 | - 業問 18 | - 泡菜做法 19 | - 泡菜作法 20 | - 金范 21 | - 鹿林慧星 22 | - 摩爾裝園 23 | - 爆走兄妹 24 | - 爆龍戰隊 25 | - 七龍記 26 | - 光明戰技 27 | - 冬侯鳥 28 | - 吞食ㄚㄚ 29 | - 哪裡好玩 30 | - 插很大 31 | - 搓奶 32 | - 教育卷 33 | + 橙草 34 | - 瑤瑤圖片 35 | - 瑤瑤外拍 36 | - 瑤瑤寫真 37 | - 瑤瑤電玩 38 | - 粉愛你 39 | - 賓果賓果 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-DB/Resources/postflight: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Start postflight script" 3 | 4 | IMK="/Library/Input Methods/Yahoo! KeyKey.app/Contents/MacOS/Yahoo! KeyKey" 5 | TSM="/Library/Components/Yahoo! KeyKey.bundle/Contents/SharedSupport/KeyKeyServer.app/Contents/MacOS/KeyKeyServer" 6 | 7 | if [ -e "$IMK" ] 8 | then 9 | "$IMK" reload 10 | else 11 | if [ -e "$TSM" ] 12 | then 13 | "$TSM" reload 14 | fi 15 | fi 16 | 17 | exit 0 18 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Posix/TimeHelpers.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_TIMEHELPERS_H 2 | #define UNITTEST_TIMEHELPERS_H 3 | 4 | #include 5 | 6 | namespace UnitTest { 7 | 8 | class Timer 9 | { 10 | public: 11 | Timer(); 12 | void Start(); 13 | int GetTimeInMs() const; 14 | 15 | private: 16 | struct timeval m_startTime; 17 | }; 18 | 19 | 20 | namespace TimeHelpers 21 | { 22 | void SleepMs (int ms); 23 | } 24 | 25 | 26 | } 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/SampleClient/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | // 5 | 6 | #pragma once 7 | 8 | 9 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 10 | #include 11 | #include 12 | #include 13 | 14 | 15 | // TODO: reference additional headers your program requires here 16 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/PackageMain.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Developed for Yahoo! Taiwan by Lithoglyph Inc. 3 | // Copyright (c) 2007-2010 Yahoo! Taiwan. 4 | // 5 | 6 | #include "OVAFSearchPackage.h" 7 | 8 | using namespace OpenVanilla; 9 | 10 | extern "C" OVEXPORT OVModulePackage* OVModulePackageMain() 11 | { 12 | return new OVAFSearchPackage; 13 | } 14 | 15 | extern "C" OVEXPORT unsigned int OVModulePackageFrameworkVersion() 16 | { 17 | return OVFrameworkInfo::Version(); 18 | } 19 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/Windows/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by app.rc 4 | // 5 | 6 | // Next default values for new objects 7 | // 8 | #ifdef APSTUDIO_INVOKED 9 | #ifndef APSTUDIO_READONLY_SYMBOLS 10 | #define _APS_NEXT_RESOURCE_VALUE 104 11 | #define _APS_NEXT_COMMAND_VALUE 40001 12 | #define _APS_NEXT_CONTROL_VALUE 1000 13 | #define _APS_NEXT_SYMED_VALUE 101 14 | #endif 15 | #endif 16 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-ExtraModules/Resources/postflight: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Start postflight script" 3 | 4 | IMK="/Library/Input Methods/Yahoo! KeyKey.app/Contents/MacOS/Yahoo! KeyKey" 5 | TSM="/Library/Components/Yahoo! KeyKey.bundle/Contents/SharedSupport/KeyKeyServer.app/Contents/MacOS/KeyKeyServer" 6 | 7 | if [ -e "$IMK" ] 8 | then 9 | "$IMK" reload 10 | else 11 | if [ -e "$TSM" ] 12 | then 13 | "$TSM" reload 14 | fi 15 | fi 16 | 17 | exit 0 18 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/inffast.h: -------------------------------------------------------------------------------- 1 | /* inffast.h -- header to use inffast.c 2 | * Copyright (C) 1995-2003 Mark Adler 3 | * For conditions of distribution and use, see copyright notice in zlib.h 4 | */ 5 | 6 | /* WARNING: this file should *not* be used by applications. It is 7 | part of the implementation of the compression library and is 8 | subject to change. Applications should only use zlib.h. 9 | */ 10 | 11 | void inflate_fast OF((z_streamp strm, unsigned start)); 12 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/Manjusri.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | 7 | #ifndef Manjusri_h 8 | #define Manjusri_h 9 | 10 | #if defined(__APPLE__) 11 | #include 12 | #else 13 | #include "OpenVanilla.h" 14 | #endif 15 | 16 | #include "Graph.h" 17 | #include "LanguageModel.h" 18 | #include "Node.h" 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/OVDependency.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | 7 | #ifndef OVDependency_h 8 | #define OVDependency_h 9 | 10 | #ifndef OV_USE_SQLITE 11 | #define OV_USE_SQLITE 12 | #endif 13 | 14 | #if defined(__APPLE__) 15 | #include 16 | #else 17 | #include "OpenVanilla.h" 18 | #endif 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoKeyboardLayoutPopUpButton.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // [AUTO_HEADER] 7 | 8 | #import 9 | 10 | 11 | @interface TakaoKeyboardLayoutPopUpButton : NSPopUpButton 12 | { 13 | NSMenu *_standardMenu; 14 | NSMenu *_realMenu; 15 | } 16 | 17 | - (void)changeMenu:(NSNotification *)notification; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/Windows/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/cj-punctuations-halfwidth.cin: -------------------------------------------------------------------------------- 1 | %gen_inp 2 | %ename Half-Width Punctuations 3 | %encoding UTF-8 4 | %endkey ,./;'[]\`-=<>?:"{}|~!@#$%^&*()_+ 5 | %keyname begin 6 | %keyname end 7 | %chardef begin 8 | , , 9 | . . 10 | / / 11 | ; ; 12 | ' ' 13 | [ [ 14 | ] ] 15 | \ \ 16 | ` ` 17 | - - 18 | = = 19 | < < 20 | > > 21 | ? ? 22 | : : 23 | " " 24 | { { 25 | } } 26 | | | 27 | ~ ~ 28 | ! ! 29 | @ @ 30 | # # 31 | $ $ 32 | % % 33 | ^ ^ 34 | & & 35 | * * 36 | ( ( 37 | ) ) 38 | _ _ 39 | + + 40 | %chardef end 41 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DatabaseCooker/generate-noise.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | require "rubygems" 3 | require "uuidtools" 4 | 5 | iteration = 1000 6 | 7 | if ARGV.size > 0 8 | iteration = ARGV[0].to_i 9 | end 10 | 11 | puts "DROP TABLE IF EXISTS noise;"; 12 | puts "CREATE TABLE noise(text);" 13 | 14 | puts "BEGIN;" 15 | 16 | iteration.times do 17 | uuid = UUIDTools::UUID::random_create.to_s 18 | puts "INSERT INTO noise (text) VALUES ('%s');" % uuid 19 | end 20 | 21 | puts "COMMIT;" 22 | puts "VACUUM;" 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/TestPHTConversion.cpp: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #include 4 | #include "Mandarin.h" 5 | 6 | using namespace std; 7 | using namespace Formosa::Mandarin; 8 | 9 | int main(int argc, char *argv[]) 10 | { 11 | while(!cin.eof()) { 12 | string line; 13 | getline(cin, line); 14 | 15 | BPMF syllable = BPMF::FromHanyuPinyin(line); 16 | cout << line << " -> " << syllable.composedString() << endl; 17 | } 18 | 19 | return 0; 20 | } 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/LIRPCHelper/stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, but 3 | // are changed infrequently 4 | // 5 | 6 | #pragma once 7 | 8 | 9 | #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 10 | #include 11 | #define SECURITY_WIN32 12 | #include 13 | #include 14 | 15 | // TODO: reference additional headers your program requires here 16 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestList.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_TESTLIST_H 2 | #define UNITTEST_TESTLIST_H 3 | 4 | 5 | namespace UnitTest { 6 | 7 | class Test; 8 | 9 | class TestList 10 | { 11 | public: 12 | TestList(); 13 | void Add (Test* test); 14 | 15 | Test* GetHead() const; 16 | 17 | private: 18 | Test* m_head; 19 | Test* m_tail; 20 | }; 21 | 22 | 23 | class ListAdder 24 | { 25 | public: 26 | ListAdder(TestList& list, Test* test); 27 | }; 28 | 29 | } 30 | 31 | 32 | #endif 33 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/TestPinyinConversion.cpp: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #include 4 | #include "Mandarin.h" 5 | 6 | using namespace std; 7 | using namespace Formosa::Mandarin; 8 | 9 | int main(int argc, char *argv[]) 10 | { 11 | while(!cin.eof()) { 12 | string line; 13 | getline(cin, line); 14 | 15 | BPMF syllable = BPMF::FromHanyuPinyin(line); 16 | cout << line << " -> " << syllable.composedString() << endl; 17 | } 18 | 19 | return 0; 20 | } 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/Tests/TestOVDateTimeHelper.cpp: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #if defined(__APPLE__) 4 | #include 5 | #else 6 | #include "OpenVanilla.h" 7 | #endif 8 | 9 | #include "UnitTest++.h" 10 | 11 | using namespace OpenVanilla; 12 | 13 | TEST(DateTimeHelper) 14 | { 15 | cout << OVDateTimeHelper::LocalDateTimeString() << endl; 16 | CHECK(OVDateTimeHelper::LocalTimeString().length()); 17 | CHECK(OVDateTimeHelper::LocalDateTimeString().length()); 18 | } 19 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateCell.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | 6 | @interface CVHorizontalCandidateCell : NSActionCell 7 | { 8 | NSString *_keyString; 9 | NSString *_candidate; 10 | 11 | NSMutableDictionary *_candidateAttributes; 12 | BOOL _isHighlighted; 13 | 14 | float _fontHeight; 15 | } 16 | 17 | - (id)initWithKeyString:(NSString *)keyString candidate:(NSString *)candidate fontHeight:(float)inFontHeight; 18 | - (void)setHighlight:(BOOL)flag; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextWindow.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | @interface CVBubbleTextWindow : NSWindow 6 | { 7 | NSPoint _initialLocation; 8 | BOOL _useWindowAnimation; 9 | 10 | IBOutlet id _textView; 11 | } 12 | - (void)setText:(NSString *)newText; 13 | - (void)setBubbleBackgroundColor:(NSColor *)color; 14 | - (void)setTextColor:(NSColor *)color; 15 | - (void)setFont:(NSFont *)font; 16 | - (void)setUseWindowAnimation:(BOOL)animation; 17 | - (void)updateWindowSize; 18 | @end 19 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/DataTables/cj-punctuations-mixedwidth.cin: -------------------------------------------------------------------------------- 1 | %gen_inp 2 | %ename Half-Width Punctuations 3 | %encoding UTF-8 4 | %endkey ,./;'[]\`-=<>?:"{}|~!@#$%^&*()_+ 5 | %keyname begin 6 | %keyname end 7 | %chardef begin 8 | , , 9 | . 。 10 | / / 11 | ; ; 12 | ' ' 13 | [ [ 14 | ] ] 15 | \ \ 16 | ` ` 17 | - - 18 | = = 19 | < < 20 | < , 21 | > > 22 | > . 23 | ? ? 24 | : : 25 | " " 26 | { { 27 | } } 28 | | | 29 | ~ ~ 30 | ! ! 31 | @ @ 32 | # # 33 | $ $ 34 | % % 35 | ^ ^ 36 | & & 37 | * * 38 | ( ( 39 | ) ) 40 | _ _ 41 | + + 42 | %chardef end 43 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-Windows/extramod.proj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DatabaseCooker/insert-file-into-db.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | require "rubygems" 3 | require "sqlite3" 4 | 5 | if ARGV.size < 4 6 | STDERR.puts "usage: insert-file-into-db.rb " 7 | exit 1 8 | end 9 | 10 | db = SQLite3::Database.new(ARGV[0]) 11 | file = IO.read(ARGV[3]) 12 | db.execute("INSERT INTO '#{ARGV[1]}' (key, value) VALUES (?, ?)", ARGV[2], file) 13 | 14 | tsk = ARGV[2] + "_timestamp" 15 | db.execute("INSERT INTO '#{ARGV[1]}' (key, value) VALUES (?, ?)", tsk, Time.now.to_i) 16 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFOneKey/PackageMain.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | 7 | #include "YKAFOneKeyPackage.h" 8 | 9 | using namespace OpenVanilla; 10 | 11 | extern "C" OVEXPORT OVModulePackage* OVModulePackageMain() 12 | { 13 | return new YKAFOneKeyPackage; 14 | } 15 | 16 | extern "C" OVEXPORT unsigned int OVModulePackageFrameworkVersion() 17 | { 18 | return OVFrameworkInfo::Version(); 19 | } 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVInputMethodToggleWindowController.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | #import "CVInputMethodToggleControl.h" 5 | 6 | @interface CVInputMethodToggleWindowController : NSWindowController 7 | { 8 | IBOutlet CVInputMethodToggleControl *_togglecontrol; 9 | BOOL _shouldHideWindow; 10 | NSRect _screenFrame; 11 | } 12 | 13 | - (void)showWindowWithInputMethods:(NSArray *)inputMethods selectedIndex:(int)selectedIndex; 14 | - (void)moveToNextInputMethod; 15 | - (void)useScreenOfPoint:(NSPoint)point; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFWordCount/PackageMain.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | 7 | #include "YKAFWordCountPackage.h" 8 | 9 | using namespace OpenVanilla; 10 | 11 | extern "C" OVEXPORT OVModulePackage* OVModulePackageMain() 12 | { 13 | return new YKAFWordCountPackage; 14 | } 15 | 16 | extern "C" OVEXPORT unsigned int OVModulePackageFrameworkVersion() 17 | { 18 | return OVFrameworkInfo::Version(); 19 | } 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/DeferredTestResult.cpp: -------------------------------------------------------------------------------- 1 | #include "DeferredTestResult.h" 2 | 3 | #include 4 | 5 | namespace UnitTest 6 | { 7 | 8 | DeferredTestResult::DeferredTestResult() 9 | : suiteName("") 10 | , testName("") 11 | , failureFile("") 12 | , timeElapsed(0.0f) 13 | , failed(false) 14 | { 15 | } 16 | 17 | DeferredTestResult::DeferredTestResult(char const* suite, char const* test) 18 | : suiteName(suite) 19 | , testName(test) 20 | , failureFile("") 21 | , timeElapsed(0.0f) 22 | , failed(false) 23 | { 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/YKAFPhraseAware/PackageMain.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | 7 | #include "YKAFPhraseAwarePackage.h" 8 | 9 | using namespace OpenVanilla; 10 | 11 | extern "C" OVEXPORT OVModulePackage* OVModulePackageMain() 12 | { 13 | return new YKAFPhraseAwarePackage; 14 | } 15 | 16 | extern "C" OVEXPORT unsigned int OVModulePackageFrameworkVersion() 17 | { 18 | return OVFrameworkInfo::Version(); 19 | } 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIMEServer/RemoteDataFetcherDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // Developed for Yahoo! Taiwan by Lithoglyph Inc. 3 | // Copyright (c) 2007-2010 Yahoo! Taiwan. 4 | // 5 | 6 | #ifndef RemoteDataFetcherDelegate_h 7 | #define RemoteDataFetcherDelegate_h 8 | 9 | #include 10 | 11 | namespace WindowsVanilla { 12 | using namespace std; 13 | 14 | class RemoteDataFetcherDelegate { 15 | public: 16 | virtual void handleFetchResult(const char* data, size_t size) 17 | { 18 | } 19 | }; 20 | }; 21 | 22 | #endif 23 | 24 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/iowin32.h: -------------------------------------------------------------------------------- 1 | /* iowin32.h -- IO base function header for compress/uncompress .zip 2 | files using zlib + zip or unzip API 3 | This IO API version uses the Win32 API (for Microsoft Windows) 4 | 5 | Version 1.01e, February 12th, 2005 6 | 7 | Copyright (C) 1998-2005 Gilles Vollant 8 | */ 9 | 10 | #include 11 | 12 | 13 | #ifdef __cplusplus 14 | extern "C" { 15 | #endif 16 | 17 | void fill_win32_filefunc OF((zlib_filefunc_def* pzlib_filefunc_def)); 18 | 19 | #ifdef __cplusplus 20 | } 21 | #endif 22 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVHorizontalCandidateControl.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | 6 | @interface CVHorizontalCandidateControl : NSControl 7 | { 8 | NSMutableArray *_candidateCellArray; 9 | NSSize _autotSize; 10 | 11 | BOOL _clickable; 12 | int _clickedIndex; 13 | 14 | float _candidateTextHeight; 15 | } 16 | - (NSSize)autoSize; 17 | - (void)setArray:(NSArray *)candidateArray; 18 | - (void)setHighlightdeIndex:(int)index; 19 | - (void)setClickable:(BOOL)flag; 20 | - (int)clickedIndex; 21 | 22 | - (void)setCandidateTextHeight:(float)inTextHeight; 23 | @end 24 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/filemap.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 2 | See the file COPYING for copying permission. 3 | */ 4 | 5 | #include 6 | 7 | #ifdef XML_UNICODE 8 | int filemap(const wchar_t *name, 9 | void (*processor)(const void *, size_t, 10 | const wchar_t *, void *arg), 11 | void *arg); 12 | #else 13 | int filemap(const char *name, 14 | void (*processor)(const void *, size_t, 15 | const char *, void *arg), 16 | void *arg); 17 | #endif 18 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlmime.h: -------------------------------------------------------------------------------- 1 | #ifdef __cplusplus 2 | extern "C" { 3 | #endif 4 | 5 | /* Registered charset names are at most 40 characters long. */ 6 | 7 | #define CHARSET_MAX 41 8 | 9 | /* Figure out the charset to use from the ContentType. 10 | buf contains the body of the header field (the part after "Content-Type:"). 11 | charset gets the charset to use. It must be at least CHARSET_MAX chars 12 | long. charset will be empty if the default charset should be used. 13 | */ 14 | 15 | void getXMLCharset(const char *buf, char *charset); 16 | 17 | #ifdef __cplusplus 18 | } 19 | #endif 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/bundle-clean.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | # 3 | #Copyright (c) 2012, Yahoo! Inc. All rights reserved. 4 | #Copyrights licensed under the New BSD License. See the accompanying LICENSE 5 | #file for terms. 6 | # 7 | if ARGV.size < 1 8 | STDERR.puts "usage: bundle-clean bundle" 9 | exit 1 10 | end 11 | 12 | headers = Dir.glob(File.join(ARGV[0], "**", "*.h")) 13 | 14 | headers.each { |f| File.unlink(f) ; puts "Removed: #{f}" } 15 | 16 | # ARGV[0] =~ /.+\/(.+?)\..+/ 17 | # binary = File.join(ARGV[0], "Contents", "MacOS", "#{$1}") 18 | # system "strip '#{binary}'" 19 | # puts "Stripped: \"#{binary}\"" 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoReverseLookup.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // [AUTO_HEADER] 7 | 8 | #import 9 | #import "TakaoSettings.h" 10 | 11 | @interface TakaoReverseLookup : NSObject 12 | { 13 | IBOutlet NSView *_view; 14 | IBOutlet NSPopUpButton *_popUpButton; 15 | 16 | NSArray *_reverseLookupArray; 17 | NSString *_preferenceFilePath; 18 | } 19 | 20 | - (NSView *)view; 21 | - (IBAction)changeReverseLookupSetting:(id)sender; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/setup.bat: -------------------------------------------------------------------------------- 1 | REM CommandInterpreter: $(COMSPEC) 2 | if not exist .\release\nul mkdir release 3 | if not exist .\release\obj\nul mkdir release\obj 4 | if not exist .\release\obj\libexpat\nul mkdir release\obj\libexpat 5 | if not exist .\release\obj\libexpatw\nul mkdir release\obj\libexpatw 6 | if not exist .\release\obj\libexpat_static\nul mkdir release\obj\libexpat_static 7 | if not exist .\release\obj\libexpatw_static\nul mkdir release\obj\libexpatw_static 8 | if not exist .\release\obj\examples\nul mkdir release\obj\examples 9 | if not exist .\release\obj\xmlwf\nul mkdir release\obj\xmlwf 10 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/iostream3/TODO: -------------------------------------------------------------------------------- 1 | Possible upgrades to gzfilebuf: 2 | 3 | - The ability to do putback (e.g. putbackfail) 4 | 5 | - The ability to seek (zlib supports this, but could be slow/tricky) 6 | 7 | - Simultaneous read/write access (does it make sense?) 8 | 9 | - Support for ios_base::ate open mode 10 | 11 | - Locale support? 12 | 13 | - Check public interface to see which calls give problems 14 | (due to dependence on library internals) 15 | 16 | - Override operator<<(ostream&, gzfilebuf*) to allow direct copying 17 | of stream buffer to stream ( i.e. os << is.rdbuf(); ) 18 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestDetails.cpp: -------------------------------------------------------------------------------- 1 | #include "TestDetails.h" 2 | 3 | namespace UnitTest { 4 | 5 | TestDetails::TestDetails(char const* testName_, char const* suiteName_, char const* filename_, int lineNumber_) 6 | : suiteName(suiteName_) 7 | , testName(testName_) 8 | , filename(filename_) 9 | , lineNumber(lineNumber_) 10 | { 11 | } 12 | 13 | TestDetails::TestDetails(const TestDetails& details, int lineNumber_) 14 | : suiteName(details.suiteName) 15 | , testName(details.testName) 16 | , filename(details.filename) 17 | , lineNumber(lineNumber_) 18 | { 19 | } 20 | 21 | 22 | } 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/convert-bpmf-cin.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | require "native_bopomofo" 3 | 4 | while line = $stdin.gets 5 | line.chomp! 6 | 7 | if line =~ /%chardef\s+begin/ 8 | puts line 9 | while line = $stdin.gets 10 | line.chomp! 11 | if line =~ /%chardef\s+end/ 12 | puts line 13 | break 14 | end 15 | 16 | data = line.split(/\s+/) 17 | k = NativeBopomofo.bopomofo_to_absolute_order_string(NativeBopomofo.standard_layout_string_to_bopomofo(data[0])) 18 | 19 | puts "#{k} #{data[1]}" 20 | end 21 | else 22 | puts line 23 | end 24 | end -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/xmlwf/xmlfile.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 2 | See the file COPYING for copying permission. 3 | */ 4 | 5 | #define XML_MAP_FILE 01 6 | #define XML_EXTERNAL_ENTITIES 02 7 | 8 | #ifdef XML_LARGE_SIZE 9 | #if defined(XML_USE_MSC_EXTENSIONS) && _MSC_VER < 1400 10 | #define XML_FMT_INT_MOD "I64" 11 | #else 12 | #define XML_FMT_INT_MOD "ll" 13 | #endif 14 | #else 15 | #define XML_FMT_INT_MOD "l" 16 | #endif 17 | 18 | extern int XML_ProcessFile(XML_Parser parser, 19 | const XML_Char *filename, 20 | unsigned flags); 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ACKNOWLEDGEMENTS: -------------------------------------------------------------------------------- 1 | OpenVanilla (c) 2004-2008 The OpenVanilla Project. 2 | 3 | Formosa (c) 2007-2008 By Lukhnos D. Liu. 4 | 5 | LFExtensions (c) 2008 Lithoglyph Inc. 6 | 7 | LFPlatform (c) 2008 Lithoglyph Inc. 8 | 9 | CareService (c) 2008 Lithoglyph Inc. 10 | 11 | OVAFEval / Graphene (c) 2008 Lithoglyph Inc. 12 | 13 | Yahoo!(R) Dictionary Parser (c) 2008 Lithoglyph Inc. 14 | 15 | Manjusri (c) 2008 Lithoglyph Inc. 16 | 17 | Minotaur (c) 2008 Lithoglyph Inc. 18 | 19 | PlainVanilla (c) 2008 Lithoglyph Inc. 20 | 21 | SQLite3. 22 | 23 | SQLite Encryption Extension (SEE). 24 | 25 | expat. 26 | 27 | OpenSSL. 28 | 29 | UnitTest++. 30 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/makeall-osx.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo pre-sudo for auto build 3 | sudo echo ok, done 4 | 5 | WORKDIR=$PWD 6 | cd ./Installer-OSX-IMK 7 | perl makedmg.pl 8 | 9 | cd $WORKDIR 10 | cd ./Installer-OSX-TSM 11 | perl makedmg.pl 12 | 13 | cd $WORKDIR 14 | cd ./Installer-OSX-DB 15 | ./makedmg.py 16 | 17 | cd $WORKDIR 18 | cd ./Installer-OSX-ExtraModules 19 | ./makedmg.py 20 | 21 | cd $WORKDIR 22 | mkdir -p Staging-OSX 23 | mv ../../build/Release64/*.dmg Staging-OSX/ 24 | mv ../../build/Release/*.dmg Staging-OSX/ 25 | mv ./Installer-OSX-DB/*.dmg Staging-OSX/ 26 | mv ./Installer-OSX-ExtraModules/*.dmg Staging-OSX/ 27 | 28 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/minizip/Makefile: -------------------------------------------------------------------------------- 1 | CC=cc 2 | CFLAGS=-O -I../.. 3 | 4 | UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a 5 | ZIP_OBJS = minizip.o zip.o ioapi.o ../../libz.a 6 | 7 | .c.o: 8 | $(CC) -c $(CFLAGS) $*.c 9 | 10 | all: miniunz minizip 11 | 12 | miniunz: $(UNZ_OBJS) 13 | $(CC) $(CFLAGS) -o $@ $(UNZ_OBJS) 14 | 15 | minizip: $(ZIP_OBJS) 16 | $(CC) $(CFLAGS) -o $@ $(ZIP_OBJS) 17 | 18 | test: miniunz minizip 19 | ./minizip test readme.txt 20 | ./miniunz -l test.zip 21 | mv readme.txt readme.old 22 | ./miniunz test.zip 23 | 24 | clean: 25 | /bin/rm -f *.o *~ minizip miniunz 26 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Overrides/Keke-AddBigram.txt: -------------------------------------------------------------------------------- 1 | +2 一顆 葡萄 2 | +2 一顆 種子 3 | +2 一棵 樹 4 | +2 一棵 大樹 5 | +2 易科 罰金 6 | +2 相當 驚豔 7 | +2 非常 美味 8 | +2 非常 驚豔 9 | +2 感到 驚豔 10 | +2 沒 記錯 11 | +2 不久 人世 12 | +2 燒肉 定食 13 | +2 炸蝦 定食 14 | +2 天婦羅 定食 15 | +2 秋刀魚 定食 16 | +2 支 球棒 17 | +2 烤 麵包 18 | +2 妊娠 糖尿病 19 | +2 坐 在 20 | +2 自衛 行為 21 | +2 程式 語言 22 | +2 分期 付款 23 | +2 社經 地位 24 | +2 程式 設計 25 | +2 緊緊 擁抱 26 | +2 攝氏 十 27 | +2 不 希望 28 | +2 土地 增值 29 | +2 條 捷徑 30 | +2 一條 捷徑 31 | +2 初鹿 農場 32 | +2 初鹿 牧場 33 | +2 新 平台 34 | +2 件 事情 35 | +2 妊娠 高血壓 36 | +2 道歉 啟事 37 | +2 尋人 啟事 38 | +2 冒 汗 39 | +2 就 會 40 | +2 省 水 41 | +2 堅固 耐用 42 | +2 圖形 介面 43 | +2 較 晚 44 | +2 相 對應 45 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-IMK/Resources/postflight: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Start postflight script" 3 | VERSION_FOR_INSTALLER="2528"; 4 | URL="http://tw.rd.yahoo.com/referurl/keykey/client/installer/end/${VERSION_FOR_INSTALLER}M105/*http://tw.yimg.com/i/tw/download/ykkimg/blank.gif" 5 | /usr/bin/curl -L -A "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)" $URL > /dev/null 6 | # do not change lines below. 7 | echo $SCRIPT_NAME: launching html help 8 | open "/Library/Input Methods/Yahoo! KeyKey.app/Contents/SharedSupport/InstallerHelp.app" 9 | echo "End postflight script" 10 | exit 0 11 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-TSM/Resources/postflight: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Start postflight script" 3 | VERSION_FOR_INSTALLER="2528"; 4 | URL="http://tw.rd.yahoo.com/referurl/keykey/client/installer/end/${VERSION_FOR_INSTALLER}M104/*http://tw.yimg.com/i/tw/download/ykkimg/blank.gif" 5 | /usr/bin/curl -L -A "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)" $URL > /dev/null 6 | echo $SCRIPT_NAME: launching html help 7 | open "/Library/Components/Yahoo! KeyKey.bundle/Contents/SharedSupport/KeyKeyServer.app/Contents/SharedSupport/InstallerHelp.app" 8 | echo "End postflight script" 9 | exit 0 10 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/QuickSetup/QuickSetup.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | publish\ 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 0 13 | en-US 14 | false 15 | 16 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWordCount.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // [AUTO_HEADER] 7 | 8 | #import 9 | #import "TakaoSettings.h" 10 | 11 | @interface TakaoWordCount : NSObject 12 | { 13 | NSString *_preferenceFilePath; 14 | 15 | IBOutlet NSView *_view; 16 | IBOutlet NSTextField *_todayCount; 17 | IBOutlet NSTextField *_weeklyCount; 18 | IBOutlet NSTextField *_totalCount; 19 | } 20 | 21 | - (NSView *)view; 22 | - (void)update; 23 | - (IBAction)clear:(id)sender; 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestReporter.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_TESTREPORTER_H 2 | #define UNITTEST_TESTREPORTER_H 3 | 4 | namespace UnitTest { 5 | 6 | class TestDetails; 7 | 8 | class TestReporter 9 | { 10 | public: 11 | virtual ~TestReporter(); 12 | 13 | virtual void ReportTestStart(TestDetails const& test) = 0; 14 | virtual void ReportFailure(TestDetails const& test, char const* failure) = 0; 15 | virtual void ReportTestFinish(TestDetails const& test, float secondsElapsed) = 0; 16 | virtual void ReportSummary(int totalTestCount, int failedTestCount, int failureCount, float secondsElapsed) = 0; 17 | }; 18 | 19 | } 20 | #endif 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/benchmark/README.txt: -------------------------------------------------------------------------------- 1 | Use this benchmark command line utility as follows: 2 | 3 | benchmark [-n] <# iterations> 4 | 5 | The command line arguments are: 6 | 7 | -n ... optional; if supplied, namespace processing is turned on 8 | ... name/path of test xml file 9 | ... size of processing buffer; 10 | the file is parsed in chunks of this size 11 | <# iterations> ... how often will the file be parsed 12 | 13 | Returns: 14 | 15 | The time (in seconds) it takes to parse the test file, 16 | averaged over the number of iterations. -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/ada/zlib.gpr: -------------------------------------------------------------------------------- 1 | project Zlib is 2 | 3 | for Languages use ("Ada"); 4 | for Source_Dirs use ("."); 5 | for Object_Dir use "."; 6 | for Main use ("test.adb", "mtest.adb", "read.adb", "buffer_demo"); 7 | 8 | package Compiler is 9 | for Default_Switches ("ada") use ("-gnatwcfilopru", "-gnatVcdfimorst", "-gnatyabcefhiklmnoprst"); 10 | end Compiler; 11 | 12 | package Linker is 13 | for Default_Switches ("ada") use ("-lz"); 14 | end Linker; 15 | 16 | package Builder is 17 | for Default_Switches ("ada") use ("-s", "-gnatQ"); 18 | end Builder; 19 | 20 | end Zlib; 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestReporterStdout.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_TESTREPORTERSTDOUT_H 2 | #define UNITTEST_TESTREPORTERSTDOUT_H 3 | 4 | #include "TestReporter.h" 5 | 6 | namespace UnitTest { 7 | 8 | class TestReporterStdout : public TestReporter 9 | { 10 | private: 11 | virtual void ReportTestStart(TestDetails const& test); 12 | virtual void ReportFailure(TestDetails const& test, char const* failure); 13 | virtual void ReportTestFinish(TestDetails const& test, float secondsElapsed); 14 | virtual void ReportSummary(int totalTestCount, int failedTestCount, int failureCount, float secondsElapsed); 15 | }; 16 | 17 | } 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Tools/UniqueChardef.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | 3 | require "native_bopomofo" 4 | 5 | if ARGV.size < 1 6 | STDERR.puts "usage: UniqueChardef " 7 | exit 1 8 | end 9 | 10 | begin 11 | f = File.open(ARGV[0], "r") 12 | rescue 13 | STDERR.puts "cannot open: #{ARGV[0]}" 14 | exit 1 15 | end 16 | 17 | chardef = {} 18 | 19 | while line = f.gets 20 | if line =~ /%chardef\s+begin/ 21 | while line = f.gets 22 | break if line =~ /%chardef\s+end/ 23 | 24 | chardef[NativeBopomofo.standard_layout_string_to_bopomofo((line.split)[0])] = 1 25 | end 26 | end 27 | end 28 | 29 | f.close 30 | puts chardef.keys 31 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWindow.m: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // [AUTO_HEADER] 7 | 8 | #import "TakaoWindow.h" 9 | 10 | 11 | @implementation TakaoWindow 12 | 13 | - (void)useSlowMotion 14 | { 15 | _useSlowMotion = YES; 16 | } 17 | 18 | - (void)stopSlowMotion 19 | { 20 | _useSlowMotion = NO; 21 | } 22 | 23 | - (NSTimeInterval)animationResizeTime:(NSRect)newWindowFrame 24 | { 25 | if (_useSlowMotion) 26 | return (NSTimeInterval)1; 27 | else 28 | return (NSTimeInterval)0.1; 29 | } 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/tests/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains the (fledgling) test suite for Expat. The 2 | tests provide general unit testing and regression coverage. The tests 3 | are not expected to be useful examples of Expat usage; see the 4 | examples/ directory for that. 5 | 6 | The Expat tests use a partial internal implementation of the "Check" 7 | unit testing framework for C. More information on Check can be found at: 8 | 9 | http://check.sourceforge.net/ 10 | 11 | Expat must be built and installed before "make check" can be executed. 12 | 13 | Since both Check and this test suite are young, it can all change in a 14 | later version. 15 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/PhraseEditor/OSX/PEDialogWindow.m: -------------------------------------------------------------------------------- 1 | // 2 | // PEDialogWindow.m 3 | // Takao 4 | // 5 | // Developed by Lithoglyph Inc zonble on 2008/11/16. 6 | // Copyright 2008 Yahoo! Inc. All rights reserved. 7 | // 8 | 9 | #import "PEDialogWindow.h" 10 | 11 | 12 | @implementation PEDialogWindow 13 | 14 | - (void)sendEvent:(NSEvent *)event 15 | { 16 | if ([event type] == NSKeyDown) { 17 | if ([event keyCode] == 53) { 18 | if (_cancelButton) { 19 | [_cancelButton performClick:self]; 20 | } 21 | else { 22 | [NSApp endSheet:self]; 23 | [self orderOut:self]; 24 | } 25 | } 26 | } 27 | [super sendEvent:event]; 28 | } 29 | 30 | 31 | @end 32 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/reform-auto-complete.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | # 3 | #Copyright (c) 2012, Yahoo! Inc. All rights reserved. 4 | #Copyrights licensed under the New BSD License. See the accompanying LICENSE 5 | #file for terms. 6 | # 7 | 8 | # skip the first line 9 | @phrases = (); 10 | 11 | while(<>) { 12 | chomp; 13 | split(/\t/); 14 | # print "$_[0] => $_[1]\n"; 15 | 16 | push(@phrases, [$_[0], $_[1]]); 17 | } 18 | 19 | @phrases = sort { int($b->[0]) <=> int($a->[0]) } @phrases; 20 | 21 | # remove the first line which is the column header 22 | shift @phrases; 23 | 24 | for $x (@phrases) { 25 | print $x->[0], " ", $x->[1], "\n"; 26 | } 27 | 28 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/AssertException.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_ASSERTEXCEPTION_H 2 | #define UNITTEST_ASSERTEXCEPTION_H 3 | 4 | #include 5 | 6 | 7 | namespace UnitTest { 8 | 9 | class AssertException : public std::exception 10 | { 11 | public: 12 | AssertException(char const* description, char const* filename, int lineNumber); 13 | virtual ~AssertException() throw(); 14 | 15 | virtual char const* what() const throw(); 16 | 17 | char const* Filename() const; 18 | int LineNumber() const; 19 | 20 | private: 21 | char m_description[512]; 22 | char m_filename[256]; 23 | int m_lineNumber; 24 | }; 25 | 26 | } 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/openssl-win32-x86/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | /* crypto/ebcdic.h */ 2 | 3 | #ifndef HEADER_EBCDIC_H 4 | #define HEADER_EBCDIC_H 5 | 6 | #include 7 | 8 | /* Avoid name clashes with other applications */ 9 | #define os_toascii _openssl_os_toascii 10 | #define os_toebcdic _openssl_os_toebcdic 11 | #define ebcdic2ascii _openssl_ebcdic2ascii 12 | #define ascii2ebcdic _openssl_ascii2ebcdic 13 | 14 | extern const unsigned char os_toascii[256]; 15 | extern const unsigned char os_toebcdic[256]; 16 | void *ebcdic2ascii(void *dest, const void *srce, size_t count); 17 | void *ascii2ebcdic(void *dest, const void *srce, size_t count); 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoSearch.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // [AUTO_HEADER] 7 | 8 | #import 9 | #import "TakaoSettings.h" 10 | 11 | @interface TakaoSearch : NSObject 12 | { 13 | IBOutlet id u_shortcutKey; 14 | 15 | NSMutableDictionary *_searchDictionary; 16 | NSString *_preferenceFilePath; 17 | } 18 | 19 | /*! 20 | @method writePreference: 21 | @abstract Writes the settings into the plist file. 22 | @param sender The sender object. 23 | */ 24 | - (IBAction)writePreference:(id)sender; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Tools/filter-out-search-terms.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | # 3 | #Copyright (c) 2012, Yahoo! Inc. All rights reserved. 4 | #Copyrights licensed under the New BSD License. See the accompanying LICENSE 5 | #file for terms. 6 | # 7 | # ignore the first two lines 8 | $stdin.gets 9 | $stdin.gets 10 | 11 | while line = $stdin.gets 12 | line.chomp! 13 | data = line.split 14 | freq = data.shift 15 | 16 | # we only take the terms that (1) contain no non-Chinese character, (2) only one term, (3) <= 4 chars 17 | if data.size == 1 && data[0] !~ /[\x01-\x7f]+/ && data[0].size <= 12 && data[0].size > 3 && data[0] !~ / / 18 | puts "#{data[0]} #{freq}" 19 | end 20 | end 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVBubbleTextView.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | 5 | @interface CVBubbleTextView : NSView 6 | { 7 | NSMutableAttributedString *_attributedString; 8 | NSBezierPath *_outerBezelPath; 9 | NSBezierPath *_innerBezelPath; 10 | NSColor *_backgroundToColor; 11 | NSColor *_backgroundFromColor; 12 | NSColor *_textColor; 13 | NSFont *_font; 14 | NSRect _boundingRect; 15 | NSRect _innerBound; 16 | float _padding; 17 | float _radius; 18 | } 19 | 20 | - (void)setText:(NSString *)newText; 21 | - (void)setBackgroundColor:(NSColor *)color; 22 | - (void)setTextColor:(NSColor *)color; 23 | - (void)setFont:(NSFont *)font; 24 | - (NSRect)boundingRect; 25 | @end -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "Error: unable to download updates." = "错误:无法下载更新"; 2 | "Error: the downloaded file is corrupt." = "错误:下载文档已损毁"; 3 | "Error: unable to open the downloaded file. Please try again." = "错误:无法打开下载的更新文档,请重试。"; 4 | "Error: %@ %@" = "错误: %@ %@"; 5 | "Download completes. Do you want to install it now?" = "下载已完成。您想要现在就安装更新吗?"; 6 | "Downloading...%d %%" = "下载中…%d %%"; 7 | "Downloading... %ju KB" = "下载中... %ju KB"; 8 | "A newer version is available." = "网路上已经有新版软件可供下载"; 9 | "Do you want to download it right now?" = "请问您现在就要下载吗?"; 10 | "Yes" = "是"; 11 | "No" = "否"; 12 | "Please download the newest version." = "建议您下载安装最新版本的 Yahoo! 奇摩输入法。"; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/DownloadUpdateOSX/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "Error: unable to download updates." = "錯誤:無法下載更新"; 2 | "Error: the downloaded file is corrupt." = "錯誤:下載檔案已損毀"; 3 | "Error: unable to open the downloaded file. Please try again." = "錯誤:無法開啟下載的更新檔案,請重試。"; 4 | "Error: %@ %@" = "錯誤: %@ %@"; 5 | "Download completes. Do you want to install it now?" = "下載已完成。您想要現在就安裝更新嗎?"; 6 | "Downloading...%d %%" = "下載中…%d %%"; 7 | "Downloading... %ju KB" = "下載中... %ju KB"; 8 | "A newer version is available." = "網路上已經有新版軟體可供下載"; 9 | "Do you want to download it right now?" = "請問您現在就要下載嗎?"; 10 | "Yes" = "是"; 11 | "No" = "否"; 12 | "Please download the newest version." = "建議您下載安裝最新版本的 Yahoo! 奇摩輸入法。"; -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/iostream/test.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "zfstream.h" 3 | 4 | int main() { 5 | 6 | // Construct a stream object with this filebuffer. Anything sent 7 | // to this stream will go to standard out. 8 | gzofstream os( 1, ios::out ); 9 | 10 | // This text is getting compressed and sent to stdout. 11 | // To prove this, run 'test | zcat'. 12 | os << "Hello, Mommy" << endl; 13 | 14 | os << setcompressionlevel( Z_NO_COMPRESSION ); 15 | os << "hello, hello, hi, ho!" << endl; 16 | 17 | setcompressionlevel( os, Z_DEFAULT_COMPRESSION ) 18 | << "I'm compressing again" << endl; 19 | 20 | os.close(); 21 | 22 | return 0; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Formosa/Ruby/native_bopomofo/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | require 'yaml' 3 | 4 | # replace TRY_LINK's CC into CXX because we want to use g++ as linker 5 | CONFIG['LDSHARED'].gsub!(/cc/, "g++") 6 | CONFIG['LDSHARED'].gsub!(/\(CC\)/, "(CXX)") 7 | CONFIG['CXXFLAGS'] = "-DMANDARIN_USE_MINIMAL_OPENVANILLA -I../../Headers -I../../../OpenVanilla/Headers" 8 | 9 | 10 | create_makefile "native_bopomofo/native_bopomofo" 11 | makefile = IO.read("Makefile") 12 | makefile.gsub!(/OBJS = /, "OBJS = Mandarin.o ") 13 | 14 | makefile += "\nMandarin.o: ../../Source/Mandarin.cpp\n\t$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<" 15 | 16 | f = File.open("Makefile", "w") 17 | f.puts makefile 18 | f.close 19 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Addendum/Z-Religion.txt: -------------------------------------------------------------------------------- 1 | 丹功 2 | 丹鼎 3 | 內經 4 | 全真 5 | 唯識 6 | 奧修 7 | 奧姆 8 | 寒單 9 | 巫女 10 | 彌勒 11 | 本尊 12 | 果報 13 | 梵唄 14 | 梵天 15 | 梵音 16 | 武當 17 | 法輪 18 | 濕婆 19 | 班禪 20 | 異教 21 | 禪意 22 | 符籙 23 | 聖諦 24 | 舍利 25 | 達賴 26 | 閻王 27 | 須彌 28 | 一貫道 29 | 全真教 30 | 全羅道 31 | 剎帝利 32 | 南天門 33 | 參同契 34 | 哈奴曼 35 | 塔利班 36 | 奧義書 37 | 婆羅門 38 | 孟婆湯 39 | 山達基 40 | 攝理教 41 | 文鮮明 42 | 明慧網 43 | 易筋經 44 | 李洪志 45 | 林默娘 46 | 正一道 47 | 毗濕奴 48 | 法輪功 49 | 洗髓經 50 | 無上師 51 | 發正念 52 | 白蓮教 53 | 目腱蓮 54 | 真善忍 55 | 真理教 56 | 神學士 57 | 穆斯林 58 | 統一教 59 | 舍利佛 60 | 舍利子 61 | 蘇菲教 62 | 錫克教 63 | 首陀羅 64 | 十殿閻王 65 | 法輪大法 66 | 田都元帥 67 | 苦集滅道 68 | 藏傳佛教 69 | 諸法無我 70 | 諸行無常 71 | 達羅毗荼 72 | 釋迦摩尼 73 | 阿賴耶識 74 | 麻原彰晃 75 | 清海無上師 76 | 六根不淨 77 | 九九神功 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/vms/README.vms: -------------------------------------------------------------------------------- 1 | 4-jun-2002 Craig A. Berry 2 | Added rudimentary build procedures for 3 | OpenVMS based on work by Martin Vorlaender. 4 | 5 | 6 | You'll need MMS or its freeware equivalent MMK. Just go to the 7 | top-level directory and type 8 | 9 | $ MMS/DESCRIPTION=[.vms] 10 | 11 | or 12 | 13 | $ MMK/DESCRIPTION=[.vms] 14 | 15 | You'll end up with the object library expat.olb. For now, installation 16 | consists merely of copying the object library, include files, and 17 | documentation to a suitable location. 18 | 19 | To-do list: 20 | 21 | -- create a shareable image 22 | -- build and run the tests and build the xmlwf utility 23 | -- create an install target 24 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/BaseIME/Resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by BaseIME.rc 4 | // 5 | #define IDI_ICON1 101 6 | 7 | #define IDB_BITMAP_BG 103 8 | #define IDB_BITMAP_HEAD 104 9 | #define IDB_BITMAP_TAIL 105 10 | 11 | // Next default values for new objects 12 | // 13 | #ifdef APSTUDIO_INVOKED 14 | #ifndef APSTUDIO_READONLY_SYMBOLS 15 | #define _APS_NEXT_RESOURCE_VALUE 106 16 | #define _APS_NEXT_COMMAND_VALUE 40001 17 | #define _APS_NEXT_CONTROL_VALUE 1001 18 | #define _APS_NEXT_SYMED_VALUE 101 19 | #endif 20 | #endif 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/CinInstaller/Windows/resource.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | //{{NO_DEPENDENCIES}} 7 | // Microsoft Visual C++ generated include file. 8 | // Used by app.rc 9 | // 10 | #define IDI_ICON1 103 11 | 12 | // Next default values for new objects 13 | // 14 | #ifdef APSTUDIO_INVOKED 15 | #ifndef APSTUDIO_READONLY_SYMBOLS 16 | #define _APS_NEXT_RESOURCE_VALUE 104 17 | #define _APS_NEXT_COMMAND_VALUE 40001 18 | #define _APS_NEXT_CONTROL_VALUE 1000 19 | #define _APS_NEXT_SYMED_VALUE 101 20 | #endif 21 | #endif 22 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestList.cpp: -------------------------------------------------------------------------------- 1 | #include "TestList.h" 2 | #include "Test.h" 3 | 4 | #include 5 | 6 | namespace UnitTest { 7 | 8 | TestList::TestList() 9 | : m_head(0) 10 | , m_tail(0) 11 | { 12 | } 13 | 14 | void TestList::Add(Test* test) 15 | { 16 | if (m_tail == 0) 17 | { 18 | assert(m_head == 0); 19 | m_head = test; 20 | m_tail = test; 21 | } 22 | else 23 | { 24 | m_tail->next = test; 25 | m_tail = test; 26 | } 27 | } 28 | 29 | Test* TestList::GetHead() const 30 | { 31 | return m_head; 32 | } 33 | 34 | ListAdder::ListAdder(TestList& list, Test* test) 35 | { 36 | list.Add(test); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Manjusri/Headers/STLDependency.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | 7 | #ifndef STLDependency 8 | #define STLDependency 9 | 10 | #include 11 | #include 12 | 13 | namespace Manjusri { 14 | using namespace std; 15 | 16 | typedef double Score; 17 | typedef pair Location; 18 | typedef pair LocationStringPair; 19 | typedef pair StringScorePair; 20 | typedef vector StringScorePairVector; 21 | typedef map StringScoreMap; 22 | }; 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/StaticPack/StaticPack.h: -------------------------------------------------------------------------------- 1 | // 2 | // Developed for Yahoo! Taiwan by Lithoglyph Inc. 3 | // Copyright (c) 2007-2010 Yahoo! Taiwan. 4 | // 5 | 6 | #ifndef StaticPack_h 7 | #define StaticPack_h 8 | 9 | #ifndef OV_USE_SQLITE 10 | #define OV_USE_SQLITE 11 | #endif 12 | 13 | #if defined(__APPLE__) 14 | #include 15 | #else 16 | #include "OpenVanilla.h" 17 | #endif 18 | 19 | namespace OpenVanilla { 20 | using namespace std; 21 | 22 | class StaticPack { 23 | public: 24 | static const vector > StaticPack::InitializedModulePackages(OVPathInfo* pathInfo, OVLoaderService* loaderService); 25 | }; 26 | }; 27 | 28 | #endif -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/DataSource/Addendum/Z-History.txt: -------------------------------------------------------------------------------- 1 | 劉伶 2 | 向秀 3 | 宋江 4 | 小喬 5 | 山濤 6 | 帝嚳 7 | 平成 8 | 張儀 9 | 李逵 10 | 東施 11 | 林沖 12 | 武曌 13 | 沖田 14 | 清談 15 | 漢薩 16 | 王戎 17 | 班固 18 | 稽康 19 | 董狐 20 | 蘇武 21 | 蘇秦 22 | 蠶叢 23 | 西夏 24 | 進藤 25 | 阮咸 26 | 阮籍 27 | 陸遜 28 | 隋唐 29 | 韃靼 30 | 顓頊 31 | 高俅 32 | 魏晉 33 | 魚鳧 34 | 鮮卑 35 | 黃巢 36 | 九一一 37 | 九一八 38 | 九二一 39 | 八三一 40 | 司馬光 41 | 司馬遷 42 | 安東尼 43 | 安那其 44 | 宋美齡 45 | 尹清楓 46 | 新撰組 47 | 新選組 48 | 格瓦拉 49 | 武士道 50 | 武媚娘 51 | 王昭君 52 | 鄂圖曼 53 | 鐵木真 54 | 黃飛鴻 55 | 齊柏林 56 | 三國鼎立 57 | 大艦巨砲 58 | 天照大帝 59 | 布爾喬亞 60 | 希羅多德 61 | 延平郡王 62 | 強幹弱枝 63 | 愛新覺羅 64 | 成吉思汗 65 | 福澤諭吉 66 | 竹林七賢 67 | 耶律德光 68 | 脫亞入歐 69 | 西鄉隆盛 70 | 阪本龍馬 71 | 陸奧宗光 72 | 布爾什維克 73 | 耶律阿保機 74 | 墨翟 75 | 孟軻 76 | 本紀 77 | 紀事本末 78 | 孟德斯鳩 79 | 巴士底 -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TestDetails.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_TESTDETAILS_H 2 | #define UNITTEST_TESTDETAILS_H 3 | 4 | namespace UnitTest { 5 | 6 | class TestDetails 7 | { 8 | public: 9 | TestDetails(char const* testName, char const* suiteName, char const* filename, int lineNumber); 10 | TestDetails(const TestDetails& details, int lineNumber); 11 | 12 | char const* const suiteName; 13 | char const* const testName; 14 | char const* const filename; 15 | int const lineNumber; 16 | 17 | TestDetails(TestDetails const&); // Why is it public? --> http://gcc.gnu.org/bugs.html#cxx_rvalbind 18 | private: 19 | TestDetails& operator=(TestDetails const&); 20 | }; 21 | 22 | } 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/DeferredTestResult.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_DEFERREDTESTRESULT_H 2 | #define UNITTEST_DEFERREDTESTRESULT_H 3 | 4 | #include 5 | #include 6 | 7 | namespace UnitTest 8 | { 9 | 10 | struct DeferredTestResult 11 | { 12 | DeferredTestResult(); 13 | DeferredTestResult(char const* suite, char const* test); 14 | 15 | std::string suiteName; 16 | std::string testName; 17 | std::string failureFile; 18 | 19 | typedef std::pair< int, std::string > Failure; 20 | typedef std::vector< Failure > FailureVec; 21 | FailureVec failures; 22 | 23 | float timeElapsed; 24 | bool failed; 25 | }; 26 | 27 | } 28 | 29 | #endif //UNITTEST_DEFERREDTESTRESULT_H 30 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Utilities/SignatureMaker/ZBTargetView.m: -------------------------------------------------------------------------------- 1 | // 2 | // ZBTargetView.m 3 | // SignatureMaker 4 | // 5 | /* 6 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 7 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 8 | file for terms. 9 | */ 10 | 11 | #import "ZBTargetView.h" 12 | 13 | 14 | @implementation ZBTargetView 15 | 16 | - (id)initWithFrame:(NSRect)frame { 17 | self = [super initWithFrame:frame]; 18 | if (self) { 19 | // Initialization code here. 20 | } 21 | return self; 22 | } 23 | 24 | - (void)drawRect:(NSRect)rect { 25 | NSBezierPath *b = [NSBezierPath bezierPathWithRect:rect]; 26 | [[NSColor whiteColor] setStroke]; 27 | [b stroke]; 28 | } 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Posix/TimeHelpers.cpp: -------------------------------------------------------------------------------- 1 | #include "TimeHelpers.h" 2 | #include 3 | 4 | namespace UnitTest { 5 | 6 | Timer::Timer() 7 | { 8 | m_startTime.tv_sec = 0; 9 | m_startTime.tv_usec = 0; 10 | } 11 | 12 | void Timer::Start() 13 | { 14 | gettimeofday(&m_startTime, 0); 15 | } 16 | 17 | 18 | int Timer::GetTimeInMs() const 19 | { 20 | struct timeval currentTime; 21 | gettimeofday(¤tTime, 0); 22 | int const dsecs = currentTime.tv_sec - m_startTime.tv_sec; 23 | int const dus = currentTime.tv_usec - m_startTime.tv_usec; 24 | return dsecs*1000 + dus/1000; 25 | } 26 | 27 | 28 | void TimeHelpers::SleepMs (int ms) 29 | { 30 | usleep(ms * 1000); 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/expat/bcb5/makefile.mak: -------------------------------------------------------------------------------- 1 | all: setup expat expatw expat_static expatw_static elements outline xmlwf 2 | 3 | setup: 4 | setup 5 | 6 | expat: 7 | make -l -fexpat.mak 8 | 9 | expatw: 10 | make -l -fexpatw.mak 11 | 12 | expat_static: 13 | make -l -fexpat_static.mak 14 | 15 | expatw_static: 16 | make -l -fexpatw_static.mak 17 | 18 | elements: 19 | make -l -felements.mak 20 | 21 | outline: 22 | make -l -foutline.mak 23 | 24 | xmlwf: 25 | make -l -fxmlwf.mak 26 | 27 | clean: 28 | # works on Win98/ME 29 | # deltree /y release\obj 30 | # works on WinNT/2000 31 | del /s/f/q release\obj 32 | 33 | distclean: 34 | # works on Win98/ME 35 | # deltree /y release\*.* 36 | # works on WinNT/2000 37 | del /s/f/q release\* 38 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/OpenVanilla/OpenVanilla-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.openvanilla.framework 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | FMWK 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0.0 19 | 20 | 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/LFExtensions/LFExtensions-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.lithoglyph.LFExtensions 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | FMWK 15 | CFBundleSignature 16 | LTGF 17 | CFBundleVersion 18 | 1.0 19 | 20 | 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/PlainVanilla-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.yourcompany.PlainVanilla 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | FMWK 15 | CFBundleSignature 16 | LTGF 17 | CFBundleVersion 18 | 1.0 19 | 20 | 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/zlib/contrib/masmx86/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | Summary 3 | ------- 4 | This directory contains ASM implementations of the functions 5 | longest_match() and inflate_fast(). 6 | 7 | 8 | Use instructions 9 | ---------------- 10 | Copy these files into the zlib source directory, then run the 11 | appropriate makefile, as suggested below. 12 | 13 | 14 | Build instructions 15 | ------------------ 16 | * With Microsoft C and MASM: 17 | nmake -f win32/Makefile.msc LOC="-DASMV -DASMINF" OBJA="gvmat32c.obj gvmat32.obj inffas32.obj" 18 | 19 | * With Borland C and TASM: 20 | make -f win32/Makefile.bor LOCAL_ZLIB="-DASMV -DASMINF" OBJA="gvmat32c.obj gvmat32.obj inffas32.obj" OBJPA="+gvmat32c.obj+gvmat32.obj+inffas32.obj" 21 | 22 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/AssertException.cpp: -------------------------------------------------------------------------------- 1 | #include "AssertException.h" 2 | #include 3 | 4 | namespace UnitTest { 5 | 6 | AssertException::AssertException(char const* description, char const* filename, int const lineNumber) 7 | : m_lineNumber(lineNumber) 8 | { 9 | std::strcpy(m_description, description); 10 | std::strcpy(m_filename, filename); 11 | } 12 | 13 | AssertException::~AssertException() throw() 14 | { 15 | } 16 | 17 | char const* AssertException::what() const throw() 18 | { 19 | return m_description; 20 | } 21 | 22 | char const* AssertException::Filename() const 23 | { 24 | return m_filename; 25 | } 26 | 27 | int AssertException::LineNumber() const 28 | { 29 | return m_lineNumber; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/LFPlatform/Headers/ProcessHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // ProcessHelper.h 3 | // 4 | // Copyright (c) 2007-2010 Lithoglyph Inc. All rights reserved. 5 | // 6 | 7 | #ifndef ProcessHelper_h 8 | #define ProcessHelper_h 9 | 10 | #include 11 | 12 | namespace LFPlatform { 13 | using namespace std; 14 | 15 | class ProcessHelper { 16 | public: 17 | static bool LaunchProgram(const string& executable, const string& launchPath); 18 | static const string CurrentProcessImageName(); 19 | 20 | static bool IsSystemUser(); 21 | static bool ProcessNameExistsForCurrentUser(const string& expression, size_t* count = 0); 22 | 23 | static bool IsRunningUnderWow64(); 24 | }; 25 | }; 26 | 27 | #endif -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/Minotaur/Tools/plainsign.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | # 3 | #Copyright (c) 2012, Yahoo! Inc. All rights reserved. 4 | #Copyrights licensed under the New BSD License. See the accompanying LICENSE 5 | #file for terms. 6 | # 7 | 8 | require "digest/sha1" 9 | require "openssl" 10 | require "base64" 11 | 12 | if ARGV.size < 2 13 | $stderr.puts "usage: plainsign file key" 14 | exit 1 15 | end 16 | 17 | begin 18 | input = IO.read(ARGV[0]) 19 | rescue 20 | $stderr.puts "cannot open #{ARGV[0]}" 21 | exit 1 22 | end 23 | 24 | begin 25 | keyfile = IO.read(ARGV[1]) 26 | rescue 27 | $stderr.puts "cannot open #{ARGV[1]}" 28 | exit 1 29 | end 30 | 31 | rsa = OpenSSL::PKey::RSA.new(keyfile) 32 | signed_digest = rsa.private_encrypt(input) 33 | print signed_digest 34 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFReverseLookup/YKReverseLookup-Windows.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MPIdentifier 6 | com.yahoo.Keykey.ReverseLookup 7 | MPLocalizedName 8 | 9 | en 10 | Reverse Lookup 11 | zh_TW 12 | 字根反查模組 13 | zh_CN 14 | 字根反查模块 15 | 16 | MPPrimaryBinary 17 | YKReverseLookup.dll 18 | MPSignature 19 | 20 | MPVersion 21 | 1.1.2528 22 | 23 | 24 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Frameworks/PlainVanilla/Tests/TestPlainVanilla-ModulePackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.openvanilla.TestPlainVanilla-ModulePackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | 20 | 21 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSymbolController.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | #import 5 | #import "LFUtilities.h" 6 | 7 | @interface CVSymbolController : NSWindowController 8 | { 9 | BOOL _isVisible; 10 | 11 | IBOutlet NSPopUpButton *_popUpButton; 12 | IBOutlet NSView *_symbolContentView; 13 | NSMutableArray *_viewArray; 14 | 15 | } 16 | - (void)loadSymbolTable:(NSNotification *)notification; 17 | - (void)temporaryHide; 18 | - (void)restoreWindowStatus; 19 | - (BOOL)isVisible; 20 | - (void)toggleActiveView:(NSView *)view; 21 | 22 | #pragma mark Interface Builder actions 23 | 24 | - (IBAction)toggleSymbol:(id)sender; 25 | - (IBAction)hide:(id)sender; 26 | - (IBAction)show:(id)sender; 27 | 28 | - (IBAction)toggleSymbol:(id)sender; 29 | @end 30 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Test.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_TEST_H 2 | #define UNITTEST_TEST_H 3 | 4 | #include "TestDetails.h" 5 | 6 | namespace UnitTest { 7 | 8 | class TestResults; 9 | class TestList; 10 | 11 | class Test 12 | { 13 | public: 14 | Test(char const* testName, char const* suiteName = "DefaultSuite", char const* filename = "", int lineNumber = 0); 15 | virtual ~Test(); 16 | void Run(TestResults& testResults); 17 | 18 | TestDetails const m_details; 19 | Test* next; 20 | mutable bool m_timeConstraintExempt; 21 | 22 | static TestList& GetTestList(); 23 | 24 | virtual void RunImpl(TestResults& testResults_) const; 25 | 26 | private: 27 | Test(Test const&); 28 | Test& operator =(Test const&); 29 | }; 30 | 31 | 32 | } 33 | 34 | #endif 35 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Distributions/Takao/Installer-OSX-UI/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // InstallerUI 4 | // 5 | // Created by zonble on 2008/4/7. 6 | // Copyright __MyCompanyName__ 2008. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | NSAutoreleasePool *pool = [NSAutoreleasePool new]; 14 | NSString *appPath = [[NSBundle mainBundle] bundlePath]; 15 | NSString *dmgPath = [appPath stringByDeletingLastPathComponent]; 16 | NSString *pkgPath = [dmgPath stringByAppendingPathComponent:@".Package/KeyKey.pkg"]; 17 | // NSLog(@"path: %@", pkgPath); 18 | if ([[NSWorkspace sharedWorkspace] openFile:pkgPath]) { 19 | // NSLog(@"Succesfully open"); 20 | } 21 | else { 22 | NSLog(@"Failed to open"); 23 | } 24 | [pool drain]; 25 | return 0; 26 | } 27 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFEval/OVAFEval-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVAFEval 9 | CFBundleIdentifier 10 | org.openvanilla.module.OVAFEval 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Studies/Win32RPCStudy/LIServerRPCInterface/LIServerRPCInterface.idl: -------------------------------------------------------------------------------- 1 | [ 2 | uuid(6876e464-0a80-4684-9fa6-bd8386c15060), 3 | version(1.0), 4 | implicit_handle (handle_t g_LIServerRPCInterfaceHandle) 5 | ] 6 | interface LIServerRPCInterface 7 | { 8 | const unsigned int LISMaxStringLength = 1024; 9 | void LISPing(void); 10 | void LISSetPosition([in] int x, [in] int y); 11 | void LISHandleKey([in] int keyCode, [out, ref] boolean *hasHandled); 12 | void LISCompositionString([out, string, size_is(LISMaxStringLength)] wchar_t *compositionString); 13 | 14 | void LISNextAvailableClientRPCEndpointName([out, string, size_is(LISMaxStringLength)] wchar_t *endpointName); 15 | void LISSetClientRPCEndpointName([in, string] const wchar_t *endpointName); 16 | void LISEndCurrentClientRPCEndpoint(void); 17 | } 18 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/PreferenceApplications/OSX/TakaoWindow.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2012, Yahoo! Inc. All rights reserved. 3 | Copyrights licensed under the New BSD License. See the accompanying LICENSE 4 | file for terms. 5 | */ 6 | // [AUTO_HEADER] 7 | 8 | #import 9 | 10 | /*! 11 | @header TakaoWindow 12 | */ 13 | 14 | /*! 15 | @class TakaoWindow 16 | @abstract The main window of the preference tool. 17 | */ 18 | 19 | @interface TakaoWindow : NSWindow 20 | { 21 | BOOL _useSlowMotion; 22 | } 23 | 24 | /*! 25 | @method useSlowMotion 26 | @abstract Asks the window to use slow motion animation on resizing. 27 | */ 28 | - (void)useSlowMotion; 29 | /*! 30 | @method stopSlowMotion 31 | @abstract Asks the window to use stop motion animation on resizing. 32 | */ 33 | - (void)stopSlowMotion; 34 | @end 35 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/DeferredTestReporter.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_DEFERREDTESTREPORTER_H 2 | #define UNITTEST_DEFERREDTESTREPORTER_H 3 | 4 | #include "TestReporter.h" 5 | #include "DeferredTestResult.h" 6 | 7 | #include 8 | 9 | namespace UnitTest 10 | { 11 | 12 | class DeferredTestReporter : public TestReporter 13 | { 14 | public: 15 | virtual void ReportTestStart(TestDetails const& details); 16 | virtual void ReportFailure(TestDetails const& details, char const* failure); 17 | virtual void ReportTestFinish(TestDetails const& details, float secondsElapsed); 18 | 19 | typedef std::vector< DeferredTestResult > DeferredTestResultList; 20 | DeferredTestResultList& GetResults(); 21 | 22 | private: 23 | DeferredTestResultList m_results; 24 | }; 25 | 26 | } 27 | 28 | #endif 29 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-IMK/CVSmileyViewController.h: -------------------------------------------------------------------------------- 1 | // [AUTO_HEADER] 2 | 3 | #import 4 | #import "LFUtilities.h" 5 | 6 | @interface NSString (FallbackableLocalizedStringValue) 7 | - (NSString *)fallbackableLocalizedStringValueForLocale:(NSString *)locale; 8 | @end 9 | 10 | @interface NSDictionary (FallbackableLocalizedStringValue) 11 | - (NSString *)fallbackableLocalizedStringValueForLocale:(NSString *)locale; 12 | @end 13 | 14 | @interface CVSmileyViewController : NSObject 15 | { 16 | IBOutlet NSView *_view; 17 | IBOutlet NSTableView *_tableView; 18 | IBOutlet NSButton *_sendButton; 19 | NSArray *_array; 20 | } 21 | 22 | - (id)initWithDictionary:(NSDictionary *)d; 23 | - (NSView *)view; 24 | 25 | - (IBAction)sendStringFromTableView:(id)sender; 26 | - (IBAction)sendString:(id)sender; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/OSX-TSM/TakaoComponent-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.yahoo.KeyKeyTiger 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | THNG 15 | CFBundleSignature 16 | YHOO 17 | CFBundleVersion 18 | 1.1.2528 19 | tsInputMethodIconFileKey 20 | Yahoo16.icns 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFPhraseConverter/YKPhraseConverter-Windows.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MPIdentifier 6 | com.yahoo.KeyKey.AFPhraseConverter 7 | MPLocalizedName 8 | 9 | en 10 | Simplified Chinese Phrase Converter 11 | zh_TW 12 | 簡體中文常用詞彙轉換 13 | zh_CN 14 | 简体中文常用词汇转换 15 | 16 | MPPrimaryBinary 17 | YKPhraseConverter.dll 18 | MPSignature 19 | 20 | MPVersion 21 | 1.1.2528 22 | 23 | 24 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVAFSearch/OVAFSearchPackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVAFSearchPackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVAFSearchPackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFEscape/OVOFEscapePackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVOFEscapePackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVOFEscapePackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /DataSource-1.1.2528/BPMFMappings/README.txt: -------------------------------------------------------------------------------- 1 | Yahoo! KeyKey[1] is a customized Chinese input methods tool based on an open source project Openvanilla[2]. 2 | 3 | Yahoo! had decided to make Yahoo! Keykey as a open source projecet and under new BSD licene. 4 | 5 | Some external dependency information are list here: 6 | 1.SinicaCorpus: You could reach http://www.sinica.edu.tw/ for the license. 7 | 2.BPMFMappings was created based on SinicaCorpus. 8 | 3.YahooSearchTerms: You could grabe hot keyword from http://tw.yahoo.com. 9 | 4.sqlite-cerod-see: Commerical SQLite Compressed and Encrypted Read-Only Database (CEROD) Extension, please check http://www.hwaci.com/sw/sqlite/cerod.html 10 | 5.DotMacKit.framework and PackageMaker.app: You can get it from Apple development kit. 11 | 12 | [1]. http://tw.media.yahoo.com/keykey/ 13 | [2]. http://openvanilla.org/ 14 | -------------------------------------------------------------------------------- /DataSource-1.1.2528/SinicaCorpus/README.txt: -------------------------------------------------------------------------------- 1 | Yahoo! KeyKey[1] is a customized Chinese input methods tool based on an open source project Openvanilla[2]. 2 | 3 | Yahoo! had decided to make Yahoo! Keykey as a open source projecet and under new BSD licene. 4 | 5 | Some external dependency information are list here: 6 | 1.SinicaCorpus: You could reach http://www.sinica.edu.tw/ for the license. 7 | 2.BPMFMappings was created based on SinicaCorpus. 8 | 3.YahooSearchTerms: You could grabe hot keyword from http://tw.yahoo.com. 9 | 4.sqlite-cerod-see: Commerical SQLite Compressed and Encrypted Read-Only Database (CEROD) Extension, please check http://www.hwaci.com/sw/sqlite/cerod.html 10 | 5.DotMacKit.framework and PackageMaker.app: You can get it from Apple development kit. 11 | 12 | [1]. http://tw.media.yahoo.com/keykey/ 13 | [2]. http://openvanilla.org/ 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/Loaders/Windows-IMM/LFPlatform/Headers/RegistryHelper.h: -------------------------------------------------------------------------------- 1 | // 2 | // RegistryHelper.h 3 | // 4 | // Copyright (c) 2007-2010 Lithoglyph Inc. All rights reserved. 5 | // 6 | 7 | #ifndef RegistryHelper_h 8 | #define RegistryHelper_h 9 | 10 | #ifndef WIN32_LEAN_AND_MEAN 11 | #define WIN32_LEAN_AND_MEAN 12 | #endif 13 | 14 | #include 15 | 16 | #include 17 | #include 18 | 19 | namespace LFPlatform { 20 | using namespace std; 21 | 22 | class RegistryHelper { 23 | public: 24 | static bool KeyExists(HKEY prefix, const string& key); 25 | static HKEY OpenKey(HKEY prefix, const string& key); 26 | static const vector SubkeysForKey(HKEY key); 27 | static const string QueryStringValue(HKEY key, const string& nameOfValue); 28 | }; 29 | }; 30 | 31 | #endif -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMGeneric/OVIMGenericPackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVIMGenericPackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVIMGenericPackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMTibetan/OVIMTibetanPackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVIMTibetanPackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVIMTibetanPackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /DataSource-1.1.2528/YahooSearchTerms/README.txt: -------------------------------------------------------------------------------- 1 | Yahoo! KeyKey[1] is a customized Chinese input methods tool based on an open source project Openvanilla[2]. 2 | 3 | Yahoo! had decided to make Yahoo! Keykey as a open source projecet and under new BSD licene. 4 | 5 | Some external dependency information are list here: 6 | 1.SinicaCorpus: You could reach http://www.sinica.edu.tw/ for the license. 7 | 2.BPMFMappings was created based on SinicaCorpus. 8 | 3.YahooSearchTerms: You could grabe hot keyword from http://tw.yahoo.com. 9 | 4.sqlite-cerod-see: Commerical SQLite Compressed and Encrypted Read-Only Database (CEROD) Extension, please check http://www.hwaci.com/sw/sqlite/cerod.html 10 | 5.DotMacKit.framework and PackageMaker.app: You can get it from Apple development kit. 11 | 12 | [1]. http://tw.media.yahoo.com/keykey/ 13 | [2]. http://openvanilla.org/ 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/TimeConstraint.cpp: -------------------------------------------------------------------------------- 1 | #include "TimeConstraint.h" 2 | #include "TestResults.h" 3 | #include "MemoryOutStream.h" 4 | 5 | namespace UnitTest { 6 | 7 | 8 | TimeConstraint::TimeConstraint(int ms, TestResults& result, TestDetails const& details) 9 | : m_result(result) 10 | , m_details(details) 11 | , m_maxMs(ms) 12 | { 13 | m_timer.Start(); 14 | } 15 | 16 | TimeConstraint::~TimeConstraint() 17 | { 18 | int const totalTimeInMs = m_timer.GetTimeInMs(); 19 | if (totalTimeInMs > m_maxMs) 20 | { 21 | MemoryOutStream stream; 22 | stream << "Time constraint failed. Expected to run test under " << m_maxMs << 23 | "ms but took " << totalTimeInMs << "ms."; 24 | m_result.OnTestFailure(m_details, stream.GetText()); 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMMandarin/OVIMMandarinPackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVIMMandarinPackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVIMMandarinPackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMEsperanto/OVIMEsperantoPackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVIMEsperantoPackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVIMEsperantoPackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUppercase/OVIMUppercasePackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVIMUppercasePackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVIMUppercasePackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMUnicodeHEX/OVIMUnicodeHEXPackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVIMUnicodeHEXPackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVIMUnicodeHEXPackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFHanConvert/OVOFHanConvertPackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVOFHanConvertPackage 9 | CFBundleIdentifier 10 | com.yourcompany.OVOFHanConvertPackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | ???? 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVIMAlphanumeric/OVIMAlphanumericPackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVIMAlphanumericPackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVIMAlphanumericPackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/UnitTest++/src/Win32/TimeHelpers.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITTEST_TIMEHELPERS_H 2 | #define UNITTEST_TIMEHELPERS_H 3 | 4 | #include "../Config.h" 5 | 6 | 7 | #ifdef UNITTEST_MINGW 8 | #ifndef __int64 9 | #define __int64 long long 10 | #endif 11 | #endif 12 | 13 | namespace UnitTest { 14 | 15 | class Timer 16 | { 17 | public: 18 | Timer(); 19 | void Start(); 20 | int GetTimeInMs() const; 21 | 22 | private: 23 | __int64 GetTime() const; 24 | 25 | void* m_threadId; 26 | 27 | #if defined(_WIN64) 28 | unsigned __int64 m_processAffinityMask; 29 | #else 30 | unsigned long m_processAffinityMask; 31 | #endif 32 | 33 | __int64 m_startTime; 34 | __int64 m_frequency; 35 | }; 36 | 37 | 38 | namespace TimeHelpers 39 | { 40 | void SleepMs (int ms); 41 | } 42 | 43 | 44 | } 45 | 46 | 47 | 48 | #endif 49 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ModulePackages/OVOFAntiZhuyinwen/OVOFAntiZhuyinwenPackage-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | OVOFAntizhuyinwenPackage 9 | CFBundleIdentifier 10 | org.openvanilla.OVOFAntizhuyinwenPackage 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleSignature 16 | OPVN 17 | CFBundleVersion 18 | 1.0 19 | CSResourcesFileMapped 20 | yes 21 | 22 | 23 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/DotMacKit.framework/README.txt: -------------------------------------------------------------------------------- 1 | Yahoo! KeyKey[1] is a customized Chinese input methods tool based on an open source project Openvanilla[2]. 2 | 3 | Yahoo! had decided to make Yahoo! Keykey as a open source projecet and under new BSD licene. 4 | 5 | Some external dependency information are list here: 6 | 1.SinicaCorpus: You could reach http://www.sinica.edu.tw/ for the license. 7 | 2.BPMFMappings was created based on SinicaCorpus. 8 | 3.YahooSearchTerms: You could grabe hot keyword from http://tw.yahoo.com. 9 | 4.sqlite-cerod-see: Commerical SQLite Compressed and Encrypted Read-Only Database (CEROD) Extension, please check http://www.hwaci.com/sw/sqlite/cerod.html 10 | 5.DotMacKit.framework and PackageMaker.app: You can get it from Apple development kit. 11 | 12 | [1]. http://tw.media.yahoo.com/keykey/ 13 | [2]. http://openvanilla.org/ 14 | -------------------------------------------------------------------------------- /YahooKeyKey-Source-1.1.2528/ExternalLibraries/PackageMaker.app/README.txt: -------------------------------------------------------------------------------- 1 | Yahoo! KeyKey[1] is a customized Chinese input methods tool based on an open source project Openvanilla[2]. 2 | 3 | Yahoo! had decided to make Yahoo! Keykey as a open source projecet and under new BSD licene. 4 | 5 | Some external dependency information are list here: 6 | 1.SinicaCorpus: You could reach http://www.sinica.edu.tw/ for the license. 7 | 2.BPMFMappings was created based on SinicaCorpus. 8 | 3.YahooSearchTerms: You could grabe hot keyword from http://tw.yahoo.com. 9 | 4.sqlite-cerod-see: Commerical SQLite Compressed and Encrypted Read-Only Database (CEROD) Extension, please check http://www.hwaci.com/sw/sqlite/cerod.html 10 | 5.DotMacKit.framework and PackageMaker.app: You can get it from Apple development kit. 11 | 12 | [1]. http://tw.media.yahoo.com/keykey/ 13 | [2]. http://openvanilla.org/ 14 | --------------------------------------------------------------------------------