|
Revision 5834, 1.4 KB
(checked in by westram, 3 years ago)
|
- novice mode -> expert mode (thx to Elmar Pruesse)
- expert mode automatically propagates to clients
- reassigned which items are visible in non-expert-mode
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | // ================================================================ // |
|---|
| 2 | // // |
|---|
| 3 | // File : gde.hxx // |
|---|
| 4 | // Purpose : external interface of GDE functionality // |
|---|
| 5 | // // |
|---|
| 6 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 7 | // http://www.arb-home.de/ // |
|---|
| 8 | // // |
|---|
| 9 | // ================================================================ // |
|---|
| 10 | |
|---|
| 11 | #ifndef GDE_HXX |
|---|
| 12 | #define GDE_HXX |
|---|
| 13 | |
|---|
| 14 | typedef unsigned char uchar; |
|---|
| 15 | typedef enum { CGSS_WT_DEFAULT, CGSS_WT_EDIT, CGSS_WT_EDIT4 } gde_cgss_window_type; |
|---|
| 16 | |
|---|
| 17 | void create_gde_var(AW_root *aw_root, AW_default aw_def, |
|---|
| 18 | char *(*get_sequences)(void *THIS, GBDATA **&the_species, |
|---|
| 19 | uchar **&the_names, |
|---|
| 20 | uchar **&the_sequences, |
|---|
| 21 | long &numberspecies,long &maxalignlen)=0, |
|---|
| 22 | gde_cgss_window_type wt=CGSS_WT_DEFAULT, |
|---|
| 23 | void *THIS = 0); |
|---|
| 24 | |
|---|
| 25 | void GDE_load_menu(AW_window *awm,AW_active, const char *menulabel=0,const char *menuitemlabel=0 ); |
|---|
| 26 | |
|---|
| 27 | #else |
|---|
| 28 | #error gde.hxx included twice |
|---|
| 29 | #endif // GDE_HXX |
|---|