source: branches/stable/STAT/st_window.hxx

Last change on this file was 14455, checked in by westram, 8 years ago
  • AW_CB0WindowCallbackSimple
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1// =========================================================== //
2//                                                             //
3//   File      : st_window.hxx                                 //
4//   Purpose   :                                               //
5//                                                             //
6//   Institute of Microbiology (Technical University Munich)   //
7//   http://www.arb-home.de/                                   //
8//                                                             //
9// =========================================================== //
10
11#ifndef ST_WINDOW_HXX
12#define ST_WINDOW_HXX
13
14#ifndef AW_WINDOW_HXX
15#include <aw_window.hxx>
16#endif
17
18class ST_ML;
19class AP_tree;
20
21void       STAT_set_postcalc_callback(ST_ML *st_ml, WindowCallbackSimple postcalc_cb, AW_window *cb_win);
22AW_window *STAT_create_main_window(AW_root *aw_root, ST_ML *st_ml);
23
24ST_ML *STAT_create_ST_ML(GBDATA *gb_main);
25void   STAT_destroy_ST_ML(ST_ML*& st_ml);
26
27typedef unsigned char ST_ML_Color;
28enum st_report_enum {
29    ST_QUALITY_REPORT_NONE,
30    ST_QUALITY_REPORT_TEMP,
31    ST_QUALITY_REPORT_YES
32};
33
34AP_tree     *STAT_find_node_by_name(ST_ML *st_ml, const char *species_name);
35ST_ML_Color *STAT_get_color_string(ST_ML *st_ml, char *species_name, AP_tree *node, int start_ali_pos, int end_ali_pos);
36bool         STAT_update_ml_likelihood(ST_ML *st_ml, char *result[4], int& latest_update, const char *species_name, AP_tree *node);
37AW_window   *STAT_create_chimera_check_window(AW_root *aw_root, GBDATA *gb_main);
38
39
40#else
41#error st_window.hxx included twice
42#endif // ST_WINDOW_HXX
Note: See TracBrowser for help on using the repository browser.