2 * Copyright © 2012 Openismus GmbH
3 * Copyright © 2012 Intel Corporation
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.
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.
29 #include <linux/input.h>
33 #include "text-client-protocol.h"
35 static const char *font_name = "sans-serif";
36 static int font_size = 14;
39 cairo_glyph_t *glyphs;
41 cairo_text_cluster_t *clusters;
43 cairo_text_cluster_flags_t cluster_flags;
44 cairo_scaled_font_t *font;
48 struct widget *widget;
49 struct window *window;
55 uint32_t preedit_cursor;
56 struct text_model *model;
57 struct text_layout *layout;
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;
69 static struct text_layout *
70 text_layout_create(void)
72 struct text_layout *layout;
73 cairo_surface_t *surface;
76 layout = malloc(sizeof *layout);
80 layout->glyphs = NULL;
81 layout->num_glyphs = 0;
83 layout->clusters = NULL;
84 layout->num_clusters = 0;
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);
94 cairo_surface_destroy(surface);
100 text_layout_destroy(struct text_layout *layout)
103 cairo_glyph_free(layout->glyphs);
105 if (layout->clusters)
106 cairo_text_cluster_free(layout->clusters);
108 cairo_scaled_font_destroy(layout->font);
114 text_layout_set_text(struct text_layout *layout,
118 cairo_glyph_free(layout->glyphs);
120 if (layout->clusters)
121 cairo_text_cluster_free(layout->clusters);
123 layout->glyphs = NULL;
124 layout->num_glyphs = 0;
125 layout->clusters = NULL;
126 layout->num_clusters = 0;
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);
135 text_layout_draw(struct text_layout *layout, cairo_t *cr)
138 cairo_set_scaled_font(cr, layout->font);
139 cairo_show_glyphs(cr, layout->glyphs, layout->num_glyphs);
144 text_layout_extents(struct text_layout *layout, cairo_text_extents_t *extents)
146 cairo_scaled_font_glyph_extents(layout->font,
147 layout->glyphs, layout->num_glyphs,
152 text_layout_xy_to_index(struct text_layout *layout, double x, double y)
154 cairo_text_extents_t extents;
157 cairo_scaled_font_glyph_extents(layout->font,
158 layout->glyphs, layout->num_glyphs,
161 for (i = 1; i < layout->num_glyphs; i++) {
162 if (layout->glyphs[i].x >= x) {
167 if (x >= layout->glyphs[layout->num_glyphs - 1].x && x < extents.width)
168 return layout->num_glyphs - 1;
170 return layout->num_glyphs;
174 text_layout_index_to_pos(struct text_layout *layout, uint32_t index, cairo_rectangle_t *pos)
176 cairo_text_extents_t extents;
181 cairo_scaled_font_glyph_extents(layout->font,
182 layout->glyphs, layout->num_glyphs,
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;
189 pos->height = extents.height;
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;
200 text_layout_get_cursor_pos(struct text_layout *layout, int index, cairo_rectangle_t *pos)
202 text_layout_index_to_pos(layout, index, pos);
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,
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,
215 static void text_entry_delete_text(struct text_entry *entry,
216 uint32_t index, uint32_t length);
219 text_model_commit_string(void *data,
220 struct text_model *text_model,
224 struct text_entry *entry = data;
226 if (index > strlen(text)) {
227 fprintf(stderr, "Invalid cursor index %d\n", index);
228 index = strlen(text);
231 text_entry_insert_at_cursor(entry, text);
233 widget_schedule_redraw(entry->widget);
237 text_model_preedit_string(void *data,
238 struct text_model *text_model,
242 struct text_entry *entry = data;
244 if (index > strlen(text)) {
245 fprintf(stderr, "Invalid cursor index %d\n", index);
246 index = strlen(text);
249 text_entry_set_preedit(entry, text, index);
251 widget_schedule_redraw(entry->widget);
255 text_model_delete_surrounding_text(void *data,
256 struct text_model *text_model,
260 struct text_entry *entry = data;
261 uint32_t cursor_index = index + entry->cursor;
263 if (cursor_index > strlen(entry->text)) {
264 fprintf(stderr, "Invalid cursor index %d\n", index);
268 if (cursor_index + length > strlen(entry->text)) {
269 fprintf(stderr, "Invalid length %d\n", length);
276 text_entry_delete_text(entry, cursor_index, length);
280 text_model_preedit_styling(void *data,
281 struct text_model *text_model)
286 text_model_key(void *data,
287 struct text_model *text_model)
292 text_model_selection_replacement(void *data,
293 struct text_model *text_model)
298 text_model_direction(void *data,
299 struct text_model *text_model)
304 text_model_locale(void *data,
305 struct text_model *text_model)
310 text_model_activated(void *data,
311 struct text_model *text_model)
313 struct text_entry *entry = data;
317 widget_schedule_redraw(entry->widget);
321 text_model_deactivated(void *data,
322 struct text_model *text_model)
324 struct text_entry *entry = data;
328 widget_schedule_redraw(entry->widget);
331 static const struct text_model_listener text_model_listener = {
332 text_model_commit_string,
333 text_model_preedit_string,
334 text_model_delete_surrounding_text,
335 text_model_preedit_styling,
337 text_model_selection_replacement,
338 text_model_direction,
340 text_model_activated,
341 text_model_deactivated
344 static struct text_entry*
345 text_entry_create(struct editor *editor, const char *text)
347 struct text_entry *entry;
349 entry = malloc(sizeof *entry);
351 entry->widget = widget_add_widget(editor->widget, entry);
352 entry->window = editor->window;
353 entry->text = strdup(text);
355 entry->cursor = strlen(text);
356 entry->anchor = entry->cursor;
357 entry->preedit_text = NULL;
358 entry->preedit_cursor = 0;
359 entry->model = text_model_factory_create_text_model(editor->text_model_factory);
360 text_model_add_listener(entry->model, &text_model_listener, entry);
362 entry->layout = text_layout_create();
363 text_layout_set_text(entry->layout, entry->text);
365 widget_set_redraw_handler(entry->widget, text_entry_redraw_handler);
366 widget_set_button_handler(entry->widget, text_entry_button_handler);
372 text_entry_destroy(struct text_entry *entry)
374 widget_destroy(entry->widget);
375 text_model_destroy(entry->model);
376 text_layout_destroy(entry->layout);
382 redraw_handler(struct widget *widget, void *data)
384 struct editor *editor = data;
385 cairo_surface_t *surface;
386 struct rectangle allocation;
389 surface = window_get_surface(editor->window);
390 widget_get_allocation(editor->widget, &allocation);
392 cr = cairo_create(surface);
393 cairo_rectangle(cr, allocation.x, allocation.y, allocation.width, allocation.height);
396 cairo_translate(cr, allocation.x, allocation.y);
398 /* Draw background */
399 cairo_push_group(cr);
400 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
401 cairo_set_source_rgba(cr, 1, 1, 1, 1);
402 cairo_rectangle(cr, 0, 0, allocation.width, allocation.height);
405 cairo_pop_group_to_source(cr);
409 cairo_surface_destroy(surface);
413 text_entry_allocate(struct text_entry *entry, int32_t x, int32_t y,
414 int32_t width, int32_t height)
416 widget_set_allocation(entry->widget, x, y, width, height);
420 resize_handler(struct widget *widget,
421 int32_t width, int32_t height, void *data)
423 struct editor *editor = data;
424 struct rectangle allocation;
426 widget_get_allocation(editor->widget, &allocation);
428 text_entry_allocate(editor->entry,
429 allocation.x + 20, allocation.y + 20,
430 width - 40, height / 2 - 40);
431 text_entry_allocate(editor->editor,
432 allocation.x + 20, allocation.y + height / 2 + 20,
433 width - 40, height / 2 - 40);
437 text_entry_activate(struct text_entry *entry,
438 struct wl_seat *seat)
440 struct wl_surface *surface = window_get_wl_surface(entry->window);
442 text_model_activate(entry->model,
448 text_entry_deactivate(struct text_entry *entry,
449 struct wl_seat *seat)
451 text_model_deactivate(entry->model,
456 text_entry_update_layout(struct text_entry *entry)
460 assert(((unsigned int)entry->cursor) <= strlen(entry->text));
462 if (!entry->preedit_text) {
463 text_layout_set_text(entry->layout, entry->text);
467 text = malloc(strlen(entry->text) + strlen(entry->preedit_text) + 1);
468 strncpy(text, entry->text, entry->cursor);
469 strcpy(text + entry->cursor, entry->preedit_text);
470 strcpy(text + entry->cursor + strlen(entry->preedit_text),
471 entry->text + entry->cursor);
473 text_layout_set_text(entry->layout, text);
476 widget_schedule_redraw(entry->widget);
478 text_model_set_surrounding_text(entry->model,
485 text_entry_insert_at_cursor(struct text_entry *entry, const char *text)
487 char *new_text = malloc(strlen(entry->text) + strlen(text) + 1);
489 strncpy(new_text, entry->text, entry->cursor);
490 strcpy(new_text + entry->cursor, text);
491 strcpy(new_text + entry->cursor + strlen(text),
492 entry->text + entry->cursor);
495 entry->text = new_text;
496 entry->cursor += strlen(text);
497 entry->anchor += strlen(text);
499 text_entry_update_layout(entry);
503 text_entry_set_preedit(struct text_entry *entry,
504 const char *preedit_text,
507 if (entry->preedit_text) {
508 free(entry->preedit_text);
509 entry->preedit_text = NULL;
510 entry->preedit_cursor = 0;
516 entry->preedit_text = strdup(preedit_text);
517 entry->preedit_cursor = preedit_cursor;
519 text_entry_update_layout(entry);
523 text_entry_set_cursor_position(struct text_entry *entry,
524 int32_t x, int32_t y)
526 entry->cursor = text_layout_xy_to_index(entry->layout, x, y);
528 if (entry->cursor >= entry->preedit_cursor) {
529 entry->cursor -= entry->preedit_cursor;
532 text_entry_update_layout(entry);
534 widget_schedule_redraw(entry->widget);
538 text_entry_set_anchor_position(struct text_entry *entry,
539 int32_t x, int32_t y)
541 entry->anchor = text_layout_xy_to_index(entry->layout, x, y);
543 widget_schedule_redraw(entry->widget);
547 text_entry_delete_text(struct text_entry *entry,
548 uint32_t index, uint32_t length)
550 if (entry->cursor > index)
551 entry->cursor -= length;
553 entry->text[index] = '\0';
554 strcat(entry->text, entry->text + index + length);
556 text_entry_update_layout(entry);
558 widget_schedule_redraw(entry->widget);
562 text_entry_draw_selection(struct text_entry *entry, cairo_t *cr)
564 cairo_text_extents_t extents;
565 uint32_t start_index = entry->anchor < entry->cursor ? entry->anchor : entry->cursor;
566 uint32_t end_index = entry->anchor < entry->cursor ? entry->cursor : entry->anchor;
567 cairo_rectangle_t start;
568 cairo_rectangle_t end;
570 if (entry->anchor == entry->cursor)
573 text_layout_extents(entry->layout, &extents);
575 text_layout_index_to_pos(entry->layout, start_index, &start);
576 text_layout_index_to_pos(entry->layout, end_index, &end);
580 cairo_set_source_rgba(cr, 0.0, 0.0, 1.0, 1.0);
582 start.x, extents.y_bearing + extents.height + 2,
583 end.x - start.x, -extents.height - 4);
587 start.x, extents.y_bearing + extents.height,
588 end.x - start.x, -extents.height);
590 cairo_set_source_rgba(cr, 1.0, 1.0, 1.0, 1.0);
591 text_layout_draw(entry->layout, cr);
597 text_entry_draw_cursor(struct text_entry *entry, cairo_t *cr)
599 cairo_text_extents_t extents;
600 cairo_rectangle_t cursor_pos;
602 text_layout_extents(entry->layout, &extents);
603 text_layout_get_cursor_pos(entry->layout,
604 entry->cursor + entry->preedit_cursor,
607 cairo_set_line_width(cr, 1.0);
608 cairo_move_to(cr, cursor_pos.x, extents.y_bearing + extents.height + 2);
609 cairo_line_to(cr, cursor_pos.x, extents.y_bearing - 2);
614 text_entry_draw_preedit(struct text_entry *entry, cairo_t *cr)
616 cairo_text_extents_t extents;
617 cairo_rectangle_t start;
618 cairo_rectangle_t end;
620 if (!entry->preedit_text)
623 text_layout_extents(entry->layout, &extents);
625 text_layout_index_to_pos(entry->layout, entry->cursor, &start);
626 text_layout_index_to_pos(entry->layout,
627 entry->cursor + strlen(entry->preedit_text),
632 cairo_set_source_rgba(cr, 0.0, 0.0, 0.0, 1.0);
642 text_entry_redraw_handler(struct widget *widget, void *data)
644 struct text_entry *entry = data;
645 cairo_surface_t *surface;
646 struct rectangle allocation;
649 surface = window_get_surface(entry->window);
650 widget_get_allocation(entry->widget, &allocation);
652 cr = cairo_create(surface);
653 cairo_rectangle(cr, allocation.x, allocation.y, allocation.width, allocation.height);
656 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
658 cairo_push_group(cr);
659 cairo_translate(cr, allocation.x, allocation.y);
661 cairo_set_source_rgba(cr, 1, 1, 1, 1);
662 cairo_rectangle(cr, 0, 0, allocation.width, allocation.height);
665 cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
668 cairo_rectangle(cr, 0, 0, allocation.width, allocation.height);
669 cairo_set_line_width (cr, 3);
670 cairo_set_source_rgba(cr, 0, 0, 1, 1.0);
674 cairo_set_source_rgba(cr, 0, 0, 0, 1);
676 cairo_translate(cr, 10, allocation.height / 2);
677 text_layout_draw(entry->layout, cr);
679 text_entry_draw_selection(entry, cr);
681 text_entry_draw_cursor(entry, cr);
683 text_entry_draw_preedit(entry, cr);
685 cairo_pop_group_to_source(cr);
689 cairo_surface_destroy(surface);
693 text_entry_motion_handler(struct widget *widget,
694 struct input *input, uint32_t time,
695 float x, float y, void *data)
697 struct text_entry *entry = data;
698 struct rectangle allocation;
700 widget_get_allocation(entry->widget, &allocation);
702 text_entry_set_cursor_position(entry,
710 text_entry_button_handler(struct widget *widget,
711 struct input *input, uint32_t time,
713 enum wl_pointer_button_state state, void *data)
715 struct text_entry *entry = data;
716 struct rectangle allocation;
719 widget_get_allocation(entry->widget, &allocation);
720 input_get_position(input, &x, &y);
722 if (button != BTN_LEFT) {
726 text_entry_set_cursor_position(entry,
730 if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
731 struct wl_seat *seat = input_get_seat(input);
733 text_entry_activate(entry, seat);
735 text_entry_set_anchor_position(entry,
739 widget_set_motion_handler(entry->widget, text_entry_motion_handler);
741 widget_set_motion_handler(entry->widget, NULL);
746 editor_button_handler(struct widget *widget,
747 struct input *input, uint32_t time,
749 enum wl_pointer_button_state state, void *data)
751 struct editor *editor = data;
753 if (button != BTN_LEFT) {
757 if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
758 struct wl_seat *seat = input_get_seat(input);
760 text_entry_deactivate(editor->entry, seat);
761 text_entry_deactivate(editor->editor, seat);
766 global_handler(struct wl_display *display, uint32_t id,
767 const char *interface, uint32_t version, void *data)
769 struct editor *editor = data;
771 if (!strcmp(interface, "text_model_factory")) {
772 editor->text_model_factory = wl_display_bind(display, id,
773 &text_model_factory_interface);
778 main(int argc, char *argv[])
780 struct editor editor;
782 editor.display = display_create(argc, argv);
783 if (editor.display == NULL) {
784 fprintf(stderr, "failed to create display: %m\n");
787 wl_display_add_global_listener(display_get_display(editor.display),
788 global_handler, &editor);
791 editor.window = window_create(editor.display);
792 editor.widget = frame_create(editor.window, &editor);
794 editor.entry = text_entry_create(&editor, "Entry");
795 editor.editor = text_entry_create(&editor, "Editor");
796 text_entry_set_preedit(editor.editor, "preedit", strlen("preedit"));
798 window_set_title(editor.window, "Text Editor");
800 widget_set_redraw_handler(editor.widget, redraw_handler);
801 widget_set_resize_handler(editor.widget, resize_handler);
802 widget_set_button_handler(editor.widget, editor_button_handler);
804 window_schedule_resize(editor.window, 500, 400);
806 display_run(editor.display);
808 text_entry_destroy(editor.entry);
809 text_entry_destroy(editor.editor);