2000-04-26 04:03:38 -04:00
|
|
|
#ifndef __GUI_ENTRY_H
|
|
|
|
#define __GUI_ENTRY_H
|
|
|
|
|
|
|
|
void gui_entry_set_prompt(const char *str);
|
|
|
|
|
2000-05-04 06:32:42 -04:00
|
|
|
/* permanent prompt can't be overwritten with gui_entry_set_prompt() */
|
|
|
|
void gui_entry_set_perm_prompt(const char *str);
|
|
|
|
void gui_entry_remove_perm_prompt(void);
|
2001-01-04 13:01:51 -05:00
|
|
|
void gui_entry_set_hidden(int hidden);
|
2000-05-04 06:32:42 -04:00
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
void gui_entry_set_text(const char *str);
|
|
|
|
char *gui_entry_get_text(void);
|
|
|
|
|
|
|
|
void gui_entry_insert_text(const char *str);
|
|
|
|
void gui_entry_insert_char(char chr);
|
2000-06-14 14:02:13 -04:00
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
void gui_entry_erase(int size);
|
2000-06-14 14:02:13 -04:00
|
|
|
void gui_entry_erase_word(void);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
int gui_entry_get_pos(void);
|
|
|
|
void gui_entry_set_pos(int pos);
|
|
|
|
void gui_entry_move_pos(int pos);
|
2000-07-22 20:29:31 -04:00
|
|
|
void gui_entry_move_words(int count);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
void gui_entry_redraw(void);
|
|
|
|
|
|
|
|
void gui_entry_init(void);
|
|
|
|
void gui_entry_deinit(void);
|
|
|
|
|
|
|
|
#endif
|