|
Revision 6867, 1.2 KB
(checked in by westram, 20 months ago)
|
- ARB GUI (merges [6844] [6845] [6847] [6858] [6861] from refactor)
- new central header cb.h (planned to define ALL callbacks used in ARB here later)
- refactored callback handling for some AW_root callbacks
- AW_root_callback hides function ptr + arguments
- AW_root_cblist hides lists of AW_root_callback
- DRYed AW_RCB
- reduced tight coupling between some of WINDOW/*.hxx (omg)
- removed AWUSE
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | // =========================================================== // |
|---|
| 2 | // // |
|---|
| 3 | // File : awt_www.hxx // |
|---|
| 4 | // Purpose : // |
|---|
| 5 | // // |
|---|
| 6 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 7 | // http://www.arb-home.de/ // |
|---|
| 8 | // // |
|---|
| 9 | // =========================================================== // |
|---|
| 10 | |
|---|
| 11 | #ifndef AWT_WWW_HXX |
|---|
| 12 | #define AWT_WWW_HXX |
|---|
| 13 | |
|---|
| 14 | #ifndef AW_BASE_HXX |
|---|
| 15 | #include <aw_base.hxx> |
|---|
| 16 | #endif |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | AW_window *AWT_open_www_window(AW_root *aw_root, AW_CL cgb_main); |
|---|
| 20 | void awt_openDefaultURL_on_species(AW_window *aww, GBDATA *gb_main); |
|---|
| 21 | void awt_create_aww_vars(AW_root *aw_root, AW_default aw_def); |
|---|
| 22 | GB_ERROR awt_openURL_by_gbd(AW_root *aw_root, GBDATA *gb_main, GBDATA *gbd, const char *name); |
|---|
| 23 | GB_ERROR awt_open_ACISRT_URL_by_gbd(AW_root *aw_root, GBDATA *gb_main, GBDATA *gbd, const char *name, const char *url_srt); |
|---|
| 24 | |
|---|
| 25 | #else |
|---|
| 26 | #error awt_www.hxx included twice |
|---|
| 27 | #endif // AWT_WWW_HXX |
|---|