text: Add support for pre-edit string
[profile/ivi/weston-ivi-shell.git] / clients / keyboard.c
1 /*
2  * Copyright © 2012 Openismus GmbH
3  * Copyright © 2012 Intel Corporation
4  *
5  * Permission to use, copy, modify, distribute, and sell this software and
6  * its documentation for any purpose is hereby granted without fee, provided
7  * that the above copyright notice appear in all copies and that both that
8  * copyright notice and this permission notice appear in supporting
9  * documentation, and that the name of the copyright holders not be used in
10  * advertising or publicity pertaining to distribution of the software
11  * without specific, written prior permission.  The copyright holders make
12  * no representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied warranty.
14  *
15  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
18  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
20  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  */
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27
28 #include <linux/input.h>
29 #include <cairo.h>
30
31 #include "window.h"
32 #include "input-method-client-protocol.h"
33 #include "desktop-shell-client-protocol.h"
34
35 struct virtual_keyboard {
36         struct input_panel *input_panel;
37         struct input_method *input_method;
38         struct input_method_context *context;
39         struct display *display;
40         char *preedit_string;
41 };
42
43 enum key_type {
44         keytype_default,
45         keytype_backspace,
46         keytype_enter,
47         keytype_space,
48         keytype_switch,
49         keytype_symbols,
50         keytype_tab
51 };
52
53 struct key {
54         enum key_type key_type;
55
56         char *label;
57         char *alt;
58
59         unsigned int width;
60 };
61
62 static const struct key keys[] = {
63         { keytype_default, "q", "Q", 1},
64         { keytype_default, "w", "W", 1},
65         { keytype_default, "e", "E", 1},
66         { keytype_default, "r", "R", 1},
67         { keytype_default, "t", "T", 1},
68         { keytype_default, "y", "Y", 1},
69         { keytype_default, "u", "U", 1},
70         { keytype_default, "i", "I", 1},
71         { keytype_default, "o", "O", 1},
72         { keytype_default, "p", "P", 1},
73         { keytype_backspace, "<--", "<--", 2},
74
75         { keytype_tab, "->|", "->|", 1},
76         { keytype_default, "a", "A", 1},
77         { keytype_default, "s", "S", 1},
78         { keytype_default, "d", "D", 1},
79         { keytype_default, "f", "F", 1},
80         { keytype_default, "g", "G", 1},
81         { keytype_default, "h", "H", 1},
82         { keytype_default, "j", "J", 1},
83         { keytype_default, "k", "K", 1},
84         { keytype_default, "l", "L", 1},
85         { keytype_enter, "Enter", "Enter", 2},
86
87         { keytype_switch, "ABC", "abc", 2},
88         { keytype_default, "z", "Z", 1},
89         { keytype_default, "x", "X", 1},
90         { keytype_default, "c", "C", 1},
91         { keytype_default, "v", "V", 1},
92         { keytype_default, "b", "B", 1},
93         { keytype_default, "n", "N", 1},
94         { keytype_default, "m", "M", 1},
95         { keytype_default, ",", ",", 1},
96         { keytype_default, ".", ".", 1},
97         { keytype_switch, "ABC", "abc", 1},
98
99         { keytype_symbols, "?123", "?123", 2},
100         { keytype_space, "", "", 8},
101         { keytype_symbols, "?123", "?123", 2}
102 };
103
104 static const unsigned int columns = 12;
105 static const unsigned int rows = 4;
106
107 static const double key_width = 60;
108 static const double key_height = 50;
109
110 enum keyboard_state {
111         keyboardstate_default,
112         keyboardstate_uppercase
113 };
114
115 struct keyboard {
116         struct virtual_keyboard *keyboard;
117         struct window *window;
118         struct widget *widget;
119
120         enum keyboard_state state;
121 };
122
123 static void
124 draw_key(const struct key *key,
125          cairo_t *cr,
126          enum keyboard_state state,
127          unsigned int row,
128          unsigned int col)
129 {
130         const char *label;
131         cairo_text_extents_t extents;
132
133         cairo_save(cr);
134         cairo_rectangle(cr,
135                         col * key_width, row * key_height,
136                         key->width * key_width, key_height);
137         cairo_clip(cr);
138
139         /* Paint frame */
140         cairo_rectangle(cr,
141                         col * key_width, row * key_height,
142                         key->width * key_width, key_height);
143         cairo_set_line_width(cr, 3);
144         cairo_stroke(cr);
145
146         /* Paint text */
147         label = state == keyboardstate_default ? key->label : key->alt;
148         cairo_text_extents(cr, label, &extents);
149
150         cairo_translate(cr,
151                         col * key_width,
152                         row * key_height);
153         cairo_translate(cr,
154                         (key->width * key_width - extents.width) / 2,
155                         (key_height - extents.y_bearing) / 2);
156         cairo_show_text(cr, label);
157
158         cairo_restore(cr);
159 }
160
161 static void
162 redraw_handler(struct widget *widget, void *data)
163 {
164         struct keyboard *keyboard = data;
165         cairo_surface_t *surface;
166         struct rectangle allocation;
167         cairo_t *cr;
168         unsigned int i;
169         unsigned int row = 0, col = 0;
170
171         surface = window_get_surface(keyboard->window);
172         widget_get_allocation(keyboard->widget, &allocation);
173
174         cr = cairo_create(surface);
175         cairo_rectangle(cr, allocation.x, allocation.y, allocation.width, allocation.height);
176         cairo_clip(cr);
177
178         cairo_select_font_face(cr, "sans", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
179         cairo_set_font_size(cr, 16);
180
181         cairo_translate(cr, allocation.x, allocation.y);
182
183         cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
184         cairo_set_source_rgba(cr, 1, 1, 1, 0.75);
185         cairo_rectangle(cr, 0, 0, columns * key_width, rows * key_height);
186         cairo_paint(cr);
187
188         cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
189
190         for (i = 0; i < sizeof(keys) / sizeof(*keys); ++i) {
191                 cairo_set_source_rgb(cr, 0, 0, 0);
192                 draw_key(&keys[i], cr, keyboard->state, row, col);
193                 col += keys[i].width;
194                 if (col >= columns) {
195                         row += 1;
196                         col = 0;
197                 }
198         }
199
200         cairo_destroy(cr);
201         cairo_surface_destroy(surface);
202 }
203
204 static void
205 resize_handler(struct widget *widget,
206                int32_t width, int32_t height, void *data)
207 {
208         /* struct keyboard *keyboard = data; */
209 }
210
211 static void
212 keyboard_handle_key(struct keyboard *keyboard, const struct key *key)
213 {
214         const char *label = keyboard->state == keyboardstate_default ? key->label : key->alt;
215
216         switch (key->key_type) {
217                 case keytype_default:
218                         keyboard->keyboard->preedit_string = strcat(keyboard->keyboard->preedit_string,
219                                                                     label);
220                         input_method_context_preedit_string(keyboard->keyboard->context,
221                                                             keyboard->keyboard->preedit_string,
222                                                             strlen(keyboard->keyboard->preedit_string));
223                         break;
224                 case keytype_backspace:
225                         break;
226                 case keytype_enter:
227                         break;
228                 case keytype_space:
229                         keyboard->keyboard->preedit_string = strcat(keyboard->keyboard->preedit_string,
230                                                                     " ");
231                         input_method_context_preedit_string(keyboard->keyboard->context,
232                                                             "",
233                                                             0);
234                         input_method_context_commit_string(keyboard->keyboard->context,
235                                                            keyboard->keyboard->preedit_string,
236                                                            strlen(keyboard->keyboard->preedit_string));
237                         free(keyboard->keyboard->preedit_string);
238                         keyboard->keyboard->preedit_string = strdup("");
239                         break;
240                 case keytype_switch:
241                         if (keyboard->state == keyboardstate_default)
242                                 keyboard->state = keyboardstate_uppercase;
243                         else
244                                 keyboard->state = keyboardstate_default;
245                         break;
246                 case keytype_symbols:
247                         break;
248                 case keytype_tab:
249                         break;
250         }
251 }
252
253 static void
254 button_handler(struct widget *widget,
255                struct input *input, uint32_t time,
256                uint32_t button,
257                enum wl_pointer_button_state state, void *data)
258 {
259         struct keyboard *keyboard = data;
260         struct rectangle allocation;
261         int32_t x, y;
262         int row, col;
263         unsigned int i;
264
265         if (state != WL_POINTER_BUTTON_STATE_PRESSED || button != BTN_LEFT) {
266                 return;
267         }
268
269         input_get_position(input, &x, &y);
270
271         widget_get_allocation(keyboard->widget, &allocation);
272         x -= allocation.x;
273         y -= allocation.y;
274
275         row = y / key_height;
276         col = x / key_width + row * columns;
277         for (i = 0; i < sizeof(keys) / sizeof(*keys); ++i) {
278                 col -= keys[i].width;
279                 if (col < 0)
280                         break;
281         }
282
283         keyboard_handle_key(keyboard, &keys[i]);
284
285         widget_schedule_redraw(widget);
286 }
287
288 static void
289 input_method_context_surrounding_text(void *data,
290                                       struct input_method_context *context,
291                                       const char *text,
292                                       uint32_t cursor,
293                                       uint32_t anchor)
294 {
295         fprintf(stderr, "Surrounding text updated: %s\n", text);
296 }
297
298 static const struct input_method_context_listener input_method_context_listener = {
299         input_method_context_surrounding_text,
300 };
301
302 static void
303 input_method_activate(void *data,
304                       struct input_method *input_method,
305                       struct input_method_context *context)
306 {
307         struct virtual_keyboard *keyboard = data;
308
309         if (keyboard->context)
310                 input_method_context_destroy(keyboard->context);
311
312         if (keyboard->preedit_string)
313                 free(keyboard->preedit_string);
314
315         keyboard->preedit_string = strdup("");
316
317         keyboard->context = context;
318         input_method_context_add_listener(context,
319                                           &input_method_context_listener,
320                                           keyboard);
321 }
322
323 static void
324 input_method_deactivate(void *data,
325                         struct input_method *input_method,
326                         struct input_method_context *context)
327 {
328         struct virtual_keyboard *keyboard = data;
329
330         if (!keyboard->context)
331                 return;
332
333         input_method_context_destroy(keyboard->context);
334         keyboard->context = NULL;
335 }
336
337 static const struct input_method_listener input_method_listener = {
338         input_method_activate,
339         input_method_deactivate
340 };
341
342 static void
343 global_handler(struct wl_display *display, uint32_t id,
344                const char *interface, uint32_t version, void *data)
345 {
346         struct virtual_keyboard *keyboard = data;
347
348         if (!strcmp(interface, "input_panel")) {
349                 keyboard->input_panel = wl_display_bind(display, id, &input_panel_interface);
350         } else if (!strcmp(interface, "input_method")) {
351                 keyboard->input_method = wl_display_bind(display, id, &input_method_interface);
352                 input_method_add_listener(keyboard->input_method, &input_method_listener, keyboard);
353         }
354 }
355
356 static void
357 keyboard_create(struct output *output, struct virtual_keyboard *virtual_keyboard)
358 {
359         struct keyboard *keyboard;
360
361         keyboard = malloc(sizeof *keyboard);
362         memset(keyboard, 0, sizeof *keyboard);
363
364         keyboard->keyboard = virtual_keyboard;
365         keyboard->window = window_create_custom(virtual_keyboard->display);
366         keyboard->widget = window_add_widget(keyboard->window, keyboard);
367
368         window_set_title(keyboard->window, "Virtual keyboard");
369         window_set_user_data(keyboard->window, keyboard);
370
371         widget_set_redraw_handler(keyboard->widget, redraw_handler);
372         widget_set_resize_handler(keyboard->widget, resize_handler);
373         widget_set_button_handler(keyboard->widget, button_handler);
374
375         window_schedule_resize(keyboard->window,
376                                columns * key_width,
377                                rows * key_height);
378
379         input_panel_set_surface(virtual_keyboard->input_panel,
380                                 window_get_wl_surface(keyboard->window),
381                                 output_get_wl_output(output));
382 }
383
384 static void
385 handle_output_configure(struct output *output, void *data)
386 {
387         struct virtual_keyboard *virtual_keyboard = data;
388
389         /* skip existing outputs */
390         if (output_get_user_data(output))
391                 return;
392
393         output_set_user_data(output, virtual_keyboard);
394
395         keyboard_create(output, virtual_keyboard);
396 }
397
398 int
399 main(int argc, char *argv[])
400 {
401         struct virtual_keyboard virtual_keyboard;
402
403         virtual_keyboard.display = display_create(argc, argv);
404         if (virtual_keyboard.display == NULL) {
405                 fprintf(stderr, "failed to create display: %m\n");
406                 return -1;
407         }
408
409         virtual_keyboard.context = NULL;
410         virtual_keyboard.preedit_string = NULL;
411
412         wl_display_add_global_listener(display_get_display(virtual_keyboard.display),
413                                        global_handler, &virtual_keyboard);
414
415         display_set_user_data(virtual_keyboard.display, &virtual_keyboard);
416         display_set_output_configure_handler(virtual_keyboard.display, handle_output_configure);
417
418         display_run(virtual_keyboard.display);
419
420         return 0;
421 }