source: tags/arb_5.5/ARB_GDE/GDE_extglob.h

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