blob: 9113c9b7bb4c217beb56f7d191071dc99a19fe51 [file] [log] [blame]
Jan Arne Petersen1f17be42012-06-21 21:52:18 +02001/*
2 * Copyright © 2012 Openismus GmbH
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation for any purpose is hereby granted without fee, provided
6 * that the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of the copyright holders not be used in
9 * advertising or publicity pertaining to distribution of the software
10 * without specific, written prior permission. The copyright holders make
11 * no representations about the suitability of this software for any
12 * purpose. It is provided "as is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 */
22
23#include <stdlib.h>
24
25#include "compositor.h"
26#include "text-server-protocol.h"
27
28struct input_method;
29
30struct text_model {
31 struct wl_resource resource;
32
33 struct wl_list link;
34
35 struct input_method *input_method;
36};
37
38struct input_method {
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +020039 struct wl_resource *input_method_binding;
40 struct wl_global *input_method_global;
Jan Arne Petersen51963742012-08-10 16:47:20 +020041 struct wl_global *text_model_factory_global;
Jan Arne Petersen1f17be42012-06-21 21:52:18 +020042 struct wl_listener destroy_listener;
Jan Arne Petersen1f17be42012-06-21 21:52:18 +020043
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +020044 struct weston_compositor *ec;
45 struct wl_list models;
Jan Arne Petersen1f17be42012-06-21 21:52:18 +020046 struct text_model *active_model;
47};
48
49static void
Philipp Brüschweiler17467812012-07-11 22:25:30 +020050deactivate_text_model(struct text_model *text_model)
51{
Kristian Høgsbergf97f3792012-07-22 11:51:42 -040052 struct weston_compositor *ec = text_model->input_method->ec;
Philipp Brüschweiler17467812012-07-11 22:25:30 +020053
54 if (text_model->input_method->active_model == text_model) {
55 text_model->input_method->active_model = NULL;
Kristian Høgsbergf97f3792012-07-22 11:51:42 -040056 wl_signal_emit(&ec->hide_input_panel_signal, ec);
Jan Arne Petersende3b6a12012-08-10 16:47:21 +020057 text_model_send_deactivated(&text_model->resource);
Philipp Brüschweiler17467812012-07-11 22:25:30 +020058 }
59}
60
61static void
Jan Arne Petersen1f17be42012-06-21 21:52:18 +020062destroy_text_model(struct wl_resource *resource)
63{
Kristian Høgsbergf97f3792012-07-22 11:51:42 -040064 struct text_model *text_model =
65 container_of(resource, struct text_model, resource);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +020066
Philipp Brüschweiler17467812012-07-11 22:25:30 +020067 deactivate_text_model(text_model);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +020068
69 wl_list_remove(&text_model->link);
70 free(text_model);
71}
72
73static void
74text_model_set_surrounding_text(struct wl_client *client,
75 struct wl_resource *resource,
76 const char *text)
77{
78}
79
80static void
81text_model_set_cursor_index(struct wl_client *client,
82 struct wl_resource *resource,
83 uint32_t index)
84{
85}
86
87static void
88text_model_activate(struct wl_client *client,
89 struct wl_resource *resource)
90{
91 struct text_model *text_model = resource->data;
Kristian Høgsbergf97f3792012-07-22 11:51:42 -040092 struct weston_compositor *ec = text_model->input_method->ec;
Jan Arne Petersen1f17be42012-06-21 21:52:18 +020093
Jan Arne Petersende3b6a12012-08-10 16:47:21 +020094 if (text_model->input_method->active_model) {
95 if (text_model->input_method->active_model == text_model)
96 return;
97
98 deactivate_text_model(text_model->input_method->active_model);
99 }
100
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200101 text_model->input_method->active_model = text_model;
102
Kristian Høgsbergf97f3792012-07-22 11:51:42 -0400103 wl_signal_emit(&ec->show_input_panel_signal, ec);
Jan Arne Petersende3b6a12012-08-10 16:47:21 +0200104
105 text_model_send_activated(&text_model->resource);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200106}
107
108static void
109text_model_deactivate(struct wl_client *client,
110 struct wl_resource *resource)
111{
112 struct text_model *text_model = resource->data;
113
Philipp Brüschweiler17467812012-07-11 22:25:30 +0200114 deactivate_text_model(text_model);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200115}
116
117static void
118text_model_set_selected_text(struct wl_client *client,
119 struct wl_resource *resource,
120 const char *text,
121 int32_t index)
122{
123}
124
125static void
126text_model_set_micro_focus(struct wl_client *client,
127 struct wl_resource *resource,
128 int32_t x,
129 int32_t y,
130 int32_t width,
131 int32_t height)
132{
133}
134
135static void
136text_model_set_preedit(struct wl_client *client,
137 struct wl_resource *resource)
138{
139}
140
141static void
142text_model_set_content_type(struct wl_client *client,
143 struct wl_resource *resource)
144{
145}
146
147struct text_model_interface text_model_implementation = {
148 text_model_set_surrounding_text,
149 text_model_set_cursor_index,
150 text_model_activate,
151 text_model_deactivate,
152 text_model_set_selected_text,
153 text_model_set_micro_focus,
154 text_model_set_preedit,
155 text_model_set_content_type
156};
157
Jan Arne Petersen51963742012-08-10 16:47:20 +0200158static void text_model_factory_create_text_model(struct wl_client *client,
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200159 struct wl_resource *resource,
160 uint32_t id,
161 struct wl_resource *surface)
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200162{
163 struct input_method *input_method = resource->data;
164 struct text_model *text_model;
165
Philipp Brüschweiler17467812012-07-11 22:25:30 +0200166 text_model = calloc(1, sizeof *text_model);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200167
168 text_model->resource.destroy = destroy_text_model;
Philipp Brüschweiler17467812012-07-11 22:25:30 +0200169
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200170 text_model->resource.object.id = id;
171 text_model->resource.object.interface = &text_model_interface;
Philipp Brüschweiler17467812012-07-11 22:25:30 +0200172 text_model->resource.object.implementation =
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200173 (void (**)(void)) &text_model_implementation;
174 text_model->resource.data = text_model;
175
176 text_model->input_method = input_method;
177
178 wl_client_add_resource(client, &text_model->resource);
179
180 wl_list_insert(&input_method->models, &text_model->link);
181};
182
Jan Arne Petersen51963742012-08-10 16:47:20 +0200183static const struct text_model_factory_interface text_model_factory_implementation = {
184 text_model_factory_create_text_model
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200185};
186
187static void
Jan Arne Petersen51963742012-08-10 16:47:20 +0200188bind_text_model_factory(struct wl_client *client,
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200189 void *data,
190 uint32_t version,
191 uint32_t id)
192{
193 struct input_method *input_method = data;
194
195 /* No checking for duplicate binding necessary.
196 * No events have to be sent, so we don't need the return value. */
Jan Arne Petersen51963742012-08-10 16:47:20 +0200197 wl_client_add_object(client, &text_model_factory_interface,
198 &text_model_factory_implementation,
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200199 id, input_method);
200}
201
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200202static void
203input_method_commit_string(struct wl_client *client,
204 struct wl_resource *resource,
205 const char *text,
206 uint32_t index)
207{
208 struct input_method *input_method = resource->data;
209
210 if (input_method->active_model) {
211 text_model_send_commit_string(&input_method->active_model->resource, text, index);
212 }
213}
214
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200215static const struct input_method_interface input_method_implementation = {
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200216 input_method_commit_string
217};
218
219static void
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200220unbind_input_method(struct wl_resource *resource)
221{
222 struct input_method *input_method = resource->data;
223
224 input_method->input_method_binding = NULL;
225 free(resource);
226}
227
228static void
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200229bind_input_method(struct wl_client *client,
230 void *data,
231 uint32_t version,
232 uint32_t id)
233{
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200234 struct input_method *input_method = data;
235 struct wl_resource *resource;
236
237 resource = wl_client_add_object(client, &input_method_interface,
238 &input_method_implementation,
239 id, input_method);
240
241 if (input_method->input_method_binding == NULL) {
242 resource->destroy = unbind_input_method;
243 input_method->input_method_binding = resource;
244 return;
245 }
246
247 wl_resource_post_error(resource, WL_DISPLAY_ERROR_INVALID_OBJECT,
248 "interface object already bound");
249 wl_resource_destroy(resource);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200250}
251
252static void
253input_method_notifier_destroy(struct wl_listener *listener, void *data)
254{
Kristian Høgsbergf97f3792012-07-22 11:51:42 -0400255 struct input_method *input_method =
256 container_of(listener, struct input_method, destroy_listener);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200257
Kristian Høgsbergf97f3792012-07-22 11:51:42 -0400258 wl_display_remove_global(input_method->ec->wl_display,
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200259 input_method->input_method_global);
260 wl_display_remove_global(input_method->ec->wl_display,
Jan Arne Petersen51963742012-08-10 16:47:20 +0200261 input_method->text_model_factory_global);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200262 free(input_method);
263}
264
265void
266input_method_create(struct weston_compositor *ec)
267{
268 struct input_method *input_method;
269
Philipp Brüschweiler17467812012-07-11 22:25:30 +0200270 input_method = calloc(1, sizeof *input_method);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200271
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200272 input_method->ec = ec;
273 input_method->active_model = NULL;
274
275 wl_list_init(&input_method->models);
276
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200277 input_method->input_method_global =
278 wl_display_add_global(ec->wl_display,
279 &input_method_interface,
280 input_method, bind_input_method);
281
Jan Arne Petersen51963742012-08-10 16:47:20 +0200282 input_method->text_model_factory_global =
Philipp Brüschweilerf25602b2012-07-11 22:25:31 +0200283 wl_display_add_global(ec->wl_display,
Jan Arne Petersen51963742012-08-10 16:47:20 +0200284 &text_model_factory_interface,
285 input_method, bind_text_model_factory);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200286
287 input_method->destroy_listener.notify = input_method_notifier_destroy;
Philipp Brüschweiler17467812012-07-11 22:25:30 +0200288 wl_signal_add(&ec->destroy_signal, &input_method->destroy_listener);
Jan Arne Petersen1f17be42012-06-21 21:52:18 +0200289}