Ejemplo n.º 1
0
int owl_popwin_close(owl_popwin *pw)
{
  delwin(pw->popwin);
  delwin(pw->borderwin);
  pw->active=0;
  owl_global_set_needrefresh(&g);
  owl_mainwin_redisplay(owl_global_get_mainwin(&g));
  owl_function_full_redisplay(&g);
  return(0);
}
Ejemplo n.º 2
0
Archivo: owl.c Proyecto: dxiao/barnowl
static int owl_refresh_pre_select_action(owl_ps_action *a, void *data)
{
  owl_colorpair_mgr *cpmgr;

  /* if a resize has been scheduled, deal with it */
  owl_global_check_resize(&g);
  /* update the terminal if we need to */
  owl_window_redraw_scheduled();
  /* On colorpair shortage, reset and redraw /everything/. NOTE: if
   * the current screen uses too many colorpairs, this draws
   * everything twice. But this is unlikely; COLOR_PAIRS is 64 with
   * 8+1 colors, and 256^2 with 256+1 colors. (+1 for default.) */
  cpmgr = owl_global_get_colorpair_mgr(&g);
  if (cpmgr->overflow) {
    owl_function_debugmsg("colorpairs: color shortage; reset pairs and redraw. COLOR_PAIRS = %d", COLOR_PAIRS);
    owl_fmtext_reset_colorpairs(cpmgr);
    owl_function_full_redisplay();
    owl_window_redraw_scheduled();
  }
  return 0;
}