a8ef641beb
included instead. Don't include sys/param.h unconditionally - rely on global.h taking care of it. * Makefile.in: Remove x.h.
93 строки
2.2 KiB
C
93 строки
2.2 KiB
C
/* Dialog managing.
|
|
Copyright (C) 1994 Miguel de Icaza.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#include <config.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <sys/types.h>
|
|
#include <string.h>
|
|
#include "global.h"
|
|
#include "tty.h"
|
|
#include "dialog.h"
|
|
#include "color.h"
|
|
#include "win.h"
|
|
#include "mouse.h"
|
|
#include "main.h"
|
|
#include "key.h" /* For mi_getch() */
|
|
#include "dlg.h" /* draw_box, yes I know, it's silly */
|
|
#include "fileopctx.h"
|
|
|
|
/* "$Id$" */
|
|
|
|
Refresh *refresh_list = 0;
|
|
|
|
void push_refresh (void (*new_refresh)(void *), void *parameter, int flags)
|
|
{
|
|
Refresh *new;
|
|
|
|
new = g_new (Refresh, 1);
|
|
new->next = (struct Refresh *) refresh_list;
|
|
new->refresh_fn = new_refresh;
|
|
new->parameter = parameter;
|
|
new->flags = flags;
|
|
refresh_list = new;
|
|
}
|
|
|
|
void pop_refresh (void)
|
|
{
|
|
Refresh *old;
|
|
|
|
if (!refresh_list)
|
|
fprintf (stderr, _("\n\n\nrefresh stack underflow!\n\n\n"));
|
|
else {
|
|
old = refresh_list;
|
|
refresh_list = refresh_list->next;
|
|
g_free (old);
|
|
}
|
|
}
|
|
|
|
static void do_complete_refresh (Refresh *refresh_list)
|
|
{
|
|
if (!refresh_list)
|
|
return;
|
|
|
|
if (refresh_list->flags != REFRESH_COVERS_ALL)
|
|
do_complete_refresh (refresh_list->next);
|
|
|
|
(*(refresh_list->refresh_fn))(refresh_list->parameter);
|
|
}
|
|
|
|
void do_refresh (void)
|
|
{
|
|
if (we_are_background)
|
|
return;
|
|
|
|
#ifndef HAVE_GNOME
|
|
if (!refresh_list)
|
|
return;
|
|
else {
|
|
if (fast_refresh)
|
|
(*(refresh_list->refresh_fn))(refresh_list->parameter);
|
|
else {
|
|
do_complete_refresh (refresh_list);
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
|