-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog.old
More file actions
12319 lines (8746 loc) · 398 KB
/
ChangeLog.old
File metadata and controls
12319 lines (8746 loc) · 398 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2004-11-09 TOKUNAGA Hiroyuki <tkng@xem.jp>
* intltool-merge.in: Updated to 0.31.2.
* intltool-update.in: Updated to 0.31.2.
* intltool-extract.in: Updated to 0.31.2.
2004-11-09 Etsushi Kato <ekato@ees.hokudai.ac.jp>
* uim/skk-dic.c (numeric_kanji_with_position_conv) : Fix behavior
in case of getting 1000000.
2004-11-09 TOKUNAGA Hiroyuki <tkng@xem.jp>
* configure.ac: Removed definition of LOCALEDIR.
* uim/Makefile.am: Added definition of LOCALEDIR.
* gtk/Makefile.am: Added definition of LOCALEDIR.
* helper/Makefile.am: Added definition of LOCALEDIR, GNOMELOCALEDIR.
2004-11-09 Etsushi Kato <ekato@ees.hokudai.ac.jp>
* xim/ximic.cpp (XimIC::get_ic_atr) : Send
KeyPressMask|KeyReleaseMask again for ICA_FilterEvents on
on-demand-synchronous method. On full-synchronous method, send
KeyPressMask only since sending KeyReleaseMask causes problem in
rare cases for some reason.
2004-11-09 Etsushi Kato <ekato@ees.hokudai.ac.jp>
* uim/skk-dic.c (numeric_kanji_with_position_conv) : Fix behavior
in case of zero.
2004-11-09 TOKUNAGA Hiroyuki <tkng@xem.jp>
* configure.ac: It's no longer 0.4.5-beta1. Replaced with the word
"trunk". This will close Bug 1790.
2004-11-09 TOKUNAGA Hiroyuki <tkng@xem.jp>
* scm/japanese-azik.scm: Used new input-rule style like
((("x" "x"). ())(("y" "y" "y") ("z" "z" "z"))).
This will fix the Bug 566.
2004-11-09 TOKUNAGA Hiroyuki <tkng@xem.jp>
* scm/japanese.scm: Used new input-rule style like
((("x" "x"). ())(("y" "y" "y") ("z" "z" "z"))).
This will fix the Bug 566.
2004-11-09 TOKUNAGA Hiroyuki <tkng@xem.jp>
* scm/anthy.scm:
-(anthy-proc-input-state-with-preedit): Corresponsed to new input-rule
style like ((("x" "x"). ())(("y" "y" "y") ("z" "z" "z")))
2004-11-09 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit adds dynamic configuration update of live uim client
processes feature to Sumika using the helper protocol message
'prop_custom_update'. To test this feature, uncomment (require
"custom.scm") in the loader.scm.
* sumika/common/uimconfig.c
- Add #include "uim/uim-helper.h"
- (siod_output): Mark as static
- (custom_msg_tmpl, helper_fd): New static variable
- (helper_disconnect_cb): New static function
- (write_uim_config):
* Add the dynamic configuration update of live uim client
processes feature
* Add anthy-show-segment-separator? modification for testing
purpose. This code fragment only exists for testing purpose. It
must be removed in future
* scm/loader.scm
- Move the location of (require "custom.scm")
* scm/custom.scm
- (custom-prop-update-custom-handler): Change first argument name
'id' to 'context' in accordance with recent specification change
in im.scm
2004-11-09 YamaKen <yamaken@bp.iij4u.or.jp>
* sumika/gtk2/uimcontainer.c
- (uim_config_container_new): Uncomment g_signal_connect for
cb_uim_config_pane_save_button_clicked. This makes custom values
saving as ~/.uim working. But custom value update (uim_custom_set)
on user operations on the custom widgets are still lacking, so
saved ~/.uim does not reflect user modification
- (cb_uim_config_pane_save_button_clicked): New static function
- (uimconfig_create_custom_filechooser_widget): Fix
uim_custom_value_as_str() with uim_custom_value_as_path() This
fixes default value initialization of the widgets for pathname
custom variables such as skk-dic-file-name
- Fix a typo in a comment
* scm/custom.scm
- (custom switch-im-key?): Comment out because the custom type 'key'
is not yet completed. This change has resolved the error on saving
2004-11-09 TOKUNAGA Hiroyuki <tkng@xem.jp>
* scm/japanese.scm: Fixed some wrong rules. whu, tha, qya, qyi, qyu,
qye, qyo. Thanks to OHASHI Hideya.
2004-11-09 TOKUNAGA Hiroyuki <tkng@xem.jp>
* scm/japanese.scm: Removed unused rules, "s" "s" and "n" "".
* scm/japanese-azik.scm: Removed unused rule, "n" "x" "2" "7".
2004-11-08 Etsushi Kato <ekato@ees.hokudai.ac.jp>
* scm/skk.scm : Add skk-use-numeric-conversion? definition.
(skk-get-nth-candidate) : Check skk-use-numeric-conversion?
(skk-prepare-commit-string) : Ditto.
(skk-begin-conversion) : Ditto.
(skk-do-update-preedit) : Ditto. In numeric-conversion mode, show
preedit whose numerical strings are replaced with # if there is
skk-context-child-context.
(skk-check-candidate-window-begin) : Check
skk-use-numeric-conversion?
(skk-change-candidate-index) : Ditto.
* scm/skk-editor.scm (skk-editor-commit-raw) : Ditto. If
inputting string-length of str is 0, go back to parent context
according to ddskk's behavior.
* uim/skk-dic.c : Add skk-lib-store-replaced-numstr,
skk-lib-merge-replaced-numstr, skk-lib-merge-replaced-numstr,
skk-lib-replace-numeric for scheme interface. Change number of
accepting arguments of skk-lib-get-nth-candidate,
skk-lib-get-nr-candidates, skk-lib-commit-candidate in order to
enable numeric conversion.
(skk_store_replaced_numeric_str) : New function.
Returns list of numeric strings by parsing string of
skk-context-head.
(wide_num_list) : New. List of full width numbers.
(kanji_num_list) : New. List of kanji numbers.
(kanji_num_position_list) : New. List of kanji position
characters.
(numeric_wide_or_kanji_conv) : New function. Returns full width
numeric string or kanji numeric string.
(numeric_kanji_width_position_conv) : New function. Returns kanji
numeric string with position characters.
(numeric_shogi_conv) : New function. Returns numeric string for
shogi.
(numeric_convert) : New function. Return numerically converted
strings corresponding to each numeric conversion methods of
skk. Method #5 is not implemented yet.
(skk_merge_replaced_numeric_str) : New function. Return merged
string of the candidate and corresponding converted numeric
string.
(skk_replace_numeric) : New function. Replace numerical string of
the original string with #, and return its replaced string.
(get_nth) : New function. Returns nth content of the LISP list.
(skk_get_nth_candidate) : Process #4 method of skk's numerical
conversion.
(skk_get_nr_candidate) : Ditto.
(skk_commit_candidate) : Ditto.
2004-11-08 YamaKen <yamaken@bp.iij4u.or.jp>
* I had mistakes in the commit log for r1604. Following is the correct
version.
* sumika/gtk2/uimcontainer.c
- (uim_config_container_new):
* Comment out uim_lisp local variables and replace with the global
variables
* Add uimapi_gc_protect() for the global variables
- (uimconfig_create_custom_combobox_widget,
uimconfig_create_custom_checkbutton_widget,
uimconfig_create_custom_textbox_widget,
uimconfig_create_custom_spinbutton_widget,
uimconfig_create_custom_filechooser_widget,
uimconfig_uim_custom_widget_new,
uimconfig_uim_custom_widget_new_by_sym): Comment out uim_lisp
local variables and replace with the global variables
2004-11-08 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit has temporarily and partially resolved the uim-scm API
problem about memory corruption on GC (see Comment #4 of bug #481
and [Anthy-dev 1113]). The changes make Sumika partially
working. Before this fix Sumika often causes SEGV on GC. But now
uim configuration GUI of Sumika works with following command.
$ GTK_IM_MODULE=xim LIBUIM_VERBOSE=5 sumika
GTK_IM_MODULE=<any IM of uim> still causes SEGV. I'll investigate it
later. Configuration loading/saving are not yet touched.
* uim/siod.h
- (gc_protect): New API. Export as temporary solution for custom API
* uim/slib.c
- (gc_protect): Unmark static
* uim/uim-scm.h
- (uim_scm_gc_protect): New API. uim_scm API wrapper for gc_protect
- (struct uim_api_tbl): Add uim_scm_gc_protect
* uim/uim-util.c
- (uim_scm_gc_protect): New API function
- (uim_scm_intern_c_str, uim_scm_qintern_c_str): Cosmetic change
* sumika/common/uimconfig.c
- (uimapi_gc_protect): New function
- (uimapi_init): Add initialization of uim_scm_gc_protect
* sumika/gtk2/uimcontainer.c
- (uimapi_gc_protect): Declare as extern function
- (groups, group_sym, cur, item, label, default_val, desc, range,
group, customs, custom_sym, rcustoms):
* New global variable
* These gc_protect'ed variables are moved from local variables to
avoid corruption on GC
- (uim_config_container_new):
* Comment out uim_lisp local variables and replace with the local
variables
* Add uimapi_gc_protect() for the global variables
- (uimconfig_create_custom_combobox_widget,
uimconfig_create_custom_checkbutton_widget,
uimconfig_create_custom_textbox_widget,
uimconfig_create_custom_spinbutton_widget,
uimconfig_create_custom_filechooser_widget,
uimconfig_uim_custom_widget_new,
uimconfig_uim_custom_widget_new_by_sym): Comment out uim_lisp
local variables and replace with the local variables
* scm/custom.scm
- Remove invalid (require "im.scm")
- (custom custom-preserved-default-im-name):
* Follow recent im.scm specification change about im-list
* Add fallback labels for each IM
- (custom-hook-get-default-im-name): Follow recent im.scm
specification change about im-list
2004-11-08 TOKUNAGA Hiroyuki <tkng@xem.jp>
* scm/generic-key.scm:
-(generic-next-page-key?): Took off "right" from key binding.
-(generic-prev-page-key?): Took off "left" from key binding.
In anthy.scm, there is no way to close candidate window. If right and
left keys are used to prev/next page, we cannot change current selected
segment.
2004-11-08 kzk <mover@hct.zaq.ne.jp>
* Enable selecting Candidate from hitting number key
* qt/quiminputcontextplugin/src/quiminputcontext.cpp
- (filterEvent): handle number key specially for candidate window
* qt/quiminputcontextplugin/src/candidatewindow.cpp
- (setIndexInPage): new function
- (shiftPage): handle candidateIndex correctly
* qt/quiminputcontextplugin/src/candidatewindow.h
- (setIndexInPage): new function
* qt/quiminputcontextplugin-qt4/quiminputcontext.h
- #include <uim/uim-util.h>
* qt/quiminputcontextplugin-qt4/quiminputcontext.cpp
- (filterEvent): handle number key specially for candidate window
* qt/quiminputcontextplugin-qt4/candidatewindow.cpp
- (setIndexInPage): new function
- (shiftPage): handle candidateIndex correctly
* qt/quiminputcontextplugin-qt4/candidatewindow.h
- (setIndexInPage): new function
2004-11-08 Etsushi Kato <ekato@ees.hokudai.ac.jp>
* xim/ximserver.cpp (InputContext::candidate_activate) : Use
correct accel_enumeration_hint argument for uim_get_candidate().
Add sanity check.
2004-11-08 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit fixes invalid input mode management in anthy.scm and
canna.scm that prevents setting default input mode as 'direct' or
'zenkaku' via action.scm. This change has resolved remaining bug
#1791 on anthy and canna. Thanks to UTUMI Hirosi for reporting.
* scm/anthy.scm
- (anthy-context-new): Remove unnecessary anthy-flush invocatoin
- (anthy-flush): Remove inappropriate anthy-context-set-on!
invocation
- (anthy-proc-wide-latin): Add anthy-context-set-on!
* scm/canna.scm
- (canna-context-new): Remove unnecessary canna-flush invocatoin
- (canna-flush): Remove inappropriate canna-context-set-on!
invocation
- (canna-proc-wide-latin): Add canna-context-set-on!
2004-11-08 kzk <mover@hct.zaq.ne.jp>
* scm/anthy.scm
- (anthy-proc-converting-state): handle "anthy-prev-page-key?"
and "anthy-next-page-key?" before handling "anthy-next-segment-key?"
and "anthy-prev-segment-key?". These are apt to have same key.
So, we should handle "anthy-*-page-key?" which has the ristriction
that this key is handled when candidate-window is active;
* scm/generic-key.scm
- add "left" key to generic-prev-page-key?
- add "right" key to generic-next-page-key?
2004-11-08 YamaKen <yamaken@bp.iij4u.or.jp>
* doc/COMPATIBILITY
- Add a new entry 'New action handling framework'
* scm/action.scm
- Modify the header comment
2004-11-08 YamaKen <yamaken@bp.iij4u.or.jp>
* scm/action.scm
- (activity-indicator-new): Fix broken handling when no activity
exist. Returns fallback-indication when such case. The behavior is
validated by test-action.scm.
* test/test-action.scm
- (test activity-indicator-new): Add no activity case
2004-11-08 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit changes default activity of input mode widget of each
IMs to 'direct' mode. This change has resolved bug #1791. In
addition, setting these variables non-direct mode is not useful on
gtk-immodule until bug #1632 has been resolved because non-text
widgets such as menus are created with non-direct mode, so shortcut
operations by alphabet character does not work until the mode have
been changed to direct mode.
* scm/anthy.scm
- (default-widget_anthy_input_mode): Change the value to action_anthy_direct
* scm/canna.scm
- (default-widget_canna_input_mode): Change the value to
action_canna_direct
* scm/skk.scm
- (default-widget_skk_input_mode): Change the value to action_skk_latin
* scm/tutcode.scm
- (default-widget_tutcode_input_mode): Change the value to
action_tutcode_direct
* scm/util.scm
- (any, every): Cosmetic change
2004-11-07 Etsushi Kato <ekato@ees.hokudai.ac.jp>
* xim/ximtrans.cpp (Connection::xim_open) : Check whether XIM is
working with full-synchronous method or on-demand-synchronous
method.
* xim/ximic.cpp (XimIC::get_ic_atr) : Only send KeyPressMask.
* xim/ximim.cpp (XimIM_impl::forward_event) : Send XIM_SYNC_REPLY
if xim if working with full-synchronous method.
* xim/main.cpp : Add --fullsync command line option.
* xim/ximserver.h : Define OPT_FULL_SYNC.
2004-11-05 kzk <mover@hct.zaq.ne.jp>
* Enable kasumi button (configure option)
* uim-kdehelper/configure.in.in
- add "--enable-kasumi" option
* uim-kdehelper/src/common/Makefile.am
- handle kasumi-enabled case
* uim-kdehelper/src/common/quimhelpertoolbar.cpp
* uim-kdehelper/src/common/quimhelpertoolbar.h
- (addExecKasumiButton, slotExecKasumi): new function
* use KUniqueApplication class for future uim-pref-qt
* uim-kdehelper/src/pref/uim-pref-qt.cpp
* uim-kdehelper/src/pref/uim-pref-qt.h
- (slotOk, slotApply): new function
* add "const" qualifier for optimization
* uim-kdehelper/src/toolbar/draghandler.cpp
* uim-kdehelper/src/candwin/uim-candwin-qt.cpp
* uim-kdehelper/src/switcher/im-switcher-qt.h
* uim-kdehelper/src/switcher/im-switcher-qt.cpp
* uim-kdehelper/src/common/uimstateindicator.cpp
* Pot filename update
* uim-kdehelper/po/uim-qtkde-helper.pot
- deleted
* uim-kdehelper/po/uim-kdehelper.pot
- added
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit replaces property and mode handlings in skk.scm with
the new action handling framework implemented in action.scm. Users
can configure widgets and actions as their preferable forms.
* scm/skk.scm
- Replace skk-mode-handler and skk-prop-handler in register-im
with context-mode-handler and context-prop-activate-handler
- Invoke skk-configure-widgets to register widgets
- (skk-widgets, default-widget_skk_input_mode,
skk-input-mode-actions): New configuration variable
- (skk-mode-latin, skk-mode-hiragana, skk-mode-katakana,
skk-mode-wide-latin, skk-mode-hankana): Remove
- (skk-prepare-activation, skk-configure-widgets, skk-latin-state?):
New procedure
- (action action_skk_hiragana, action action_skk_katakana, action
action_skk_hankana, action action_skk_latin, action
action_skk_wide_latin): New action
- (skk-context-new): Add initialization of widgets
- (skk-update-mode, skk-mode-handler, skk-prop-handler,
skk-update-prop-label, skk-update-prop-list): Remove to replace
with action.scm
- (skk-proc-state-direct-no-preedit, skk-proc-state-direct,
skk-proc-state-latin, skk-proc-state-wide-latin,
skk-init-handler): Remove property and mode handlings to replace
with action.scm
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit replaces property and mode handlings in prime.scm with
the new action handling framework implemented in action.scm. Users
can configure widgets and actions as their preferable forms.
* scm/prime.scm
- Replace prime-mode-handler and prime-prop-handler in register-im
with context-mode-handler and context-prop-activate-handler
- Invoke prime-configure-widgets to register widgets
- (prime-widgets, default-widget_prime_input_mode,
prime-input-mode-actions): New configuration variable
- (action action_prime_mode_latin, action
action_prime_mode_hiragana, action action_prime_mode_wide_latin):
New action
- (prime-configure-widgets): New procedure
- (prime-context-new): Add initialization of widgets
- (prime-init-handler, prime-mode-set): Remove property and mode
handlings to replace with action.scm
- (prime-mode-handler, prime-prop-handler, prime-update-prop-label,
prime-update-prop-list, prime-mode-get-label,
prime-mode-get-list): Remove to replace with action.scm
- (prime-mode): Mark as unused
2004-11-05 kzk <mover@hct.zaq.ne.jp>
* qt/uim-kdehelper/candwin/uim-candwin-qt.cpp
- (slotCandidateSelected): enable mouse clicking.
thanks Etsusi Kato-san!
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit replaces property and mode handlings in canna.scm with
the new action handling framework implemented in action.scm. Users
can configure widgets and actions as their preferable forms.
* scm/canna.scm
- Replace canna-mode-handler and canna-prop-handler in register-im
with context-mode-handler and context-prop-activate-handler
- Invoke canna-configure-widgets to register widgets
- Add preliminary AZIK input support
- (canna-widgets, default-widget_canna_input_mode,
default-widget_canna_kana_input_method, canna-input-mode-actions,
canna-kana-input-method-actions): New configuration variable
- (action action_canna_hiragana, action action_canna_katakana,
action action_canna_hankana, action action_canna_direct, action
action_canna_zenkaku, action action_canna_roma, action
action_canna_kana, action_canna_azik): New action
- (canna-prepare-activation, canna-configure-widgets): New procedure
- (canna-context-rec-spec): Fix invalid default value
- (canna-context-new): Add initialization of widgets
- (canna-mode-handler, canna-prop-handler, canna-update-prop-label,
canna-update-mode, canna-update-prop-list): Remove to replace with
action.scm
- (canna-proc-input-state-no-preedit, canna-init-handler,
canna-proc-wide-latin): Remove property and mode handlings to
replace with action.scm
- (canna-proc-input-state-with-preedit):
* Remove property and mode handlings to replace with action.scm
* Fix a typo over a procedure invocation
- (canna-proc-raw-state):
* Remove property and mode handlings to replace with action.scm
* Remove an unused invalid canna-update-preedit
- (canna-prop-list): Remove the unused procedure
* scm/util.scm
- (multi-segment-mode-direct, multi-segment-mode-hiragana,
multi-segment-mode-katakana, multi-segment-mode-wide-latin,
multi-segment-mode-hankana): Remove
* scm/anthy.scm
- A trivial cosmetic change
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit replaces property and mode handlings in tutcode.scm with
the new action handling framework implemented in action.scm.
* scm/tutcode.scm
- Invoke tutcode-configure-widgets to register widgets
- (tutcode-register-im): Replace tutcode-mode-handler and
tutcode-prop-handler in register-im with context-mode-handler and
context-prop-activate-handler
- (tutcode-widgets, default-widget_tutcode_input_mode,
tutcode-input-mode-actions): New configuration variable
- (action action_tutcode_direct, action action_tutcode_hiragana,
action action_tutcode_katakana): New action
- (tutcode-prepare-activation, tutcode-configure-widgets): New
procedure
- (tutcode-context-new): Add initialization of context-widgets
- (tutcode-proc-on-mode, tutcode-proc-off-mode,
tutcode-init-handler): Remove property and mode handlings to
replace with action.scm
- (tutcode-update-mode, tutcode-mode-handler, tutcode-prop-handler,
tutcode-update-prop-label, tutcode-update-prop-list): Remove to
replace with action.scm
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit adds property and mode handlings in direct.scm by new
action handling framework implemented in action.scm.
* scm/direct.scm
- Invoke direct-configure-widgets to register widgets
- Replace direct-mode-handler and direct-prop-handler in register-im
with context-mode-handler and context-prop-activate-handler
- (direct-widgets, default-widget_direct_input_mode,
direct-input-mode-actions): New configuration variable
- (action action_direct_direct): New action
- (direct-configure-widgets): New procedure
- (direct-context-new-internal): New alias of define-record'ed
direct-context-new
- (direct-context-new):
* New procedure
* Add initialization of context-widgets to default procedure
- (direct-mode-handler): Comment out old implementation which
performs im-switching by mode facility
- (direct-prop-handler): Remove these placeholder to replace with
action.scm
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit adds property and mode handlings in m17nlib.scm by new
action handling framework implemented in action.scm.
* scm/m17nlib.scm
- Invoke m17nlib-configure-widgets to register widgets
- (m17nlib-register): Replace m17nlib-mode-handler and
m17nlib-prop-handler in register-im with context-mode-handler and
context-prop-activate-handler
- (m17nlib-widgets, default-widget_m17nlib_input_mode,
m17nlib-input-mode-actions): New configuration variable
- (action action_m17nlib_off, action action_m17nlib_on): New action
- (m17nlib-configure-widgets): New procedure
- (m17nlib-mode-handler, m17nlib-prop-handler): Remove these
placeholders to replace with action.scm
- (m17nlib-context-new): Add initialization of context-widgets
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit replaces property and mode handlings in generic.scm with
the new action handling framework implemented in action.scm.
* scm/generic.scm
- Invoke generic-configure-widgets to register widgets
- (generic-register-im): Replace generic-mode-handler and
generic-prop-handler in register-im with context-mode-handler and
context-prop-activate-handler
- (generic-widgets, default-widget_generic_input_mode,
generic-input-mode-actions): New configuration variable
- (action action_generic_off, action action_generic_on): New action
- (generic-prepare-activation, generic-configure-widgets): New
procedure
- (generic-context-rec-spec): Fix invalid default value
- (generic-context-new): Add initialization of context-widgets
- (generic-proc-input-state, generic-proc-off-mode,
generic-init-handler): Remove property and mode handlings to
replace with action.scm
- (generic-mode-handler, generic-prop-handler,
generic-update-prop-label, generic-update-prop-list): Remove to
replace with action.scm
* scm/hangul.scm
- (hangul-register-im): Replace generic-mode-handler and
generic-prop-handler in register-im with context-mode-handler and
context-prop-activate-handler
2004-11-05 kzk <mover@hct.zaq.ne.jp>
* qt/uim-kdehelper/switcher/im-switcher-qt.cpp
- (createGUI): layout and resize mode enhancement
- (parseHelperStrImList): remove unnecessary code
for adjusting listview size
* qt/uim-kdehelper/switcher/im-switcher-qt.h
- now class UimImSwitcher extends QDialog
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit replaces property and mode handlings in anthy.scm with
the new action handling framework implemented in action.scm. Users
can configure widgets and actions as their preferable forms.
* scm/anthy.scm
- Replace anthy-mode-handler and anthy-prop-handler in register-im
with context-mode-handler and context-prop-activate-handler
- Invoke anthy-configure-widgets to register widgets
- Add preliminary AZIK input support
- (anthy-widgets, default-widget_anthy_input_mode,
default-widget_anthy_kana_input_method, anthy-input-mode-actions,
anthy-kana-input-method-actions): New configuration variable moved
from action.scm
- (action action_anthy_hiragana, action action_anthy_katakana,
action action_anthy_hankana, action action_anthy_direct, action
action_anthy_zenkaku, action action_anthy_roma, action
action_anthy_kana): New action moved from action.scm
- (action action_anthy_azik): New action
- (anthy-prepare-activation, anthy-configure-widgets): New procedure
moved from action.scm
- (anthy-mode-direct, anthy-mode-hiragana, anthy-mode-katakana,
anthy-mode-wide-latin, anthy-mode-hankana): Remove
- (anthy-context-new): Add initialization of widgets
- (anthy-init-handler, anthy-proc-raw-state,
anthy-proc-input-state-no-preedit,
anthy-proc-input-state-with-preedit, anthy-proc-wide-latin, ):
Remove property and mode handlings to replace with action.scm
- (anthy-mode-handler, anthy-prop-handler, anthy-update-prop-label,
anthy-update-mode, anthy-update-prop-list, ): Remove to replace
with action.scm
* scm/action.scm
- Remove invocation of anthy-configure-widgets
- (anthy-widgets, default-widget_anthy_input_mode,
default-widget_anthy_kana_input_method, anthy-input-mode-actions,
anthy-kana-input-method-actions, anthy-prepare-activation, action
action_anthy_hiragana, action action_anthy_katakana, action
action_anthy_hankana, action action_anthy_direct, action
action_anthy_zenkaku, action action_anthy_roma, action
action_anthy_kana, anthy-configure-widgets, anthy-context-new):
Move into anthy.scm
- (test-widgets): New variable
- (example-configure-widgets): New procedure
- (anthy-im-name-indication): Rename to example-im-name-indication
- (example-im-name-indication): Renamed from
anthy-im-name-indication
- (anthy-exec-im-switcher-indication): Rename to
example-exec-im-switcher-indication
- (example-exec-im-switcher-indication): Renamed from
anthy-exec-im-switcher-indication
- (action action_exec_im_switcher): Follow the renaming of
anthy-exec-im-switcher-indication
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit fixes 2 problems related to action.scm. The working
anthy.scm using action.scm will follow soon.
I had said that "No code modification is required for each IMs at
now. Each IMs can switch to the action.scm in arbitrary time" in the
commit log of r1580, but an indication problem on uim-toolbar will
occur with old code. So I'm going to replace all IMs with
action.scm. Sorry for misleading.
* uim/uim.c
- (uim_prop_activate): Replace prop-handler with
prop-activate-handler
- (uim_prop_update_custom): Replace prop-handler with
custom-set-handler
* scm/im.scm
- (record im): Rename a member prop-handler with
prop-activate-handler
- (im-custom-set-handler, custom-set-handler): New procedures to
simplify the handler invocation
- (prop-activate-handler):
* New procedure to simplify the handler invocation
* Intentionally adds context-update-widgets as side effect
- (im-prop-handler-alist, prop-handler): Remove
* scm/action.scm
- All changes are validated by test-action.scm
- (indication-compose-leaf):
* Fix a design bug that causes prop-activate malfunction
* Add an argument act-id to fix the design bug
* compose act-id instead of indication-id into the message
- (widget-compose-live-branch): Follow the specifiation change of
indication-compose-leaf
- (context-prop-activate-handler, context-mode-handler): Rename a
local variable that masks global one (not a bug)
- (widget-action-id->mode-value, widget-mode-value->action-id):
Cosmetic change
* test/test-action.scm
- (test indication-compose-leaf, test widget-compose-live-branch,
test context-propagate-prop-list-update, test
context-propagate-widget-states, test
context-propagate-widget-configuration): Follow the specification
change of indication-compose-leaf
2004-11-05 TOKUNAGA Hiroyuki <tkng@xem.jp>
* scm/generic.scm:
-(generic-proc-input-state): Ignore symbol key events such as left arrow
and right arrow if candidate window is opened.
2004-11-05 TOKUNAGA Hiroyuki <tkng@xem.jp>
* gtk/Makefile.am: Added @GTK2_LIBS@ to im_uim_la_LDFLAGS.
This will fix the problem that uim's immodule doesn't work
with pygtk programs like quodlibet. Thanks to Matthew Reppert.
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit prepares the replacing property handling codes with
action.scm in each IMs. But no code modification is required for
each IMs at now. Each IMs can switch to the action.scm in arbitrary
time.
* scm/im.scm
- Add (require "load-action.scm")
- (context-rec-spec): Add new member 'widgets'. The name may be
renamed in accordance with discussion about action.scm
- (invoke-handler): Add update of widgets
- (create-context): Add initialization of widgets
* scm/action.scm
- (context-rec-spec, record context, invoke-handler,
create-context): Remove to merge into im.scm
- Comment out (require "anthy.scm")
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* test/test-im.scm
- (testcase im im-management, test retrieve-im, test
find-im-for-locale, test find-default-im, test find-im, testcase
im context management, test context-im, test find-context, test
remove-context): Follow the renaming of 'default IM' (had been
renamed to 'direct' to avoid confusions) changed in r1567, r1568
- (testcase im default im): Remove placeholder
2004-11-05 Takuro Ashie <ashie@homa.ne.jp>
* uim-cand-win-gtk.[ch]: Enabled to shrink the candidate window.
2004-11-05 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit makes action.scm ready to use. All procedures are
validated by test-action.scm.
The term 'widget' used in this framework is still under
discussion. It may be renamed in accordance with result of the
discussion.
http://freedesktop.org/pipermail/uim/2004-November/000736.html
This framework will replace property handling codes in each IMs once
the discussion has been end. I'm going to replace the codes of
anthy.scm as a test soon even if the discussion continues.
* scm/action.scm
- All procedures are validated by test-action.scm
- (register-action): Fix invalid registration
- (action-indicate): Add handling for an error case
- (activity-indicator-new): Rename a wrong local variable name
- (widget-new-internal): New alias of define-record'ed widget-new
- (register-widget):
* Fix invalid registration
* Replace actions with () if #f is specified
- (widget-new):
* Swap argument order to become natural
* Remove an initialization with arbitrary activity
- (widget-activity): Modify an inappropriate message
- (widget-activate!):
* Also accepts action-id instead of actual action object
* Add handling for an error case
- (widget-configuration): Add indicator configuration information
to handle action-less widget properly
- (widget-state): Cosmetic change
- (widget-update-configuration): Rename to widget-update-configuration!
- (widget-update-configuration!):
* Renamed from widget-update-configuration
* Fix a wrong logic
- (widget-update-state): Rename to widget-update-state!
- (widget-update-state!):
* Renamed from widget-update-configuration
* Fix a wrong logic
- (widget-debug-message): Fix a variable name mistake
- (create-context): Follow the renaming of context-init-widgets
- (widget-compose-live-branch): Fix an invalid invocation
- (context-init-widgets): Rename to context-init-widgets!
- (context-init-widgets!):
* Renamed from context-init-widgets!
* Add an error handling for re-initialization case
* Allocate a widget_fallback for the context if no widgets
specified
* Reject invalid widget-id
* Add a comment about the specification
- (context-update-widgets): Follow the renaming of
widget-update-configuration and widget-update-state
- (context-propagate-widget-states): Modify the comment
- (context-find-mode-widget): Fix broken code
- (widget-action-id->mode-value):
* Fix invalid variable name
* Add error handling for invalid action-id
- (widget-mode-value->action-id): Add error handling for out of
range
- (context-current-mode):
* Fix an invalid invocation
* Add error handling for the case mode-widget does not exist
- (context-update-mode-list):
* Fix the lacking mode-widget retrieving
* Add fallback handling for the case mode-widget does not exist
- (widget widget_fallback): New builtin widget
- (action action_anthy_hiragana): Replace the indication-id
figure_anthy_hiragana with figure_ja_hiragana
- (action action_anthy_katakana, action action_anthy_hankana, action
action_anthy_direct, action action_anthy_zenkaku, action
action_anthy_roma, action action_anthy_kana): Remove old-state-id
from handlers
* test/test-action.scm
- (testcase action): New testcase
- (test indicator-new, test register-action, test fetch-action, test
action-active?, test action-indicate, test actions-new, test
activity-indicator-new, test register-widget, test widget-new,
test widget-activity, test widget-activate!, test
widget-configuration, test widget-state, test
widget-update-configuration!, test widget-update-state!, test
widget-debug-message, test indication-compose-label, test
indication-compose-branch, test indication-compose-leaf, test
widget-compose-live-branch, test context-init-widgets!, test
context-update-widgets, test context-propagate-prop-label-update,
test context-propagate-prop-list-update, test
context-propagate-widget-states, test
context-propagate-widget-configuration, test
context-prop-activate-handler, test context-find-mode-widget, test
widget-action-id->mode-value, test widget-mode-value->action-id,
test context-current-mode, test context-update-mode, test
context-update-mode-list, test context-mode-handler): New test
* scm/property.scm
- Remove
* test/test-property.scm
- Remove
* scm/util.scm
- (alist-replace!): Remove
- (alist-replace): New procedure. Validated by test-util.scm
* test/test-util.scm
- (test alist-replace): New test
* scm/Makefile.am
- (SCM_FILES):
* Remove property.scm
* Add action.scm and load-action.scm
2004-11-04 YamaKen <yamaken@bp.iij4u.or.jp>
* Replace the comment of --with-canna 'with uim-canna' with 'with
libcanna' to conform to the meaning of --with in autoconf
2004-11-04 TOKUNAGA Hiroyuki <tkng@xem.jp>
* helper/toolbar-common-gtk.c: Fixed C++ style pointer notations.
2004-11-04 TOKUNAGA Hiroyuki <tkng@xem.jp>
* helper/dict-canna.h: Fixed C++ style pointer notations.
2004-11-04 TOKUNAGA Hiroyuki <tkng@xem.jp>
* helper/helper-xfce4-applet.c: Removed an unused file.
2004-11-04 TOKUNAGA Hiroyuki <tkng@xem.jp>
* helper/Makafile.am: uim-dict need dict-util.h for build.
2004-11-04 TOKUNAGA Hiroyuki <tkng@xem.jp>
* helper/im-switcher-gtk.c: Fixed all C++ style pointer notations.
2004-11-04 TOKUNAGA Hiroyuki <tkng@xem.jp>
* helper/input-pad-ja.c: Fixed all C++ style pointer notations.
2004-11-04 TOKUNAGA Hiroyuki <tkng@xem.jp>
* gtk/gtk-im-uim.c: Fixed C++ style pointer notation 'gchar*'.
This intends to fix the bug 1483.
2004-11-04 TOKUNAGA Hiroyuki <tkng@xem.jp>
* scm/direct.scm: Renamed from scm/default-im.
* uim/uim.c: Replaced "default-im.scm" with "direct.scm".
2004-11-04 TOKUNAGA Hiroyuki <tkng@xem.jp>
scm/default-im.scm: replaced all words 'default' with 'direct'
to avoid confusion. This changes will close the bug 1768.
2004-11-03 kzk <mover@hct.zaq.ne.jp>
* qt/quiminputcontextplugin/src/candidatewindow.h
* qt/quiminputcontextplugin/src/candidatewindow.cpp
* qt/quiminputcontextplugin-qt4/candidatewindow.h
* qt/quiminputcontextplugin-qt4/candidatewindow.cpp
- (layoutWindow): more proper handling of candidate
window's location. In consideration of preedit's
height.
- (forceInside): removed
* qt/quiminputcontextplugin/src/quiminputcontext.cpp
* qt/quiminputcontextplugin-qt4/quiminputcontext.cpp
- doesn't strdup the return value of uim_get_im_name,
uim_get_language_name_from_locale, uim_get_im_short_desc
2004-11-03 TOKUNAGA Hiroyuki <tkng@xem.jp>
* gtk/gtk-im-uim.c:
-(im_module_create): finalize im context object if uim_init failed.
2004-11-03 TOKUNAGA Hiroyuki <tkng@xem.jp>
* gtk/gtk-uim-uim.c:
-(im_module_create): Get im_name by uim_get_default_im_name according
to the current localename.
-(im_module_list): List only 1 input method "uim".
These changes aim to show one input method "uim" only by right click upon
text widget.
2004-11-03 TOKUNAGA Hiroyuki <tkng@xem.jp>
* Makefile.am:
-(releasetest): New rule.
2004-11-03 TOKUNAGA Hiroyuki <tkng@xem.jp>
* configure.ac: Removed unused compile flag XFCE4_PANEL.
2004-11-03 kzk <mover@hct.zaq.ne.jp>
* reneme qtkde-helper to uim-kdehelper
* qt/uim-kdehelper/configure.in.in
- release uim-kdehelper 0.1.0
* qt/uim-kdehelper/po/uim-qtkde-helper.pot
- update pot file
2004-11-03 kzk <mover@hct.zaq.ne.jp>
* qt/qtkde-helper/src/pref/uimqtconfig
- added
* pref/uim-pref-qt.cpp
- release all modules in exiting
* pref/Makefile.am
- add uimqtconfig to SUBDIRS
* pref/uimconfig/kcmuimconfigmodule.cpp
- remove unnecessary #include
* pref/uim-pref-qt.h
- Ditto
2004-11-03 TOKUNAGA Hiroyuki <tkng@xem.jp>
* scm/m17nlib.scm:
- (m17nlib-on-key?): New key definition.
- (m17nlib-off-key?): New key definition.
- (m17nlib-proc-direct-state): New procedure.
- (m17nlib-commit-raw): New procedure.
- (m17nlib-press-key-handler): Call m17nlib-context-on to check the current
input state is on or off.
This changes implements on/off feature to uim's m17n-lib support.
2004-10-31 YamaKen <yamaken@bp.iij4u.or.jp>
* This commit adds the replacement of property.scm to the IM framework
in accordance with recent discussions on uim@fdo.
This user-operable action handling framework will eliminates all of
property related handlings such as im-update-prop-list or
im-update-prop-label from each input method. Input method developer
can forget about the property (and legacy 'mode') feature except for
context creation process.
The term 'widget' used in this framework is still under
discussion. It may be renamed in accordance with result of the
discussion.
http://freedesktop.org/pipermail/uim/2004-October/000731.html
This framework will replace property handling codes in each IMs once
the discussion has been end and the implementation has been
validated by test.
* scm/action.scm
- (indication-rec-spec, action-rec-spec, indicator-rec-spec,
widget-rec-spec, action-list, widget-proto-list): New variable
- (record indication, record action, record indicator, record
widget): New record
- (indicator-new-internal): New alias procedure
- (indicator-set-id!, indicator-set-activity-pred!,
indicator-set-activate-handler!): New placeholders to disable
the 3 automatically defined procedures
- (indicator-new, register-action, fetch-action, action-active?,
action-indicate, actions-new, activity-indicator-new,
fallback-indication, register-widget, widget-new, widget-activity,
widget-activate!, widget-configuration, widget-state,
widget-update-configuration, widget-update-state,
widget-debug-message, indication-compose-label,
indication-compose-branch, indication-compose-leaf,
widget-compose-live-branch, context-init-widgets,