source: branches/stable/EDIT4/ed4_defs.hxx

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