]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/tui/tui-data.h
dda15d1fbe14d2c1cf20f181b425b96d997339ce
[thirdparty/binutils-gdb.git] / gdb / tui / tui-data.h
1 /* TUI data manipulation routines.
2
3 Copyright (C) 1998-2019 Free Software Foundation, Inc.
4
5 Contributed by Hewlett-Packard Company.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #ifndef TUI_TUI_DATA_H
23 #define TUI_TUI_DATA_H
24
25 #include "tui/tui.h" /* For enum tui_win_type. */
26 #include "gdb_curses.h" /* For WINDOW. */
27 #include "observable.h"
28
29 struct tui_cmd_window;
30 struct tui_source_window_base;
31 struct tui_source_window;
32
33 /* This is a point definition. */
34 struct tui_point
35 {
36 int x, y;
37 };
38
39 /* Generic window information. */
40 struct tui_gen_win_info
41 {
42 protected:
43
44 explicit tui_gen_win_info (enum tui_win_type t)
45 : type (t)
46 {
47 }
48
49 /* This is called after the window is resized, and should update the
50 window's contents. */
51 virtual void rerender ()
52 {
53 }
54
55 virtual void make_window ();
56
57 public:
58
59 virtual ~tui_gen_win_info ();
60
61 /* Call to refresh this window. */
62 virtual void refresh_window ();
63
64 /* Make this window visible or invisible. */
65 virtual void make_visible (bool visible);
66
67 /* Return the name of this type of window. */
68 virtual const char *name () const
69 {
70 return "";
71 }
72
73 /* Resize this window. The parameters are used to set the window's
74 size and position. */
75 virtual void resize (int height, int width,
76 int origin_x, int origin_y);
77
78 /* Return true if this window is visible. */
79 bool is_visible () const
80 {
81 return handle != nullptr;
82 }
83
84 /* Window handle. */
85 WINDOW *handle = nullptr;
86 /* Type of window. */
87 enum tui_win_type type;
88 /* Window width. */
89 int width = 0;
90 /* Window height. */
91 int height = 0;
92 /* Origin of window. */
93 struct tui_point origin = {0, 0};
94 /* Viewport height. */
95 int viewport_height = 0;
96 };
97
98 /* Constant definitions. */
99 #define DEFAULT_TAB_LEN 8
100 #define NO_DATA_STRING "[ No Data Values Displayed ]"
101 #define SRC_NAME "src"
102 #define CMD_NAME "cmd"
103 #define DATA_NAME "regs"
104 #define DISASSEM_NAME "asm"
105 #define HILITE TRUE
106 #define NO_HILITE FALSE
107 #define MIN_WIN_HEIGHT 3
108 #define MIN_CMD_WIN_HEIGHT 3
109
110 /* Strings to display in the TUI status line. */
111 #define SINGLE_KEY "(SingleKey)"
112
113 /* The kinds of layouts available. */
114 enum tui_layout_type
115 {
116 SRC_COMMAND,
117 DISASSEM_COMMAND,
118 SRC_DISASSEM_COMMAND,
119 SRC_DATA_COMMAND,
120 DISASSEM_DATA_COMMAND,
121 UNDEFINED_LAYOUT
122 };
123
124 enum tui_line_or_address_kind
125 {
126 LOA_LINE,
127 LOA_ADDRESS
128 };
129
130 /* Structure describing source line or line address. */
131 struct tui_line_or_address
132 {
133 enum tui_line_or_address_kind loa;
134 union
135 {
136 int line_no;
137 CORE_ADDR addr;
138 } u;
139 };
140
141 /* This defines information about each logical window. */
142 struct tui_win_info : public tui_gen_win_info
143 {
144 protected:
145
146 explicit tui_win_info (enum tui_win_type type);
147 DISABLE_COPY_AND_ASSIGN (tui_win_info);
148
149 /* Scroll the contents vertically. This is only called via
150 forward_scroll and backward_scroll. */
151 virtual void do_scroll_vertical (int num_to_scroll) = 0;
152
153 /* Scroll the contents horizontally. This is only called via
154 left_scroll and right_scroll. */
155 virtual void do_scroll_horizontal (int num_to_scroll) = 0;
156
157 void rerender () override;
158
159 void make_window () override;
160
161 public:
162
163 ~tui_win_info () override
164 {
165 }
166
167 /* Called after all the TUI windows are refreshed, to let this
168 window have a chance to update itself further. */
169 virtual void refresh_all ()
170 {
171 }
172
173 /* Compute the maximum height of this window. */
174 virtual int max_height () const;
175
176 /* Called after the tab width has been changed. */
177 virtual void update_tab_width ()
178 {
179 }
180
181 /* Set whether this window is highglighted. */
182 void set_highlight (bool highlight)
183 {
184 is_highlighted = highlight;
185 }
186
187 /* Methods to scroll the contents of this window. Note that they
188 are named with "_scroll" coming at the end because the more
189 obvious "scroll_forward" is defined as a macro in term.h. */
190 void forward_scroll (int num_to_scroll);
191 void backward_scroll (int num_to_scroll);
192 void left_scroll (int num_to_scroll);
193 void right_scroll (int num_to_scroll);
194
195 /* Return true if this window can be scrolled, false otherwise. */
196 virtual bool can_scroll () const
197 {
198 return true;
199 }
200
201 virtual bool can_box () const
202 {
203 return true;
204 }
205
206 void check_and_display_highlight_if_needed ();
207
208 /* Window title to display. */
209 std::string title;
210
211 /* Can this window ever be highlighted? */
212 bool can_highlight = true;
213
214 /* Is this window highlighted? */
215 bool is_highlighted = false;
216 };
217
218 extern int tui_win_is_auxiliary (enum tui_win_type win_type);
219
220
221 /* Global Data. */
222 extern struct tui_win_info *tui_win_list[MAX_MAJOR_WINDOWS];
223
224 #define TUI_SRC_WIN ((tui_source_window *) tui_win_list[SRC_WIN])
225 #define TUI_DISASM_WIN ((tui_source_window_base *) tui_win_list[DISASSEM_WIN])
226 #define TUI_DATA_WIN ((tui_data_window *) tui_win_list[DATA_WIN])
227 #define TUI_CMD_WIN ((tui_cmd_window *) tui_win_list[CMD_WIN])
228
229 /* An iterator that iterates over all windows. */
230
231 class tui_window_iterator
232 {
233 public:
234
235 typedef tui_window_iterator self_type;
236 typedef struct tui_win_info *value_type;
237 typedef struct tui_win_info *&reference;
238 typedef struct tui_win_info **pointer;
239 typedef std::forward_iterator_tag iterator_category;
240 typedef int difference_type;
241
242 explicit tui_window_iterator (enum tui_win_type type)
243 : m_type (type)
244 {
245 advance ();
246 }
247
248 tui_window_iterator ()
249 : m_type (MAX_MAJOR_WINDOWS)
250 {
251 }
252
253 bool operator!= (const self_type &other) const
254 {
255 return m_type != other.m_type;
256 }
257
258 value_type operator* () const
259 {
260 gdb_assert (m_type < MAX_MAJOR_WINDOWS);
261 return tui_win_list[m_type];
262 }
263
264 self_type &operator++ ()
265 {
266 ++m_type;
267 advance ();
268 return *this;
269 }
270
271 private:
272
273 void advance ()
274 {
275 while (m_type < MAX_MAJOR_WINDOWS && tui_win_list[m_type] == nullptr)
276 ++m_type;
277 }
278
279 int m_type;
280 };
281
282 /* A range adapter for iterating over TUI windows. */
283
284 struct all_tui_windows
285 {
286 tui_window_iterator begin () const
287 {
288 return tui_window_iterator (SRC_WIN);
289 }
290
291 tui_window_iterator end () const
292 {
293 return tui_window_iterator ();
294 }
295 };
296
297
298 /* Data Manipulation Functions. */
299 extern struct tui_win_info *tui_partial_win_by_name (const char *);
300 extern enum tui_layout_type tui_current_layout (void);
301 extern int tui_term_height (void);
302 extern void tui_set_term_height_to (int);
303 extern int tui_term_width (void);
304 extern void tui_set_term_width_to (int);
305 extern struct tui_locator_window *tui_locator_win_info_ptr (void);
306 extern void tui_clear_source_windows_detail (void);
307 extern struct tui_win_info *tui_win_with_focus (void);
308 extern void tui_set_win_with_focus (struct tui_win_info *);
309 extern int tui_win_resized (void);
310 extern void tui_set_win_resized_to (int);
311
312 extern struct tui_win_info *tui_next_win (struct tui_win_info *);
313 extern struct tui_win_info *tui_prev_win (struct tui_win_info *);
314
315 /* Delete all the invisible windows. Note that it is an error to call
316 this when the command window is invisible -- we don't allow the
317 command window to be removed from the layout. */
318 extern void tui_delete_invisible_windows ();
319
320 extern unsigned int tui_tab_width;
321
322 #endif /* TUI_TUI_DATA_H */