todo.c: Split out UI-related functions
* Move UI-related functions to "ui-todo.c". * Rename UI-related functions to ui_todo_*(). Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
@@ -914,24 +914,24 @@ void sigs_unignore(void);
|
||||
/* todo.c */
|
||||
extern llist_t todolist;
|
||||
struct todo *todo_get_item(int);
|
||||
void todo_hilt_set(int);
|
||||
void todo_hilt_decrease(int);
|
||||
void todo_hilt_increase(int);
|
||||
int todo_hilt(void);
|
||||
int todo_nb(void);
|
||||
void todo_set_nb(int);
|
||||
void todo_set_first(int);
|
||||
void todo_first_increase(int);
|
||||
void todo_first_decrease(int);
|
||||
int todo_hilt_pos(void);
|
||||
char *todo_saved_mesg(void);
|
||||
void ui_todo_hilt_set(int);
|
||||
void ui_todo_hilt_decrease(int);
|
||||
void ui_todo_hilt_increase(int);
|
||||
int ui_todo_hilt(void);
|
||||
int ui_todo_nb(void);
|
||||
void ui_todo_set_nb(int);
|
||||
void ui_todo_set_first(int);
|
||||
void ui_todo_first_increase(int);
|
||||
void ui_todo_first_decrease(int);
|
||||
int ui_todo_hilt_pos(void);
|
||||
char *ui_todo_saved_mesg(void);
|
||||
struct todo *todo_add(char *, int, char *);
|
||||
void todo_write(struct todo *, FILE *);
|
||||
void todo_delete_note(struct todo *);
|
||||
void todo_delete(struct todo *);
|
||||
void todo_flag(struct todo *);
|
||||
void todo_chg_priority(struct todo *, int);
|
||||
void todo_update_panel(int);
|
||||
void ui_todo_chg_priority(struct todo *, int);
|
||||
void ui_todo_update_panel(int);
|
||||
void todo_edit_note(struct todo *, const char *);
|
||||
void todo_view_note(struct todo *, const char *);
|
||||
void todo_free(struct todo *);
|
||||
|
||||
Reference in New Issue
Block a user