source: MondoRescue/trunk/mondo/src/common/newt-specific.h@ 1106

Last change on this file since 1106 was 1106, checked in by Bruno Cornec, 17 years ago

merge -r1082:1105 $SVN_M/branches/stable

  • Property svn:keywords set to Id
File size: 1.2 KB
RevLine 
[1]1/* newt-specific.h
[59]2 * $Id: newt-specific.h 1106 2007-02-07 22:55:11Z bruno $
[1]3 */
4
[1106]5#ifndef NEWT_SPECIFIC_H
6# define NEWT_SPECIFIC_H
[1]7#ifndef H_NEWT
8#include <newt.h>
9#endif
10
[59]11bool ask_me_yes_or_no(char *prompt);
12bool ask_me_OK_or_cancel(char *prompt);
13void close_evalcall_form(void);
[1106]14void close_progress_form(void);
[59]15void fatal_error(char *error_string);
16void finish(int signal);
17void mvaddstr_and_log_it(int y, int x, char *output);
18void log_file_end_to_screen(char *filename, char *grep_for_me);
19void log_to_screen(const char *fmt, ...);
20void open_evalcall_form(char *title);
21void open_progress_form(char *title, char *b1, char *b2, char *b3,
22 long max_val);
23void popup_and_OK(char *prompt);
[688]24bool popup_and_get_string(char *title, char *b, char *output);
[59]25bool popup_with_buttons(char *p, char *button1, char *button2);
[1106]26void refresh_log_screen(void);
27void setup_newt_stuff(void);
[59]28void update_evalcall_form_ratio(int num, int denom);
29void update_evalcall_form(int curr);
30void update_progress_form(char *blurb3);
31void update_progress_form_full(char *blurb1, char *blurb2, char *blurb3);
[1]32
33
34
35
36
37
[59]38t_bkptype which_backup_media_type(bool);
[1106]39int which_compression_level(void);
[1]40
41
[59]42void popup_changelist_from_file(char *source_file);
[1106]43
44#endif /* NEWT_SPECIFIC_H */
45
Note: See TracBrowser for help on using the repository browser.