summaryrefslogtreecommitdiffstats
path: root/src/tui.h
diff options
context:
space:
mode:
authormongo <andmarti@gmail.com>2017-04-06 16:24:29 -0300
committermongo <andmarti@gmail.com>2017-04-06 16:24:29 -0300
commit7248f70ce4c9391abc3355a93aac2004e0eb7018 (patch)
tree660a8f858138316502374f6eaf5b9c06e3e83fac /src/tui.h
parentb66f544f1b2e2fcdf7b36343b833cf712419f639 (diff)
renamed some ui functions
Diffstat (limited to 'src/tui.h')
-rw-r--r--src/tui.h28
1 files changed, 13 insertions, 15 deletions
diff --git a/src/tui.h b/src/tui.h
index 4a49952..7869eda 100644
--- a/src/tui.h
+++ b/src/tui.h
@@ -28,23 +28,21 @@ void ui_print_mult_pend();
void ui_show_header();
void ui_show_celldetails();
void ui_print_mode();
-
-void do_welcome();
-void update(int header);
-void show_content(WINDOW * win, int mxrow, int mxcol);
-void show_sc_row_headings(WINDOW * win, int mxrow);
-void show_sc_col_headings(WINDOW * win, int mxcol);
-int get_formated_value(struct ent ** p, int col, char * value);
-int calc_cols_show();
-void show_cursor(WINDOW * win);
-void handle_cursor();
-void add_cell_detail(char * d, struct ent * p1);
-void write_j(WINDOW * win, const char * word, const unsigned int row, const unsigned int justif);
-
+void ui_do_welcome();
+void ui_update(int header);
+int ui_get_formated_value(struct ent ** p, int col, char * value);
+void ui_handle_cursor();
void yyerror(char *err); // error routine for yacc (gram.y)
-void show_text(char * val);
+void ui_show_text(char * val);
void ui_bail(lua_State *L, char * msg);
char * ui_query(char * initial_msg);
-void ui_set_ucolor(WINDOW * w, struct ucolor * uc);
void ui_start_colors();
void ui_sc_msg(char * s, int type, ...);
+
+void ui_set_ucolor(WINDOW * w, struct ucolor * uc);
+void ui_show_content(WINDOW * win, int mxrow, int mxcol);
+void ui_show_sc_row_headings(WINDOW * win, int mxrow);
+void ui_show_sc_col_headings(WINDOW * win, int mxcol);
+void ui_add_cell_detail(char * d, struct ent * p1);
+void ui_write_j(WINDOW * win, const char * word, const unsigned int row, const unsigned int justif);
+void ui_show_cursor(WINDOW * win);