| 24 |
|
|
| 25 |
struct editor_data_t |
struct editor_data_t |
| 26 |
{ |
{ |
|
char *p_data_lines[MAX_EDITOR_DATA_LINES]; |
|
|
long data_line_total; |
|
| 27 |
char *p_display_lines[MAX_EDITOR_DATA_LINES]; |
char *p_display_lines[MAX_EDITOR_DATA_LINES]; |
| 28 |
long display_line_lengths[MAX_EDITOR_DATA_LINES]; |
long display_line_lengths[MAX_EDITOR_DATA_LINES]; |
| 29 |
long display_line_total; |
long display_line_total; |
| 30 |
}; |
}; |
| 31 |
typedef struct editor_data_t EDITOR_DATA; |
typedef struct editor_data_t EDITOR_DATA; |
| 32 |
|
|
| 33 |
|
struct editor_ctx_t |
| 34 |
|
{ |
| 35 |
|
int reach_begin; |
| 36 |
|
int reach_end; |
| 37 |
|
long line_cursor; |
| 38 |
|
char msg[MSG_EXT_MAX_LEN]; |
| 39 |
|
}; |
| 40 |
|
typedef struct editor_ctx_t EDITOR_CTX; |
| 41 |
|
|
| 42 |
extern EDITOR_DATA *editor_data_load(const char *p_data); |
extern EDITOR_DATA *editor_data_load(const char *p_data); |
| 43 |
extern long editor_data_save(const EDITOR_DATA *p_editor_data, char *p_data, size_t buf_len); |
extern long editor_data_save(const EDITOR_DATA *p_editor_data, char *p_data, size_t buf_len); |
| 44 |
extern void editor_data_cleanup(EDITOR_DATA *p_editor_data); |
extern void editor_data_cleanup(EDITOR_DATA *p_editor_data); |
| 45 |
|
|
| 46 |
extern int editor_display(EDITOR_DATA *p_editor_data); |
extern int editor_display(EDITOR_DATA *p_editor_data); |
| 47 |
|
|
| 48 |
|
extern int editor_data_insert(EDITOR_DATA *p_editor_data, long *p_display_line, long *p_offset, |
| 49 |
|
const char *str, int str_len, long *p_last_updated_line); |
| 50 |
|
|
| 51 |
|
extern int editor_data_delete(EDITOR_DATA *p_editor_data, long display_line, long offset, |
| 52 |
|
long *p_last_updated_line); |
| 53 |
|
|
| 54 |
#endif //_EDITOR_H_ |
#endif //_EDITOR_H_ |