Fonction "bkgrnd" dans curses.h

Fonction "bkgrnd" dans curses.h - C++ - Programmation

Marsh Posté le 17-04-2003 à 13:37:14    


    Voilà, j'aimerais savoir comment fonctionne vraiment la fonction wbkgrnd car je n'arrive pas à la faire fonctionner.
 
  ex :
 
create_box(int height, int width, int starty, int startx) {
 
  WINDOW * local_win;
  void *opts;
 
  local_win = newwin(height, width, starty, startx);
  box(local_win, 0, 0);
 
  //wbkgrndset(local_win, COLOR_RED);
  wcolor_set(local_win, COLOR_RED, opts);
 
 
  wrefresh(local_win);
   
  return local_win;
   
}
 
 Merci...
 
 
 
 
 

Reply

Marsh Posté le 17-04-2003 à 13:37:14   

Reply

Marsh Posté le 17-04-2003 à 13:38:57    

man + google

Reply

Marsh Posté le 17-04-2003 à 14:02:42    


  Ben y'a rien qui m'explique comment ca marche dans les man et sur internet...
 
  En fait, j'aimerais faire :
   
         wbkgrndset(local_win, ???);  
 
 Mais je ne sais pas qu'est ce qui faut mettre au point d'interro...
 
 
 
 
 

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed