Modified to decide whether to display candidate window according to layout style
[framework/uifw/ise-engine-sunpinyin.git] / wrapper / scim / src / sunpinyin_imengine.cpp
1 /*
2  * Copyright (c) 2007 Kov Chai <tchaikov@gmail.com>
3  * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4  *
5  * The contents of this file are subject to the terms of either the GNU Lesser
6  * General Public License Version 2.1 only ("LGPL") or the Common Development and
7  * Distribution License ("CDDL")(collectively, the "License"). You may not use this
8  * file except in compliance with the License. You can obtain a copy of the CDDL at
9  * http://www.opensource.org/licenses/cddl1.php and a copy of the LGPLv2.1 at
10  * http://www.opensource.org/licenses/lgpl-license.php. See the License for the 
11  * specific language governing permissions and limitations under the License. When
12  * distributing the software, include this License Header Notice in each file and
13  * include the full text of the License in the License file as well as the
14  * following notice:
15  * 
16  * NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
17  * (CDDL)
18  * For Covered Software in this distribution, this License shall be governed by the
19  * laws of the State of California (excluding conflict-of-law provisions).
20  * Any litigation relating to this License shall be subject to the jurisdiction of
21  * the Federal Courts of the Northern District of California and the state courts
22  * of the State of California, with venue lying in Santa Clara County, California.
23  * 
24  * Contributor(s):
25  * 
26  * If you wish your version of this file to be governed by only the CDDL or only
27  * the LGPL Version 2.1, indicate your decision by adding "[Contributor]" elects to
28  * include this software in this distribution under the [CDDL or LGPL Version 2.1]
29  * license." If you don't indicate a single choice of license, a recipient has the
30  * option to distribute your version of this file under either the CDDL or the LGPL
31  * Version 2.1, or to extend the choice of license to its licensees as provided
32  * above. However, if you add LGPL Version 2.1 code and therefore, elected the LGPL
33  * Version 2 license, then the option applies only if the new code is made subject
34  * to such option by the copyright holder. 
35  *
36  * Modifications by Samsung Electronics Co., Ltd.
37  *
38  * 1.Added always candidate show feature
39  * 2.Added auto commit feature for mobile user
40  */
41
42 #define Uses_STL_AUTOPTR
43 #define Uses_STL_FUNCTIONAL
44 #define Uses_STL_VECTOR
45 #define Uses_STL_IOSTREAM
46 #define Uses_STL_FSTREAM
47 #define Uses_STL_ALGORITHM
48 #define Uses_STL_MAP
49 #define Uses_STL_UTILITY
50 #define Uses_STL_IOMANIP
51 #define Uses_C_STDIO
52 #define Uses_SCIM_UTILITY
53 #define Uses_SCIM_IMENGINE
54 #define Uses_SCIM_ICONV
55 #define Uses_SCIM_CONFIG_BASE
56 #define Uses_SCIM_CONFIG_PATH
57 #define Uses_SCIM_LOOKUP_TABLE
58 #define Uses_SCIM_DEBUG
59
60 #include <sys/types.h>
61 #include <sys/stat.h>
62 #include <unistd.h>
63
64 #include <Ecore_IMF.h>
65
66 #include <imi_options.h>
67 #include <imi_view.h>
68 #include <ic_history.h>
69
70 #include <scim.h>
71
72 #include "imi_scimwin.h"
73 #include "sunpinyin_utils.h"
74 #include "sunpinyin_keycode.h"
75 #include "sunpinyin_lookup_table.h"
76 #include "sunpinyin_imengine.h"
77 #include "sunpinyin_imengine_config_keys.h"
78 #include "sunpinyin_private.h"
79
80 #define SCIM_PROP_STATUS                  "/IMEngine/SunPinyin/Status"
81 #define SCIM_PROP_LETTER                  "/IMEngine/SunPinyin/Letter"
82 #define SCIM_PROP_PUNCT                   "/IMEngine/SunPinyin/Punct"
83
84 #ifndef SCIM_SUNPINYIN_DATADIR
85     #define SCIM_SUNPINYIN_DATADIR            "/usr/share/scim/sunpinyin"
86 #endif
87
88 #ifndef SCIM_ICONDIR
89     #define SCIM_ICONDIR                      "/usr/share/scim/icons"
90 #endif
91
92 #ifndef SCIM_SUNPINYIN_ICON_FILE
93     #define SCIM_SUNPINYIN_ICON_FILE       (SCIM_ICONDIR "/sunpinyin_logo.png")
94 #endif
95
96 #define SCIM_FULL_LETTER_ICON              (SCIM_ICONDIR "/full-letter.png")
97 #define SCIM_HALF_LETTER_ICON              (SCIM_ICONDIR "/half-letter.png")
98 #define SCIM_FULL_PUNCT_ICON               (SCIM_ICONDIR "/full-punct.png")
99 #define SCIM_HALF_PUNCT_ICON               (SCIM_ICONDIR "/half-punct.png")
100
101 using namespace scim;
102
103 static IMEngineFactoryPointer _scim_pinyin_factory (0); 
104
105 static ConfigPointer _scim_config (0);
106
107 static Property _status_property   (SCIM_PROP_STATUS, "");
108 static Property _letter_property   (SCIM_PROP_LETTER, "");
109 static Property _punct_property    (SCIM_PROP_PUNCT, "");
110
111 static char g_common_symbol[]={'#','$','%','^','&','*','@'};
112
113 extern "C" {
114     void scim_module_init (void)
115     {
116         SCIM_DEBUG_IMENGINE (3) << "scim_module_init\n";
117         bindtextdomain (GETTEXT_PACKAGE, SCIM_SUNPINYIN_LOCALEDIR);
118         bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
119     }
120
121     void scim_module_exit (void)
122     {
123         _scim_pinyin_factory.reset ();
124         _scim_config.reset ();
125     }
126
127     uint32 scim_imengine_module_init (const ConfigPointer &config)
128     {
129         SCIM_DEBUG_IMENGINE (3) << "module_init\n";
130         _status_property.set_tip (_("The status of the current input method. Click to change it."));
131         _status_property.set_label ("英");
132         
133         _letter_property.set_icon (SCIM_HALF_LETTER_ICON);
134         _letter_property.set_tip (_("The input mode of the letters. Click to toggle between half and full."));
135         _letter_property.set_label (_("Full/Half Letter"));
136
137         _punct_property.set_icon (SCIM_HALF_PUNCT_ICON);
138         _punct_property.set_tip (_("The input mode of the puncutations. Click to toggle between half and full."));
139         _punct_property.set_label (_("Full/Half Punct"));
140
141         _scim_config = config;
142         return 1;
143     }
144
145     IMEngineFactoryPointer scim_imengine_module_create_factory (uint32 engine)
146     {
147         SCIM_DEBUG_IMENGINE (3) << "entering scim_imengine_module_create_factory()\n";
148         if (engine != 0) return IMEngineFactoryPointer (0);
149         if (_scim_pinyin_factory.null ()) {
150             SunPyFactory *factory = new SunPyFactory (_scim_config); 
151             if (factory->valid ())
152                 _scim_pinyin_factory = factory;
153             else
154                 delete factory;
155         }
156         return _scim_pinyin_factory;
157     }
158 }
159
160 // implementation of SunPyFactory
161 SunPyFactory::SunPyFactory (const ConfigPointer &config)
162     : m_config (config),
163       m_valid (false)
164 {
165     SCIM_DEBUG_IMENGINE (3) << "SunPyFactory()\n";
166     set_languages ("zh_CN");
167     m_name = utf8_mbstowcs ("SunPinyin");
168     m_valid = init ();
169     m_reload_signal_connection = m_config->signal_connect_reload (slot (this, &SunPyFactory::reload_config));
170     m_hotkey_profile = new CHotkeyProfile();
171 }
172
173 bool
174 SunPyFactory::init ()
175 {
176     bool valid = true;
177     
178     if (m_config) {
179         valid = load_user_config();
180     }
181     
182     // postpone the load_user_data() to the ctor of SunPyInstance
183     return valid;
184 }
185
186 bool
187 SunPyFactory::load_user_config()
188 {
189     // Load configurations.
190
191     return true;
192 }
193
194 SunPyFactory::~SunPyFactory ()
195 {
196     SCIM_DEBUG_IMENGINE (3) << "~SunPyFactory()\n";
197     m_reload_signal_connection.disconnect ();
198     delete m_hotkey_profile;
199 }
200
201 WideString
202 SunPyFactory::get_name () const
203 {
204     return m_name;
205 }
206
207 WideString
208 SunPyFactory::get_authors () const
209 {
210     return utf8_mbstowcs (
211                 String (_("Lei Zhang, <Phill.Zhang@sun.com>; Shuguagn Yan, <Ervin.Yan@sun.com>")));
212 }
213
214 WideString
215 SunPyFactory::get_credits () const
216 {
217     return utf8_mbstowcs (
218         String (_("Ported by Kov Chai, <tchaikov@gmail.com>")));
219 }
220
221 WideString
222 SunPyFactory::get_help () const
223 {
224     String help =
225         String (_("Hot Keys:"
226                   "\n\n  Shift+Alt:\n"
227                   "    Switch between English/Chinese mode."
228                   "\n\n  Control+period:\n"
229                   "    Switch between full/half width punctuation mode."
230                   "\n\n  Shift+space:\n"
231                   "    Switch between full/half width letter mode."
232                   "\n\n  PageUp:\n"
233                   "    Page up in lookup table."
234                   "\n\n  PageDown:\n"
235                   "    Page down in lookup table."
236                   "\n\n  Esc:\n"
237                   "    Cancel current syllable.\n"));
238     return utf8_mbstowcs (help);
239 }
240
241 String
242 SunPyFactory::get_uuid () const
243 {
244     return String ("3240fe82-585a-4f4a-96b3-0cad779c3b51");
245 }
246
247 String
248 SunPyFactory::get_icon_file () const
249 {
250     return String (SCIM_SUNPINYIN_ICON_FILE);
251 }
252
253 IMEngineInstancePointer
254 SunPyFactory::create_instance (const String& encoding, int id)
255 {
256     SCIM_DEBUG_IMENGINE (3) <<  "SunPyFactory::create_instance(" << id << ")\n";    
257     return new SunPyInstance (this, m_hotkey_profile, encoding, id);
258 }
259
260 void
261 SunPyFactory::reload_config (const ConfigPointer &config)
262 {
263     m_config = config;
264     m_valid = init ();
265 }
266
267 // implementation of SunPyInstance
268 SunPyInstance::SunPyInstance (SunPyFactory *factory,
269                               CHotkeyProfile *hotkey_profile,
270                               const String& encoding,
271                               int id)
272     : IMEngineInstanceBase (factory, encoding, id),
273       m_factory (factory),
274       m_pv (0),
275       m_wh (0),
276       m_hotkey_profile (hotkey_profile),
277       m_lookup_table (0),
278       m_common_lookup_table(0),
279       m_focused (false)
280 {
281     SCIM_DEBUG_IMENGINE (3) << get_id() << ": SunPyInstance()\n";
282     create_session(hotkey_profile);
283     if (!m_pv) return;
284     m_reload_signal_connection = factory->m_config->signal_connect_reload (slot (this, &SunPyInstance::reload_config));
285     init_lookup_table_labels ();
286 }
287
288 SunPyInstance::~SunPyInstance ()
289 {
290     SCIM_DEBUG_IMENGINE (3) <<  get_id() << ": ~SunPyInstance()\n";
291     m_reload_signal_connection.disconnect ();
292     destroy_session();
293 }
294
295 static CKeyEvent
296 translate_key(const KeyEvent& key)
297 {
298     // XXX: may need to move this logic into CKeyEvent
299     if (!(key.code & 0xff00) && isprint(key.code) && !isspace(key.code) && !(key.mask & IM_CTRL_MASK)) {
300         // we only care about key_val here
301         return CKeyEvent(0, key.code, key.mask);
302     } else {
303         // what matters is key_code, but ibus sents me key_code as key_val
304         return CKeyEvent(key.code, 0, key.mask);
305     }
306 }
307
308 bool
309 SunPyInstance::process_key_event (const KeyEvent& key)
310 {
311     SCIM_DEBUG_IMENGINE (3) <<  get_id() << ": process_key_event(" << m_focused << ", "  <<
312         key.code << ", " <<
313         key.mask << ", " <<
314         key.layout << ")\n";
315         
316     if (!m_focused) return false;
317
318     CKeyEvent ev = translate_key(key);
319     
320     if ( !m_pv->getStatusAttrValue(CScimWinHandler::STATUS_ID_CN) ) {
321         // we are in English input mode
322         if ( !m_hotkey_profile->isModeSwitchKey(ev) ) {
323             m_hotkey_profile->rememberLastKey(ev);
324             return false;
325         }
326     }
327     return ( key.is_key_release() ||
328              m_pv->onKeyEvent(ev) );
329 }
330
331 void
332 SunPyInstance::select_candidate (unsigned int item)
333 {
334     if(m_lookup_table->number_of_candidates() == 0 && item < sizeof(g_common_symbol)/sizeof(char)) {
335         char _str[2]={g_common_symbol[item],0};
336         commit_string(utf8_mbstowcs(_str));
337         return;
338     }
339     m_pv->onCandidateSelectRequest(item);
340 //  m_pv->makeSelection(item);
341 }
342
343 void
344 SunPyInstance::update_lookup_table_page_size (unsigned int page_size)
345 {
346     if (page_size > 0) {
347         SCIM_DEBUG_IMENGINE (3) << ": update_lookup_table_page_size(" << page_size << ")\n";
348         m_pv->setCandiWindowSize(page_size);
349         m_lookup_table->set_page_size(page_size);
350     }
351 }
352
353 void
354 SunPyInstance::lookup_table_page_up ()
355 {
356     lookup_page_up();
357     m_pv->onCandidatePageRequest(-1, true);
358 }
359
360 void
361 SunPyInstance::lookup_page_up()
362 {
363     m_lookup_table->page_up();
364     //    m_lookup_table->set_page_size(m_pv->s_CandiWindowSize);
365 }
366
367 void
368 SunPyInstance::lookup_page_down()
369 {
370     m_lookup_table->page_down();
371     //    m_lookup_table->set_page_size(m_pv->s_CandiWindowSize);
372 }
373
374 void
375 SunPyInstance::lookup_table_page_down ()
376 {
377     // XXX, it would be great, if View class expose a page_up() method
378     //    m_pv->onKeyEvent(IM_VK_PAGE_DOWN, 0, 0);
379     // classic View overrides this method
380     // but modern View uses the default dummy implementation
381     lookup_page_down ();
382     m_pv->onCandidatePageRequest(1, true);
383 }
384
385 void
386 SunPyInstance::move_preedit_caret (unsigned int /*pos*/)
387 {
388 }
389
390 void
391 SunPyInstance::reset ()
392 {
393     SCIM_DEBUG_IMENGINE (3) << get_id() << ": reset()\n";
394     flush();
395     m_lookup_table->clear ();
396     hide_preedit_string ();
397     //hide_aux_string ();
398     //m_pv->updateWindows(m_pv->clearIC());
399     //refresh_all_properties ();
400     if (m_lookup_table_always_on) {
401         show_lookup_table ();
402     } else {
403         hide_lookup_table ();
404     }
405     m_pv->updateWindows(CIMIView::PREEDIT_MASK | CIMIView::CANDIDATE_MASK);
406 }
407
408 void
409 SunPyInstance::focus_in ()
410 {
411     SCIM_DEBUG_IMENGINE(3) << get_id() << ": focus_in ()\n";
412     m_focused = true;
413     //show_lookup_table ();
414     initialize_all_properties ();
415     
416     hide_preedit_string ();
417     //hide_aux_string ();
418     
419     init_lookup_table_labels ();
420     
421     //hide_aux_string ();
422
423     m_pv->updateWindows(CIMIView::PREEDIT_MASK | CIMIView::CANDIDATE_MASK);
424 }
425
426 void
427 SunPyInstance::focus_out ()
428 {
429     SCIM_DEBUG_IMENGINE(3) << get_id() << ": focus_out ()\n";
430     m_focused = false;
431 }
432
433 void
434 SunPyInstance::flush ()
435 {
436     SCIM_DEBUG_IMENGINE(3) << get_id() << ": flush ()\n";
437     m_pv->onCandidateSelectRequest(0);
438 }
439
440 void
441 SunPyInstance::trigger_property (const String &property)
442 {
443     SCIM_DEBUG_IMENGINE (3) << get_id() << ": trigger_property(" << property << ")\n";
444     
445     if (property == SCIM_PROP_STATUS) {
446         const int is_CN = m_pv->getStatusAttrValue(CIMIWinHandler::STATUS_ID_CN);
447         m_pv->setStatusAttrValue(CIMIWinHandler::STATUS_ID_CN, is_CN?0:1);
448     } else if (property == SCIM_PROP_LETTER) {
449         const int is_fullsymbol = m_pv->getStatusAttrValue(CIMIWinHandler::STATUS_ID_FULLSYMBOL);
450         m_pv->setStatusAttrValue(CIMIWinHandler::STATUS_ID_FULLSYMBOL, is_fullsymbol?0:1);
451     } else if (property == SCIM_PROP_PUNCT) {
452         const int is_fullpunc = m_pv->getStatusAttrValue(CIMIWinHandler::STATUS_ID_FULLPUNC);
453         m_pv->setStatusAttrValue(CIMIWinHandler::STATUS_ID_FULLPUNC, is_fullpunc?0:1);
454     }
455 }
456
457 void
458 SunPyInstance::set_layout (unsigned int layout)
459 {
460     switch (layout)
461     {
462         case ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL:
463         case ECORE_IMF_INPUT_PANEL_LAYOUT_NUMBER:
464         case ECORE_IMF_INPUT_PANEL_LAYOUT_EMAIL:
465         case ECORE_IMF_INPUT_PANEL_LAYOUT_URL:
466             show_lookup_table ();
467             m_lookup_table_always_on = true;
468             break;
469         case ECORE_IMF_INPUT_PANEL_LAYOUT_PHONENUMBER:
470         case ECORE_IMF_INPUT_PANEL_LAYOUT_IP:
471         case ECORE_IMF_INPUT_PANEL_LAYOUT_MONTH:
472         case ECORE_IMF_INPUT_PANEL_LAYOUT_NUMBERONLY:
473             hide_lookup_table ();
474             m_lookup_table_always_on = false;
475             break;
476     }
477 }
478
479 void
480 SunPyInstance::init_lookup_table_labels ()
481 {
482     m_pv->setCandiWindowSize(10);
483     m_lookup_table->set_page_size (10);
484     m_lookup_table->show_cursor ();
485 }
486
487 void
488 SunPyInstance::initialize_all_properties ()
489 {
490     PropertyList proplist;
491
492     proplist.push_back (_status_property);
493     proplist.push_back (_letter_property);
494     proplist.push_back (_punct_property);
495
496     register_properties (proplist);
497     refresh_all_properties ();
498 }
499
500 void
501 SunPyInstance::refresh_all_properties ()
502 {
503     SCIM_DEBUG_IMENGINE (3) << get_id() << ": refresh_all_properties()\n";
504     m_wh->updateStatus(CIMIWinHandler::STATUS_ID_CN,
505                        m_pv->getStatusAttrValue(CIMIWinHandler::STATUS_ID_CN));
506     m_wh->updateStatus(CIMIWinHandler::STATUS_ID_FULLPUNC,
507                        m_pv->getStatusAttrValue(CIMIWinHandler::STATUS_ID_FULLPUNC));
508     m_wh->updateStatus(CIMIWinHandler::STATUS_ID_FULLSYMBOL, 
509                        m_pv->getStatusAttrValue(CIMIWinHandler::STATUS_ID_FULLSYMBOL));
510 }
511
512
513 void
514 SunPyInstance::refresh_status_property(bool cn)
515 {
516     SCIM_DEBUG_IMENGINE (3) << get_id() << ": refresh_status_property(" << cn << ")\n";
517     if (!cn) {
518         reset();
519     }
520     _status_property.set_label(cn ? "中" : "英");
521     update_property(_status_property);
522 }
523
524 void
525 SunPyInstance::refresh_fullsymbol_property(bool full)
526 {
527     SCIM_DEBUG_IMENGINE (3) << get_id() << ": refresh_fullsimbol_property(" << full << ")\n";
528     _letter_property.set_icon(
529         full ? SCIM_FULL_LETTER_ICON : SCIM_HALF_LETTER_ICON);
530     update_property(_letter_property);
531 }
532
533 void
534 SunPyInstance::refresh_fullpunc_property(bool full)
535 {
536     _punct_property.set_icon(
537         full ? SCIM_FULL_PUNCT_ICON : SCIM_HALF_PUNCT_ICON);
538     update_property(_punct_property);
539 }
540
541 void
542 SunPyInstance::create_session(CHotkeyProfile *hotkey_profile)
543 {
544     SCIM_DEBUG_IMENGINE (3) << get_id() <<  ": create_session()\n";
545     AttributeList attrs;
546     CSunpinyinSessionFactory& factory = CSunpinyinSessionFactory::getFactory();
547     factory.setPinyinScheme(CSunpinyinSessionFactory::QUANPIN);
548     factory.setCandiWindowSize(10);
549     m_pv = factory.createSession();
550     if (!m_pv) {
551         SCIM_DEBUG_IMENGINE (3) << get_id() <<  " factory.createSession() failed\n";
552         return;
553     }
554     
555     m_pv->setHotkeyProfile(hotkey_profile);
556
557     m_lookup_table = new SunLookupTable();
558     m_common_lookup_table = new CommonLookupTable();
559     for(int i = 0;i < sizeof(g_common_symbol)/sizeof(char);i++) {
560         char _str[2]={g_common_symbol[i],0};
561         m_common_lookup_table->append_candidate (utf8_mbstowcs ((const char*)_str),attrs);
562     }
563     m_wh = new CScimWinHandler(this, m_lookup_table);
564     m_pv->attachWinHandler(m_wh);
565 }
566
567 void
568 SunPyInstance::destroy_session()
569 {
570     SCIM_DEBUG_IMENGINE (3) << get_id() <<  ": destroy_session()\n";
571     
572     // wh and ic are not pointers, I don't think it's necessary to delete them
573     // either
574     delete m_pv;
575     delete m_wh;
576     delete m_lookup_table;
577     delete m_common_lookup_table;
578     
579     m_pv = 0;
580     m_wh = 0;
581     m_lookup_table = 0;
582 }
583
584 AttributeList
585 SunPyInstance::build_preedit_attribs (const IPreeditString* ppd)
586 {
587     AttributeList attrs;
588     const int sz = ppd->charTypeSize();
589     for (int i = 0; i < sz; ) {
590         const int ct = ppd->charTypeAt(i);
591         if (ct & IPreeditString::ILLEGAL) {
592             const int start = i;
593             for (++i; (i<sz) && (ppd->charTypeAt(i) & IPreeditString::ILLEGAL); ++i) ;
594             attrs.push_back( Attribute(start, i-start,
595                                        SCIM_ATTR_DECORATE, SCIM_ATTR_DECORATE_REVERSE));
596         } else if (ct & IPreeditString::NORMAL_CHAR) {
597             if (ct & IPreeditString::USER_CHOICE) {
598                 const int start = i;
599                 for (++i; (i<sz) && (ppd->charTypeAt(i) & IPreeditString::USER_CHOICE); ++i) ;
600                 attrs.push_back( Attribute(start, i-start,
601                                            SCIM_ATTR_DECORATE, SCIM_ATTR_DECORATE_UNDERLINE));
602             } else {
603                 ++i;
604             }
605         } else {
606             ++i;
607         }
608     }
609     return attrs;
610 }
611
612 void
613 SunPyInstance::redraw_preedit_string (const IPreeditString* ppd)
614 {
615     SCIM_DEBUG_IMENGINE (3) << get_id() <<  ": redraw_preedit_string()\n";
616     if (ppd->size() != 0) {
617         AttributeList attrs;
618         const int caret = ppd->caret();
619         if (caret > 0 && caret <= ppd->size()) {
620             attrs.push_back( Attribute(ppd->candi_start(),
621                                        ppd->charTypeSize(),
622                                        SCIM_ATTR_DECORATE, SCIM_ATTR_DECORATE_REVERSE));
623         }
624         update_preedit_string( wstr_to_widestr(ppd->string(), ppd->size()) );
625         show_preedit_string ();
626         update_preedit_caret (caret);
627     } else {
628         hide_preedit_string ();
629     }
630 }
631
632 void
633 SunPyInstance::redraw_lookup_table(const ICandidateList* pcl)
634 {
635     SCIM_DEBUG_IMENGINE (3) << get_id() << ": redraw_lookup_table()\n";
636     
637     m_lookup_table->update(*pcl);
638     if (m_lookup_table->number_of_candidates()) {
639         update_lookup_table(*m_lookup_table);
640     } else {
641         update_lookup_table(*m_common_lookup_table);
642     }
643 }
644
645 void
646 SunPyInstance::reload_config(const ConfigPointer &config)
647 {
648     SCIM_DEBUG_IMENGINE (3) << get_id() << ": reload_config()\n";
649     reset();
650     if (m_factory->valid()) {
651         m_factory->load_user_config();
652     }
653 }