mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
Merge of cuix back in trunk
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4309 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
bd3a137c81
commit
8b75299729
12 changed files with 758 additions and 0 deletions
|
|
@ -23,6 +23,10 @@
|
|||
|
||||
#include "term.h"
|
||||
#include "mainwindows.h"
|
||||
#ifdef HAVE_CUIX
|
||||
#include "cuix.h"
|
||||
#endif
|
||||
#include "panel.h"
|
||||
|
||||
#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES)
|
||||
# include <ncurses.h>
|
||||
|
|
@ -349,14 +353,26 @@ void term_refresh_thaw(void)
|
|||
|
||||
void term_refresh(TERM_WINDOW *window)
|
||||
{
|
||||
#ifdef HAVE_CUIX
|
||||
if (!cuix_active) {
|
||||
#endif
|
||||
if (window != NULL)
|
||||
wnoutrefresh(window->win);
|
||||
|
||||
if (freeze_refresh == 0) {
|
||||
move(curs_y, curs_x);
|
||||
wnoutrefresh(stdscr);
|
||||
#ifdef HAVE_CUIX
|
||||
cuix_refresh ();
|
||||
#endif
|
||||
doupdate();
|
||||
}
|
||||
#ifdef HAVE_CUIX
|
||||
} else {
|
||||
update_panels ();
|
||||
doupdate ();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void term_stop(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue