source: tags/ms_r18q1/EDIT4/ed4_defs.hxx

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