Tizen 2.1 base
[platform/core/uifw/ise-engine-sunpinyin.git] / wrapper / xim / sunpinyin_preedit_ui.h
1 /* -*- mode: c++ -*- */
2 /*
3  * Copyright (c) 2010 Mike Qin <mikeandmore@gmail.com>
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
37 #ifndef _SUNPINYIN_PREEDIT_H_
38 #define _SUNPINYIN_PREEDIT_H_
39
40 #include <string>
41 #include <cstring>
42 #include <exception>
43 #include <gtk/gtk.h>
44 #include "xmisc.h"
45 #include "skin.h"
46 #include "ui.h"
47
48 class PreeditUI
49 {
50     std::string name_;
51 public:
52     PreeditUI(std::string name) throw() : name_(name) {}
53     virtual ~PreeditUI() {}
54
55     std::string name() { return name_; }
56
57     virtual void show() = 0;
58     virtual void hide() = 0;
59     virtual void move(int x, int y) = 0;
60     virtual void reload() = 0;
61     virtual void update_preedit_string(const char* utf_str) = 0;
62     virtual void update_candidates_string(const char* utf_str) = 0;
63 };
64
65 class GtkPreeditUI : public PreeditUI
66 {
67 public:
68     GtkPreeditUI();
69     virtual ~GtkPreeditUI();
70 protected:
71     virtual void show();
72     virtual void hide();
73     virtual void move(int x, int y);
74     virtual void reload();
75     virtual void update_preedit_string(const char* utf_str);
76     virtual void update_candidates_string(const char* utf_str);
77 private:
78     GtkWidget* main_wnd_;
79     GtkWidget* preedit_area_;
80     GtkWidget* candidate_area_;
81 };
82
83 class SkinLoaderException: public std::exception
84 {
85 public:
86     const char* what() const throw() { return "Cannot load skin!"; }
87 };
88
89 class SkinPreeditUI : public PreeditUI
90 {
91 public:
92     SkinPreeditUI(std::string name) throw();
93     virtual ~SkinPreeditUI();
94 protected:
95     virtual void show();
96     virtual void hide();
97     virtual void move(int x, int y);
98     virtual void reload();
99     virtual void update_preedit_string(const char* utf_str);
100     virtual void update_candidates_string(const char* utf_str);
101 private:
102     void adjust_size();
103     void internal_move(int x, int y);
104 private:
105     skin_window_t* main_wnd_;
106     skin_label_t*  preedit_label_;
107     skin_label_t*  candidate_label_;
108     skin_info_t*   info_;
109 };
110
111 inline PreeditUI* create_preedit_ui(std::string name)
112 {
113     if (name == "classic") {
114         return new GtkPreeditUI();
115     } else {
116         try {
117             return new SkinPreeditUI(name);
118         } catch (const SkinLoaderException& ex) {
119             fprintf(stderr, "%s\n", ex.what());
120             exit(-1);
121         }
122     }
123 }
124
125 #endif /* _SUNPINYIN_PREEDIT_H_ */