Changeset 7481ee19 in mainline for uspace/lib/ui/private/entry.h
- Timestamp:
- 2021-06-23T08:15:00Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a977e37
- Parents:
- 034ce6bb
- git-author:
- Jiri Svoboda <jiri@…> (2021-06-22 17:14:40)
- git-committer:
- Jiri Svoboda <jiri@…> (2021-06-23 08:15:00)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/entry.h
r034ce6bb r7481ee19 54 54 /** Horizontal alignment */ 55 55 gfx_halign_t halign; 56 /** Text entry is read-only */ 57 bool read_only; 56 58 /** Text */ 57 59 char *text; 58 60 /** Pointer is currently inside */ 59 61 bool pointer_inside; 62 /** Entry is activated */ 63 bool active; 60 64 }; 65 66 extern errno_t ui_entry_insert_str(ui_entry_t *, const char *); 67 extern void ui_entry_backspace(ui_entry_t *); 68 extern ui_evclaim_t ui_entry_key_press_unmod(ui_entry_t *, kbd_event_t *); 61 69 62 70 #endif
Note:
See TracChangeset
for help on using the changeset viewer.