text: Rename de/activate to enter/leave
[profile/ivi/weston.git] / clients / editor.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 <assert.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28
29 #include <linux/input.h>
30 #include <cairo.h>
31
32 #include "window.h"
33 #include "text-client-protocol.h"
34
35 static const char *font_name = "sans-serif";
36 static int font_size = 14;
37
38 struct text_layout {
39         cairo_glyph_t *glyphs;
40         int num_glyphs;
41         cairo_text_cluster_t *clusters;
42         int num_clusters;
43         cairo_text_cluster_flags_t cluster_flags;
44         cairo_scaled_font_t *font;
45 };
46
47 struct text_entry {
48         struct widget *widget;
49         struct window *window;
50         char *text;
51         int active;
52         uint32_t cursor;
53         uint32_t anchor;
54         char *preedit_text;
55         uint32_t preedit_cursor;
56         struct text_model *model;
57         struct text_layout *layout;
58 };
59
60 struct editor {
61         struct text_model_factory *text_model_factory;
62         struct display *display;
63         struct window *window;
64         struct widget *widget;
65         struct text_entry *entry;
66         struct text_entry *editor;
67 };
68
69 static struct text_layout *
70 text_layout_create(void)
71 {
72         struct text_layout *layout;
73         cairo_surface_t *surface;
74         cairo_t *cr;
75
76         layout = malloc(sizeof *layout);
77         if (!layout)
78                 return NULL;
79
80         layout->glyphs = NULL;
81         layout->num_glyphs = 0;
82
83         layout->clusters = NULL;
84         layout->num_clusters = 0;
85
86         surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 0, 0);
87         cr = cairo_create(surface);
88         cairo_set_font_size(cr, font_size);
89         cairo_select_font_face(cr, font_name, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
90         layout->font = cairo_get_scaled_font(cr);
91         cairo_scaled_font_reference(layout->font);
92
93         cairo_destroy(cr);
94         cairo_surface_destroy(surface);
95
96         return layout;
97 }
98
99 static void
100 text_layout_destroy(struct text_layout *layout)
101 {
102         if (layout->glyphs)
103                 cairo_glyph_free(layout->glyphs);
104
105         if (layout->clusters)
106                 cairo_text_cluster_free(layout->clusters);
107
108         cairo_scaled_font_destroy(layout->font);
109
110         free(layout);
111 }
112
113 static void
114 text_layout_set_text(struct text_layout *layout,
115                      const char *text)
116 {
117         if (layout->glyphs)
118                 cairo_glyph_free(layout->glyphs);
119
120         if (layout->clusters)
121                 cairo_text_cluster_free(layout->clusters);
122
123         layout->glyphs = NULL;
124         layout->num_glyphs = 0;
125         layout->clusters = NULL;
126         layout->num_clusters = 0;
127
128         cairo_scaled_font_text_to_glyphs(layout->font, 0, 0, text, -1,
129                                          &layout->glyphs, &layout->num_glyphs,
130                                          &layout->clusters, &layout->num_clusters,
131                                          &layout->cluster_flags);
132 }
133
134 static void
135 text_layout_draw(struct text_layout *layout, cairo_t *cr)
136 {
137         cairo_save(cr);
138         cairo_set_scaled_font(cr, layout->font);
139         cairo_show_glyphs(cr, layout->glyphs, layout->num_glyphs);
140         cairo_restore(cr);
141 }
142
143 static void
144 text_layout_extents(struct text_layout *layout, cairo_text_extents_t *extents)
145 {
146         cairo_scaled_font_glyph_extents(layout->font,
147                                         layout->glyphs, layout->num_glyphs,
148                                         extents);
149 }
150
151 static int
152 text_layout_xy_to_index(struct text_layout *layout, double x, double y)
153 {
154         cairo_text_extents_t extents;
155         int i;
156
157         cairo_scaled_font_glyph_extents(layout->font,
158                                         layout->glyphs, layout->num_glyphs,
159                                         &extents);
160
161         for (i = 1; i < layout->num_glyphs; i++) {
162                 if (layout->glyphs[i].x >= x) {
163                         return i - 1;
164                 }
165         }
166
167         if (x >= layout->glyphs[layout->num_glyphs - 1].x && x < extents.width)
168                 return layout->num_glyphs - 1;
169
170         return layout->num_glyphs;
171 }
172
173 static void
174 text_layout_index_to_pos(struct text_layout *layout, uint32_t index, cairo_rectangle_t *pos)
175 {
176         cairo_text_extents_t extents;
177
178         if (!pos)
179                 return;
180
181         cairo_scaled_font_glyph_extents(layout->font,
182                                         layout->glyphs, layout->num_glyphs,
183                                         &extents);
184
185         if ((int)index >= layout->num_glyphs) {
186                 pos->x = extents.x_advance;
187                 pos->y = layout->num_glyphs ? layout->glyphs[layout->num_glyphs - 1].y : 0;
188                 pos->width = 1;
189                 pos->height = extents.height;
190                 return;
191         }
192
193         pos->x = layout->glyphs[index].x;
194         pos->y = layout->glyphs[index].y;
195         pos->width = (int)index < layout->num_glyphs - 1 ? layout->glyphs[index + 1].x : extents.x_advance - pos->x;
196         pos->height = extents.height;
197 }
198
199 static void
200 text_layout_get_cursor_pos(struct text_layout *layout, int index, cairo_rectangle_t *pos)
201 {
202         text_layout_index_to_pos(layout, index, pos);
203         pos->width = 1;
204 }
205
206 static void text_entry_redraw_handler(struct widget *widget, void *data);
207 static void text_entry_button_handler(struct widget *widget,
208                                       struct input *input, uint32_t time,
209                                       uint32_t button,
210                                       enum wl_pointer_button_state state, void *data);
211 static void text_entry_insert_at_cursor(struct text_entry *entry, const char *text);
212 static void text_entry_set_preedit(struct text_entry *entry,
213                                    const char *preedit_text,
214                                    int preedit_cursor);
215 static void text_entry_delete_text(struct text_entry *entry,
216                                    uint32_t index, uint32_t length);
217 static void text_entry_delete_selected_text(struct text_entry *entry);
218
219 static void
220 text_model_commit_string(void *data,
221                          struct text_model *text_model,
222                          const char *text,
223                          uint32_t index)
224 {
225         struct text_entry *entry = data;
226
227         if (index > strlen(text)) {
228                 fprintf(stderr, "Invalid cursor index %d\n", index);
229                 index = strlen(text);
230         }
231
232         text_entry_delete_selected_text(entry);
233         text_entry_insert_at_cursor(entry, text);
234
235         widget_schedule_redraw(entry->widget);
236 }
237
238 static void
239 text_model_preedit_string(void *data,
240                           struct text_model *text_model,
241                           const char *text,
242                           uint32_t index)
243 {
244         struct text_entry *entry = data;
245
246         if (index > strlen(text)) {
247                 fprintf(stderr, "Invalid cursor index %d\n", index);
248                 index = strlen(text);
249         }
250
251         text_entry_delete_selected_text(entry);
252         text_entry_set_preedit(entry, text, index);
253
254         widget_schedule_redraw(entry->widget);
255 }
256
257 static void
258 text_model_delete_surrounding_text(void *data,
259                                    struct text_model *text_model,
260                                    int32_t index,
261                                    uint32_t length)
262 {
263         struct text_entry *entry = data;
264         uint32_t cursor_index = index + entry->cursor;
265
266         if (cursor_index > strlen(entry->text)) {
267                 fprintf(stderr, "Invalid cursor index %d\n", index);
268                 return;
269         }
270
271         if (cursor_index + length > strlen(entry->text)) {
272                 fprintf(stderr, "Invalid length %d\n", length);
273                 return;
274         }
275
276         if (length == 0)
277                 return;
278
279         text_entry_delete_text(entry, cursor_index, length);
280 }
281
282 static void
283 text_model_preedit_styling(void *data,
284                            struct text_model *text_model)
285 {
286 }
287
288 static void
289 text_model_key(void *data,
290                struct text_model *text_model,
291                uint32_t key,
292                uint32_t state)
293 {
294         struct text_entry *entry = data;
295         const char *state_label;
296         const char *key_label = "released";
297
298         if (state == WL_KEYBOARD_KEY_STATE_PRESSED) {
299                 state_label = "pressed";
300         }
301
302         switch (key) {
303                 case XKB_KEY_Tab:
304                         key_label = "Tab";
305                         break;
306                 case XKB_KEY_KP_Enter:
307                         key_label = "Enter";
308                         break;
309                 case XKB_KEY_Left:
310                         if (entry->cursor > 0) {
311                                 entry->cursor--;
312                                 entry->anchor = entry->cursor;
313                                 widget_schedule_redraw(entry->widget);
314                         }
315                         break;
316                 case XKB_KEY_Right:
317                         if (entry->cursor < strlen(entry->text)) {
318                                 entry->cursor++;
319                                 entry->anchor = entry->cursor;
320                                 widget_schedule_redraw(entry->widget);
321                         }
322                         break;
323                 default:
324                         key_label = "Unknown";
325         }
326
327         fprintf(stderr, "%s key was %s.\n", key_label, state_label);
328 }
329
330 static void
331 text_model_selection_replacement(void *data,
332                                  struct text_model *text_model)
333 {
334 }
335
336 static void
337 text_model_direction(void *data,
338                      struct text_model *text_model)
339 {
340 }
341
342 static void
343 text_model_locale(void *data,
344                   struct text_model *text_model)
345 {
346 }
347
348 static void
349 text_model_enter(void *data,
350                  struct text_model *text_model,
351                  struct wl_surface *surface)
352 {
353         struct text_entry *entry = data;
354
355         if (surface != window_get_wl_surface(entry->window))
356                 return;
357
358         entry->active = 1;
359
360         widget_schedule_redraw(entry->widget);
361 }
362
363 static void
364 text_model_leave(void *data,
365                  struct text_model *text_model)
366 {
367         struct text_entry *entry = data;
368
369         entry->active = 0;
370
371         widget_schedule_redraw(entry->widget);
372 }
373
374 static const struct text_model_listener text_model_listener = {
375         text_model_commit_string,
376         text_model_preedit_string,
377         text_model_delete_surrounding_text,
378         text_model_preedit_styling,
379         text_model_key,
380         text_model_selection_replacement,
381         text_model_direction,
382         text_model_locale,
383         text_model_enter,
384         text_model_leave
385 };
386
387 static struct text_entry*
388 text_entry_create(struct editor *editor, const char *text)
389 {
390         struct text_entry *entry;
391
392         entry = malloc(sizeof *entry);
393
394         entry->widget = widget_add_widget(editor->widget, entry);
395         entry->window = editor->window;
396         entry->text = strdup(text);
397         entry->active = 0;
398         entry->cursor = strlen(text);
399         entry->anchor = entry->cursor;
400         entry->preedit_text = NULL;
401         entry->preedit_cursor = 0;
402         entry->model = text_model_factory_create_text_model(editor->text_model_factory);
403         text_model_add_listener(entry->model, &text_model_listener, entry);
404
405         entry->layout = text_layout_create();
406         text_layout_set_text(entry->layout, entry->text);
407
408         widget_set_redraw_handler(entry->widget, text_entry_redraw_handler);
409         widget_set_button_handler(entry->widget, text_entry_button_handler);
410
411         return entry;
412 }
413
414 static void
415 text_entry_destroy(struct text_entry *entry)
416 {
417         widget_destroy(entry->widget);
418         text_model_destroy(entry->model);
419         text_layout_destroy(entry->layout);
420         free(entry->text);
421         free(entry);
422 }
423
424 static void
425 redraw_handler(struct widget *widget, void *data)
426 {
427         struct editor *editor = data;
428         cairo_surface_t *surface;
429         struct rectangle allocation;
430         cairo_t *cr;
431
432         surface = window_get_surface(editor->window);
433         widget_get_allocation(editor->widget, &allocation);
434
435         cr = cairo_create(surface);
436         cairo_rectangle(cr, allocation.x, allocation.y, allocation.width, allocation.height);
437         cairo_clip(cr);
438
439         cairo_translate(cr, allocation.x, allocation.y);
440
441         /* Draw background */
442         cairo_push_group(cr);
443         cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
444         cairo_set_source_rgba(cr, 1, 1, 1, 1);
445         cairo_rectangle(cr, 0, 0, allocation.width, allocation.height);
446         cairo_fill(cr);
447
448         cairo_pop_group_to_source(cr);
449         cairo_paint(cr);
450
451         cairo_destroy(cr);
452         cairo_surface_destroy(surface);
453 }
454
455 static void
456 text_entry_allocate(struct text_entry *entry, int32_t x, int32_t y,
457                     int32_t width, int32_t height)
458 {
459         widget_set_allocation(entry->widget, x, y, width, height);
460 }
461
462 static void
463 resize_handler(struct widget *widget,
464                int32_t width, int32_t height, void *data)
465 {
466         struct editor *editor = data;
467         struct rectangle allocation;
468
469         widget_get_allocation(editor->widget, &allocation);
470
471         text_entry_allocate(editor->entry,
472                             allocation.x + 20, allocation.y + 20,
473                             width - 40, height / 2 - 40);
474         text_entry_allocate(editor->editor,
475                             allocation.x + 20, allocation.y + height / 2 + 20,
476                             width - 40, height / 2 - 40);
477 }
478
479 static void
480 text_entry_activate(struct text_entry *entry,
481                     struct wl_seat *seat)
482 {
483         struct wl_surface *surface = window_get_wl_surface(entry->window);
484
485         text_model_activate(entry->model,
486                             seat,
487                             surface);
488 }
489
490 static void
491 text_entry_deactivate(struct text_entry *entry,
492                       struct wl_seat *seat)
493 {
494         text_model_deactivate(entry->model,
495                               seat);
496 }
497
498 static void
499 text_entry_update_layout(struct text_entry *entry)
500 {
501         char *text;
502
503         assert(((unsigned int)entry->cursor) <= strlen(entry->text));
504
505         if (!entry->preedit_text) {
506                 text_layout_set_text(entry->layout, entry->text);
507                 return;
508         }
509
510         text = malloc(strlen(entry->text) + strlen(entry->preedit_text) + 1);
511         strncpy(text, entry->text, entry->cursor);
512         strcpy(text + entry->cursor, entry->preedit_text);
513         strcpy(text + entry->cursor + strlen(entry->preedit_text),
514                entry->text + entry->cursor);
515
516         text_layout_set_text(entry->layout, text);
517         free(text);
518
519         widget_schedule_redraw(entry->widget);
520
521         text_model_set_surrounding_text(entry->model,
522                                         entry->text,
523                                         entry->cursor,
524                                         entry->anchor);
525 }
526
527 static void
528 text_entry_insert_at_cursor(struct text_entry *entry, const char *text)
529 {
530         char *new_text = malloc(strlen(entry->text) + strlen(text) + 1);
531
532         strncpy(new_text, entry->text, entry->cursor);
533         strcpy(new_text + entry->cursor, text);
534         strcpy(new_text + entry->cursor + strlen(text),
535                entry->text + entry->cursor);
536
537         free(entry->text);
538         entry->text = new_text;
539         entry->cursor += strlen(text);
540         entry->anchor += strlen(text);
541
542         text_entry_update_layout(entry);
543 }
544
545 static void
546 text_entry_set_preedit(struct text_entry *entry,
547                        const char *preedit_text,
548                        int preedit_cursor)
549 {
550         if (entry->preedit_text) {
551                 free(entry->preedit_text);
552                 entry->preedit_text = NULL;
553                 entry->preedit_cursor = 0;
554         }
555
556         if (!preedit_text)
557                 return;
558
559         entry->preedit_text = strdup(preedit_text);
560         entry->preedit_cursor = preedit_cursor;
561
562         text_entry_update_layout(entry);
563 }
564
565 static void
566 text_entry_set_cursor_position(struct text_entry *entry,
567                                int32_t x, int32_t y)
568 {
569         entry->cursor = text_layout_xy_to_index(entry->layout, x, y);
570
571         text_model_reset(entry->model);
572
573         if (entry->cursor >= entry->preedit_cursor) {
574                 entry->cursor -= entry->preedit_cursor;
575         }
576
577         text_entry_update_layout(entry);
578
579         widget_schedule_redraw(entry->widget);
580 }
581
582 static void
583 text_entry_set_anchor_position(struct text_entry *entry,
584                                int32_t x, int32_t y)
585 {
586         entry->anchor = text_layout_xy_to_index(entry->layout, x, y);
587
588         widget_schedule_redraw(entry->widget);
589 }
590
591 static void
592 text_entry_delete_text(struct text_entry *entry,
593                        uint32_t index, uint32_t length)
594 {
595         if (entry->cursor > index)
596                 entry->cursor -= length;
597
598         entry->anchor = entry->cursor;
599
600         entry->text[index] = '\0';
601         strcat(entry->text, entry->text + index + length);
602
603         text_entry_update_layout(entry);
604
605         widget_schedule_redraw(entry->widget);
606 }
607
608 static void
609 text_entry_delete_selected_text(struct text_entry *entry)
610 {
611         uint32_t start_index = entry->anchor < entry->cursor ? entry->anchor : entry->cursor;
612         uint32_t end_index = entry->anchor < entry->cursor ? entry->cursor : entry->anchor;
613
614         if (entry->anchor == entry->cursor)
615                 return;
616
617         text_entry_delete_text(entry, start_index, end_index - start_index);
618
619         entry->anchor = entry->cursor;
620 }
621
622 static void
623 text_entry_draw_selection(struct text_entry *entry, cairo_t *cr)
624 {
625         cairo_text_extents_t extents;
626         uint32_t start_index = entry->anchor < entry->cursor ? entry->anchor : entry->cursor;
627         uint32_t end_index = entry->anchor < entry->cursor ? entry->cursor : entry->anchor;
628         cairo_rectangle_t start;
629         cairo_rectangle_t end;
630
631         if (entry->anchor == entry->cursor)
632                 return;
633
634         text_layout_extents(entry->layout, &extents);
635
636         text_layout_index_to_pos(entry->layout, start_index, &start);
637         text_layout_index_to_pos(entry->layout, end_index, &end);
638
639         cairo_save (cr);
640
641         cairo_set_source_rgba(cr, 0.0, 0.0, 1.0, 1.0);
642         cairo_rectangle(cr,
643                         start.x, extents.y_bearing + extents.height + 2,
644                         end.x - start.x, -extents.height - 4);
645         cairo_fill(cr);
646
647         cairo_rectangle(cr,
648                         start.x, extents.y_bearing + extents.height,
649                         end.x - start.x, -extents.height);
650         cairo_clip(cr);
651         cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0);
652         text_layout_draw(entry->layout, cr);
653
654         cairo_restore (cr);
655 }
656
657 static void
658 text_entry_draw_cursor(struct text_entry *entry, cairo_t *cr)
659 {
660         cairo_text_extents_t extents;
661         cairo_rectangle_t cursor_pos;
662
663         text_layout_extents(entry->layout, &extents);
664         text_layout_get_cursor_pos(entry->layout,
665                                    entry->cursor + entry->preedit_cursor,
666                                    &cursor_pos);
667
668         cairo_set_line_width(cr, 1.0);
669         cairo_move_to(cr, cursor_pos.x, extents.y_bearing + extents.height + 2);
670         cairo_line_to(cr, cursor_pos.x, extents.y_bearing - 2);
671         cairo_stroke(cr);
672 }
673
674 static void
675 text_entry_draw_preedit(struct text_entry *entry, cairo_t *cr)
676 {
677         cairo_text_extents_t extents;
678         cairo_rectangle_t start;
679         cairo_rectangle_t end;
680
681         if (!entry->preedit_text)
682                 return;
683
684         text_layout_extents(entry->layout, &extents);
685
686         text_layout_index_to_pos(entry->layout, entry->cursor, &start);
687         text_layout_index_to_pos(entry->layout,
688                                  entry->cursor + strlen(entry->preedit_text),
689                                  &end);
690
691         cairo_save (cr);
692
693         cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 1.0);
694         cairo_rectangle(cr,
695                         start.x, 0,
696                         end.x - start.x, 1);
697         cairo_fill(cr);
698
699         cairo_restore (cr);
700 }
701
702 static void
703 text_entry_redraw_handler(struct widget *widget, void *data)
704 {
705         struct text_entry *entry = data;
706         cairo_surface_t *surface;
707         struct rectangle allocation;
708         cairo_t *cr;
709
710         surface = window_get_surface(entry->window);
711         widget_get_allocation(entry->widget, &allocation);
712
713         cr = cairo_create(surface);
714         cairo_rectangle(cr, allocation.x, allocation.y, allocation.width, allocation.height);
715         cairo_clip(cr);
716
717         cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
718
719         cairo_push_group(cr);
720         cairo_translate(cr, allocation.x, allocation.y);
721
722         cairo_set_source_rgba(cr, 1, 1, 1, 1);
723         cairo_rectangle(cr, 0, 0, allocation.width, allocation.height);
724         cairo_fill(cr);
725
726         cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
727
728         if (entry->active) {
729                 cairo_rectangle(cr, 0, 0, allocation.width, allocation.height);
730                 cairo_set_line_width (cr, 3);
731                 cairo_set_source_rgba(cr, 0, 0, 1, 1.0);
732                 cairo_stroke(cr);
733         }
734
735         cairo_set_source_rgba(cr, 0, 0, 0, 1);
736
737         cairo_translate(cr, 10, allocation.height / 2);
738         text_layout_draw(entry->layout, cr);
739
740         text_entry_draw_selection(entry, cr);
741
742         text_entry_draw_cursor(entry, cr);
743
744         text_entry_draw_preedit(entry, cr);
745
746         cairo_pop_group_to_source(cr);
747         cairo_paint(cr);
748
749         cairo_destroy(cr);
750         cairo_surface_destroy(surface);
751 }
752
753 static int
754 text_entry_motion_handler(struct widget *widget,
755                           struct input *input, uint32_t time,
756                           float x, float y, void *data)
757 {
758         struct text_entry *entry = data;
759         struct rectangle allocation;
760
761         widget_get_allocation(entry->widget, &allocation);
762
763         text_entry_set_cursor_position(entry,
764                                        x - allocation.x,
765                                        y - allocation.y);
766
767         return CURSOR_IBEAM;
768 }
769
770 static void
771 text_entry_button_handler(struct widget *widget,
772                           struct input *input, uint32_t time,
773                           uint32_t button,
774                           enum wl_pointer_button_state state, void *data)
775 {
776         struct text_entry *entry = data;
777         struct rectangle allocation;
778         int32_t x, y;
779
780         widget_get_allocation(entry->widget, &allocation);
781         input_get_position(input, &x, &y);
782
783         if (button != BTN_LEFT) {
784                 return;
785         }
786
787         text_entry_set_cursor_position(entry,
788                                        x - allocation.x,
789                                        y - allocation.y);
790
791         if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
792                 struct wl_seat *seat = input_get_seat(input);
793
794                 text_entry_activate(entry, seat);
795
796                 text_entry_set_anchor_position(entry,
797                                                x - allocation.x,
798                                                y - allocation.y);
799
800                 widget_set_motion_handler(entry->widget, text_entry_motion_handler);
801         } else {
802                 widget_set_motion_handler(entry->widget, NULL);
803         }
804 }
805
806 static void
807 editor_button_handler(struct widget *widget,
808                       struct input *input, uint32_t time,
809                       uint32_t button,
810                       enum wl_pointer_button_state state, void *data)
811 {
812         struct editor *editor = data;
813
814         if (button != BTN_LEFT) {
815                 return;
816         }
817
818         if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
819                 struct wl_seat *seat = input_get_seat(input);
820
821                 text_entry_deactivate(editor->entry, seat);
822                 text_entry_deactivate(editor->editor, seat);
823         }
824 }
825
826 static void
827 global_handler(struct wl_display *display, uint32_t id,
828                const char *interface, uint32_t version, void *data)
829 {
830         struct editor *editor = data;
831
832         if (!strcmp(interface, "text_model_factory")) {
833                 editor->text_model_factory = wl_display_bind(display, id,
834                                                              &text_model_factory_interface);
835         }
836 }
837
838 int
839 main(int argc, char *argv[])
840 {
841         struct editor editor;
842
843         editor.display = display_create(argc, argv);
844         if (editor.display == NULL) {
845                 fprintf(stderr, "failed to create display: %m\n");
846                 return -1;
847         }
848         wl_display_add_global_listener(display_get_display(editor.display),
849                                        global_handler, &editor);
850
851
852         editor.window = window_create(editor.display);
853         editor.widget = frame_create(editor.window, &editor);
854
855         editor.entry = text_entry_create(&editor, "Entry");
856         editor.editor = text_entry_create(&editor, "Editor");
857         text_entry_set_preedit(editor.editor, "preedit", strlen("preedit"));
858
859         window_set_title(editor.window, "Text Editor");
860
861         widget_set_redraw_handler(editor.widget, redraw_handler);
862         widget_set_resize_handler(editor.widget, resize_handler);
863         widget_set_button_handler(editor.widget, editor_button_handler);
864
865         window_schedule_resize(editor.window, 500, 400);
866
867         display_run(editor.display);
868
869         text_entry_destroy(editor.entry);
870         text_entry_destroy(editor.editor);
871
872         return 0;
873 }