source: trunk/EDIT4/ed4_defs.hxx

Last change on this file was 19218, checked in by westram, 2 years ago
  • rename "select" → "highlight" (part II)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.7 KB
Line 
1#ifndef ED4_DEFS_HXX
2#define ED4_DEFS_HXX
3
4#ifndef AW_COLOR_GROUPS_HXX
5#include <aw_color_groups.hxx>
6#endif
7#ifndef AW_WINDOW_HXX
8#include <aw_window.hxx>
9#endif
10#ifndef AW_POSITION_HXX
11#include <aw_position.hxx>
12#endif
13#ifndef ARBDB_BASE_H
14#include <arbdb_base.h>
15#endif
16
17#if defined(DEBUG)
18// #define TRACE_REFRESH
19// #define TRACE_JUMPS
20#endif
21
22#define e4_assert(bed) arb_assert(bed)
23
24class  ED4_root;
25class  ED4_database;
26struct GBS_strstruct;
27
28typedef int ED4_COORDINATE;
29
30enum ED4_EDITMODE {
31    AD_ALIGN,   // add & remove of . possible (default)
32    AD_NOWRITE, // no edits allowed
33    AD_NOWRITE_IF_COMPRESSED,
34    AD_REPLACE, // all edits (overwrite)
35    AD_INSERT   // all edits (insert)
36};
37
38
39// global variables
40extern ED4_root *ED4_ROOT;
41
42extern int INFO_TERM_TEXT_YOFFSET;
43extern int SEQ_TERM_TEXT_YOFFSET;
44
45extern int TERMINAL_HEIGHT;             // standard terminal height (sequences, name, info, etc..)
46extern int MAXSEQUENCECHARACTERLENGTH;  // greatest # of characters in a sequence string terminal
47extern int MAXNAME_WIDTH;               // max. pixel width of ED4_species_name_terminal (effective width also depends on group-nesting)
48extern int MAXINFO_WIDTH;               // pixel width used to display sequence info ("CONS", "4data", etc.)
49extern int FLAG_WIDTH;                  // pixel width used to display species flags (and its header)
50
51extern long ED4_counter;
52
53// use ED4_init_notFoundMessage and ED4_finish_and_show_notFoundMessage to
54// modify the following elements
55#define MAX_SHOWN_MISSING_SPECIES 200U              // limit no of missing species/data printed into not_found_message
56extern size_t         not_found_counter;            // nr of species which haven't been found
57extern GBS_strstruct *not_found_message;            // error message containing (some) missing/unloadable species
58
59extern long         max_seq_terminal_length;        // global maximum of sequence terminal length
60extern ED4_EDITMODE awar_edit_mode;
61extern long         awar_edit_rightward;            // 0 = leftward, 1 = rightward
62extern bool         DRAW;
63
64// globally used defines and flags
65
66#define INFINITE -1
67
68#define SLIDER_OFFSET 5
69
70// these are recommended for accessing ED4_extension:
71#define X_POS       0
72#define Y_POS       1
73#define WIDTH       0
74#define HEIGHT      1
75
76// size of some display elements:
77#define BRACKET_WIDTH        11
78#define SPACER_HEIGHT        5
79#define SPACER_NOCONS_HEIGHT 15     // height of spacer at top of group (used if consensus is hidden and group is folded)
80#define SEQUENCE_INFO_WIDTH  50     // default width of ED4_sequence_info_terminal (overridden via ref-terminal)
81#define TREE_TERMINAL_WIDTH  100    // some default-width (used for ED4_line_terminal only; @@@ has no noteable effect)
82
83#define COLUMN_STAT_ROW_HEIGHT(font_height)     (2.2*(font_height)) // each row contains 2 sub-rows (plus some xtra space)
84#define COLUMN_STAT_ROWS            4
85
86#define MAX_POSSIBLE_SEQ_LENGTH     100000000
87
88#define MAXWINDOWS 5
89
90#define AWAR_EDIT_MODE                  "tmp/edit4/edit_mode"
91#define AWAR_INSERT_MODE                "tmp/edit4/insert_mode"
92#define AWAR_EDIT_SECURITY_LEVEL        "tmp/edit4/security_level"
93#define AWAR_EDIT_SECURITY_LEVEL_ALIGN  "tmp/edit4/security_level_align"
94#define AWAR_EDIT_SECURITY_LEVEL_CHANGE "tmp/edit4/security_level_change"
95#define AWAR_EDIT_CONFIGURATION         "tmp/edit4/configuration"
96
97#define AWAR_EDIT_SEQ_POSITION   "tmp/edit4/jump_to_position%d" // used to create ED4_window.awar_path_for_cursor[]
98#define AWAR_EDIT_ECOLI_POSITION "tmp/edit4/cursor_ref_ecoli%d" // used to create ED4_window.awar_path_for_Ecoli[]
99#define AWAR_EDIT_BASE_POSITION  "tmp/edit4/cursor_to_basepos%d" // used to create ED4_window.awar_path_for_basePos[]
100#define AWAR_EDIT_IUPAC          "tmp/edit4/iupac%d" // used to create ED4_window.awar_path_for_IUPAC[]
101#define AWAR_EDIT_HELIXNR        "tmp/edit4/helixnr%d" // used to create ED4_window.awar_path_for_helixNr[]
102
103#define AWAR_FIELD_CHOSEN "tmp/edit4/field_chosen" // used for field selection box
104
105#define AWAR_EDIT_TITLE_MODE       "edit4/title_mode"
106#define AWAR_EDIT_HELIX_SPACING    "edit4/helix_add_spacing"
107#define AWAR_EDIT_TERMINAL_SPACING "edit4/terminal_add_spacing"
108
109#define CHARACTEROFFSET 5       // spacer-width left of text-terminal
110
111#define NAME_BUFFERSIZE 100 // size of buffer used to build terminal/manager IDs
112
113typedef long ED4_index;
114
115#define ED4_SCROLL_OVERLAP 20   // 15 Pixels overlap
116
117
118enum ED4_level { // has to contain bit values
119    LEV_INVALID         = -1U,
120    LEV_NONE            = 0,
121    LEV_ROOT            = 0x1,
122    LEV_DEVICE          = 0x2,
123    LEV_AREA            = 0x4,
124    LEV_MULTI_SPECIES   = 0x8,
125    LEV_SPECIES         = 0x10,
126    LEV_MULTI_SEQUENCE  = 0x20,
127    LEV_SEQUENCE        = 0x40,
128    LEV_TREE            = 0x80,
129    LEV_SPECIES_NAME    = 0x100,
130    LEV_SEQUENCE_INFO   = 0x200,
131    LEV_SEQUENCE_STRING = 0x400,
132    LEV_ORF             = 0x800,
133    LEV_SPACER          = 0x1000,
134    LEV_LINE            = 0x2000,
135    LEV_MULTI_NAME      = 0x4000,
136    LEV_NAME_MANAGER    = 0x8000,
137    LEV_GROUP           = 0x10000,
138    LEV_ROOTGROUP       = 0x20000,
139    LEV_BRACKET         = 0x40000,
140    LEV_PURE_TEXT       = 0x80000,
141    LEV_COL_STAT        = 0x100000,
142    LEV_FLAG_HEADER     = 0x200000,
143    LEV_FLAG            = 0x400000,
144};
145
146enum ED4_datamode {
147    ED4_D_SPECIES,
148    ED4_D_EXTENDED
149};
150
151
152enum ED4_movemode {
153    ED4_M_NO_MOVE    = 0,
154    ED4_M_HORIZONTAL = 1,
155    ED4_M_VERTICAL   = 2,
156    ED4_M_FREE       = 4
157};
158
159enum ED4_returncode {
160    ED4_R_OK         = 0,
161    ED4_R_WARNING    = 1,
162    ED4_R_IMPOSSIBLE = 2,
163    ED4_R_ERROR      = 4,
164    ED4_R_BREAK      = 8,
165};
166
167enum ED4_AREA_LEVEL {
168    ED4_A_TOP_AREA,
169    ED4_A_MIDDLE_AREA,
170    ED4_A_BOTTOM_AREA,
171    ED4_A_ERROR
172};
173
174enum ED4_properties {
175    PROP_NONE               = 0,
176    PROP_IS_MANAGER         = 0x1,
177    PROP_IS_TERMINAL        = 0x2,
178    PROP_HORIZONTAL         = 0x4,
179    PROP_VERTICAL           = 0x8,
180    PROP_DYNA_RESIZE        = 0x10,              // if set => allowed to resize dynamically (static_prop => object type is capable; auto-copied to dynamic_prop)
181    PROP_SELECTABLE         = 0x20,
182    PROP_DRAGABLE           = 0x40,
183    PROP_MOVABLE            = 0x80,
184    PROP_IS_HANDLE          = 0x100,
185    PROP_CURSOR_ALLOWED     = 0x200,
186    //  PROP_               = 0x400,
187    //  PROP_               = 0x800,
188    PROP_IS_FOLDED          = 0x1000,            // Flag whether group is folded or not
189    PROP_CONSENSUS_RELEVANT = 0x2000,            // contains information relevant for consensus
190    PROP_ALIGNMENT_DATA     = 0x4000,            // contains aligned data (also SAIs)
191};
192
193enum ED4_cursor_move {
194    ED4_C_UP,
195    ED4_C_DOWN,
196    ED4_C_LEFT,
197    ED4_C_RIGHT,
198    ED4_C_NONE
199};
200
201enum ED4_update_flag {
202    ED4_U_UP = 0,
203    ED4_U_UP_DOWN
204};
205
206enum ED4_border_flag {
207    ED4_B_BORDER,
208    ED4_B_INDENT,
209    ED4_B_BOTTOM_AREA
210};
211
212enum ED4_consensus {
213    ED4_K_ADD,
214    ED4_K_SUB
215};
216
217enum ED4_aa_seq_flag {
218    ED4_AA_FRWD_1,
219    ED4_AA_FRWD_2,
220    ED4_AA_FRWD_3,
221    ED4_AA_RVRS_1,
222    ED4_AA_RVRS_2,
223    ED4_AA_RVRS_3,
224    ED4_AA_DB_FIELD
225};
226
227enum ED4_direction {
228    ED4_D_VERTICAL,
229    ED4_D_HORIZONTAL,
230    ED4_D_ALL_DIRECTION,
231};
232
233
234class ED4_base;
235class ED4_terminal;
236class ED4_species_name_terminal;
237
238struct ED4_move_info {
239    ED4_base     *object;                // object to be moved
240    AW_pos        end_x, end_y;          // position to move to
241    ED4_movemode  mode;                  // move mode
242    ED4_level     preferred_parent;      // level to move to
243};
244
245struct ED4_highlighted_entry {
246    ED4_species_name_terminal *object;
247};
248
249
250
251struct ED4_extension { // contains info about graphical properties
252    AW_pos  position[2];        // upper left corner (pos_x, pos_y) in relation to parent
253    // !!! WARNING: This is a hack!!! Every time you change 'position' you HAVE TO call ED4_base::touch_world_cache() !!!
254
255    AW_pos    size[2];          // width and height
256    ED4_index y_folded;         // remember old position of consensus when folding group
257
258    AW::Vector get_size() const { return AW::Vector(size[WIDTH], size[HEIGHT]); }
259    AW::Vector get_parent_offset() const { return AW::Vector(position[X_POS], position[Y_POS]); }
260
261    bool set_size_does_change(int idx, AW_pos value) {
262        // returns true if changed
263        e4_assert(idx == WIDTH || idx == HEIGHT);
264        if (size[idx] != value) {
265            size[idx] = value;
266            return true;
267        }
268        return false;
269    }
270
271#if defined(IMPLEMENT_DUMP)
272    void dump(size_t indent) const;
273#endif // IMPLEMENT_DUMP
274};
275
276struct ED4_scroll_picture {
277    bool scroll;
278    long old_x;
279    long old_y;
280
281    ED4_scroll_picture() : scroll(false), old_x(0), old_y(0) {}
282};
283
284enum ED4_CursorJumpType {
285    ED4_JUMP_CENTERED,          // centers the cursor
286    ED4_JUMP_KEEP_VISIBLE,      // keeps the cursor visible (keeps a fixed margin)
287    ED4_JUMP_KEEP_POSITION,     // paint cursor at previous position
288};
289
290struct ED4_update_info { // if you add new elements, please ensure to initialize them in ED4_base::ED4_base()
291    unsigned int resize : 1;
292    unsigned int refresh : 1;
293    unsigned int clear_at_refresh : 1;
294    unsigned int linked_to_folding_line : 1;
295    unsigned int linked_to_scrolled_rectangle : 1;
296    unsigned int refresh_horizontal_scrolling : 1;
297    unsigned int refresh_vertical_scrolling : 1;
298    unsigned int delete_requested : 1;
299    unsigned int update_requested : 1;
300
301    void set_clear_at_refresh(int value) {
302        clear_at_refresh = value;
303    }
304    void set_refresh(int value) {
305        refresh = value;
306    }
307    void set_resize(int value) {
308        resize = value;
309    }
310
311#if defined(IMPLEMENT_DUMP)
312    void dump(size_t indent) const;
313#endif // IMPLEMENT_DUMP
314};
315
316struct ED4_coords {
317    long top_area_x,
318        top_area_y,
319        top_area_height,
320
321        middle_area_x,
322        middle_area_y,
323
324        window_width,               // of whole window (top and middle area and ... )
325        window_height,              // of whole window (top and middle area and ... )
326
327        window_upper_clip_point,        // absolute coordinate of upper visible clipping point in middle area
328        window_lower_clip_point,        // absolute coordinate of lower visible clipping point in middle area
329        window_left_clip_point,         // absolute coordinate of left  visible clipping point in top and middle area
330        window_right_clip_point;        // absolute coordinate of right visible clipping point in top and middle area
331
332    void clear() {
333        top_area_x = 0;
334        top_area_y = 0;
335        top_area_height = 0;
336
337        middle_area_x = 0;
338        middle_area_y = 0;
339
340        window_width = 0;
341        window_height = 0;
342
343        window_upper_clip_point = 0;
344        window_lower_clip_point = 0;
345        window_left_clip_point = 0;
346        window_right_clip_point = 0;
347    }
348};
349
350#else
351#error ed4_defs.hxx included twice
352#endif
Note: See TracBrowser for help on using the repository browser.