Apply -fvisibility to decrease binary size
[platform/core/uifw/ise-engine-sunpinyin.git] / wrapper / scim / src / imi_scimwin.h
1 /*
2  * Copyright (c) 2007 Kov Chai <tchaikov@gmail.com>
3  *
4  * The contents of this file are subject to the terms of either the GNU Lesser
5  * General Public License Version 2.1 only ("LGPL") or the Common Development and
6  * Distribution License ("CDDL")(collectively, the "License"). You may not use this
7  * file except in compliance with the License. You can obtain a copy of the CDDL at
8  * http://www.opensource.org/licenses/cddl1.php and a copy of the LGPLv2.1 at
9  * http://www.opensource.org/licenses/lgpl-license.php. See the License for the 
10  * specific language governing permissions and limitations under the License. When
11  * distributing the software, include this License Header Notice in each file and
12  * include the full text of the License in the License file as well as the
13  * following notice:
14  * 
15  * NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
16  * (CDDL)
17  * For Covered Software in this distribution, this License shall be governed by the
18  * laws of the State of California (excluding conflict-of-law provisions).
19  * Any litigation relating to this License shall be subject to the jurisdiction of
20  * the Federal Courts of the Northern District of California and the state courts
21  * of the State of California, with venue lying in Santa Clara County, California.
22  * 
23  * Contributor(s):
24  * 
25  * If you wish your version of this file to be governed by only the CDDL or only
26  * the LGPL Version 2.1, indicate your decision by adding "[Contributor]" elects to
27  * include this software in this distribution under the [CDDL or LGPL Version 2.1]
28  * license." If you don't indicate a single choice of license, a recipient has the
29  * option to distribute your version of this file under either the CDDL or the LGPL
30  * Version 2.1, or to extend the choice of license to its licensees as provided
31  * above. However, if you add LGPL Version 2.1 code and therefore, elected the LGPL
32  * Version 2 license, then the option applies only if the new code is made subject
33  * to such option by the copyright holder. 
34  */
35
36 #ifndef IMI_SCIMWIN_H
37 #define IMI_SCIMWIN_H
38
39 #include "sunpinyin_lookup_table.h"
40 #include "imi_winHandler.h"
41
42 class SunPyInstance;
43
44 class EXPORTED CScimWinHandler : public CIMIWinHandler
45 {
46 public:
47     CScimWinHandler(SunPyInstance* ime, SunLookupTable* lookup_table);
48
49     /* inherited methods implementation */
50     /*@{*/
51     virtual ~CScimWinHandler();
52
53     /** commit a string, normally the converted result */
54     virtual void commit(const TWCHAR* wstr);
55     
56     /** when a key is not processed */
57     virtual void throwBackKey(unsigned keycode, unsigned keyvalue, unsigned modifier);
58
59     /** Update window's preedit area using a GTK widget. */
60     virtual void updatePreedit(const IPreeditString* ppd);
61
62     /** Update window's candidates area using a GTK widget. */
63     virtual void updateCandidates(const ICandidateList* pcl);
64
65     /** Update status of current session using a GTK buttons. */
66     virtual void  updateStatus(int key, int value);
67
68     /*@}*/
69
70 private:
71     /** load the images representing CN/EN, FULL/HALF PUNC|Simbol Simbol STATE*/
72     void load_images();
73
74 private:
75     char m_buf[512];
76     SunPyInstance      *m_ime;
77     SunLookupTable     *m_lookup_table;
78 };
79
80 #endif//IMI_SCIMWIN_H