static void gui_msgbar_update ( const char *  msg,
int  prio,
int  cursor 
) [static]

Update the text in the message bar.

Definition at line 115 of file gui_msgbar.c.

00116 {
00117         gui_lock();
00118 
00119         /*
00120          * Do not attempt to set the message when there is a message on
00121          * screen with a higher priority
00122          */
00123         if (prio < message_prio) {
00124                 gui_unlock();
00125                 return;
00126         }
00127 
00128         g_string_assign(message, msg);
00129         message_prio = prio;
00130         gui_unlock();
00131 
00132         curs_set(cursor);
00133         gui_msgbar_refresh();
00134         gui_draw_done();
00135 }

Here is the call graph for this function:

Here is the caller graph for this function:

 All Data Structures Files Functions Variables Defines
Generated on Mon Mar 15 04:45:29 2010 for herrie by  doxygen 1.6.3