vChewing-macOS/Source
zonble ee521b6ee2 Fixes the behavior of the delete and backspace key. 2022-01-28 16:59:28 +08:00
..
Base.lproj Updates copyright information. 2022-01-22 11:24:22 +08:00
Engine Prevents using global state as possible. 2022-01-27 23:19:27 +08:00
Images Show no update available when checking explicitly 2020-10-18 12:48:14 -07:00
Installer Adds a missing line back to the installer. 2022-01-22 00:07:07 +08:00
Tools Update copyright headers (fixes #213) 2022-01-18 14:21:55 -08:00
en.lproj Fixes the cursor index when choosing candidates. 2022-01-28 01:58:25 +08:00
zh-Hant.lproj Fixes the cursor index when choosing candidates. 2022-01-28 01:58:25 +08:00
AppDelegate.swift Merge pull request #245 from lukhnos/update-copyright-headers 2022-01-19 13:29:23 +08:00
InputMethodController.h Splits Input Method controller into two classes. 2022-01-28 15:02:00 +08:00
InputMethodController.mm Code clean-up. 2022-01-28 16:51:25 +08:00
InputState.swift Code clean-up. 2022-01-28 16:51:25 +08:00
KeyHandler.h Code clean-up. 2022-01-28 16:51:25 +08:00
KeyHandler.mm Fixes the behavior of the delete and backspace key. 2022-01-28 16:59:28 +08:00
KeyHandlerInput.swift Code clean-up. 2022-01-28 16:16:52 +08:00
LanguageModelManager.h Update copyright headers (fixes #213) 2022-01-18 14:21:55 -08:00
LanguageModelManager.mm Code clean-up. 2022-01-28 16:16:52 +08:00
McBopomofo-Bridging-Header.h Adds an option to let users to choose Chinse conversion style. 2022-01-16 15:04:20 +08:00
McBopomofo-Info.plist Bump to version 2.0.1 2022-01-20 15:37:31 -08:00
McBopomofo-Prefix.pch Project reorganization. 2012-09-08 19:28:15 -07:00
NonModalAlertWindowController.swift Merge pull request #245 from lukhnos/update-copyright-headers 2022-01-19 13:29:23 +08:00
NonModalAlertWindowController.xib Converts the preference and non modal view controller to Swift. 2022-01-10 22:01:40 +08:00
Preferences.swift Fixes the order of the keyboard layouts. 2022-01-20 14:20:10 +08:00
PreferencesWindowController.swift Merge pull request #245 from lukhnos/update-copyright-headers 2022-01-19 13:29:23 +08:00
README organization update, 加詞及注音修正 2013-11-23 14:41:13 -08:00
main.swift Updates copyright information. 2022-01-22 11:24:22 +08:00

README

.
├── AppDelegate.h
├── AppDelegate.m
├── CandidateUI
│   ├── VTCandidateController.h
│   ├── VTCandidateController.m
│   ├── VTHorizontalCandidateController.h
│   ├── VTHorizontalCandidateController.m
│   ├── VTHorizontalCandidateView.h
│   ├── VTHorizontalCandidateView.m
│   ├── VTVerticalCandidateController.h
│   ├── VTVerticalCandidateController.m
│   ├── VTVerticalCandidateTableView.h
│   ├── VTVerticalCandidateTableView.m
│   ├── VTVerticalKeyLabelStripView.h
│   └── VTVerticalKeyLabelStripView.m
├── Data
│   ├── BPMFBase.txt
│   ├── BPMFMappings.txt
│   ├── BPMFPunctuations.txt
│   ├── Makefile
│   ├── PhraseFreq.txt
│   ├── README
│   ├── Symbols.txt
│   ├── bin
│   │   ├── C_Version
│   │   │   ├── C_count.occ.exe
│   │   │   ├── Makefile
│   │   │   ├── count.bash
│   │   │   └── count.occurrence.c
│   │   ├── README
│   │   ├── Sample_Prep
│   │   │   ├── build.bash
│   │   │   ├── filter.bash
│   │   │   └── filter.py
│   │   ├── bpmfmap.py
│   │   ├── buildFreq.py
│   │   ├── cook-plain-bpmf.py
│   │   ├── cook.py
│   │   ├── count.bash
│   │   ├── count.occurrence.py
│   │   ├── disabled
│   │   │   ├── BIG5toUTF8.pl
│   │   │   ├── bpmfmap_human.py
│   │   │   ├── build4wlist.bash
│   │   │   ├── buildFreq.bash
│   │   │   ├── cook.rb
│   │   │   ├── count.occurrence.pl
│   │   │   ├── countphrase.bash
│   │   │   ├── filter.bash
│   │   │   ├── randomShuffle.bash
│   │   │   ├── typocorrection.bash
│   │   │   └── utf8length.pl
│   │   ├── nonCJK_filter.py
│   │   ├── self-score-test.py
│   │   └── textpool.rc
│   ├── data-plain-bpmf.txt
│   ├── exclusion.txt
│   ├── heterophony1.list
│   ├── heterophony2.list
│   ├── heterophony3.list
│   ├── memo
│   │   ├── blacklist.txt
│   │   ├── covered_by_others.txt
│   │   ├── covered_by_singles.txt
│   │   └── falsecount.txt
│   ├── phrase.occ
│   └── problem.txt
├── Engine
│   ├── FastLM.cpp
│   ├── FastLM.h
│   ├── 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
├── IconMaker
│   ├── AppIconRendererView.h
│   ├── AppIconRendererView.m
│   ├── BopomofoIconRenderView.h
│   ├── BopomofoIconRenderView.m
│   ├── IconMaker-Info.plist
│   ├── IconMaker-Prefix.pch
│   ├── IconMaker.xcodeproj
│   │   └── project.pbxproj
│   ├── IconMakerAppDelegate.h
│   ├── IconMakerAppDelegate.m
│   ├── ImageZoomInView.h
│   ├── ImageZoomInView.m
│   ├── TISIconRendererView.h
│   ├── TISIconRendererView.m
│   ├── en.lproj
│   │   └── MainMenu.xib
│   └── main.m
├── Images
│   ├── Bopomofo.tiff
│   ├── Bopomofo@2x.tiff
│   ├── BopomofoTextMenu.tiff
│   ├── BopomofoTextMenu@2x.tiff
│   ├── McBopomofo.iconset
│   │   ├── icon_128x128.png
│   │   ├── icon_128x128@2x.png
│   │   ├── icon_16x16.png
│   │   ├── icon_16x16@2x.png
│   │   ├── icon_256x256.png
│   │   ├── icon_256x256@2x.png
│   │   ├── icon_32x32.png
│   │   ├── icon_32x32@2x.png
│   │   ├── icon_512x512.png
│   │   └── icon_512x512@2x.png
│   ├── PlainBopomofo.tiff
│   ├── PlainBopomofo@2x.tiff
│   ├── favicon.ico
│   ├── favicon.png
│   └── favicon.tiff
├── InputMethodController.h
├── InputMethodController.mm
├── Installer
│   ├── AppDelegate.h
│   ├── AppDelegate.m
│   ├── Installer-Info.plist
│   ├── Installer-Prefix.pch
│   ├── en.lproj
│   │   ├── InfoPlist.strings
│   │   ├── License.rtf
│   │   ├── Localizable.strings
│   │   └── MainMenu.xib
│   ├── main.m
│   └── zh-Hant.lproj
│       ├── InfoPlist.strings
│       ├── License.rtf
│       ├── Localizable.strings
│       └── MainMenu.xib
├── McBopomofo-Info.plist
├── McBopomofo-Prefix.pch
├── OVInputSourceHelper.h
├── OVInputSourceHelper.m
├── PreferencesWindowController.h
├── PreferencesWindowController.m
├── README
├── Tools
│   ├── genRTF.py
│   └── tistool.m
├── UpdateNotificationController.h
├── UpdateNotificationController.m
├── en.lproj
│   ├── InfoPlist.strings
│   ├── Localizable.strings
│   ├── MainMenu.xib
│   ├── UpdateNotificationController.xib
│   └── preferences.xib
├── main.m
└── zh-Hant.lproj
    ├── InfoPlist.strings
    ├── Localizable.strings
    ├── MainMenu.xib
    ├── UpdateNotificationController.xib
    └── preferences.xib