.
[sfinx.git] / sfinx / batch_ui.C
blobd53056ae5aad7b1409e1349d0dc14df4d39c02d0
2  /*
3   *   Copyright (C) 2007, Rus V. Brushkoff, All rights reserved.
4   */
6 #include <sfinx.H>
8 void batch_ui::init()
12 void batch_ui::run()
14  log("sfinx:run", "Starting batch sfinx jobs ...");
15  sfinx->load_module_conf(SFINX_FILES_MODULE_CONF_REQUEST);
16  while(1)
17    idle();
20 void batch_ui::alert(bool fatal, const char *fmt, ...)
22  char buf[10240];
23  ::va_list args;
24  ::va_start(args, fmt);
25  ::va_end(args);
26  ::vsnprintf(buf, sizeof(buf), fmt, args);
27 // alert_txt->label(buf);
28 // alert_w->show();
29 // alert_w->take_focus(alert_button);
30 // f_text_display->top(alert_w);
31 // alert_button->user_data((void *)fatal);