Create a bar at the bottom of the terminal displaying messages and questions. Definition at line 50 of file gui_msgbar.c. 00051 { 00052 win_msgbar = newwin(1, 0, GUI_SIZE_MSGBAR_TOP, 0); 00053 clearok(win_msgbar, TRUE); 00054 if (gui_draw_colors) 00055 wbkgdset(win_msgbar, COLOR_PAIR(GUI_COLOR_BAR)); 00056 else 00057 wbkgdset(win_msgbar, A_REVERSE); 00058 00059 message = g_string_sized_new(32); 00060 00061 /* Hide the cursor by default */ 00062 curs_set(0); 00063 00064 gui_msgbar_refresh(); 00065 }
Here is the call graph for this function:
![]()
Here is the caller graph for this function:
![]() |
1.6.3