|
Last change
on this file was
10040,
checked in by westram, 13 years ago
|
- arb_edit4 search detail window
- localize macro ids (also localize for each clone-window, not only for each search type)
- store generated windows statically; use same windows for menu-entries and top-area-buttons
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
1.3 KB
|
| Line | |
|---|
| 1 | // ================================================================= // |
|---|
| 2 | // // |
|---|
| 3 | // File : ed4_tools.hxx // |
|---|
| 4 | // Purpose : // |
|---|
| 5 | // // |
|---|
| 6 | // Institute of Microbiology (Technical University Munich) // |
|---|
| 7 | // http://www.arb-home.de/ // |
|---|
| 8 | // // |
|---|
| 9 | // ================================================================= // |
|---|
| 10 | |
|---|
| 11 | #ifndef ED4_TOOLS_HXX |
|---|
| 12 | #define ED4_TOOLS_HXX |
|---|
| 13 | |
|---|
| 14 | #define ED4_IUPAC_EMPTY " " |
|---|
| 15 | |
|---|
| 16 | #define IS_NUCLEOTIDE() (ED4_ROOT->alignment_type==GB_AT_RNA || ED4_ROOT->alignment_type==GB_AT_DNA) |
|---|
| 17 | #define IS_RNA() (ED4_ROOT->alignment_type==GB_AT_RNA) |
|---|
| 18 | #define IS_DNA() (ED4_ROOT->alignment_type==GB_AT_DNA) |
|---|
| 19 | #define IS_AMINO() (ED4_ROOT->alignment_type==GB_AT_AA) |
|---|
| 20 | |
|---|
| 21 | char ED4_encode_iupac(const char bases[ /* 4 */ ], GB_alignment_type ali); |
|---|
| 22 | const char* ED4_decode_iupac(char iupac, GB_alignment_type ali); |
|---|
| 23 | |
|---|
| 24 | void ED4_set_clipping_rectangle(AW_screen_area *rect); |
|---|
| 25 | |
|---|
| 26 | const char *ED4_propertyName(int mode); |
|---|
| 27 | |
|---|
| 28 | #else |
|---|
| 29 | #error ed4_tools.hxx included twice |
|---|
| 30 | #endif // ED4_TOOLS_HXX |
|---|
Note: See
TracBrowser
for help on using the repository browser.