├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── ChangeLog ├── LICENSE ├── README ├── README.md ├── data ├── config │ ├── act.conf │ ├── act.rule │ ├── azik.conf │ ├── azik.rule │ ├── azik_us.rule │ ├── comma.rule │ ├── kana-rule.conf │ ├── keymap.conf │ ├── old-kana.rule │ ├── period.rule │ ├── sub-rule.desc │ └── yakumono-ippai.rule ├── icons │ ├── AquaSKK-Ascii.png │ ├── AquaSKK-Ascii@2x.png │ ├── AquaSKK-Hirakana.png │ ├── AquaSKK-Hirakana@2x.png │ ├── AquaSKK-InputMethod.tif │ ├── AquaSKK-InputMethod@2x.tiff │ ├── AquaSKK-Jisx0201Kana.png │ ├── AquaSKK-Jisx0201Kana@2x.png │ ├── AquaSKK-Jisx0208Latin.png │ ├── AquaSKK-Jisx0208Latin@2x.png │ ├── AquaSKK-Katakana.png │ ├── AquaSKK-Katakana@2x.png │ ├── AquaSKK.graffle │ ├── Mini-Ascii.tiff │ ├── Mini-Ascii@2x.tiff │ ├── Mini-Hirakana.tiff │ ├── Mini-Hirakana@2x.tiff │ ├── Mini-Jisx0201Kana.tiff │ ├── Mini-Jisx0201Kana@2x.tiff │ ├── Mini-Jisx0208Latin.tiff │ ├── Mini-Jisx0208Latin@2x.tiff │ ├── Mini-Katakana.tiff │ └── Mini-Katakana@2x.tiff └── others │ └── karabiner.xml ├── doc ├── ClassDiagram.graffle ├── ClassDiagram01.png ├── ClassDiagram02.png ├── ClassDiagram03.png └── ClassDiagram04.png ├── platform └── mac │ ├── Makefile │ ├── pkg │ ├── aquaskk.plist │ └── distribution.xml │ ├── plist │ ├── BlacklistApps.plist │ ├── DictionarySet.plist │ └── UserDefaults.plist │ ├── proj │ ├── AquaSKK-Info.plist │ ├── AquaSKK.packproj │ ├── AquaSKK.pmdoc │ │ ├── 01aquaskk-contents.xml │ │ ├── 01aquaskk.xml │ │ └── index.xml │ ├── AquaSKK.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── t_suwa.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── t_suwa.mode1v3 │ │ ├── t_suwa.pbxuser │ │ └── xcuserdata │ │ │ └── t_suwa.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── AquaSKK.xcscheme │ │ │ ├── AquaSKKPreferences.xcscheme │ │ │ └── xcschememanagement.plist │ ├── AquaSKK.xib │ ├── AquaSKK.xml │ ├── AquaSKK │ │ └── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-128.png │ │ │ ├── Icon-128@2x.png │ │ │ ├── Icon-16.png │ │ │ ├── Icon-16@2x.png │ │ │ ├── Icon-256.png │ │ │ ├── Icon-256@2x.png │ │ │ ├── Icon-32.png │ │ │ ├── Icon-32@2x.png │ │ │ ├── Icon-512.png │ │ │ └── Icon-512@2x.png │ │ │ └── Contents.json │ ├── AquaSKKPreferences-Info.plist │ ├── InfoPlist.strings │ ├── Preferences.xib │ ├── aquaskk_Prefix.pch │ ├── build │ │ └── AquaSKK.build │ │ │ └── AquaSKK.pbxindex │ │ │ ├── categories.pbxbtree │ │ │ ├── cdecls.pbxbtree │ │ │ ├── decls.pbxbtree │ │ │ ├── files.pbxbtree │ │ │ ├── imports.pbxbtree │ │ │ ├── pbxindex.header │ │ │ ├── protocols.pbxbtree │ │ │ ├── refs.pbxbtree │ │ │ ├── strings.pbxstrings │ │ │ ├── control │ │ │ └── strings │ │ │ ├── subclasses.pbxbtree │ │ │ └── symbols0.pbxsymbols │ └── contents │ │ ├── License.rtf │ │ └── Welcome.rtf │ └── src │ ├── gui │ ├── AnnotationView.h │ ├── AnnotationView.mm │ ├── AnnotationWindow.h │ ├── AnnotationWindow.mm │ ├── CandidateCell.h │ ├── CandidateCell.mm │ ├── CandidatePageIndicator.h │ ├── CandidatePageIndicator.mm │ ├── CandidateView.h │ ├── CandidateView.mm │ ├── CandidateWindow.h │ ├── CandidateWindow.mm │ ├── CompletionView.h │ ├── CompletionView.mm │ ├── CompletionWindow.h │ ├── CompletionWindow.mm │ ├── InputModeWindow.h │ ├── InputModeWindow.mm │ ├── MessengerView.h │ ├── MessengerView.mm │ ├── MessengerWindow.h │ └── MessengerWindow.mm │ ├── preferences │ ├── BlacklistApps.h │ ├── BlacklistApps.m │ ├── DictionarySet.h │ ├── DictionarySet.mm │ ├── DictionaryTypeTransformer.h │ ├── DictionaryTypeTransformer.mm │ ├── PathFormatter.h │ ├── PathFormatter.mm │ ├── PreferenceController.h │ ├── PreferenceController.mm │ ├── SubRuleDescriptions.cpp │ ├── SubRuleDescriptions.h │ └── main.mm │ └── server │ ├── BlacklistApps.h │ ├── BlacklistApps.m │ ├── MacAnnotator.h │ ├── MacAnnotator.mm │ ├── MacCandidateWindow.h │ ├── MacCandidateWindow.mm │ ├── MacClipboard.h │ ├── MacClipboard.mm │ ├── MacConfig.h │ ├── MacConfig.mm │ ├── MacDynamicCompletor.h │ ├── MacDynamicCompletor.mm │ ├── MacFrontEnd.h │ ├── MacFrontEnd.mm │ ├── MacInputModeMenu.h │ ├── MacInputModeMenu.mm │ ├── MacInputModeWindow.h │ ├── MacInputModeWindow.mm │ ├── MacInputSessionParameter.h │ ├── MacInputSessionParameter.mm │ ├── MacKotoeriDictionary.cpp │ ├── MacKotoeriDictionary.h │ ├── MacMessenger.h │ ├── MacMessenger.mm │ ├── ObjCUtil.h │ ├── SKKConstVars.h │ ├── SKKConstVars.mm │ ├── SKKInputController.h │ ├── SKKInputController.mm │ ├── SKKInputMenu.h │ ├── SKKInputMenu.mm │ ├── SKKLayoutManager.h │ ├── SKKLayoutManager.mm │ ├── SKKPreProcessor.h │ ├── SKKPreProcessor.mm │ ├── SKKPythonRunner.cpp │ ├── SKKPythonRunner.h │ ├── SKKServer.h │ ├── SKKServer.mm │ ├── SKKServerProxy.h │ ├── SKKServerProxy.mm │ ├── SKKSupervisor.h │ └── main.mm └── src ├── bridge ├── SKKAnnotator.h ├── SKKCandidateWindow.h ├── SKKClipboard.h ├── SKKConfig.h ├── SKKDynamicCompletor.h ├── SKKFrontEnd.h ├── SKKInputModeListener.h ├── SKKInputSessionParameter.h ├── SKKMessenger.h └── SKKWidget.h └── engine ├── backend ├── SKKBackEnd.cpp ├── SKKBackEnd.h ├── SKKCandidateFilter.h ├── SKKDictionaryCache.cpp ├── SKKDictionaryCache.h ├── SKKDictionaryFactory.cpp ├── SKKDictionaryFactory.h ├── SKKDictionaryKey.h ├── SKKNumericConverter.cpp └── SKKNumericConverter.h ├── completer ├── SKKCompleter.cpp └── SKKCompleter.h ├── dictionary ├── SKKAutoUpdateDictionary.h ├── SKKBaseDictionary.h ├── SKKCommonDictionary.h ├── SKKCompletionHelper.h ├── SKKDictionaryFile.cpp ├── SKKDictionaryFile.h ├── SKKDictionaryKeeper.cpp ├── SKKDictionaryKeeper.h ├── SKKDictionaryLoader.h ├── SKKDictionaryTemplate.h ├── SKKDistributedUserDictionary.cpp ├── SKKDistributedUserDictionary.h ├── SKKGadgetDictionary.cpp ├── SKKGadgetDictionary.h ├── SKKHttpDictionaryLoader.cpp ├── SKKHttpDictionaryLoader.h ├── SKKLocalDictionaryLoader.h ├── SKKLocalUserDictionary.cpp ├── SKKLocalUserDictionary.h ├── SKKProxyDictionary.cpp ├── SKKProxyDictionary.h └── SKKUserDictionary.h ├── editor ├── SKKBaseEditor.h ├── SKKCandidateEditor.cpp ├── SKKCandidateEditor.h ├── SKKComposingEditor.cpp ├── SKKComposingEditor.h ├── SKKEntryRemoveEditor.cpp ├── SKKEntryRemoveEditor.h ├── SKKInputEngine.cpp ├── SKKInputEngine.h ├── SKKInputQueue.cpp ├── SKKInputQueue.h ├── SKKOkuriEditor.cpp ├── SKKOkuriEditor.h ├── SKKPrimaryEditor.cpp ├── SKKPrimaryEditor.h ├── SKKRegisterEditor.cpp ├── SKKRegisterEditor.h ├── SKKTextBuffer.cpp └── SKKTextBuffer.h ├── entry ├── SKKCandidate.cpp ├── SKKCandidate.h ├── SKKCandidateParser.h ├── SKKCandidateSuite.h ├── SKKEntry.cpp ├── SKKEntry.h └── SKKOkuriHint.h ├── keymap ├── SKKKeyState.h ├── SKKKeymap.cpp ├── SKKKeymap.h ├── SKKKeymapEntry.cpp └── SKKKeymapEntry.h ├── selector ├── SKKBaseSelector.h ├── SKKInlineSelector.cpp ├── SKKInlineSelector.h ├── SKKSelector.cpp ├── SKKSelector.h ├── SKKWindowSelector.cpp └── SKKWindowSelector.h ├── session ├── SKKInputContext.h ├── SKKInputEnvironment.cpp ├── SKKInputEnvironment.h ├── SKKInputMode.h ├── SKKInputModeSelector.cpp ├── SKKInputModeSelector.h ├── SKKInputSession.cpp ├── SKKInputSession.h ├── SKKOutputBuffer.cpp ├── SKKOutputBuffer.h ├── SKKRecursiveEditor.cpp ├── SKKRecursiveEditor.h ├── SKKRegistration.h ├── SKKUndoContext.cpp └── SKKUndoContext.h ├── skkserv ├── skkserv.cpp └── skkserv.h ├── state ├── GenericStateMachine.h ├── SKKEvent.h ├── SKKState.cpp ├── SKKState.h ├── SKKStateComposing-inl.h ├── SKKStateEntryRemove-inl.h ├── SKKStateMachine.h ├── SKKStatePrimary-inl.h └── SKKStateRecursiveRegister-inl.h ├── tests ├── Makefile ├── MockAnnotator.h ├── MockCandidateWindow.h ├── MockClipboard.h ├── MockCompletionHelper.h ├── MockConfig.h ├── MockDynamicCompletor.h ├── MockFrontEnd.h ├── MockInputSessionParameter.h ├── MockMessenger.h ├── MockRegistrationObserver.h ├── SKK-JISYO.S1 ├── SKK-JISYO.S2 ├── SKK-JISYO.TEST ├── SKK-JISYO.TEST.UTF8 ├── SKKAutoUpdateDictionary_TEST.cpp ├── SKKBackEnd_TEST.cpp ├── SKKCandidateParser_TEST.cpp ├── SKKCandidateSuite_TEST.cpp ├── SKKCandidate_TEST.cpp ├── SKKCommonDictionary_TEST.cpp ├── SKKCompleter_TEST.cpp ├── SKKDictionaryFactory_TEST.cpp ├── SKKDictionaryFile_TEST.cpp ├── SKKDictionaryKeeper_TEST.cpp ├── SKKDictionaryLoader_TEST.cpp ├── SKKDistributedUserDictionary_TEST.cpp ├── SKKGadgetDictionary_TEST.cpp ├── SKKInlineSelector_TEST.cpp ├── SKKInputQueue_TEST.cpp ├── SKKInputSession_TEST.cpp ├── SKKKeymapEntry_TEST.cpp ├── SKKKeymap_TEST.cpp ├── SKKNumericConverter_TEST.cpp ├── SKKProxyDictionary_TEST.cpp ├── SKKRomanKanaConverter_TEST.cpp ├── SKKSelector_TEST.cpp ├── SKKTrie_TEST.cpp ├── SKKUserDictionary_TEST.cpp ├── SKKWindowSelector_TEST.cpp ├── TestData.h ├── TestEvent.h ├── TestResult.h ├── calculator_TEST.cpp ├── dict.file ├── kana-rule.conf ├── keymap.conf ├── keymap_patch.conf ├── period.rule ├── pthreadutil_TEST.cpp ├── skk-jisyo.utf8 ├── skk.jisyo ├── socketutil_TEST.cpp ├── stringutil_TEST.cpp ├── test.dat └── utf8util_TEST.cpp ├── trie ├── SKKRomanKanaConverter.cpp ├── SKKRomanKanaConverter.h ├── SKKTrie.cpp └── SKKTrie.h └── utility ├── calculator.h ├── jconv.cpp ├── jconv.h ├── jconv_body-inl.h ├── jconv_eucj2ucs-inl.h ├── jconv_ucs2eucj-inl.h ├── pthreadutil.h ├── socketutil.h ├── stringutil.h ├── subrange.h └── utf8util.h /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/README.md -------------------------------------------------------------------------------- /data/config/act.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/act.conf -------------------------------------------------------------------------------- /data/config/act.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/act.rule -------------------------------------------------------------------------------- /data/config/azik.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/azik.conf -------------------------------------------------------------------------------- /data/config/azik.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/azik.rule -------------------------------------------------------------------------------- /data/config/azik_us.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/azik_us.rule -------------------------------------------------------------------------------- /data/config/comma.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/comma.rule -------------------------------------------------------------------------------- /data/config/kana-rule.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/kana-rule.conf -------------------------------------------------------------------------------- /data/config/keymap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/keymap.conf -------------------------------------------------------------------------------- /data/config/old-kana.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/old-kana.rule -------------------------------------------------------------------------------- /data/config/period.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/period.rule -------------------------------------------------------------------------------- /data/config/sub-rule.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/sub-rule.desc -------------------------------------------------------------------------------- /data/config/yakumono-ippai.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/config/yakumono-ippai.rule -------------------------------------------------------------------------------- /data/icons/AquaSKK-Ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Ascii.png -------------------------------------------------------------------------------- /data/icons/AquaSKK-Ascii@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Ascii@2x.png -------------------------------------------------------------------------------- /data/icons/AquaSKK-Hirakana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Hirakana.png -------------------------------------------------------------------------------- /data/icons/AquaSKK-Hirakana@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Hirakana@2x.png -------------------------------------------------------------------------------- /data/icons/AquaSKK-InputMethod.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-InputMethod.tif -------------------------------------------------------------------------------- /data/icons/AquaSKK-InputMethod@2x.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-InputMethod@2x.tiff -------------------------------------------------------------------------------- /data/icons/AquaSKK-Jisx0201Kana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Jisx0201Kana.png -------------------------------------------------------------------------------- /data/icons/AquaSKK-Jisx0201Kana@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Jisx0201Kana@2x.png -------------------------------------------------------------------------------- /data/icons/AquaSKK-Jisx0208Latin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Jisx0208Latin.png -------------------------------------------------------------------------------- /data/icons/AquaSKK-Jisx0208Latin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Jisx0208Latin@2x.png -------------------------------------------------------------------------------- /data/icons/AquaSKK-Katakana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Katakana.png -------------------------------------------------------------------------------- /data/icons/AquaSKK-Katakana@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK-Katakana@2x.png -------------------------------------------------------------------------------- /data/icons/AquaSKK.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/AquaSKK.graffle -------------------------------------------------------------------------------- /data/icons/Mini-Ascii.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Ascii.tiff -------------------------------------------------------------------------------- /data/icons/Mini-Ascii@2x.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Ascii@2x.tiff -------------------------------------------------------------------------------- /data/icons/Mini-Hirakana.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Hirakana.tiff -------------------------------------------------------------------------------- /data/icons/Mini-Hirakana@2x.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Hirakana@2x.tiff -------------------------------------------------------------------------------- /data/icons/Mini-Jisx0201Kana.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Jisx0201Kana.tiff -------------------------------------------------------------------------------- /data/icons/Mini-Jisx0201Kana@2x.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Jisx0201Kana@2x.tiff -------------------------------------------------------------------------------- /data/icons/Mini-Jisx0208Latin.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Jisx0208Latin.tiff -------------------------------------------------------------------------------- /data/icons/Mini-Jisx0208Latin@2x.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Jisx0208Latin@2x.tiff -------------------------------------------------------------------------------- /data/icons/Mini-Katakana.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Katakana.tiff -------------------------------------------------------------------------------- /data/icons/Mini-Katakana@2x.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/icons/Mini-Katakana@2x.tiff -------------------------------------------------------------------------------- /data/others/karabiner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/data/others/karabiner.xml -------------------------------------------------------------------------------- /doc/ClassDiagram.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/doc/ClassDiagram.graffle -------------------------------------------------------------------------------- /doc/ClassDiagram01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/doc/ClassDiagram01.png -------------------------------------------------------------------------------- /doc/ClassDiagram02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/doc/ClassDiagram02.png -------------------------------------------------------------------------------- /doc/ClassDiagram03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/doc/ClassDiagram03.png -------------------------------------------------------------------------------- /doc/ClassDiagram04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/doc/ClassDiagram04.png -------------------------------------------------------------------------------- /platform/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/Makefile -------------------------------------------------------------------------------- /platform/mac/pkg/aquaskk.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/pkg/aquaskk.plist -------------------------------------------------------------------------------- /platform/mac/pkg/distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/pkg/distribution.xml -------------------------------------------------------------------------------- /platform/mac/plist/BlacklistApps.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/plist/BlacklistApps.plist -------------------------------------------------------------------------------- /platform/mac/plist/DictionarySet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/plist/DictionarySet.plist -------------------------------------------------------------------------------- /platform/mac/plist/UserDefaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/plist/UserDefaults.plist -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK-Info.plist -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.packproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.packproj -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.pmdoc/01aquaskk-contents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.pmdoc/01aquaskk-contents.xml -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.pmdoc/01aquaskk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.pmdoc/01aquaskk.xml -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.pmdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.pmdoc/index.xml -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/project.xcworkspace/xcuserdata/t_suwa.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/project.xcworkspace/xcuserdata/t_suwa.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/project.xcworkspace/xcuserdata/t_suwa.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/project.xcworkspace/xcuserdata/t_suwa.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/t_suwa.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/t_suwa.mode1v3 -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/t_suwa.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/t_suwa.pbxuser -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/xcuserdata/t_suwa.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/xcuserdata/t_suwa.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/xcuserdata/t_suwa.xcuserdatad/xcschemes/AquaSKK.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/xcuserdata/t_suwa.xcuserdatad/xcschemes/AquaSKK.xcscheme -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/xcuserdata/t_suwa.xcuserdatad/xcschemes/AquaSKKPreferences.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/xcuserdata/t_suwa.xcuserdatad/xcschemes/AquaSKKPreferences.xcscheme -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xcodeproj/xcuserdata/t_suwa.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xcodeproj/xcuserdata/t_suwa.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xib -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK.xml -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-128.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-128@2x.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-16.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-16@2x.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-256.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-256@2x.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-32.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-32@2x.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-512.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/AppIcon.appiconset/Icon-512@2x.png -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKK/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKK/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /platform/mac/proj/AquaSKKPreferences-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/AquaSKKPreferences-Info.plist -------------------------------------------------------------------------------- /platform/mac/proj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/InfoPlist.strings -------------------------------------------------------------------------------- /platform/mac/proj/Preferences.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/Preferences.xib -------------------------------------------------------------------------------- /platform/mac/proj/aquaskk_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/aquaskk_Prefix.pch -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/categories.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/categories.pbxbtree -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/cdecls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/cdecls.pbxbtree -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/decls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/decls.pbxbtree -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/files.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/files.pbxbtree -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/imports.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/imports.pbxbtree -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/pbxindex.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/pbxindex.header -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/protocols.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/protocols.pbxbtree -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/refs.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/refs.pbxbtree -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/strings.pbxstrings/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/strings.pbxstrings/control -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/strings.pbxstrings/strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/strings.pbxstrings/strings -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/subclasses.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/subclasses.pbxbtree -------------------------------------------------------------------------------- /platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/symbols0.pbxsymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/build/AquaSKK.build/AquaSKK.pbxindex/symbols0.pbxsymbols -------------------------------------------------------------------------------- /platform/mac/proj/contents/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/contents/License.rtf -------------------------------------------------------------------------------- /platform/mac/proj/contents/Welcome.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/proj/contents/Welcome.rtf -------------------------------------------------------------------------------- /platform/mac/src/gui/AnnotationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/AnnotationView.h -------------------------------------------------------------------------------- /platform/mac/src/gui/AnnotationView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/AnnotationView.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/AnnotationWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/AnnotationWindow.h -------------------------------------------------------------------------------- /platform/mac/src/gui/AnnotationWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/AnnotationWindow.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/CandidateCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CandidateCell.h -------------------------------------------------------------------------------- /platform/mac/src/gui/CandidateCell.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CandidateCell.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/CandidatePageIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CandidatePageIndicator.h -------------------------------------------------------------------------------- /platform/mac/src/gui/CandidatePageIndicator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CandidatePageIndicator.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/CandidateView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CandidateView.h -------------------------------------------------------------------------------- /platform/mac/src/gui/CandidateView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CandidateView.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/CandidateWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CandidateWindow.h -------------------------------------------------------------------------------- /platform/mac/src/gui/CandidateWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CandidateWindow.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/CompletionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CompletionView.h -------------------------------------------------------------------------------- /platform/mac/src/gui/CompletionView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CompletionView.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/CompletionWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CompletionWindow.h -------------------------------------------------------------------------------- /platform/mac/src/gui/CompletionWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/CompletionWindow.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/InputModeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/InputModeWindow.h -------------------------------------------------------------------------------- /platform/mac/src/gui/InputModeWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/InputModeWindow.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/MessengerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/MessengerView.h -------------------------------------------------------------------------------- /platform/mac/src/gui/MessengerView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/MessengerView.mm -------------------------------------------------------------------------------- /platform/mac/src/gui/MessengerWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/MessengerWindow.h -------------------------------------------------------------------------------- /platform/mac/src/gui/MessengerWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/gui/MessengerWindow.mm -------------------------------------------------------------------------------- /platform/mac/src/preferences/BlacklistApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/BlacklistApps.h -------------------------------------------------------------------------------- /platform/mac/src/preferences/BlacklistApps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/BlacklistApps.m -------------------------------------------------------------------------------- /platform/mac/src/preferences/DictionarySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/DictionarySet.h -------------------------------------------------------------------------------- /platform/mac/src/preferences/DictionarySet.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/DictionarySet.mm -------------------------------------------------------------------------------- /platform/mac/src/preferences/DictionaryTypeTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/DictionaryTypeTransformer.h -------------------------------------------------------------------------------- /platform/mac/src/preferences/DictionaryTypeTransformer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/DictionaryTypeTransformer.mm -------------------------------------------------------------------------------- /platform/mac/src/preferences/PathFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/PathFormatter.h -------------------------------------------------------------------------------- /platform/mac/src/preferences/PathFormatter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/PathFormatter.mm -------------------------------------------------------------------------------- /platform/mac/src/preferences/PreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/PreferenceController.h -------------------------------------------------------------------------------- /platform/mac/src/preferences/PreferenceController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/PreferenceController.mm -------------------------------------------------------------------------------- /platform/mac/src/preferences/SubRuleDescriptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/SubRuleDescriptions.cpp -------------------------------------------------------------------------------- /platform/mac/src/preferences/SubRuleDescriptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/SubRuleDescriptions.h -------------------------------------------------------------------------------- /platform/mac/src/preferences/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/preferences/main.mm -------------------------------------------------------------------------------- /platform/mac/src/server/BlacklistApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/BlacklistApps.h -------------------------------------------------------------------------------- /platform/mac/src/server/BlacklistApps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/BlacklistApps.m -------------------------------------------------------------------------------- /platform/mac/src/server/MacAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacAnnotator.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacAnnotator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacAnnotator.mm -------------------------------------------------------------------------------- /platform/mac/src/server/MacCandidateWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacCandidateWindow.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacCandidateWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacCandidateWindow.mm -------------------------------------------------------------------------------- /platform/mac/src/server/MacClipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacClipboard.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacClipboard.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacClipboard.mm -------------------------------------------------------------------------------- /platform/mac/src/server/MacConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacConfig.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacConfig.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacConfig.mm -------------------------------------------------------------------------------- /platform/mac/src/server/MacDynamicCompletor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacDynamicCompletor.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacDynamicCompletor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacDynamicCompletor.mm -------------------------------------------------------------------------------- /platform/mac/src/server/MacFrontEnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacFrontEnd.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacFrontEnd.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacFrontEnd.mm -------------------------------------------------------------------------------- /platform/mac/src/server/MacInputModeMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacInputModeMenu.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacInputModeMenu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacInputModeMenu.mm -------------------------------------------------------------------------------- /platform/mac/src/server/MacInputModeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacInputModeWindow.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacInputModeWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacInputModeWindow.mm -------------------------------------------------------------------------------- /platform/mac/src/server/MacInputSessionParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacInputSessionParameter.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacInputSessionParameter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacInputSessionParameter.mm -------------------------------------------------------------------------------- /platform/mac/src/server/MacKotoeriDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacKotoeriDictionary.cpp -------------------------------------------------------------------------------- /platform/mac/src/server/MacKotoeriDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacKotoeriDictionary.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacMessenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacMessenger.h -------------------------------------------------------------------------------- /platform/mac/src/server/MacMessenger.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/MacMessenger.mm -------------------------------------------------------------------------------- /platform/mac/src/server/ObjCUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/ObjCUtil.h -------------------------------------------------------------------------------- /platform/mac/src/server/SKKConstVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKConstVars.h -------------------------------------------------------------------------------- /platform/mac/src/server/SKKConstVars.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKConstVars.mm -------------------------------------------------------------------------------- /platform/mac/src/server/SKKInputController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKInputController.h -------------------------------------------------------------------------------- /platform/mac/src/server/SKKInputController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKInputController.mm -------------------------------------------------------------------------------- /platform/mac/src/server/SKKInputMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKInputMenu.h -------------------------------------------------------------------------------- /platform/mac/src/server/SKKInputMenu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKInputMenu.mm -------------------------------------------------------------------------------- /platform/mac/src/server/SKKLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKLayoutManager.h -------------------------------------------------------------------------------- /platform/mac/src/server/SKKLayoutManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKLayoutManager.mm -------------------------------------------------------------------------------- /platform/mac/src/server/SKKPreProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKPreProcessor.h -------------------------------------------------------------------------------- /platform/mac/src/server/SKKPreProcessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKPreProcessor.mm -------------------------------------------------------------------------------- /platform/mac/src/server/SKKPythonRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKPythonRunner.cpp -------------------------------------------------------------------------------- /platform/mac/src/server/SKKPythonRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKPythonRunner.h -------------------------------------------------------------------------------- /platform/mac/src/server/SKKServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKServer.h -------------------------------------------------------------------------------- /platform/mac/src/server/SKKServer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKServer.mm -------------------------------------------------------------------------------- /platform/mac/src/server/SKKServerProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKServerProxy.h -------------------------------------------------------------------------------- /platform/mac/src/server/SKKServerProxy.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKServerProxy.mm -------------------------------------------------------------------------------- /platform/mac/src/server/SKKSupervisor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/SKKSupervisor.h -------------------------------------------------------------------------------- /platform/mac/src/server/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/platform/mac/src/server/main.mm -------------------------------------------------------------------------------- /src/bridge/SKKAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKAnnotator.h -------------------------------------------------------------------------------- /src/bridge/SKKCandidateWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKCandidateWindow.h -------------------------------------------------------------------------------- /src/bridge/SKKClipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKClipboard.h -------------------------------------------------------------------------------- /src/bridge/SKKConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKConfig.h -------------------------------------------------------------------------------- /src/bridge/SKKDynamicCompletor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKDynamicCompletor.h -------------------------------------------------------------------------------- /src/bridge/SKKFrontEnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKFrontEnd.h -------------------------------------------------------------------------------- /src/bridge/SKKInputModeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKInputModeListener.h -------------------------------------------------------------------------------- /src/bridge/SKKInputSessionParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKInputSessionParameter.h -------------------------------------------------------------------------------- /src/bridge/SKKMessenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKMessenger.h -------------------------------------------------------------------------------- /src/bridge/SKKWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/bridge/SKKWidget.h -------------------------------------------------------------------------------- /src/engine/backend/SKKBackEnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKBackEnd.cpp -------------------------------------------------------------------------------- /src/engine/backend/SKKBackEnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKBackEnd.h -------------------------------------------------------------------------------- /src/engine/backend/SKKCandidateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKCandidateFilter.h -------------------------------------------------------------------------------- /src/engine/backend/SKKDictionaryCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKDictionaryCache.cpp -------------------------------------------------------------------------------- /src/engine/backend/SKKDictionaryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKDictionaryCache.h -------------------------------------------------------------------------------- /src/engine/backend/SKKDictionaryFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKDictionaryFactory.cpp -------------------------------------------------------------------------------- /src/engine/backend/SKKDictionaryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKDictionaryFactory.h -------------------------------------------------------------------------------- /src/engine/backend/SKKDictionaryKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKDictionaryKey.h -------------------------------------------------------------------------------- /src/engine/backend/SKKNumericConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKNumericConverter.cpp -------------------------------------------------------------------------------- /src/engine/backend/SKKNumericConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/backend/SKKNumericConverter.h -------------------------------------------------------------------------------- /src/engine/completer/SKKCompleter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/completer/SKKCompleter.cpp -------------------------------------------------------------------------------- /src/engine/completer/SKKCompleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/completer/SKKCompleter.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKAutoUpdateDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKAutoUpdateDictionary.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKBaseDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKBaseDictionary.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKCommonDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKCommonDictionary.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKCompletionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKCompletionHelper.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKDictionaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKDictionaryFile.cpp -------------------------------------------------------------------------------- /src/engine/dictionary/SKKDictionaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKDictionaryFile.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKDictionaryKeeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKDictionaryKeeper.cpp -------------------------------------------------------------------------------- /src/engine/dictionary/SKKDictionaryKeeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKDictionaryKeeper.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKDictionaryLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKDictionaryLoader.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKDictionaryTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKDictionaryTemplate.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKDistributedUserDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKDistributedUserDictionary.cpp -------------------------------------------------------------------------------- /src/engine/dictionary/SKKDistributedUserDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKDistributedUserDictionary.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKGadgetDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKGadgetDictionary.cpp -------------------------------------------------------------------------------- /src/engine/dictionary/SKKGadgetDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKGadgetDictionary.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKHttpDictionaryLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKHttpDictionaryLoader.cpp -------------------------------------------------------------------------------- /src/engine/dictionary/SKKHttpDictionaryLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKHttpDictionaryLoader.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKLocalDictionaryLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKLocalDictionaryLoader.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKLocalUserDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKLocalUserDictionary.cpp -------------------------------------------------------------------------------- /src/engine/dictionary/SKKLocalUserDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKLocalUserDictionary.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKProxyDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKProxyDictionary.cpp -------------------------------------------------------------------------------- /src/engine/dictionary/SKKProxyDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKProxyDictionary.h -------------------------------------------------------------------------------- /src/engine/dictionary/SKKUserDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/dictionary/SKKUserDictionary.h -------------------------------------------------------------------------------- /src/engine/editor/SKKBaseEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKBaseEditor.h -------------------------------------------------------------------------------- /src/engine/editor/SKKCandidateEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKCandidateEditor.cpp -------------------------------------------------------------------------------- /src/engine/editor/SKKCandidateEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKCandidateEditor.h -------------------------------------------------------------------------------- /src/engine/editor/SKKComposingEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKComposingEditor.cpp -------------------------------------------------------------------------------- /src/engine/editor/SKKComposingEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKComposingEditor.h -------------------------------------------------------------------------------- /src/engine/editor/SKKEntryRemoveEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKEntryRemoveEditor.cpp -------------------------------------------------------------------------------- /src/engine/editor/SKKEntryRemoveEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKEntryRemoveEditor.h -------------------------------------------------------------------------------- /src/engine/editor/SKKInputEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKInputEngine.cpp -------------------------------------------------------------------------------- /src/engine/editor/SKKInputEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKInputEngine.h -------------------------------------------------------------------------------- /src/engine/editor/SKKInputQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKInputQueue.cpp -------------------------------------------------------------------------------- /src/engine/editor/SKKInputQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKInputQueue.h -------------------------------------------------------------------------------- /src/engine/editor/SKKOkuriEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKOkuriEditor.cpp -------------------------------------------------------------------------------- /src/engine/editor/SKKOkuriEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKOkuriEditor.h -------------------------------------------------------------------------------- /src/engine/editor/SKKPrimaryEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKPrimaryEditor.cpp -------------------------------------------------------------------------------- /src/engine/editor/SKKPrimaryEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKPrimaryEditor.h -------------------------------------------------------------------------------- /src/engine/editor/SKKRegisterEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKRegisterEditor.cpp -------------------------------------------------------------------------------- /src/engine/editor/SKKRegisterEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKRegisterEditor.h -------------------------------------------------------------------------------- /src/engine/editor/SKKTextBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKTextBuffer.cpp -------------------------------------------------------------------------------- /src/engine/editor/SKKTextBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/editor/SKKTextBuffer.h -------------------------------------------------------------------------------- /src/engine/entry/SKKCandidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/entry/SKKCandidate.cpp -------------------------------------------------------------------------------- /src/engine/entry/SKKCandidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/entry/SKKCandidate.h -------------------------------------------------------------------------------- /src/engine/entry/SKKCandidateParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/entry/SKKCandidateParser.h -------------------------------------------------------------------------------- /src/engine/entry/SKKCandidateSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/entry/SKKCandidateSuite.h -------------------------------------------------------------------------------- /src/engine/entry/SKKEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/entry/SKKEntry.cpp -------------------------------------------------------------------------------- /src/engine/entry/SKKEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/entry/SKKEntry.h -------------------------------------------------------------------------------- /src/engine/entry/SKKOkuriHint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/entry/SKKOkuriHint.h -------------------------------------------------------------------------------- /src/engine/keymap/SKKKeyState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/keymap/SKKKeyState.h -------------------------------------------------------------------------------- /src/engine/keymap/SKKKeymap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/keymap/SKKKeymap.cpp -------------------------------------------------------------------------------- /src/engine/keymap/SKKKeymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/keymap/SKKKeymap.h -------------------------------------------------------------------------------- /src/engine/keymap/SKKKeymapEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/keymap/SKKKeymapEntry.cpp -------------------------------------------------------------------------------- /src/engine/keymap/SKKKeymapEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/keymap/SKKKeymapEntry.h -------------------------------------------------------------------------------- /src/engine/selector/SKKBaseSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/selector/SKKBaseSelector.h -------------------------------------------------------------------------------- /src/engine/selector/SKKInlineSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/selector/SKKInlineSelector.cpp -------------------------------------------------------------------------------- /src/engine/selector/SKKInlineSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/selector/SKKInlineSelector.h -------------------------------------------------------------------------------- /src/engine/selector/SKKSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/selector/SKKSelector.cpp -------------------------------------------------------------------------------- /src/engine/selector/SKKSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/selector/SKKSelector.h -------------------------------------------------------------------------------- /src/engine/selector/SKKWindowSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/selector/SKKWindowSelector.cpp -------------------------------------------------------------------------------- /src/engine/selector/SKKWindowSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/selector/SKKWindowSelector.h -------------------------------------------------------------------------------- /src/engine/session/SKKInputContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKInputContext.h -------------------------------------------------------------------------------- /src/engine/session/SKKInputEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKInputEnvironment.cpp -------------------------------------------------------------------------------- /src/engine/session/SKKInputEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKInputEnvironment.h -------------------------------------------------------------------------------- /src/engine/session/SKKInputMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKInputMode.h -------------------------------------------------------------------------------- /src/engine/session/SKKInputModeSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKInputModeSelector.cpp -------------------------------------------------------------------------------- /src/engine/session/SKKInputModeSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKInputModeSelector.h -------------------------------------------------------------------------------- /src/engine/session/SKKInputSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKInputSession.cpp -------------------------------------------------------------------------------- /src/engine/session/SKKInputSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKInputSession.h -------------------------------------------------------------------------------- /src/engine/session/SKKOutputBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKOutputBuffer.cpp -------------------------------------------------------------------------------- /src/engine/session/SKKOutputBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKOutputBuffer.h -------------------------------------------------------------------------------- /src/engine/session/SKKRecursiveEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKRecursiveEditor.cpp -------------------------------------------------------------------------------- /src/engine/session/SKKRecursiveEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKRecursiveEditor.h -------------------------------------------------------------------------------- /src/engine/session/SKKRegistration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKRegistration.h -------------------------------------------------------------------------------- /src/engine/session/SKKUndoContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKUndoContext.cpp -------------------------------------------------------------------------------- /src/engine/session/SKKUndoContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/session/SKKUndoContext.h -------------------------------------------------------------------------------- /src/engine/skkserv/skkserv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/skkserv/skkserv.cpp -------------------------------------------------------------------------------- /src/engine/skkserv/skkserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/skkserv/skkserv.h -------------------------------------------------------------------------------- /src/engine/state/GenericStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/state/GenericStateMachine.h -------------------------------------------------------------------------------- /src/engine/state/SKKEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/state/SKKEvent.h -------------------------------------------------------------------------------- /src/engine/state/SKKState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/state/SKKState.cpp -------------------------------------------------------------------------------- /src/engine/state/SKKState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/state/SKKState.h -------------------------------------------------------------------------------- /src/engine/state/SKKStateComposing-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/state/SKKStateComposing-inl.h -------------------------------------------------------------------------------- /src/engine/state/SKKStateEntryRemove-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/state/SKKStateEntryRemove-inl.h -------------------------------------------------------------------------------- /src/engine/state/SKKStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/state/SKKStateMachine.h -------------------------------------------------------------------------------- /src/engine/state/SKKStatePrimary-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/state/SKKStatePrimary-inl.h -------------------------------------------------------------------------------- /src/engine/state/SKKStateRecursiveRegister-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/state/SKKStateRecursiveRegister-inl.h -------------------------------------------------------------------------------- /src/engine/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/Makefile -------------------------------------------------------------------------------- /src/engine/tests/MockAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockAnnotator.h -------------------------------------------------------------------------------- /src/engine/tests/MockCandidateWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockCandidateWindow.h -------------------------------------------------------------------------------- /src/engine/tests/MockClipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockClipboard.h -------------------------------------------------------------------------------- /src/engine/tests/MockCompletionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockCompletionHelper.h -------------------------------------------------------------------------------- /src/engine/tests/MockConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockConfig.h -------------------------------------------------------------------------------- /src/engine/tests/MockDynamicCompletor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockDynamicCompletor.h -------------------------------------------------------------------------------- /src/engine/tests/MockFrontEnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockFrontEnd.h -------------------------------------------------------------------------------- /src/engine/tests/MockInputSessionParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockInputSessionParameter.h -------------------------------------------------------------------------------- /src/engine/tests/MockMessenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockMessenger.h -------------------------------------------------------------------------------- /src/engine/tests/MockRegistrationObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/MockRegistrationObserver.h -------------------------------------------------------------------------------- /src/engine/tests/SKK-JISYO.S1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKK-JISYO.S1 -------------------------------------------------------------------------------- /src/engine/tests/SKK-JISYO.S2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKK-JISYO.S2 -------------------------------------------------------------------------------- /src/engine/tests/SKK-JISYO.TEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKK-JISYO.TEST -------------------------------------------------------------------------------- /src/engine/tests/SKK-JISYO.TEST.UTF8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKK-JISYO.TEST.UTF8 -------------------------------------------------------------------------------- /src/engine/tests/SKKAutoUpdateDictionary_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKAutoUpdateDictionary_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKBackEnd_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKBackEnd_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKCandidateParser_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKCandidateParser_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKCandidateSuite_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKCandidateSuite_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKCandidate_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKCandidate_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKCommonDictionary_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKCommonDictionary_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKCompleter_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKCompleter_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKDictionaryFactory_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKDictionaryFactory_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKDictionaryFile_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKDictionaryFile_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKDictionaryKeeper_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKDictionaryKeeper_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKDictionaryLoader_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKDictionaryLoader_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKDistributedUserDictionary_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKDistributedUserDictionary_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKGadgetDictionary_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKGadgetDictionary_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKInlineSelector_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKInlineSelector_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKInputQueue_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKInputQueue_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKInputSession_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKInputSession_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKKeymapEntry_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKKeymapEntry_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKKeymap_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKKeymap_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKNumericConverter_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKNumericConverter_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKProxyDictionary_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKProxyDictionary_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKRomanKanaConverter_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKRomanKanaConverter_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKSelector_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKSelector_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKTrie_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKTrie_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKUserDictionary_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKUserDictionary_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/SKKWindowSelector_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/SKKWindowSelector_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/TestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/TestData.h -------------------------------------------------------------------------------- /src/engine/tests/TestEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/TestEvent.h -------------------------------------------------------------------------------- /src/engine/tests/TestResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/TestResult.h -------------------------------------------------------------------------------- /src/engine/tests/calculator_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/calculator_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/dict.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/dict.file -------------------------------------------------------------------------------- /src/engine/tests/kana-rule.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/kana-rule.conf -------------------------------------------------------------------------------- /src/engine/tests/keymap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/keymap.conf -------------------------------------------------------------------------------- /src/engine/tests/keymap_patch.conf: -------------------------------------------------------------------------------- 1 | NotToggleKana q 2 | UpperCases " 3 | -------------------------------------------------------------------------------- /src/engine/tests/period.rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/period.rule -------------------------------------------------------------------------------- /src/engine/tests/pthreadutil_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/pthreadutil_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/skk-jisyo.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/skk-jisyo.utf8 -------------------------------------------------------------------------------- /src/engine/tests/skk.jisyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/skk.jisyo -------------------------------------------------------------------------------- /src/engine/tests/socketutil_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/socketutil_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/stringutil_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/stringutil_TEST.cpp -------------------------------------------------------------------------------- /src/engine/tests/test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/test.dat -------------------------------------------------------------------------------- /src/engine/tests/utf8util_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/tests/utf8util_TEST.cpp -------------------------------------------------------------------------------- /src/engine/trie/SKKRomanKanaConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/trie/SKKRomanKanaConverter.cpp -------------------------------------------------------------------------------- /src/engine/trie/SKKRomanKanaConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/trie/SKKRomanKanaConverter.h -------------------------------------------------------------------------------- /src/engine/trie/SKKTrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/trie/SKKTrie.cpp -------------------------------------------------------------------------------- /src/engine/trie/SKKTrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/trie/SKKTrie.h -------------------------------------------------------------------------------- /src/engine/utility/calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/calculator.h -------------------------------------------------------------------------------- /src/engine/utility/jconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/jconv.cpp -------------------------------------------------------------------------------- /src/engine/utility/jconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/jconv.h -------------------------------------------------------------------------------- /src/engine/utility/jconv_body-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/jconv_body-inl.h -------------------------------------------------------------------------------- /src/engine/utility/jconv_eucj2ucs-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/jconv_eucj2ucs-inl.h -------------------------------------------------------------------------------- /src/engine/utility/jconv_ucs2eucj-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/jconv_ucs2eucj-inl.h -------------------------------------------------------------------------------- /src/engine/utility/pthreadutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/pthreadutil.h -------------------------------------------------------------------------------- /src/engine/utility/socketutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/socketutil.h -------------------------------------------------------------------------------- /src/engine/utility/stringutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/stringutil.h -------------------------------------------------------------------------------- /src/engine/utility/subrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/subrange.h -------------------------------------------------------------------------------- /src/engine/utility/utf8util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefirst/aquaskk/HEAD/src/engine/utility/utf8util.h --------------------------------------------------------------------------------