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 | |
---|
15 | void aw_status_title(const char *text); // set status title |
---|
16 | void aw_status_subtitle(const char *text); // set statustext |
---|
17 | void aw_status_gauge(double gauge); // set progress bar |
---|
18 | |
---|
19 | bool aw_status_aborted(); // return 1 if 'Abort' button has been pressed |
---|
20 | |
---|
21 | // --------------------- |
---|
22 | // progress bar |
---|
23 | |
---|
24 | void aw_openstatus(const char *title); // show status |
---|
25 | void aw_closestatus(); // hide status |
---|
26 | |
---|
27 | // special for EDIT4 (obsolete - nobody listens to EDIT4-errors) |
---|
28 | void 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.