]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/tui/tui.c
2004-02-07 Andrew Cagney <cagney@redhat.com>
[thirdparty/binutils-gdb.git] / gdb / tui / tui.c
CommitLineData
f377b406 1/* General functions for the WDB TUI.
f33c6cbf 2
47d3492a
AC
3 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
4 Foundation, Inc.
f33c6cbf 5
f377b406
SC
6 Contributed by Hewlett-Packard Company.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
c906108c
SS
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <ctype.h>
28#include <malloc.h>
c906108c
SS
29#ifdef HAVE_TERM_H
30#include <term.h>
31#endif
32#include <signal.h>
33#include <fcntl.h>
6d7fbb5a 34#if 0
c906108c 35#include <termio.h>
6d7fbb5a 36#endif
c906108c
SS
37#include <setjmp.h>
38#include "defs.h"
39#include "gdbcmd.h"
d7b2e967
AC
40#include "tui/tui.h"
41#include "tui/tui-data.h"
42#include "tui/tui-layout.h"
43#include "tui/tui-io.h"
44#include "tui/tui-regs.h"
45#include "tui/tui-stack.h"
46#include "tui/tui-win.h"
47#include "tui/tui-winsource.h"
48#include "tui/tui-windata.h"
39db33d6
SC
49#include "readline/readline.h"
50#include "target.h"
51#include "frame.h"
52#include "breakpoint.h"
c6f60bcd 53#include "inferior.h"
52575520
EZ
54#include "symtab.h"
55#include "source.h"
39db33d6 56
96ec9981
DJ
57#ifdef HAVE_NCURSES_H
58#include <ncurses.h>
59#else
60#ifdef HAVE_CURSES_H
61#include <curses.h>
62#endif
63#endif
64
39db33d6
SC
65/* Tells whether the TUI is active or not. */
66int tui_active = 0;
67static int tui_finish_init = 1;
68
6d012f14 69enum tui_key_mode tui_current_key_mode = TUI_COMMAND_MODE;
e09d2eba
SC
70
71struct tui_char_command
72{
73 unsigned char key;
74 const char* cmd;
75};
76
77/* Key mapping to gdb commands when the TUI is using the single key mode. */
78static const struct tui_char_command tui_commands[] = {
79 { 'c', "continue" },
80 { 'd', "down" },
81 { 'f', "finish" },
82 { 'n', "next" },
83 { 'r', "run" },
84 { 's', "step" },
85 { 'u', "up" },
86 { 'v', "info locals" },
87 { 'w', "where" },
88 { 0, 0 },
89};
90
91static Keymap tui_keymap;
92static Keymap tui_readline_standard_keymap;
93
94/* TUI readline command.
95 Switch the output mode between TUI/standard gdb. */
39db33d6 96static int
88fa91b4 97tui_rl_switch_mode (int notused1, int notused2)
c906108c 98{
39db33d6 99 if (tui_active)
c906108c 100 {
39db33d6 101 tui_disable ();
c6f60bcd 102 rl_prep_terminal (0);
39db33d6
SC
103 }
104 else
105 {
c6f60bcd 106 rl_deprep_terminal ();
39db33d6 107 tui_enable ();
c906108c 108 }
c906108c 109
39db33d6
SC
110 /* Clear the readline in case switching occurred in middle of something. */
111 if (rl_end)
112 rl_kill_text (0, rl_end);
113
114 /* Since we left the curses mode, the terminal mode is restored to
115 some previous state. That state may not be suitable for readline
116 to work correctly (it may be restored in line mode). We force an
117 exit of the current readline so that readline is re-entered and it
118 will be able to setup the terminal for its needs. By re-entering
119 in readline, we also redisplay its prompt in the non-curses mode. */
120 rl_newline (1, '\n');
c6f60bcd
SC
121
122 /* Make sure the \n we are returning does not repeat the last command. */
123 dont_repeat ();
39db33d6
SC
124 return 0;
125}
c906108c 126
6ba6ffa2
SC
127/* TUI readline command.
128 Change the TUI layout to show a next layout.
377c38ea
SC
129 This function is bound to CTRL-X 2. It is intended to provide
130 a functionality close to the Emacs split-window command. We always
131 show two windows (src+asm), (src+regs) or (asm+regs). */
132static int
88fa91b4 133tui_rl_change_windows (int notused1, int notused2)
377c38ea
SC
134{
135 if (!tui_active)
88fa91b4 136 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
377c38ea
SC
137
138 if (tui_active)
139 {
2a8854a7
AC
140 enum tui_layout_type new_layout;
141 enum tui_register_display_type regs_type = TUI_UNDEFINED_REGS;
377c38ea 142
dd1abb8c 143 new_layout = tui_current_layout ();
377c38ea
SC
144
145 /* Select a new layout to have a rolling layout behavior
146 with always two windows (except when undefined). */
147 switch (new_layout)
148 {
149 case SRC_COMMAND:
150 new_layout = SRC_DISASSEM_COMMAND;
151 break;
152
153 case DISASSEM_COMMAND:
154 new_layout = SRC_DISASSEM_COMMAND;
155 break;
156
157 case SRC_DATA_COMMAND:
158 new_layout = SRC_DISASSEM_COMMAND;
159 break;
160
161 case SRC_DISASSEM_COMMAND:
162 new_layout = DISASSEM_DATA_COMMAND;
163 break;
164
165 case DISASSEM_DATA_COMMAND:
166 new_layout = SRC_DATA_COMMAND;
167 break;
168
169 default:
170 new_layout = SRC_COMMAND;
171 break;
172 }
080ce8c0 173 tui_set_layout (new_layout, regs_type);
377c38ea
SC
174 }
175 return 0;
176}
177
6ba6ffa2
SC
178/* TUI readline command.
179 Delete the second TUI window to only show one. */
377c38ea 180static int
88fa91b4 181tui_rl_delete_other_windows (int notused1, int notused2)
377c38ea
SC
182{
183 if (!tui_active)
88fa91b4 184 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
377c38ea
SC
185
186 if (tui_active)
187 {
2a8854a7
AC
188 enum tui_layout_type new_layout;
189 enum tui_register_display_type regs_type = TUI_UNDEFINED_REGS;
377c38ea 190
dd1abb8c 191 new_layout = tui_current_layout ();
377c38ea
SC
192
193 /* Kill one window. */
194 switch (new_layout)
195 {
196 case SRC_COMMAND:
197 case SRC_DATA_COMMAND:
198 case SRC_DISASSEM_COMMAND:
199 default:
200 new_layout = SRC_COMMAND;
201 break;
202
203 case DISASSEM_COMMAND:
204 case DISASSEM_DATA_COMMAND:
205 new_layout = DISASSEM_COMMAND;
206 break;
207 }
080ce8c0 208 tui_set_layout (new_layout, regs_type);
377c38ea
SC
209 }
210 return 0;
211}
212
3fc14bdb
SC
213/* TUI readline command.
214 Switch the active window to give the focus to a next window. */
215static int
216tui_rl_other_window (int count, int key)
217{
6ba8e26f 218 struct tui_win_info * win_info;
3fc14bdb
SC
219
220 if (!tui_active)
221 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
222
6ba8e26f
AC
223 win_info = tui_next_win (tui_win_with_focus ());
224 if (win_info)
3fc14bdb 225 {
6ba8e26f 226 tui_set_win_focus_to (win_info);
6d012f14 227 if (TUI_DATA_WIN && TUI_DATA_WIN->generic.is_visible)
edae1ccf 228 tui_refresh_data_win ();
6ba8e26f 229 keypad (TUI_CMD_WIN->generic.handle, (win_info != TUI_CMD_WIN));
3fc14bdb
SC
230 }
231 return 0;
232}
233
e09d2eba
SC
234/* TUI readline command.
235 Execute the gdb command bound to the specified key. */
236static int
237tui_rl_command_key (int count, int key)
238{
239 int i;
240
241 reinitialize_more_filter ();
242 for (i = 0; tui_commands[i].cmd; i++)
243 {
244 if (tui_commands[i].key == key)
245 {
246 /* Must save the command because it can be modified
247 by execute_command. */
248 char* cmd = alloca (strlen (tui_commands[i].cmd) + 1);
249 strcpy (cmd, tui_commands[i].cmd);
250 execute_command (cmd, TRUE);
251 return 0;
252 }
253 }
254 return 0;
255}
256
257/* TUI readline command.
258 Temporarily leave the TUI SingleKey mode to allow editing
259 a gdb command with the normal readline. Once the command
260 is executed, the TUI SingleKey mode is installed back. */
261static int
262tui_rl_command_mode (int count, int key)
263{
6d012f14 264 tui_set_key_mode (TUI_ONE_COMMAND_MODE);
e09d2eba
SC
265 return rl_insert (count, key);
266}
267
268/* TUI readline command.
269 Switch between TUI SingleKey mode and gdb readline editing. */
270static int
88fa91b4 271tui_rl_next_keymap (int notused1, int notused2)
e09d2eba 272{
3fc14bdb
SC
273 if (!tui_active)
274 tui_rl_switch_mode (0/*notused*/, 0/*notused*/);
275
6d012f14
AC
276 tui_set_key_mode (tui_current_key_mode == TUI_COMMAND_MODE
277 ? TUI_SINGLE_KEY_MODE : TUI_COMMAND_MODE);
e09d2eba
SC
278 return 0;
279}
280
281/* Readline hook to redisplay ourself the gdb prompt.
282 In the SingleKey mode, the prompt is not printed so that
283 the command window is cleaner. It will be displayed if
284 we temporarily leave the SingleKey mode. */
285static int
286tui_rl_startup_hook ()
287{
8cee930b 288 rl_already_prompted = 1;
6d012f14
AC
289 if (tui_current_key_mode != TUI_COMMAND_MODE)
290 tui_set_key_mode (TUI_SINGLE_KEY_MODE);
8cee930b 291 tui_redisplay_readline ();
e09d2eba
SC
292 return 0;
293}
294
295/* Change the TUI key mode by installing the appropriate readline keymap. */
296void
297tui_set_key_mode (enum tui_key_mode mode)
298{
299 tui_current_key_mode = mode;
6d012f14 300 rl_set_keymap (mode == TUI_SINGLE_KEY_MODE
e09d2eba 301 ? tui_keymap : tui_readline_standard_keymap);
47d3492a 302 tui_show_locator_content ();
e09d2eba
SC
303}
304
39db33d6
SC
305/* Initialize readline and configure the keymap for the switching
306 key shortcut. */
c906108c 307void
39db33d6 308tui_initialize_readline ()
c906108c 309{
e09d2eba
SC
310 int i;
311 Keymap tui_ctlx_keymap;
312
39db33d6 313 rl_initialize ();
c906108c 314
6ba6ffa2 315 rl_add_defun ("tui-switch-mode", tui_rl_switch_mode, -1);
e09d2eba
SC
316 rl_add_defun ("gdb-command", tui_rl_command_key, -1);
317 rl_add_defun ("next-keymap", tui_rl_next_keymap, -1);
318
319 tui_keymap = rl_make_bare_keymap ();
320 tui_ctlx_keymap = rl_make_bare_keymap ();
321 tui_readline_standard_keymap = rl_get_keymap ();
322
323 for (i = 0; tui_commands[i].cmd; i++)
324 rl_bind_key_in_map (tui_commands[i].key, tui_rl_command_key, tui_keymap);
325
326 rl_generic_bind (ISKMAP, "\\C-x", (char*) tui_ctlx_keymap, tui_keymap);
327
328 /* Bind all other keys to tui_rl_command_mode so that we switch
329 temporarily from SingleKey mode and can enter a gdb command. */
e3da6fc5 330 for (i = ' '; i < 0x7f; i++)
e09d2eba
SC
331 {
332 int j;
333
334 for (j = 0; tui_commands[j].cmd; j++)
335 if (tui_commands[j].key == i)
336 break;
337
338 if (tui_commands[j].cmd)
339 continue;
340
341 rl_bind_key_in_map (i, tui_rl_command_mode, tui_keymap);
342 }
343
6ba6ffa2 344 rl_bind_key_in_map ('a', tui_rl_switch_mode, emacs_ctlx_keymap);
e09d2eba 345 rl_bind_key_in_map ('a', tui_rl_switch_mode, tui_ctlx_keymap);
6ba6ffa2 346 rl_bind_key_in_map ('A', tui_rl_switch_mode, emacs_ctlx_keymap);
e09d2eba 347 rl_bind_key_in_map ('A', tui_rl_switch_mode, tui_ctlx_keymap);
6ba6ffa2 348 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode, emacs_ctlx_keymap);
e09d2eba 349 rl_bind_key_in_map (CTRL ('A'), tui_rl_switch_mode, tui_ctlx_keymap);
6ba6ffa2 350 rl_bind_key_in_map ('1', tui_rl_delete_other_windows, emacs_ctlx_keymap);
e09d2eba 351 rl_bind_key_in_map ('1', tui_rl_delete_other_windows, tui_ctlx_keymap);
6ba6ffa2 352 rl_bind_key_in_map ('2', tui_rl_change_windows, emacs_ctlx_keymap);
e09d2eba 353 rl_bind_key_in_map ('2', tui_rl_change_windows, tui_ctlx_keymap);
3fc14bdb
SC
354 rl_bind_key_in_map ('o', tui_rl_other_window, emacs_ctlx_keymap);
355 rl_bind_key_in_map ('o', tui_rl_other_window, tui_ctlx_keymap);
e09d2eba
SC
356 rl_bind_key_in_map ('q', tui_rl_next_keymap, tui_keymap);
357 rl_bind_key_in_map ('s', tui_rl_next_keymap, emacs_ctlx_keymap);
358 rl_bind_key_in_map ('s', tui_rl_next_keymap, tui_ctlx_keymap);
39db33d6 359}
c906108c 360
39db33d6
SC
361/* Enter in the tui mode (curses).
362 When in normal mode, it installs the tui hooks in gdb, redirects
363 the gdb output, configures the readline to work in tui mode.
364 When in curses mode, it does nothing. */
c906108c 365void
39db33d6 366tui_enable (void)
c906108c 367{
39db33d6
SC
368 if (tui_active)
369 return;
370
371 /* To avoid to initialize curses when gdb starts, there is a defered
372 curses initialization. This initialization is made only once
373 and the first time the curses mode is entered. */
374 if (tui_finish_init)
c906108c 375 {
39db33d6
SC
376 WINDOW *w;
377
378 w = initscr ();
379
377c38ea
SC
380 cbreak ();
381 noecho ();
39db33d6
SC
382 /*timeout (1);*/
383 nodelay(w, FALSE);
384 nl();
385 keypad (w, TRUE);
386 rl_initialize ();
dd1abb8c
AC
387 tui_set_term_height_to (LINES);
388 tui_set_term_width_to (COLS);
39db33d6
SC
389 def_prog_mode ();
390
47d3492a 391 tui_show_frame_info (0);
080ce8c0 392 tui_set_layout (SRC_COMMAND, TUI_UNDEFINED_REGS);
6d012f14
AC
393 tui_set_win_focus_to (TUI_SRC_WIN);
394 keypad (TUI_CMD_WIN->generic.handle, TRUE);
395 wrefresh (TUI_CMD_WIN->generic.handle);
39db33d6 396 tui_finish_init = 0;
c906108c 397 }
39db33d6
SC
398 else
399 {
400 /* Save the current gdb setting of the terminal.
401 Curses will restore this state when endwin() is called. */
402 def_shell_mode ();
403 clearok (stdscr, TRUE);
404 }
c906108c 405
39db33d6
SC
406 /* Install the TUI specific hooks. */
407 tui_install_hooks ();
e09d2eba 408 rl_startup_hook = tui_rl_startup_hook;
c906108c 409
377c38ea
SC
410 tui_update_variables ();
411
39db33d6 412 tui_setup_io (1);
c906108c 413
39db33d6 414 tui_active = 1;
6e7f8b9c 415 if (deprecated_selected_frame)
47d3492a 416 tui_show_frame_info (deprecated_selected_frame);
297d1607 417
e3da6fc5
SC
418 /* Restore TUI keymap. */
419 tui_set_key_mode (tui_current_key_mode);
a21fcd8f 420 tui_refresh_all_win ();
1533ce99
SC
421
422 /* Update gdb's knowledge of its terminal. */
423 target_terminal_save_ours ();
3e752b04 424 tui_update_gdb_sizes ();
39db33d6
SC
425}
426
427/* Leave the tui mode.
428 Remove the tui hooks and configure the gdb output and readline
429 back to their original state. The curses mode is left so that
430 the terminal setting is restored to the point when we entered. */
c906108c 431void
39db33d6 432tui_disable (void)
c906108c 433{
39db33d6
SC
434 if (!tui_active)
435 return;
c906108c 436
e3da6fc5
SC
437 /* Restore initial readline keymap. */
438 rl_set_keymap (tui_readline_standard_keymap);
439
39db33d6
SC
440 /* Remove TUI hooks. */
441 tui_remove_hooks ();
e09d2eba
SC
442 rl_startup_hook = 0;
443 rl_already_prompted = 0;
c906108c 444
39db33d6
SC
445 /* Leave curses and restore previous gdb terminal setting. */
446 endwin ();
c906108c 447
39db33d6
SC
448 /* gdb terminal has changed, update gdb internal copy of it
449 so that terminal management with the inferior works. */
450 tui_setup_io (0);
c906108c 451
1533ce99
SC
452 /* Update gdb's knowledge of its terminal. */
453 target_terminal_save_ours ();
454
39db33d6 455 tui_active = 0;
3e752b04 456 tui_update_gdb_sizes ();
39db33d6 457}
c906108c 458
c906108c 459void
6ba8e26f 460strcat_to_buf (char *buf, int buflen, const char *item_to_add)
c906108c 461{
6ba8e26f 462 if (item_to_add != (char *) NULL && buf != (char *) NULL)
c906108c 463 {
6ba8e26f
AC
464 if ((strlen (buf) + strlen (item_to_add)) <= buflen)
465 strcat (buf, item_to_add);
c906108c 466 else
6ba8e26f 467 strncat (buf, item_to_add, (buflen - strlen (buf)));
c906108c 468 }
c906108c
SS
469}
470
39db33d6
SC
471#if 0
472/* Solaris <sys/termios.h> defines CTRL. */
473#ifndef CTRL
474#define CTRL(x) (x & ~0140)
475#endif
c906108c 476
39db33d6
SC
477#define FILEDES 2
478#define CHK(val, dft) (val<=0 ? dft : val)
c906108c
SS
479
480static void
6ba8e26f 481tui_reset (void)
c906108c
SS
482{
483 struct termio mode;
484
485 /*
c5aa993b
JM
486 ** reset the teletype mode bits to a sensible state.
487 ** Copied tset.c
488 */
c906108c
SS
489#if ! defined (USG) && defined (TIOCGETC)
490 struct tchars tbuf;
491#endif /* !USG && TIOCGETC */
492#ifdef UCB_NTTY
493 struct ltchars ltc;
494
495 if (ldisc == NTTYDISC)
496 {
497 ioctl (FILEDES, TIOCGLTC, &ltc);
498 ltc.t_suspc = CHK (ltc.t_suspc, CTRL ('Z'));
499 ltc.t_dsuspc = CHK (ltc.t_dsuspc, CTRL ('Y'));
500 ltc.t_rprntc = CHK (ltc.t_rprntc, CTRL ('R'));
501 ltc.t_flushc = CHK (ltc.t_flushc, CTRL ('O'));
502 ltc.t_werasc = CHK (ltc.t_werasc, CTRL ('W'));
503 ltc.t_lnextc = CHK (ltc.t_lnextc, CTRL ('V'));
504 ioctl (FILEDES, TIOCSLTC, &ltc);
505 }
506#endif /* UCB_NTTY */
507#ifndef USG
508#ifdef TIOCGETC
509 ioctl (FILEDES, TIOCGETC, &tbuf);
510 tbuf.t_intrc = CHK (tbuf.t_intrc, CTRL ('?'));
511 tbuf.t_quitc = CHK (tbuf.t_quitc, CTRL ('\\'));
512 tbuf.t_startc = CHK (tbuf.t_startc, CTRL ('Q'));
513 tbuf.t_stopc = CHK (tbuf.t_stopc, CTRL ('S'));
514 tbuf.t_eofc = CHK (tbuf.t_eofc, CTRL ('D'));
515 /* brkc is left alone */
516 ioctl (FILEDES, TIOCSETC, &tbuf);
517#endif /* TIOCGETC */
518 mode.sg_flags &= ~(RAW
519#ifdef CBREAK
520 | CBREAK
521#endif /* CBREAK */
522 | VTDELAY | ALLDELAY);
523 mode.sg_flags |= XTABS | ECHO | CRMOD | ANYP;
c5aa993b 524#else /*USG */
c906108c
SS
525 ioctl (FILEDES, TCGETA, &mode);
526 mode.c_cc[VINTR] = CHK (mode.c_cc[VINTR], CTRL ('?'));
527 mode.c_cc[VQUIT] = CHK (mode.c_cc[VQUIT], CTRL ('\\'));
528 mode.c_cc[VEOF] = CHK (mode.c_cc[VEOF], CTRL ('D'));
529
530 mode.c_iflag &= ~(IGNBRK | PARMRK | INPCK | INLCR | IGNCR | IUCLC | IXOFF);
531 mode.c_iflag |= (BRKINT | ISTRIP | ICRNL | IXON);
532 mode.c_oflag &= ~(OLCUC | OCRNL | ONOCR | ONLRET | OFILL | OFDEL |
533 NLDLY | CRDLY | TABDLY | BSDLY | VTDLY | FFDLY);
534 mode.c_oflag |= (OPOST | ONLCR);
535 mode.c_cflag &= ~(CSIZE | PARODD | CLOCAL);
536#ifndef hp9000s800
537 mode.c_cflag |= (CS8 | CREAD);
c5aa993b 538#else /*hp9000s800 */
c906108c
SS
539 mode.c_cflag |= (CS8 | CSTOPB | CREAD);
540#endif /* hp9000s800 */
541 mode.c_lflag &= ~(XCASE | ECHONL | NOFLSH);
542 mode.c_lflag |= (ISIG | ICANON | ECHO | ECHOK);
543 ioctl (FILEDES, TCSETAW, &mode);
544#endif /* USG */
545
546 return;
6ba8e26f 547}
39db33d6
SC
548#endif
549
c6f60bcd
SC
550void
551tui_show_source (const char *file, int line)
552{
52575520 553 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
c6f60bcd 554 /* make sure that the source window is displayed */
080ce8c0 555 tui_add_win_to_layout (SRC_WIN);
c6f60bcd 556
f80bda8e 557 tui_update_source_windows_with_line (cursal.symtab, line);
47d3492a 558 tui_update_locator_filename (file);
c6f60bcd 559}
1403b519
SC
560
561void
562tui_show_assembly (CORE_ADDR addr)
563{
080ce8c0 564 tui_add_win_to_layout (DISASSEM_WIN);
f80bda8e 565 tui_update_source_windows_with_addr (addr);
1403b519
SC
566}
567
568int
22940a24 569tui_is_window_visible (enum tui_win_type type)
1403b519 570{
021e7609 571 if (tui_active == 0)
1403b519
SC
572 return 0;
573
6d012f14 574 if (tui_win_list[type] == 0)
1403b519
SC
575 return 0;
576
6d012f14 577 return tui_win_list[type]->generic.is_visible;
1403b519
SC
578}
579
580int
581tui_get_command_dimension (int *width, int *height)
582{
6d012f14 583 if (!tui_active || (TUI_CMD_WIN == NULL))
1403b519
SC
584 {
585 return 0;
586 }
587
6d012f14
AC
588 *width = TUI_CMD_WIN->generic.width;
589 *height = TUI_CMD_WIN->generic.height;
1403b519
SC
590 return 1;
591}