📄 tuisourcewin.c
字号:
/* TUI display source/assembly window. Copyright 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. Contributed by Hewlett-Packard Company. This file is part of GDB. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */#include "defs.h"#include <ctype.h>#include "symtab.h"#include "frame.h"#include "breakpoint.h"#include "value.h"#include "source.h"#include "tui.h"#include "tuiData.h"#include "tuiStack.h"#include "tuiWin.h"#include "tuiGeneralWin.h"#include "tuiSourceWin.h"#include "tuiSource.h"#include "tuiDisassem.h"#ifdef HAVE_NCURSES_H #include <ncurses.h>#else#ifdef HAVE_CURSES_H#include <curses.h>#endif#endif/* Function to display the "main" routine. */voidtui_display_main (void){ if ((sourceWindows ())->count > 0) { CORE_ADDR addr; addr = tuiGetBeginAsmAddress (); if (addr != (CORE_ADDR) 0) { struct symtab_and_line sal; tuiUpdateSourceWindowsWithAddr (addr); sal = find_pc_line (addr, 0); if (sal.symtab) tuiUpdateLocatorFilename (sal.symtab->filename); else tuiUpdateLocatorFilename ("??"); } }}/* ** tuiUpdateSourceWindow(). ** Function to display source in the source window. This function ** initializes the horizontal scroll to 0. */voidtuiUpdateSourceWindow (TuiWinInfoPtr winInfo, struct symtab *s, TuiLineOrAddress lineOrAddr, int noerror){ winInfo->detail.sourceInfo.horizontalOffset = 0; tuiUpdateSourceWindowAsIs (winInfo, s, lineOrAddr, noerror); return;} /* tuiUpdateSourceWindow *//* ** tuiUpdateSourceWindowAsIs(). ** Function to display source in the source/asm window. This ** function shows the source as specified by the horizontal offset. */voidtuiUpdateSourceWindowAsIs (TuiWinInfoPtr winInfo, struct symtab *s, TuiLineOrAddress lineOrAddr, int noerror){ TuiStatus ret; if (winInfo->generic.type == SRC_WIN) ret = tuiSetSourceContent (s, lineOrAddr.lineNo, noerror); else ret = tuiSetDisassemContent (lineOrAddr.addr); if (ret == TUI_FAILURE) { tuiClearSourceContent (winInfo, EMPTY_SOURCE_PROMPT); tuiClearExecInfoContent (winInfo); } else { tui_update_breakpoint_info (winInfo, 0); tuiShowSourceContent (winInfo); tuiUpdateExecInfo (winInfo); if (winInfo->generic.type == SRC_WIN) { struct symtab_and_line sal; sal.line = lineOrAddr.lineNo + (winInfo->generic.contentSize - 2); sal.symtab = s; set_current_source_symtab_and_line (&sal); /* ** If the focus was in the asm win, put it in the src ** win if we don't have a split layout */ if (tuiWinWithFocus () == disassemWin && currentLayout () != SRC_DISASSEM_COMMAND) tuiSetWinFocusTo (srcWin); } } return;} /* tuiUpdateSourceWindowAsIs *//* ** tuiUpdateSourceWindowsWithAddr(). ** Function to ensure that the source and/or disassemly windows ** reflect the input address. */voidtuiUpdateSourceWindowsWithAddr (CORE_ADDR addr){ if (addr != 0) { struct symtab_and_line sal; TuiLineOrAddress l; switch (currentLayout ()) { case DISASSEM_COMMAND: case DISASSEM_DATA_COMMAND: tuiShowDisassem (addr); break; case SRC_DISASSEM_COMMAND: tuiShowDisassemAndUpdateSource (addr); break; default: sal = find_pc_line (addr, 0); l.lineNo = sal.line; tuiShowSource (sal.symtab, l, FALSE); break; } } else { int i; for (i = 0; i < (sourceWindows ())->count; i++) { TuiWinInfoPtr winInfo = (TuiWinInfoPtr) (sourceWindows ())->list[i]; tuiClearSourceContent (winInfo, EMPTY_SOURCE_PROMPT); tuiClearExecInfoContent (winInfo); } } return;} /* tuiUpdateSourceWindowsWithAddr *//* ** tuiUpdateSourceWindowsWithLine(). ** Function to ensure that the source and/or disassemly windows ** reflect the input address. */voidtuiUpdateSourceWindowsWithLine (struct symtab *s, int line){ CORE_ADDR pc; TuiLineOrAddress l; switch (currentLayout ()) { case DISASSEM_COMMAND: case DISASSEM_DATA_COMMAND: find_line_pc (s, line, &pc); tuiUpdateSourceWindowsWithAddr (pc); break; default: l.lineNo = line; tuiShowSource (s, l, FALSE); if (currentLayout () == SRC_DISASSEM_COMMAND) { find_line_pc (s, line, &pc); tuiShowDisassem (pc); } break; } return;} /* tuiUpdateSourceWindowsWithLine *//* ** tuiClearSourceContent(). */voidtuiClearSourceContent (TuiWinInfoPtr winInfo, int displayPrompt){ if (m_winPtrNotNull (winInfo)) { register int i; winInfo->generic.contentInUse = FALSE; tuiEraseSourceContent (winInfo, displayPrompt); for (i = 0; i < winInfo->generic.contentSize; i++) { TuiWinElementPtr element = (TuiWinElementPtr) winInfo->generic.content[i]; element->whichElement.source.hasBreak = FALSE; element->whichElement.source.isExecPoint = FALSE; } } return;} /* tuiClearSourceContent *//* ** tuiEraseSourceContent(). */voidtuiEraseSourceContent (TuiWinInfoPtr winInfo, int displayPrompt){ int xPos; int halfWidth = (winInfo->generic.width - 2) / 2; if (winInfo->generic.handle != (WINDOW *) NULL) { werase (winInfo->generic.handle); checkAndDisplayHighlightIfNeeded (winInfo); if (displayPrompt == EMPTY_SOURCE_PROMPT) { char *noSrcStr; if (winInfo->generic.type == SRC_WIN) noSrcStr = NO_SRC_STRING; else noSrcStr = NO_DISASSEM_STRING; if (strlen (noSrcStr) >= halfWidth) xPos = 1; else xPos = halfWidth - strlen (noSrcStr); mvwaddstr (winInfo->generic.handle, (winInfo->generic.height / 2), xPos, noSrcStr); /* elz: added this function call to set the real contents of the window to what is on the screen, so that later calls to refresh, do display the correct stuff, and not the old image */ tuiSetSourceContentNil (winInfo, noSrcStr); } tuiRefreshWin (&winInfo->generic); } return;} /* tuiEraseSourceContent *//* Redraw the complete line of a source or disassembly window. */static voidtui_show_source_line (TuiWinInfoPtr winInfo, int lineno){ TuiWinElementPtr line; int x, y; line = (TuiWinElementPtr) winInfo->generic.content[lineno - 1]; if (line->whichElement.source.isExecPoint) wattron (winInfo->generic.handle, A_STANDOUT); mvwaddstr (winInfo->generic.handle, lineno, 1, line->whichElement.source.line); if (line->whichElement.source.isExecPoint) wattroff (winInfo->generic.handle, A_STANDOUT); /* Clear to end of line but stop before the border. */ getyx (winInfo->generic.handle, y, x); while (x + 1 < winInfo->generic.width) { waddch (winInfo->generic.handle, ' '); getyx (winInfo->generic.handle, y, x); }}/* ** tuiShowSourceContent(). */voidtuiShowSourceContent (TuiWinInfoPtr winInfo){ if (winInfo->generic.contentSize > 0) { int lineno; for (lineno = 1; lineno <= winInfo->generic.contentSize; lineno++) tui_show_source_line (winInfo, lineno); } else tuiEraseSourceContent (winInfo, TRUE); checkAndDisplayHighlightIfNeeded (winInfo); tuiRefreshWin (&winInfo->generic); winInfo->generic.contentInUse = TRUE;}/* ** tuiHorizontalSourceScroll(). ** Scroll the source forward or backward horizontally */voidtuiHorizontalSourceScroll (TuiWinInfoPtr winInfo, TuiScrollDirection direction, int numToScroll){ if (winInfo->generic.content != (OpaquePtr) NULL) { int offset; struct symtab *s; struct symtab_and_line cursal = get_current_source_symtab_and_line (); if (cursal.symtab == (struct symtab *) NULL) s = find_pc_symtab (get_frame_pc (deprecated_selected_frame)); else s = cursal.symtab; if (direction == LEFT_SCROLL) offset = winInfo->detail.sourceInfo.horizontalOffset + numToScroll; else { if ((offset = winInfo->detail.sourceInfo.horizontalOffset - numToScroll) < 0) offset = 0;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -