2010-08-11 02:58:50 +08:00
|
|
|
#include <newt.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "../cache.h"
|
|
|
|
#include "../debug.h"
|
|
|
|
#include "browser.h"
|
|
|
|
#include "helpline.h"
|
|
|
|
|
|
|
|
static void newt_suspend(void *d __used)
|
|
|
|
{
|
|
|
|
newtSuspend();
|
|
|
|
raise(SIGTSTP);
|
|
|
|
newtResume();
|
|
|
|
}
|
|
|
|
|
2011-02-01 04:08:39 +08:00
|
|
|
void setup_browser(bool fallback_to_pager)
|
2010-08-11 02:58:50 +08:00
|
|
|
{
|
|
|
|
if (!isatty(1) || !use_browser || dump_trace) {
|
|
|
|
use_browser = 0;
|
2011-02-01 04:08:39 +08:00
|
|
|
if (fallback_to_pager)
|
|
|
|
setup_pager();
|
2010-08-11 02:58:50 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
use_browser = 1;
|
|
|
|
newtInit();
|
|
|
|
newtCls();
|
|
|
|
newtSetSuspendCallback(newt_suspend, NULL);
|
|
|
|
ui_helpline__init();
|
|
|
|
ui_browser__init();
|
|
|
|
}
|
|
|
|
|
|
|
|
void exit_browser(bool wait_for_ok)
|
|
|
|
{
|
|
|
|
if (use_browser > 0) {
|
|
|
|
if (wait_for_ok) {
|
|
|
|
char title[] = "Fatal Error", ok[] = "Ok";
|
|
|
|
newtWinMessage(title, ok, ui_helpline__last_msg);
|
|
|
|
}
|
|
|
|
newtFinished();
|
|
|
|
}
|
|
|
|
}
|