Changeset a7a8f599 in mainline
- Timestamp:
 - 2021-09-27T17:28:49Z (4 years ago)
 - Branches:
 - master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 8603145
 - Parents:
 - 448c448
 - Location:
 - uspace/lib/ui
 - Files:
 - 
      
- 4 edited
 
- 
          
  include/ui/entry.h (modified) (1 diff)
 - 
          
  private/entry.h (modified) (1 diff)
 - 
          
  src/filedialog.c (modified) (1 diff)
 - 
          
  src/promptdialog.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/lib/ui/include/ui/entry.h
r448c448 ra7a8f599 54 54 extern const char *ui_entry_get_text(ui_entry_t *); 55 55 extern errno_t ui_entry_paint(ui_entry_t *); 56 extern void ui_entry_activate(ui_entry_t *); 57 extern void ui_entry_deactivate(ui_entry_t *); 56 58 extern void ui_entry_backspace(ui_entry_t *); 57 59 extern void ui_entry_delete(ui_entry_t *);  - 
      
uspace/lib/ui/private/entry.h
r448c448 ra7a8f599 99 99 extern size_t ui_entry_find_pos(ui_entry_t *, gfx_coord2_t *); 100 100 extern void ui_entry_delete_sel(ui_entry_t *); 101 extern void ui_entry_activate(ui_entry_t *);102 extern void ui_entry_deactivate(ui_entry_t *);103 101 extern void ui_entry_scroll_update(ui_entry_t *, bool); 104 102  - 
      
uspace/lib/ui/src/filedialog.c
r448c448 ra7a8f599 179 179 if (rc != EOK) 180 180 goto error; 181 182 ui_entry_activate(entry); 181 183 182 184 dialog->ename = entry;  - 
      
uspace/lib/ui/src/promptdialog.c
r448c448 ra7a8f599 179 179 if (rc != EOK) 180 180 goto error; 181 182 ui_entry_activate(entry); 181 183 182 184 dialog->ename = entry;  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  