blob: 4bc7d240711f400ac02fb9bb0d7ebf914b450594 [file] [log] [blame]
Jan Arne Petersencba9e472012-06-21 21:52:19 +02001/*
2 * Copyright © 2012 Openismus GmbH
Jan Arne Petersen620cd622012-09-09 23:08:32 +02003 * Copyright © 2012 Intel Corporation
Jan Arne Petersencba9e472012-06-21 21:52:19 +02004 *
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"
Jan Arne Petersen30b66ef2012-09-09 23:08:41 +020032#include "input-method-client-protocol.h"
Jan Arne Petersencba9e472012-06-21 21:52:19 +020033#include "desktop-shell-client-protocol.h"
34
35struct virtual_keyboard {
36 struct input_panel *input_panel;
37 struct input_method *input_method;
Jan Arne Petersen620cd622012-09-09 23:08:32 +020038 struct input_method_context *context;
Jan Arne Petersencba9e472012-06-21 21:52:19 +020039 struct display *display;
Jan Arne Petersen43f4aa82012-09-09 23:08:43 +020040 char *preedit_string;
Jan Arne Petersencba9e472012-06-21 21:52:19 +020041};
42
Jan Arne Petersen892f1c32012-09-09 23:08:42 +020043enum 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
53struct key {
54 enum key_type key_type;
55
56 char *label;
57 char *alt;
58
59 unsigned int width;
60};
61
62static 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
104static const unsigned int columns = 12;
105static const unsigned int rows = 4;
106
107static const double key_width = 60;
108static const double key_height = 50;
109
110enum keyboard_state {
111 keyboardstate_default,
112 keyboardstate_uppercase
113};
114
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200115struct keyboard {
116 struct virtual_keyboard *keyboard;
117 struct window *window;
118 struct widget *widget;
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200119
120 enum keyboard_state state;
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200121};
122
123static void
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200124draw_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
161static void
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200162redraw_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;
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200168 unsigned int i;
169 unsigned int row = 0, col = 0;
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200170
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
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200178 cairo_select_font_face(cr, "sans", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
179 cairo_set_font_size(cr, 16);
180
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200181 cairo_translate(cr, allocation.x, allocation.y);
182
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200183 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200184 cairo_set_source_rgba(cr, 1, 1, 1, 0.75);
185 cairo_rectangle(cr, 0, 0, columns * key_width, rows * key_height);
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200186 cairo_paint(cr);
187
188 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
189
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200190 for (i = 0; i < sizeof(keys) / sizeof(*keys); ++i) {
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200191 cairo_set_source_rgb(cr, 0, 0, 0);
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200192 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 }
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200198 }
199
200 cairo_destroy(cr);
201 cairo_surface_destroy(surface);
202}
203
204static void
205resize_handler(struct widget *widget,
206 int32_t width, int32_t height, void *data)
207{
208 /* struct keyboard *keyboard = data; */
209}
210
211static void
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200212keyboard_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:
Jan Arne Petersen43f4aa82012-09-09 23:08:43 +0200218 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));
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200223 break;
224 case keytype_backspace:
225 break;
226 case keytype_enter:
227 break;
228 case keytype_space:
Jan Arne Petersen43f4aa82012-09-09 23:08:43 +0200229 keyboard->keyboard->preedit_string = strcat(keyboard->keyboard->preedit_string,
230 " ");
231 input_method_context_preedit_string(keyboard->keyboard->context,
232 "",
233 0);
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200234 input_method_context_commit_string(keyboard->keyboard->context,
Jan Arne Petersen43f4aa82012-09-09 23:08:43 +0200235 keyboard->keyboard->preedit_string,
236 strlen(keyboard->keyboard->preedit_string));
237 free(keyboard->keyboard->preedit_string);
238 keyboard->keyboard->preedit_string = strdup("");
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200239 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
253static void
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200254button_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;
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200261 int32_t x, y;
262 int row, col;
263 unsigned int i;
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200264
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
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200275 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 }
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200282
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200283 keyboard_handle_key(keyboard, &keys[i]);
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200284
285 widget_schedule_redraw(widget);
286}
287
288static void
Jan Arne Petersencb08f4d2012-09-09 23:08:40 +0200289input_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
298static const struct input_method_context_listener input_method_context_listener = {
299 input_method_context_surrounding_text,
300};
301
302static void
Jan Arne Petersen620cd622012-09-09 23:08:32 +0200303input_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
Jan Arne Petersen43f4aa82012-09-09 23:08:43 +0200312 if (keyboard->preedit_string)
313 free(keyboard->preedit_string);
314
315 keyboard->preedit_string = strdup("");
316
Jan Arne Petersen620cd622012-09-09 23:08:32 +0200317 keyboard->context = context;
Jan Arne Petersencb08f4d2012-09-09 23:08:40 +0200318 input_method_context_add_listener(context,
319 &input_method_context_listener,
320 keyboard);
Jan Arne Petersen620cd622012-09-09 23:08:32 +0200321}
322
323static void
324input_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
337static const struct input_method_listener input_method_listener = {
338 input_method_activate,
339 input_method_deactivate
340};
341
342static void
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200343global_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);
Jan Arne Petersen620cd622012-09-09 23:08:32 +0200352 input_method_add_listener(keyboard->input_method, &input_method_listener, keyboard);
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200353 }
354}
355
356static void
357keyboard_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;
Kristian Høgsberg0636ac32012-06-27 10:22:15 -0400365 keyboard->window = window_create_custom(virtual_keyboard->display);
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200366 keyboard->widget = window_add_widget(keyboard->window, keyboard);
367
368 window_set_title(keyboard->window, "Virtual keyboard");
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200369 window_set_user_data(keyboard->window, keyboard);
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200370
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
Jan Arne Petersen892f1c32012-09-09 23:08:42 +0200375 window_schedule_resize(keyboard->window,
376 columns * key_width,
377 rows * key_height);
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200378
379 input_panel_set_surface(virtual_keyboard->input_panel,
Kristian Høgsberg0636ac32012-06-27 10:22:15 -0400380 window_get_wl_surface(keyboard->window),
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200381 output_get_wl_output(output));
382}
383
384static void
385handle_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
398int
399main(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
Jan Arne Petersen620cd622012-09-09 23:08:32 +0200409 virtual_keyboard.context = NULL;
Jan Arne Petersen43f4aa82012-09-09 23:08:43 +0200410 virtual_keyboard.preedit_string = NULL;
Jan Arne Petersen620cd622012-09-09 23:08:32 +0200411
Jan Arne Petersencba9e472012-06-21 21:52:19 +0200412 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}