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