source: tags/cvs_2_svn/ARB_GDE/GDE_extglob.h

Last change on this file was 5148, checked in by westram, 16 years ago
  • replaced global gb_main by GLOBAL_gb_main
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 KB
Line 
1// ================================================================ //
2//                                                                  //
3//   File      : GDE_extglob.h                                      //
4//   Time-stamp: <Thu Feb/28/2008 15:44 MET Coder@ReallySoft.de>    //
5//                                                                  //
6//   Institute of Microbiology (Technical University Munich)        //
7//   http://www.arb-home.de/                                        //
8//                                                                  //
9// ================================================================ //
10
11#ifndef GDE_EXTGLOB_H
12#define GDE_EXTGLOB_H
13
14enum GapCompression {
15    COMPRESS_NONE            = 0,
16    COMPRESS_VERTICAL_GAPS   = 1,
17    COMPRESS_ALL             = 2,
18    COMPRESS_NONINFO_COLUMNS = 3,
19};
20
21#define GDEMAXMENU 100
22
23class AP_filter;
24
25#ifndef GDE_PROTO_H
26#include "GDE_proto.h"
27#endif
28
29extern Gmenu menu[GDEMAXMENU];
30extern int num_menus;
31extern GBDATA *GLOBAL_gb_main;
32
33/* global.h */
34extern int DataType;
35extern int FileFormat,first_select;
36/*int Dirty,OldEditMode,EditMode = INSERT, EditDir = RIGHT;*/
37extern int DisplayAttr,OVERWRITE;
38extern int SCALE;
39extern int BlockInput;
40#ifdef SeeAlloc
41int TotalCalloc = 0;
42int TotalRealloc = 0;
43#endif
44extern char FileName[80];
45extern char current_dir[1024];
46
47/*
48*       Months of the year
49*/
50extern const char *GDEmonth[12];
51/*
52*       Tables for DNA/RNA <--> ASCII translation
53*/
54
55extern int Default_RNA_Trans[];
56extern int Default_DNA_Trans[];
57extern int Default_NA_RTrans[];
58
59
60/*
61*       RGB values for the simple palette
62*/
63
64
65/*
66*       Character->color lookup table
67*/
68
69extern int Default_NAColor_LKUP[];
70extern int Default_PROColor_LKUP[];
71
72extern const char *vert_mito[512];
73extern const char *mycoplasma[512];
74extern const char *universal[512];
75extern const char *yeast[512];
76
77extern const char *three_to_one[23];
78#if 0
79
80extern unsigned char grey0;
81extern unsigned char grey1;
82extern unsigned char grey2;
83extern unsigned char grey3;
84extern unsigned char grey4;
85extern unsigned char grey5;
86extern unsigned char grey6;
87extern unsigned char grey7;
88
89extern unsigned char **greys;
90extern char **grey_pm; /*Pixmap instead of char !?!*/
91#endif
92
93#else
94#error GDE_extglob.h included twice
95#endif // GDE_EXTGLOB_H
Note: See TracBrowser for help on using the repository browser.