vChewing-macOS/Source
Mengjuei 82ead6dd72 [NSEvent modifierFlags] is out of place, eliminated. D.
+some phrases from the old notebook. M.
2012-02-25 01:19:44 -08:00
..
Engine 最多使用六個自來組成一個詞 2011-10-18 16:06:51 -07:00
English.lproj Makes to use space key to choose candidates or not as an option. 2011-10-02 11:45:27 +08:00
IconMaker first commit 2011-09-01 23:56:26 -07:00
Images first commit 2011-09-01 23:56:26 -07:00
Lettuce.xcodeproj Creates a RTF file while building. 2011-10-17 01:47:03 +08:00
Tools Modifies the script to generate Credits.rtf. 2011-10-17 14:34:48 +08:00
zh-Hant.lproj Makes to use space key to choose candidates or not as an option. 2011-10-02 11:45:27 +08:00
AppDelegate.h first commit 2011-09-01 23:56:26 -07:00
AppDelegate.m Typos, 2011-09-29 22:39:21 -07:00
InputMethodController.h Typos, 2011-09-29 22:39:21 -07:00
InputMethodController.mm [NSEvent modifierFlags] is out of place, eliminated. D. 2012-02-25 01:19:44 -08:00
Makefile filename change 2011-11-22 22:35:19 -08:00
McBopomofo-Info.plist git rev-list master | wc -l 2011-10-20 16:40:17 -07:00
McBopomofo-Prefix.pch first commit 2011-09-01 23:56:26 -07:00
OVInputSourceHelper.h first commit 2011-09-01 23:56:26 -07:00
OVInputSourceHelper.m first commit 2011-09-01 23:56:26 -07:00
PreferencesWindowController.h first commit 2011-09-01 23:56:26 -07:00
PreferencesWindowController.m first commit 2011-09-01 23:56:26 -07:00
README update information 2012-01-15 20:49:56 -08:00
UpdateNotificationController.h first commit 2011-09-01 23:56:26 -07:00
UpdateNotificationController.m first commit 2011-09-01 23:56:26 -07:00
UpdateNotificationController.xib first commit 2011-09-01 23:56:26 -07:00
main.m comments 2011-10-17 02:55:27 -07:00

README

.
├── AppDelegate.h
├── AppDelegate.m
├── Data
│   ├── BPMFBase.txt
│   ├── BPMFMappings.txt
│   ├── BPMFPunctuations.txt
│   ├── Makefile
│   ├── PhraseFreq.txt
│   ├── README
│   ├── bin
│   │   ├── BIG5toUTF8.pl
│   │   ├── build4wlist.bash
│   │   ├── buildFreq.bash
│   │   ├── cook.rb
│   │   ├── countphrase.bash
│   │   ├── filter.bash
│   │   ├── randomShuffle.bash
│   │   └── typocorrection.bash
│   ├── heterophony1.list
│   ├── heterophony2.list
│   ├── heterophony3.list
│   └── phrase.occ
├── Engine
│   ├── Gramambular
│   │   ├── Bigram.h
│   │   ├── BlockReadingBuilder.h
│   │   ├── Gramambular.h
│   │   ├── Grid.h
│   │   ├── KeyValuePair.h
│   │   ├── LanguageModel.h
│   │   ├── Node.h
│   │   ├── NodeAnchor.h
│   │   ├── Span.h
│   │   ├── Unigram.h
│   │   └── Walker.h
│   ├── Mandarin
│   │   ├── Mandarin.cpp
│   │   └── Mandarin.h
│   ├── OpenVanilla
│   │   ├── OVAroundFilter.h
│   │   ├── OVBase.h
│   │   ├── OVBenchmark.h
│   │   ├── OVCINDataTable.h
│   │   ├── OVCINDatabaseService.h
│   │   ├── OVCINToSQLiteConvertor.h
│   │   ├── OVCandidateService.h
│   │   ├── OVDatabaseService.h
│   │   ├── OVDateTimeHelper.h
│   │   ├── OVEncodingService.h
│   │   ├── OVEventHandlingContext.h
│   │   ├── OVException.h
│   │   ├── OVFileHelper.h
│   │   ├── OVFrameworkInfo.h
│   │   ├── OVInputMethod.h
│   │   ├── OVKey.h
│   │   ├── OVKeyPreprocessor.h
│   │   ├── OVKeyValueMap.h
│   │   ├── OVLoaderBase.h
│   │   ├── OVLoaderService.h
│   │   ├── OVLocalization.h
│   │   ├── OVModule.h
│   │   ├── OVModulePackage.h
│   │   ├── OVOutputFilter.h
│   │   ├── OVPathInfo.h
│   │   ├── OVSQLiteDatabaseService.h
│   │   ├── OVSQLiteWrapper.h
│   │   ├── OVStringHelper.h
│   │   ├── OVTextBuffer.h
│   │   ├── OVUTF8Helper.h
│   │   ├── OVWildcard.h
│   │   └── OpenVanilla.h
│   ├── SimpleLM.cpp
│   └── SimpleLM.h
├── English.lproj
│   ├── InfoPlist.strings
│   ├── Localizable.strings
│   ├── MainMenu.xib
│   └── preferences.xib
├── IconMaker
│   ├── AppIconRendererView.h
│   ├── AppIconRendererView.m
│   ├── IconMaker-Info.plist
│   ├── IconMaker-Prefix.pch
│   ├── IconMakerAppDelegate.h
│   ├── IconMakerAppDelegate.m
│   ├── ImageZoomInView.h
│   ├── ImageZoomInView.m
│   ├── TISIconRendererView.h
│   ├── TISIconRendererView.m
│   ├── en.lproj
│   │   ├── Credits.rtf
│   │   ├── InfoPlist.strings
│   │   └── MainMenu.xib
│   └── main.m
├── Images
│   ├── Bopomofo.tiff
│   ├── BopomofoSelected.tiff
│   ├── Lettuce.icns
│   ├── favicon.ico
│   ├── favicon.png
│   └── favicon.tiff
├── InputMethodController.h
├── InputMethodController.mm
├── Lettuce.xcodeproj
│   └── project.pbxproj
├── Makefile
├── McBopomofo-Info.plist
├── McBopomofo-Prefix.pch
├── OVInputSourceHelper.h
├── OVInputSourceHelper.m
├── PreferencesWindowController.h
├── PreferencesWindowController.m
├── README
├── Tools
│   ├── genRTF.py
│   └── tistool.m
├── UpdateNotificationController.h
├── UpdateNotificationController.m
├── UpdateNotificationController.xib
├── main.m
└── zh-Hant.lproj
    ├── InfoPlist.strings
    ├── Localizable.strings
    └── preferences.xib