| 3345 | |
| 3346 | class LoadRCinTable(threading.Thread): |
| 3347 | def __init__(self, cbTS, RCinTable): |
| 3348 | threading.Thread.__init__(self) |
| 3349 | self.cbTS = cbTS |
| 3350 | self.RCinTable = RCinTable |
| 3351 | self.rcinFileList = ([ |
| 3352 | "checj.json", "mscj3.json", "mscj3-ext.json", "cj-ext.json", "cnscj.json", "thcj.json", "newcj3.json", "cj5.json", "newcj.json", "scj6.json", "cj-fast.json", |
| 3353 | "thphonetic.json", "CnsPhonetic.json", "bpmf.json", |
| 3354 | "tharray.json", "array30.json", "ar30-big.json", "array40.json", |
| 3355 | "thdayi.json", "dayi4.json", "dayi3.json", |
| 3356 | "ez.json", "ezsmall.json", "ezmid.json", "ezbig.json", |
| 3357 | "thpinyin.json", "pinyin.json", "roman.json", |
| 3358 | "simplecj.json", "simplex.json", "simplex5.json", |
| 3359 | "liu.json" |
| 3360 | ]) |
| 3361 | |
| 3362 | def run(self): |
| 3363 | if DEBUG_MODE: |