ARB
aw_status.hxx
Go to the documentation of this file.
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)
29 
30 #else
31 #error aw_status.hxx included twice
32 #endif // AW_STATUS_HXX
const char * title
Definition: readseq.c:22
void aw_clear_message_cb(AW_window *aww)
Definition: AW_status.cxx:914
void aw_status_subtitle(const char *text)
Definition: AW_status.cxx:1100
bool aw_status_aborted()
Definition: AW_status.cxx:1118
void aw_status_gauge(double gauge)
Definition: AW_status.cxx:1104
void aw_closestatus()
Definition: AW_status.cxx:1093
void aw_status_title(const char *text)
Definition: AW_status.cxx:1097
void aw_openstatus(const char *title)
Definition: AW_status.cxx:1084