source: branches/stable/WINDOW/aw_status.hxx

Last change on this file was 17262, checked in by westram, 6 years ago
File size: 1.3 KB
Line 
1// ================================================================= //
2//                                                                   //
3//   File      : aw_status.hxx                                       //
4//   Purpose   : Provide status related functions                    //
5//                                                                   //
6//   Coded by Ralf Westram (coder@reallysoft.de) in September 2010   //
7//   Institute of Microbiology (Technical University Munich)         //
8//   http://www.arb-home.de/                                         //
9//                                                                   //
10// ================================================================= //
11
12#ifndef AW_STATUS_HXX
13#define AW_STATUS_HXX
14
15void aw_status_title(const char *text);    // set status title
16void aw_status_subtitle(const char *text); // set statustext
17void aw_status_gauge(double gauge);        // set progress bar
18
19bool aw_status_aborted(); // return 1 if 'Abort' button has been pressed
20
21// ---------------------
22//      progress bar
23
24void aw_openstatus(const char *title); // show status
25void aw_closestatus();                 // hide status
26
27// special for EDIT4 (obsolete - nobody listens to EDIT4-errors)
28void aw_clear_message_cb(AW_window *aww);
29
30#else
31#error aw_status.hxx included twice
32#endif // AW_STATUS_HXX
Note: See TracBrowser for help on using the repository browser.