Apply -fvisibility to decrease binary size
[platform/core/uifw/ise-engine-sunpinyin.git] / src / ime-core / imi_view_classic.h
1 // -*- mode: c++ -*-
2 /*
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4  *
5  * Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved.
6  *
7  * The contents of this file are subject to the terms of either the GNU Lesser
8  * General Public License Version 2.1 only ("LGPL") or the Common Development and
9  * Distribution License ("CDDL")(collectively, the "License"). You may not use this
10  * file except in compliance with the License. You can obtain a copy of the CDDL at
11  * http://www.opensource.org/licenses/cddl1.php and a copy of the LGPLv2.1 at
12  * http://www.opensource.org/licenses/lgpl-license.php. See the License for the
13  * specific language governing permissions and limitations under the License. When
14  * distributing the software, include this License Header Notice in each file and
15  * include the full text of the License in the License file as well as the
16  * following notice:
17  *
18  * NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
19  * (CDDL)
20  * For Covered Software in this distribution, this License shall be governed by the
21  * laws of the State of California (excluding conflict-of-law provisions).
22  * Any litigation relating to this License shall be subject to the jurisdiction of
23  * the Federal Courts of the Northern District of California and the state courts
24  * of the State of California, with venue lying in Santa Clara County, California.
25  *
26  * Contributor(s):
27  *
28  * If you wish your version of this file to be governed by only the CDDL or only
29  * the LGPL Version 2.1, indicate your decision by adding "[Contributor]" elects to
30  * include this software in this distribution under the [CDDL or LGPL Version 2.1]
31  * license." If you don't indicate a single choice of license, a recipient has the
32  * option to distribute your version of this file under either the CDDL or the LGPL
33  * Version 2.1, or to extend the choice of license to its licensees as provided
34  * above. However, if you add LGPL Version 2.1 code and therefore, elected the LGPL
35  * Version 2 license, then the option applies only if the new code is made subject
36  * to such option by the copyright holder.
37  */
38
39 #ifndef SUNPY_IMI_CLASSIC_VIEW_H
40 #define SUNPY_IMI_CLASSIC_VIEW_H
41
42 #include "portability.h"
43
44 #include "imi_view.h"
45
46 class EXPORTED CIMIClassicView : public CIMIView
47 {
48 public:
49     CIMIClassicView();
50     virtual ~CIMIClassicView();
51
52     virtual void attachIC(CIMIContext* pIC);
53     virtual unsigned clearIC(void);
54
55     virtual bool onKeyEvent(const CKeyEvent&);
56
57     virtual void updateWindows(unsigned mask);
58
59     virtual void getPreeditString(IPreeditString& ps);
60     virtual void getCandidateList(ICandidateList& cl, int start, int size);
61
62     virtual int  onCandidatePageRequest(int pgno, bool relative);
63     virtual int  onCandidateSelectRequest(int index);
64
65     size_t candidateListSize() const
66     { return m_candiList.size() + m_sentences.size() + m_tails.size(); }
67
68     void makeSelection(int candiIdx, unsigned& mask);
69     void deleteCandidate(int candiIdx, unsigned& mask);
70
71 private:
72     static size_t top_candidate_threshold;
73
74     unsigned m_cursorFrIdx;
75     unsigned m_candiFrIdx;
76     unsigned m_candiPageFirst;
77
78     CCandidateList m_uiCandidateList;
79     CPreEditString m_uiPreeditString;
80
81     CCandidates m_candiList;
82     std::vector<std::pair<int, wstring> > m_sentences;
83     std::vector<std::pair<wstring, CCandidates> > m_tails;
84
85     void _insert(unsigned keyvalue, unsigned& mask);
86     void _erase(bool backward, unsigned& mask);
87
88     void _getCandidates();
89
90     void _commitChar(TWCHAR ch);
91     void _commitString(const wstring& wstr);
92     void _doCommit(bool bConvert = true);
93
94     unsigned _moveLeft(unsigned& mask, bool searchAgain = true);
95     unsigned _moveLeftSyllable(unsigned& mask, bool searchAgain = true);
96     unsigned _moveHome(unsigned& mask, bool searchAgain = true);
97
98     unsigned _moveRight(unsigned& mask);
99     unsigned _moveRightSyllable(unsigned& mask);
100     unsigned _moveEnd(unsigned& mask);
101 };
102
103 #endif