vChewing-macOS/Source
Lukhnos D. Liu ddbd94bee4 Extract the candidate handler; handle subtleties of vertical text mode.
Now both Left and Right can be used as choose-candidate key. Also the
candidate window now doesn't obscure the vertical text being typed by
moving to the right to the vertical text. Because of this, Left key
feels strange. Adding Right key should give a better mental model.
2012-05-06 16:19:33 -07:00
..
CandidateUI Edit comment. 2012-03-29 21:07:45 -07:00
Engine 最多使用六個自來組成一個詞 2011-10-18 16:06:51 -07:00
English.lproj cosmetic change and change the location of the user dictionary 2012-02-26 16:24:09 -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 Change compiler settings. 2012-03-29 12:19:17 -07:00
Tools Python style update 2012-03-21 00:01:17 -07: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 Tab conversion into 4 spaces 2012-02-26 20:53:51 -08:00
InputMethodController.h Use Voltaire for candidate UI; use 10.7 base SDK. 2012-03-28 23:28:42 -07:00
InputMethodController.mm Extract the candidate handler; handle subtleties of vertical text mode. 2012-05-06 16:19:33 -07:00
Makefile reorginzing Makefile 2012-02-26 14:28:28 -08:00
McBopomofo-Info.plist tag 0.9.3 2012-03-20 00:31:14 -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 Tab conversion into 4 spaces 2012-02-26 20:53:51 -08:00
PreferencesWindowController.h first commit 2011-09-01 23:56:26 -07:00
PreferencesWindowController.m Use Voltaire for candidate UI; use 10.7 base SDK. 2012-03-28 23:28:42 -07:00
README reorganizing the layout 2012-02-26 16:30:59 -08:00
UpdateNotificationController.h Tab conversion into 4 spaces 2012-02-26 20:53:51 -08:00
UpdateNotificationController.m Tab conversion into 4 spaces 2012-02-26 20:53:51 -08:00
UpdateNotificationController.xib first commit 2011-09-01 23:56:26 -07:00
main.m Use Voltaire for candidate UI; use 10.7 base SDK. 2012-03-28 23:28:42 -07:00

README

.
├── AppDelegate.h
├── AppDelegate.m
├── Data
│   ├── BPMFBase.txt
│   ├── BPMFMappings.txt
│   ├── BPMFPunctuations.txt
│   ├── Makefile
│   ├── README
│   ├── bin
│   │   ├── BIG5toUTF8.pl
│   │   ├── Makefile
│   │   ├── README
│   │   ├── build4wlist.bash
│   │   ├── buildFreq.bash
│   │   ├── cook.rb
│   │   ├── count.occurrence.c
│   │   ├── count.occurrence.pl
│   │   ├── count.occurrence.py
│   │   ├── countphrase.bash
│   │   ├── filter.bash
│   │   ├── randomShuffle.bash
│   │   ├── typocorrection.bash
│   │   └── utf8length.pl
│   ├── 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

13 directories, 116 files