* tuiWin.c, tuiWin.h, tui.c, tui.h, tuiCommand.c: Add FSF copyright.
tuiCommand.h, tuiIO.c, tuiIO.h, tuiData.h, tuiData.c: Likewise.
tuiDataWin.c, tuiDataWin.h, tuiDisassem.c, tuiDisassem.h: Likewise.
tuiGeneralWin.c, tuiGeneralWin.h, tuiLayout.c, tuiLayout.h: Likewise.
tuiRegs.c, tuiRegs.h, tuiSource.c, tuiSource.h: Likewise.
tuiSouceWin.c, tuiSourceWin.h, tuiStack.c, tuiStack.h: Likewise.
2001-07-14 19:01:25 +00:00
|
|
|
/* TUI window generic functions.
|
|
|
|
Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
|
|
|
Contributed by Hewlett-Packard Company.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
* tuiWin.c, tuiWin.h, tui.c, tui.h, tuiCommand.c: Add FSF copyright.
tuiCommand.h, tuiIO.c, tuiIO.h, tuiData.h, tuiData.c: Likewise.
tuiDataWin.c, tuiDataWin.h, tuiDisassem.c, tuiDisassem.h: Likewise.
tuiGeneralWin.c, tuiGeneralWin.h, tuiLayout.c, tuiLayout.h: Likewise.
tuiRegs.c, tuiRegs.h, tuiSource.c, tuiSource.h: Likewise.
tuiSouceWin.c, tuiSourceWin.h, tuiStack.c, tuiStack.h: Likewise.
2001-07-14 19:01:25 +00:00
|
|
|
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. */
|
|
|
|
|
|
|
|
/* This module contains procedures for handling tui window functions
|
|
|
|
like resize, scrolling, scrolling, changing focus, etc.
|
|
|
|
|
|
|
|
Author: Susan B. Macchia */
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
2001-07-17 22:22:40 +00:00
|
|
|
#include <ctype.h>
|
1999-04-16 01:35:26 +00:00
|
|
|
#include "defs.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "symtab.h"
|
|
|
|
#include "breakpoint.h"
|
|
|
|
#include "frame.h"
|
2001-07-19 22:47:46 +00:00
|
|
|
#include "cli/cli-cmds.h"
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
#include "tui.h"
|
|
|
|
#include "tuiData.h"
|
|
|
|
#include "tuiGeneralWin.h"
|
|
|
|
#include "tuiStack.h"
|
2001-07-17 22:22:40 +00:00
|
|
|
#include "tuiRegs.h"
|
|
|
|
#include "tuiDisassem.h"
|
|
|
|
#include "tuiSource.h"
|
1999-04-16 01:35:26 +00:00
|
|
|
#include "tuiSourceWin.h"
|
|
|
|
#include "tuiDataWin.h"
|
|
|
|
|
|
|
|
/*******************************
|
|
|
|
** External Declarations
|
|
|
|
********************************/
|
|
|
|
extern void init_page_info ();
|
|
|
|
|
|
|
|
/*******************************
|
|
|
|
** Static Local Decls
|
|
|
|
********************************/
|
2000-05-28 01:12:42 +00:00
|
|
|
static void _makeVisibleWithNewHeight (TuiWinInfoPtr);
|
|
|
|
static void _makeInvisibleAndSetNewHeight (TuiWinInfoPtr, int);
|
|
|
|
static TuiStatus _tuiAdjustWinHeights (TuiWinInfoPtr, int);
|
|
|
|
static int _newHeightOk (TuiWinInfoPtr, int);
|
|
|
|
static void _tuiSetTabWidth_command (char *, int);
|
|
|
|
static void _tuiRefreshAll_command (char *, int);
|
|
|
|
static void _tuiSetWinHeight_command (char *, int);
|
|
|
|
static void _tuiXDBsetWinHeight_command (char *, int);
|
|
|
|
static void _tuiAllWindowsInfo (char *, int);
|
|
|
|
static void _tuiSetFocus_command (char *, int);
|
|
|
|
static void _tuiScrollForward_command (char *, int);
|
|
|
|
static void _tuiScrollBackward_command (char *, int);
|
|
|
|
static void _tuiScrollLeft_command (char *, int);
|
|
|
|
static void _tuiScrollRight_command (char *, int);
|
|
|
|
static void _parseScrollingArgs (char *, TuiWinInfoPtr *, int *);
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/***************************************
|
|
|
|
** DEFINITIONS
|
|
|
|
***************************************/
|
|
|
|
#define WIN_HEIGHT_USAGE "Usage: winheight <win_name> [+ | -] <#lines>\n"
|
|
|
|
#define XDBWIN_HEIGHT_USAGE "Usage: w <#lines>\n"
|
|
|
|
#define FOCUS_USAGE "Usage: focus {<win> | next | prev}\n"
|
|
|
|
|
|
|
|
/***************************************
|
|
|
|
** PUBLIC FUNCTIONS
|
|
|
|
***************************************/
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _initialize_tuiWin().
|
|
|
|
** Function to initialize gdb commands, for tui window manipulation.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
2000-07-30 01:48:28 +00:00
|
|
|
_initialize_tuiWin (void)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
2001-07-19 22:47:46 +00:00
|
|
|
/* Define the classes of commands.
|
|
|
|
They will appear in the help list in the reverse of this order. */
|
|
|
|
|
|
|
|
add_cmd ("tui", class_tui, NO_FUNCTION,
|
|
|
|
"Text User Interface commands.",
|
|
|
|
&cmdlist);
|
|
|
|
|
|
|
|
add_com ("refresh", class_tui, _tuiRefreshAll_command,
|
|
|
|
"Refresh the terminal display.\n");
|
|
|
|
if (xdb_commands)
|
|
|
|
add_com_alias ("U", "refresh", class_tui, 0);
|
|
|
|
add_com ("tabset", class_tui, _tuiSetTabWidth_command,
|
|
|
|
"Set the width (in characters) of tab stops.\n\
|
1999-04-16 01:35:26 +00:00
|
|
|
Usage: tabset <n>\n");
|
2001-07-19 22:47:46 +00:00
|
|
|
add_com ("winheight", class_tui, _tuiSetWinHeight_command,
|
|
|
|
"Set the height of a specified window.\n\
|
1999-04-16 01:35:26 +00:00
|
|
|
Usage: winheight <win_name> [+ | -] <#lines>\n\
|
|
|
|
Window names are:\n\
|
|
|
|
src : the source window\n\
|
|
|
|
cmd : the command window\n\
|
|
|
|
asm : the disassembly window\n\
|
|
|
|
regs : the register display\n");
|
2001-07-19 22:47:46 +00:00
|
|
|
add_com_alias ("wh", "winheight", class_tui, 0);
|
|
|
|
add_info ("win", _tuiAllWindowsInfo,
|
|
|
|
"List of all displayed windows.\n");
|
|
|
|
add_com ("focus", class_tui, _tuiSetFocus_command,
|
|
|
|
"Set focus to named window or next/prev window.\n\
|
1999-04-16 01:35:26 +00:00
|
|
|
Usage: focus {<win> | next | prev}\n\
|
|
|
|
Valid Window names are:\n\
|
|
|
|
src : the source window\n\
|
|
|
|
asm : the disassembly window\n\
|
|
|
|
regs : the register display\n\
|
|
|
|
cmd : the command window\n");
|
2001-07-19 22:47:46 +00:00
|
|
|
add_com_alias ("fs", "focus", class_tui, 0);
|
|
|
|
add_com ("+", class_tui, _tuiScrollForward_command,
|
|
|
|
"Scroll window forward.\nUsage: + [win] [n]\n");
|
|
|
|
add_com ("-", class_tui, _tuiScrollBackward_command,
|
|
|
|
"Scroll window backward.\nUsage: - [win] [n]\n");
|
|
|
|
add_com ("<", class_tui, _tuiScrollLeft_command,
|
|
|
|
"Scroll window forward.\nUsage: < [win] [n]\n");
|
|
|
|
add_com (">", class_tui, _tuiScrollRight_command,
|
|
|
|
"Scroll window backward.\nUsage: > [win] [n]\n");
|
|
|
|
if (xdb_commands)
|
|
|
|
add_com ("w", class_xdb, _tuiXDBsetWinHeight_command,
|
|
|
|
"XDB compatibility command for setting the height of a command window.\n\
|
1999-04-16 01:35:26 +00:00
|
|
|
Usage: w <#lines>\n");
|
2001-07-19 22:47:46 +00:00
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiClearWinFocusFrom
|
|
|
|
** Clear the logical focus from winInfo
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
2001-07-14 19:31:09 +00:00
|
|
|
tuiClearWinFocusFrom (TuiWinInfoPtr winInfo)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
if (m_winPtrNotNull (winInfo))
|
|
|
|
{
|
|
|
|
if (winInfo->generic.type != CMD_WIN)
|
|
|
|
unhighlightWin (winInfo);
|
|
|
|
tuiSetWinWithFocus ((TuiWinInfoPtr) NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiClearWinFocusFrom */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiClearWinFocus().
|
|
|
|
** Clear the window that has focus.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
|
|
|
tuiClearWinFocus (void)
|
|
|
|
{
|
|
|
|
tuiClearWinFocusFrom (tuiWinWithFocus ());
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiClearWinFocus */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiSetWinFocusTo
|
|
|
|
** Set the logical focus to winInfo
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
2001-07-14 19:31:09 +00:00
|
|
|
tuiSetWinFocusTo (TuiWinInfoPtr winInfo)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
if (m_winPtrNotNull (winInfo))
|
|
|
|
{
|
|
|
|
TuiWinInfoPtr winWithFocus = tuiWinWithFocus ();
|
|
|
|
|
|
|
|
if (m_winPtrNotNull (winWithFocus) &&
|
|
|
|
winWithFocus->generic.type != CMD_WIN)
|
|
|
|
unhighlightWin (winWithFocus);
|
|
|
|
tuiSetWinWithFocus (winInfo);
|
|
|
|
if (winInfo->generic.type != CMD_WIN)
|
|
|
|
highlightWin (winInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiSetWinFocusTo */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiScrollForward().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
2001-07-14 19:31:09 +00:00
|
|
|
tuiScrollForward (TuiWinInfoPtr winToScroll, int numToScroll)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
if (winToScroll != cmdWin)
|
|
|
|
{
|
|
|
|
int _numToScroll = numToScroll;
|
|
|
|
|
|
|
|
if (numToScroll == 0)
|
|
|
|
_numToScroll = winToScroll->generic.height - 3;
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** If we are scrolling the source or disassembly window, do a
|
|
|
|
** "psuedo" scroll since not all of the source is in memory,
|
|
|
|
** only what is in the viewport. If winToScroll is the
|
|
|
|
** command window do nothing since the term should handle it.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
if (winToScroll == srcWin)
|
|
|
|
tuiVerticalSourceScroll (FORWARD_SCROLL, _numToScroll);
|
|
|
|
else if (winToScroll == disassemWin)
|
|
|
|
tuiVerticalDisassemScroll (FORWARD_SCROLL, _numToScroll);
|
|
|
|
else if (winToScroll == dataWin)
|
|
|
|
tuiVerticalDataScroll (FORWARD_SCROLL, _numToScroll);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiScrollForward */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiScrollBackward().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
2001-07-14 19:31:09 +00:00
|
|
|
tuiScrollBackward (TuiWinInfoPtr winToScroll, int numToScroll)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
if (winToScroll != cmdWin)
|
|
|
|
{
|
|
|
|
int _numToScroll = numToScroll;
|
|
|
|
|
|
|
|
if (numToScroll == 0)
|
|
|
|
_numToScroll = winToScroll->generic.height - 3;
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** If we are scrolling the source or disassembly window, do a
|
|
|
|
** "psuedo" scroll since not all of the source is in memory,
|
|
|
|
** only what is in the viewport. If winToScroll is the
|
|
|
|
** command window do nothing since the term should handle it.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
if (winToScroll == srcWin)
|
|
|
|
tuiVerticalSourceScroll (BACKWARD_SCROLL, _numToScroll);
|
|
|
|
else if (winToScroll == disassemWin)
|
|
|
|
tuiVerticalDisassemScroll (BACKWARD_SCROLL, _numToScroll);
|
|
|
|
else if (winToScroll == dataWin)
|
|
|
|
tuiVerticalDataScroll (BACKWARD_SCROLL, _numToScroll);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} /* tuiScrollBackward */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiScrollLeft().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
2001-07-14 19:31:09 +00:00
|
|
|
tuiScrollLeft (TuiWinInfoPtr winToScroll, int numToScroll)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
if (winToScroll != cmdWin)
|
|
|
|
{
|
|
|
|
int _numToScroll = numToScroll;
|
|
|
|
|
|
|
|
if (_numToScroll == 0)
|
|
|
|
_numToScroll = 1;
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** If we are scrolling the source or disassembly window, do a
|
|
|
|
** "psuedo" scroll since not all of the source is in memory,
|
|
|
|
** only what is in the viewport. If winToScroll is the
|
|
|
|
** command window do nothing since the term should handle it.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
if (winToScroll == srcWin || winToScroll == disassemWin)
|
|
|
|
tuiHorizontalSourceScroll (winToScroll, LEFT_SCROLL, _numToScroll);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} /* tuiScrollLeft */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiScrollRight().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
2001-07-14 19:31:09 +00:00
|
|
|
tuiScrollRight (TuiWinInfoPtr winToScroll, int numToScroll)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
if (winToScroll != cmdWin)
|
|
|
|
{
|
|
|
|
int _numToScroll = numToScroll;
|
|
|
|
|
|
|
|
if (_numToScroll == 0)
|
|
|
|
_numToScroll = 1;
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** If we are scrolling the source or disassembly window, do a
|
|
|
|
** "psuedo" scroll since not all of the source is in memory,
|
|
|
|
** only what is in the viewport. If winToScroll is the
|
|
|
|
** command window do nothing since the term should handle it.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
if (winToScroll == srcWin || winToScroll == disassemWin)
|
|
|
|
tuiHorizontalSourceScroll (winToScroll, RIGHT_SCROLL, _numToScroll);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} /* tuiScrollRight */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-07-18 22:03:22 +00:00
|
|
|
** tui_scroll().
|
1999-07-07 20:19:36 +00:00
|
|
|
** Scroll a window. Arguments are passed through a va_list.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
2001-07-18 22:03:22 +00:00
|
|
|
tui_scroll (TuiScrollDirection direction,
|
|
|
|
TuiWinInfoPtr winToScroll,
|
|
|
|
int numToScroll)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
switch (direction)
|
|
|
|
{
|
|
|
|
case FORWARD_SCROLL:
|
|
|
|
tuiScrollForward (winToScroll, numToScroll);
|
|
|
|
break;
|
|
|
|
case BACKWARD_SCROLL:
|
|
|
|
tuiScrollBackward (winToScroll, numToScroll);
|
|
|
|
break;
|
|
|
|
case LEFT_SCROLL:
|
|
|
|
tuiScrollLeft (winToScroll, numToScroll);
|
|
|
|
break;
|
|
|
|
case RIGHT_SCROLL:
|
|
|
|
tuiScrollRight (winToScroll, numToScroll);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2001-07-18 22:03:22 +00:00
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiRefreshAll().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
|
|
|
tuiRefreshAll (void)
|
|
|
|
{
|
|
|
|
TuiWinType type;
|
|
|
|
|
|
|
|
refreshAll (winList);
|
|
|
|
for (type = SRC_WIN; type < MAX_MAJOR_WINDOWS; type++)
|
|
|
|
{
|
2001-07-16 22:13:38 +00:00
|
|
|
if (winList[type] && winList[type]->generic.isVisible)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case SRC_WIN:
|
|
|
|
case DISASSEM_WIN:
|
|
|
|
tuiClearWin (&winList[type]->generic);
|
|
|
|
if (winList[type]->detail.sourceInfo.hasLocator)
|
|
|
|
tuiClearLocatorDisplay ();
|
|
|
|
tuiShowSourceContent (winList[type]);
|
|
|
|
checkAndDisplayHighlightIfNeeded (winList[type]);
|
|
|
|
tuiEraseExecInfoContent (winList[type]);
|
|
|
|
tuiUpdateExecInfo (winList[type]);
|
|
|
|
break;
|
|
|
|
case DATA_WIN:
|
|
|
|
tuiRefreshDataWin ();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tuiClearLocatorDisplay ();
|
|
|
|
tuiShowLocatorContent ();
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiRefreshAll */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiResizeAll().
|
|
|
|
** Resize all the windows based on the the terminal size. This
|
|
|
|
** function gets called from within the readline sinwinch handler.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
|
|
|
tuiResizeAll (void)
|
|
|
|
{
|
|
|
|
int heightDiff, widthDiff;
|
1999-07-07 20:19:36 +00:00
|
|
|
extern int screenheight, screenwidth; /* in readline */
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
widthDiff = screenwidth - termWidth ();
|
|
|
|
heightDiff = screenheight - termHeight ();
|
|
|
|
if (heightDiff || widthDiff)
|
|
|
|
{
|
|
|
|
TuiLayoutType curLayout = currentLayout ();
|
|
|
|
TuiWinInfoPtr winWithFocus = tuiWinWithFocus ();
|
|
|
|
TuiWinInfoPtr firstWin, secondWin;
|
|
|
|
TuiGenWinInfoPtr locator = locatorWinInfoPtr ();
|
|
|
|
TuiWinType winType;
|
|
|
|
int i, newHeight, splitDiff, cmdSplitDiff, numWinsDisplayed = 2;
|
|
|
|
|
|
|
|
/* turn keypad off while we resize */
|
|
|
|
if (winWithFocus != cmdWin)
|
|
|
|
keypad (cmdWin->generic.handle, FALSE);
|
|
|
|
init_page_info ();
|
|
|
|
setTermHeightTo (screenheight);
|
|
|
|
setTermWidthTo (screenwidth);
|
|
|
|
if (curLayout == SRC_DISASSEM_COMMAND ||
|
|
|
|
curLayout == SRC_DATA_COMMAND || curLayout == DISASSEM_DATA_COMMAND)
|
|
|
|
numWinsDisplayed++;
|
|
|
|
splitDiff = heightDiff / numWinsDisplayed;
|
|
|
|
cmdSplitDiff = splitDiff;
|
|
|
|
if (heightDiff % numWinsDisplayed)
|
|
|
|
{
|
|
|
|
if (heightDiff < 0)
|
|
|
|
cmdSplitDiff--;
|
|
|
|
else
|
|
|
|
cmdSplitDiff++;
|
|
|
|
}
|
|
|
|
/* now adjust each window */
|
|
|
|
clear ();
|
|
|
|
refresh ();
|
|
|
|
switch (curLayout)
|
|
|
|
{
|
|
|
|
case SRC_COMMAND:
|
|
|
|
case DISASSEM_COMMAND:
|
|
|
|
firstWin = (TuiWinInfoPtr) (sourceWindows ())->list[0];
|
|
|
|
firstWin->generic.width += widthDiff;
|
|
|
|
locator->width += widthDiff;
|
|
|
|
/* check for invalid heights */
|
|
|
|
if (heightDiff == 0)
|
|
|
|
newHeight = firstWin->generic.height;
|
|
|
|
else if ((firstWin->generic.height + splitDiff) >=
|
|
|
|
(screenheight - MIN_CMD_WIN_HEIGHT - 1))
|
|
|
|
newHeight = screenheight - MIN_CMD_WIN_HEIGHT - 1;
|
|
|
|
else if ((firstWin->generic.height + splitDiff) <= 0)
|
|
|
|
newHeight = MIN_WIN_HEIGHT;
|
|
|
|
else
|
|
|
|
newHeight = firstWin->generic.height + splitDiff;
|
|
|
|
|
|
|
|
_makeInvisibleAndSetNewHeight (firstWin, newHeight);
|
|
|
|
cmdWin->generic.origin.y = locator->origin.y + 1;
|
|
|
|
cmdWin->generic.width += widthDiff;
|
|
|
|
newHeight = screenheight - cmdWin->generic.origin.y;
|
|
|
|
_makeInvisibleAndSetNewHeight (cmdWin, newHeight);
|
|
|
|
_makeVisibleWithNewHeight (firstWin);
|
|
|
|
_makeVisibleWithNewHeight (cmdWin);
|
|
|
|
if (firstWin->generic.contentSize <= 0)
|
|
|
|
tuiEraseSourceContent (firstWin, EMPTY_SOURCE_PROMPT);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (curLayout == SRC_DISASSEM_COMMAND)
|
|
|
|
{
|
|
|
|
firstWin = srcWin;
|
|
|
|
firstWin->generic.width += widthDiff;
|
|
|
|
secondWin = disassemWin;
|
|
|
|
secondWin->generic.width += widthDiff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
firstWin = dataWin;
|
|
|
|
firstWin->generic.width += widthDiff;
|
|
|
|
secondWin = (TuiWinInfoPtr) (sourceWindows ())->list[0];
|
|
|
|
secondWin->generic.width += widthDiff;
|
|
|
|
}
|
|
|
|
/* Change the first window's height/width */
|
|
|
|
/* check for invalid heights */
|
|
|
|
if (heightDiff == 0)
|
|
|
|
newHeight = firstWin->generic.height;
|
|
|
|
else if ((firstWin->generic.height +
|
|
|
|
secondWin->generic.height + (splitDiff * 2)) >=
|
|
|
|
(screenheight - MIN_CMD_WIN_HEIGHT - 1))
|
|
|
|
newHeight = (screenheight - MIN_CMD_WIN_HEIGHT - 1) / 2;
|
|
|
|
else if ((firstWin->generic.height + splitDiff) <= 0)
|
|
|
|
newHeight = MIN_WIN_HEIGHT;
|
|
|
|
else
|
|
|
|
newHeight = firstWin->generic.height + splitDiff;
|
|
|
|
_makeInvisibleAndSetNewHeight (firstWin, newHeight);
|
|
|
|
|
|
|
|
if (firstWin == dataWin && widthDiff != 0)
|
|
|
|
firstWin->detail.dataDisplayInfo.regsColumnCount =
|
|
|
|
tuiCalculateRegsColumnCount (
|
|
|
|
firstWin->detail.dataDisplayInfo.regsDisplayType);
|
|
|
|
locator->width += widthDiff;
|
|
|
|
|
|
|
|
/* Change the second window's height/width */
|
|
|
|
/* check for invalid heights */
|
|
|
|
if (heightDiff == 0)
|
|
|
|
newHeight = secondWin->generic.height;
|
|
|
|
else if ((firstWin->generic.height +
|
|
|
|
secondWin->generic.height + (splitDiff * 2)) >=
|
|
|
|
(screenheight - MIN_CMD_WIN_HEIGHT - 1))
|
|
|
|
{
|
|
|
|
newHeight = screenheight - MIN_CMD_WIN_HEIGHT - 1;
|
|
|
|
if (newHeight % 2)
|
|
|
|
newHeight = (newHeight / 2) + 1;
|
|
|
|
else
|
|
|
|
newHeight /= 2;
|
|
|
|
}
|
|
|
|
else if ((secondWin->generic.height + splitDiff) <= 0)
|
|
|
|
newHeight = MIN_WIN_HEIGHT;
|
|
|
|
else
|
|
|
|
newHeight = secondWin->generic.height + splitDiff;
|
|
|
|
secondWin->generic.origin.y = firstWin->generic.height - 1;
|
|
|
|
_makeInvisibleAndSetNewHeight (secondWin, newHeight);
|
|
|
|
|
|
|
|
/* Change the command window's height/width */
|
|
|
|
cmdWin->generic.origin.y = locator->origin.y + 1;
|
|
|
|
_makeInvisibleAndSetNewHeight (
|
|
|
|
cmdWin, cmdWin->generic.height + cmdSplitDiff);
|
|
|
|
_makeVisibleWithNewHeight (firstWin);
|
|
|
|
_makeVisibleWithNewHeight (secondWin);
|
|
|
|
_makeVisibleWithNewHeight (cmdWin);
|
|
|
|
if (firstWin->generic.contentSize <= 0)
|
|
|
|
tuiEraseSourceContent (firstWin, EMPTY_SOURCE_PROMPT);
|
|
|
|
if (secondWin->generic.contentSize <= 0)
|
|
|
|
tuiEraseSourceContent (secondWin, EMPTY_SOURCE_PROMPT);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** Now remove all invisible windows, and their content so that they get
|
|
|
|
** created again when called for with the new size
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
for (winType = SRC_WIN; (winType < MAX_MAJOR_WINDOWS); winType++)
|
|
|
|
{
|
|
|
|
if (winType != CMD_WIN && m_winPtrNotNull (winList[winType]) &&
|
|
|
|
!winList[winType]->generic.isVisible)
|
|
|
|
{
|
|
|
|
freeWindow (winList[winType]);
|
|
|
|
winList[winType] = (TuiWinInfoPtr) NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tuiSetWinResizedTo (TRUE);
|
|
|
|
/* turn keypad back on, unless focus is in the command window */
|
|
|
|
if (winWithFocus != cmdWin)
|
|
|
|
keypad (cmdWin->generic.handle, TRUE);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} /* tuiResizeAll */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** tuiSigwinchHandler()
|
|
|
|
** SIGWINCH signal handler for the tui. This signal handler is
|
|
|
|
** always called, even when the readline package clears signals
|
|
|
|
** because it is set as the old_sigwinch() (TUI only)
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
void
|
2001-07-14 19:31:09 +00:00
|
|
|
tuiSigwinchHandler (int signal)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** Say that a resize was done so that the readline can do it
|
|
|
|
** later when appropriate.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
tuiSetWinResizedTo (TRUE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* tuiSigwinchHandler */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*************************
|
|
|
|
** STATIC LOCAL FUNCTIONS
|
|
|
|
**************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiScrollForward_command().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiScrollForward_command (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
int numToScroll = 1;
|
|
|
|
TuiWinInfoPtr winToScroll;
|
|
|
|
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
1999-04-16 01:35:26 +00:00
|
|
|
if (arg == (char *) NULL)
|
|
|
|
_parseScrollingArgs (arg, &winToScroll, (int *) NULL);
|
|
|
|
else
|
|
|
|
_parseScrollingArgs (arg, &winToScroll, &numToScroll);
|
2001-07-18 22:03:22 +00:00
|
|
|
tui_scroll (FORWARD_SCROLL, winToScroll, numToScroll);
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiScrollBackward_command().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiScrollBackward_command (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
int numToScroll = 1;
|
|
|
|
TuiWinInfoPtr winToScroll;
|
|
|
|
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
1999-04-16 01:35:26 +00:00
|
|
|
if (arg == (char *) NULL)
|
|
|
|
_parseScrollingArgs (arg, &winToScroll, (int *) NULL);
|
|
|
|
else
|
|
|
|
_parseScrollingArgs (arg, &winToScroll, &numToScroll);
|
2001-07-18 22:03:22 +00:00
|
|
|
tui_scroll (BACKWARD_SCROLL, winToScroll, numToScroll);
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiScrollLeft_command().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiScrollLeft_command (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
int numToScroll;
|
|
|
|
TuiWinInfoPtr winToScroll;
|
|
|
|
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
1999-04-16 01:35:26 +00:00
|
|
|
_parseScrollingArgs (arg, &winToScroll, &numToScroll);
|
2001-07-18 22:03:22 +00:00
|
|
|
tui_scroll (LEFT_SCROLL, winToScroll, numToScroll);
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiScrollRight_command().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiScrollRight_command (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
int numToScroll;
|
|
|
|
TuiWinInfoPtr winToScroll;
|
|
|
|
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
1999-04-16 01:35:26 +00:00
|
|
|
_parseScrollingArgs (arg, &winToScroll, &numToScroll);
|
2001-07-18 22:03:22 +00:00
|
|
|
tui_scroll (RIGHT_SCROLL, winToScroll, numToScroll);
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiSetFocus().
|
|
|
|
** Set focus to the window named by 'arg'
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiSetFocus (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
if (arg != (char *) NULL)
|
|
|
|
{
|
2001-07-20 22:22:08 +00:00
|
|
|
char *bufPtr = (char *) xstrdup (arg);
|
1999-04-16 01:35:26 +00:00
|
|
|
int i;
|
|
|
|
TuiWinInfoPtr winInfo = (TuiWinInfoPtr) NULL;
|
|
|
|
|
|
|
|
for (i = 0; (i < strlen (bufPtr)); i++)
|
|
|
|
bufPtr[i] = toupper (arg[i]);
|
|
|
|
|
2001-07-17 21:37:18 +00:00
|
|
|
if (subset_compare (bufPtr, "NEXT"))
|
1999-04-16 01:35:26 +00:00
|
|
|
winInfo = tuiNextWin (tuiWinWithFocus ());
|
2001-07-17 21:37:18 +00:00
|
|
|
else if (subset_compare (bufPtr, "PREV"))
|
1999-04-16 01:35:26 +00:00
|
|
|
winInfo = tuiPrevWin (tuiWinWithFocus ());
|
|
|
|
else
|
|
|
|
winInfo = partialWinByName (bufPtr);
|
|
|
|
|
|
|
|
if (winInfo == (TuiWinInfoPtr) NULL || !winInfo->generic.isVisible)
|
|
|
|
warning ("Invalid window specified. \n\
|
|
|
|
The window name specified must be valid and visible.\n");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tuiSetWinFocusTo (winInfo);
|
|
|
|
keypad (cmdWin->generic.handle, (winInfo != cmdWin));
|
|
|
|
}
|
|
|
|
|
2001-07-16 22:13:38 +00:00
|
|
|
if (dataWin && dataWin->generic.isVisible)
|
1999-04-16 01:35:26 +00:00
|
|
|
tuiRefreshDataWin ();
|
|
|
|
tuiFree (bufPtr);
|
|
|
|
printf_filtered ("Focus set to %s window.\n",
|
|
|
|
winName ((TuiGenWinInfoPtr) tuiWinWithFocus ()));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
warning ("Incorrect Number of Arguments.\n%s", FOCUS_USAGE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* _tuiSetFocus */
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiSetFocus_command()
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiSetFocus_command (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
2001-07-18 22:03:22 +00:00
|
|
|
_tuiSetFocus (arg, fromTTY);
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiAllWindowsInfo().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiAllWindowsInfo (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
TuiWinType type;
|
|
|
|
TuiWinInfoPtr winWithFocus = tuiWinWithFocus ();
|
|
|
|
|
|
|
|
for (type = SRC_WIN; (type < MAX_MAJOR_WINDOWS); type++)
|
|
|
|
if (winList[type]->generic.isVisible)
|
|
|
|
{
|
|
|
|
if (winWithFocus == winList[type])
|
|
|
|
printf_filtered (" %s\t(%d lines) <has focus>\n",
|
|
|
|
winName (&winList[type]->generic),
|
|
|
|
winList[type]->generic.height);
|
|
|
|
else
|
|
|
|
printf_filtered (" %s\t(%d lines)\n",
|
|
|
|
winName (&winList[type]->generic),
|
|
|
|
winList[type]->generic.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* _tuiAllWindowsInfo */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiRefreshAll_command().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiRefreshAll_command (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
|
|
|
|
2001-07-18 22:03:22 +00:00
|
|
|
tuiRefreshAll ();
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiSetWinTabWidth_command().
|
|
|
|
** Set the height of the specified window.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiSetTabWidth_command (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
1999-04-16 01:35:26 +00:00
|
|
|
if (arg != (char *) NULL)
|
|
|
|
{
|
|
|
|
int ts;
|
|
|
|
|
|
|
|
ts = atoi (arg);
|
|
|
|
if (ts > 0)
|
|
|
|
tuiSetDefaultTabLen (ts);
|
|
|
|
else
|
|
|
|
warning ("Tab widths greater than 0 must be specified.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* _tuiSetTabWidth_command */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiSetWinHeight().
|
|
|
|
** Set the height of the specified window.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiSetWinHeight (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
1999-04-16 01:35:26 +00:00
|
|
|
if (arg != (char *) NULL)
|
|
|
|
{
|
2001-07-20 22:22:08 +00:00
|
|
|
char *buf = xstrdup (arg);
|
1999-04-16 01:35:26 +00:00
|
|
|
char *bufPtr = buf;
|
|
|
|
char *wname = (char *) NULL;
|
|
|
|
int newHeight, i;
|
|
|
|
TuiWinInfoPtr winInfo;
|
|
|
|
|
|
|
|
wname = bufPtr;
|
|
|
|
bufPtr = strchr (bufPtr, ' ');
|
|
|
|
if (bufPtr != (char *) NULL)
|
|
|
|
{
|
|
|
|
*bufPtr = (char) 0;
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** Validate the window name
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
for (i = 0; i < strlen (wname); i++)
|
|
|
|
wname[i] = toupper (wname[i]);
|
|
|
|
winInfo = partialWinByName (wname);
|
|
|
|
|
|
|
|
if (winInfo == (TuiWinInfoPtr) NULL || !winInfo->generic.isVisible)
|
|
|
|
warning ("Invalid window specified. \n\
|
|
|
|
The window name specified must be valid and visible.\n");
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Process the size */
|
|
|
|
while (*(++bufPtr) == ' ')
|
|
|
|
;
|
|
|
|
|
|
|
|
if (*bufPtr != (char) 0)
|
|
|
|
{
|
|
|
|
int negate = FALSE;
|
|
|
|
int fixedSize = TRUE;
|
|
|
|
int inputNo;;
|
|
|
|
|
|
|
|
if (*bufPtr == '+' || *bufPtr == '-')
|
|
|
|
{
|
|
|
|
if (*bufPtr == '-')
|
|
|
|
negate = TRUE;
|
|
|
|
fixedSize = FALSE;
|
|
|
|
bufPtr++;
|
|
|
|
}
|
|
|
|
inputNo = atoi (bufPtr);
|
|
|
|
if (inputNo > 0)
|
|
|
|
{
|
|
|
|
if (negate)
|
|
|
|
inputNo *= (-1);
|
|
|
|
if (fixedSize)
|
|
|
|
newHeight = inputNo;
|
|
|
|
else
|
|
|
|
newHeight = winInfo->generic.height + inputNo;
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** Now change the window's height, and adjust all
|
|
|
|
** other windows around it
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
if (_tuiAdjustWinHeights (winInfo,
|
|
|
|
newHeight) == TUI_FAILURE)
|
|
|
|
warning ("Invalid window height specified.\n%s",
|
|
|
|
WIN_HEIGHT_USAGE);
|
|
|
|
else
|
|
|
|
init_page_info ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
warning ("Invalid window height specified.\n%s",
|
|
|
|
WIN_HEIGHT_USAGE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf_filtered (WIN_HEIGHT_USAGE);
|
|
|
|
|
|
|
|
if (buf != (char *) NULL)
|
|
|
|
tuiFree (buf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf_filtered (WIN_HEIGHT_USAGE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* _tuiSetWinHeight */
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiSetWinHeight_command().
|
|
|
|
** Set the height of the specified window, with va_list.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiSetWinHeight_command (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
2001-07-18 22:03:22 +00:00
|
|
|
_tuiSetWinHeight (arg, fromTTY);
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiXDBsetWinHeight().
|
|
|
|
** XDB Compatibility command for setting the window height. This will
|
|
|
|
** increase or decrease the command window by the specified amount.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiXDBsetWinHeight (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
2001-07-20 22:22:08 +00:00
|
|
|
/* Make sure the curses mode is enabled. */
|
|
|
|
tui_enable ();
|
1999-04-16 01:35:26 +00:00
|
|
|
if (arg != (char *) NULL)
|
|
|
|
{
|
|
|
|
int inputNo = atoi (arg);
|
|
|
|
|
|
|
|
if (inputNo > 0)
|
|
|
|
{ /* Add 1 for the locator */
|
|
|
|
int newHeight = termHeight () - (inputNo + 1);
|
|
|
|
|
|
|
|
if (!_newHeightOk (winList[CMD_WIN], newHeight) ||
|
|
|
|
_tuiAdjustWinHeights (winList[CMD_WIN],
|
|
|
|
newHeight) == TUI_FAILURE)
|
|
|
|
warning ("Invalid window height specified.\n%s",
|
|
|
|
XDBWIN_HEIGHT_USAGE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
warning ("Invalid window height specified.\n%s",
|
|
|
|
XDBWIN_HEIGHT_USAGE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
warning ("Invalid window height specified.\n%s", XDBWIN_HEIGHT_USAGE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* _tuiXDBsetWinHeight */
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiSetWinHeight_command().
|
|
|
|
** Set the height of the specified window, with va_list.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiXDBsetWinHeight_command (char *arg, int fromTTY)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
2001-07-18 22:03:22 +00:00
|
|
|
_tuiXDBsetWinHeight (arg, fromTTY);
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _tuiAdjustWinHeights().
|
|
|
|
** Function to adjust all window heights around the primary
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static TuiStatus
|
2001-07-14 19:31:09 +00:00
|
|
|
_tuiAdjustWinHeights (TuiWinInfoPtr primaryWinInfo, int newHeight)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
TuiStatus status = TUI_FAILURE;
|
|
|
|
|
|
|
|
if (_newHeightOk (primaryWinInfo, newHeight))
|
|
|
|
{
|
|
|
|
status = TUI_SUCCESS;
|
|
|
|
if (newHeight != primaryWinInfo->generic.height)
|
|
|
|
{
|
|
|
|
int i, diff;
|
|
|
|
TuiWinInfoPtr winInfo;
|
|
|
|
TuiGenWinInfoPtr locator = locatorWinInfoPtr ();
|
|
|
|
TuiLayoutType curLayout = currentLayout ();
|
|
|
|
|
|
|
|
diff = (newHeight - primaryWinInfo->generic.height) * (-1);
|
|
|
|
if (curLayout == SRC_COMMAND || curLayout == DISASSEM_COMMAND)
|
|
|
|
{
|
|
|
|
TuiWinInfoPtr srcWinInfo;
|
|
|
|
|
|
|
|
_makeInvisibleAndSetNewHeight (primaryWinInfo, newHeight);
|
|
|
|
if (primaryWinInfo->generic.type == CMD_WIN)
|
|
|
|
{
|
|
|
|
winInfo = (TuiWinInfoPtr) (sourceWindows ())->list[0];
|
|
|
|
srcWinInfo = winInfo;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
winInfo = winList[CMD_WIN];
|
|
|
|
srcWinInfo = primaryWinInfo;
|
|
|
|
}
|
|
|
|
_makeInvisibleAndSetNewHeight (winInfo,
|
|
|
|
winInfo->generic.height + diff);
|
|
|
|
cmdWin->generic.origin.y = locator->origin.y + 1;
|
|
|
|
_makeVisibleWithNewHeight (winInfo);
|
|
|
|
_makeVisibleWithNewHeight (primaryWinInfo);
|
|
|
|
if (srcWinInfo->generic.contentSize <= 0)
|
|
|
|
tuiEraseSourceContent (srcWinInfo, EMPTY_SOURCE_PROMPT);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TuiWinInfoPtr firstWin, secondWin;
|
|
|
|
|
|
|
|
if (curLayout == SRC_DISASSEM_COMMAND)
|
|
|
|
{
|
|
|
|
firstWin = srcWin;
|
|
|
|
secondWin = disassemWin;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
firstWin = dataWin;
|
|
|
|
secondWin = (TuiWinInfoPtr) (sourceWindows ())->list[0];
|
|
|
|
}
|
|
|
|
if (primaryWinInfo == cmdWin)
|
|
|
|
{ /*
|
1999-07-07 20:19:36 +00:00
|
|
|
** Split the change in height accross the 1st & 2nd windows
|
|
|
|
** adjusting them as well.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
int firstSplitDiff = diff / 2; /* subtract the locator */
|
|
|
|
int secondSplitDiff = firstSplitDiff;
|
|
|
|
|
|
|
|
if (diff % 2)
|
|
|
|
{
|
|
|
|
if (firstWin->generic.height >
|
|
|
|
secondWin->generic.height)
|
|
|
|
if (diff < 0)
|
|
|
|
firstSplitDiff--;
|
|
|
|
else
|
|
|
|
firstSplitDiff++;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (diff < 0)
|
|
|
|
secondSplitDiff--;
|
|
|
|
else
|
|
|
|
secondSplitDiff++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* make sure that the minimum hieghts are honored */
|
|
|
|
while ((firstWin->generic.height + firstSplitDiff) < 3)
|
|
|
|
{
|
|
|
|
firstSplitDiff++;
|
|
|
|
secondSplitDiff--;
|
|
|
|
}
|
|
|
|
while ((secondWin->generic.height + secondSplitDiff) < 3)
|
|
|
|
{
|
|
|
|
secondSplitDiff++;
|
|
|
|
firstSplitDiff--;
|
|
|
|
}
|
|
|
|
_makeInvisibleAndSetNewHeight (
|
|
|
|
firstWin,
|
|
|
|
firstWin->generic.height + firstSplitDiff);
|
|
|
|
secondWin->generic.origin.y = firstWin->generic.height - 1;
|
|
|
|
_makeInvisibleAndSetNewHeight (
|
|
|
|
secondWin, secondWin->generic.height + secondSplitDiff);
|
|
|
|
cmdWin->generic.origin.y = locator->origin.y + 1;
|
|
|
|
_makeInvisibleAndSetNewHeight (cmdWin, newHeight);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((cmdWin->generic.height + diff) < 1)
|
|
|
|
{ /*
|
1999-07-07 20:19:36 +00:00
|
|
|
** If there is no way to increase the command window
|
|
|
|
** take real estate from the 1st or 2nd window.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
if ((cmdWin->generic.height + diff) < 1)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = cmdWin->generic.height + diff;
|
|
|
|
(i < 1); i++)
|
|
|
|
if (primaryWinInfo == firstWin)
|
|
|
|
secondWin->generic.height--;
|
|
|
|
else
|
|
|
|
firstWin->generic.height--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (primaryWinInfo == firstWin)
|
|
|
|
_makeInvisibleAndSetNewHeight (firstWin, newHeight);
|
|
|
|
else
|
|
|
|
_makeInvisibleAndSetNewHeight (
|
|
|
|
firstWin,
|
|
|
|
firstWin->generic.height);
|
|
|
|
secondWin->generic.origin.y = firstWin->generic.height - 1;
|
|
|
|
if (primaryWinInfo == secondWin)
|
|
|
|
_makeInvisibleAndSetNewHeight (secondWin, newHeight);
|
|
|
|
else
|
|
|
|
_makeInvisibleAndSetNewHeight (
|
|
|
|
secondWin, secondWin->generic.height);
|
|
|
|
cmdWin->generic.origin.y = locator->origin.y + 1;
|
|
|
|
if ((cmdWin->generic.height + diff) < 1)
|
|
|
|
_makeInvisibleAndSetNewHeight (cmdWin, 1);
|
|
|
|
else
|
|
|
|
_makeInvisibleAndSetNewHeight (
|
|
|
|
cmdWin, cmdWin->generic.height + diff);
|
|
|
|
}
|
|
|
|
_makeVisibleWithNewHeight (cmdWin);
|
|
|
|
_makeVisibleWithNewHeight (secondWin);
|
|
|
|
_makeVisibleWithNewHeight (firstWin);
|
|
|
|
if (firstWin->generic.contentSize <= 0)
|
|
|
|
tuiEraseSourceContent (firstWin, EMPTY_SOURCE_PROMPT);
|
|
|
|
if (secondWin->generic.contentSize <= 0)
|
|
|
|
tuiEraseSourceContent (secondWin, EMPTY_SOURCE_PROMPT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
} /* _tuiAdjustWinHeights */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _makeInvisibleAndSetNewHeight().
|
|
|
|
** Function make the target window (and auxillary windows associated
|
|
|
|
** with the targer) invisible, and set the new height and location.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_makeInvisibleAndSetNewHeight (TuiWinInfoPtr winInfo, int height)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct symtab *s;
|
|
|
|
TuiGenWinInfoPtr genWinInfo;
|
|
|
|
|
|
|
|
|
|
|
|
m_beInvisible (&winInfo->generic);
|
|
|
|
winInfo->generic.height = height;
|
|
|
|
if (height > 1)
|
|
|
|
winInfo->generic.viewportHeight = height - 1;
|
|
|
|
else
|
|
|
|
winInfo->generic.viewportHeight = height;
|
|
|
|
if (winInfo != cmdWin)
|
|
|
|
winInfo->generic.viewportHeight--;
|
|
|
|
|
|
|
|
/* Now deal with the auxillary windows associated with winInfo */
|
|
|
|
switch (winInfo->generic.type)
|
|
|
|
{
|
|
|
|
case SRC_WIN:
|
|
|
|
case DISASSEM_WIN:
|
|
|
|
genWinInfo = winInfo->detail.sourceInfo.executionInfo;
|
|
|
|
m_beInvisible (genWinInfo);
|
|
|
|
genWinInfo->height = height;
|
|
|
|
genWinInfo->origin.y = winInfo->generic.origin.y;
|
|
|
|
if (height > 1)
|
|
|
|
genWinInfo->viewportHeight = height - 1;
|
|
|
|
else
|
|
|
|
genWinInfo->viewportHeight = height;
|
|
|
|
if (winInfo != cmdWin)
|
|
|
|
genWinInfo->viewportHeight--;
|
|
|
|
|
|
|
|
if (m_hasLocator (winInfo))
|
|
|
|
{
|
|
|
|
genWinInfo = locatorWinInfoPtr ();
|
|
|
|
m_beInvisible (genWinInfo);
|
|
|
|
genWinInfo->origin.y = winInfo->generic.origin.y + height;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DATA_WIN:
|
|
|
|
/* delete all data item windows */
|
|
|
|
for (i = 0; i < winInfo->generic.contentSize; i++)
|
|
|
|
{
|
|
|
|
genWinInfo = (TuiGenWinInfoPtr) & ((TuiWinElementPtr)
|
|
|
|
winInfo->generic.content[i])->whichElement.dataWindow;
|
|
|
|
tuiDelwin (genWinInfo->handle);
|
|
|
|
genWinInfo->handle = (WINDOW *) NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* _makeInvisibleAndSetNewHeight */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _makeVisibleWithNewHeight().
|
|
|
|
** Function to make the windows with new heights visible.
|
|
|
|
** This means re-creating the windows' content since the window
|
|
|
|
** had to be destroyed to be made invisible.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_makeVisibleWithNewHeight (TuiWinInfoPtr winInfo)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct symtab *s;
|
|
|
|
|
|
|
|
m_beVisible (&winInfo->generic);
|
|
|
|
checkAndDisplayHighlightIfNeeded (winInfo);
|
|
|
|
switch (winInfo->generic.type)
|
|
|
|
{
|
|
|
|
case SRC_WIN:
|
|
|
|
case DISASSEM_WIN:
|
|
|
|
freeWinContent (winInfo->detail.sourceInfo.executionInfo);
|
|
|
|
m_beVisible (winInfo->detail.sourceInfo.executionInfo);
|
|
|
|
if (winInfo->generic.content != (OpaquePtr) NULL)
|
|
|
|
{
|
|
|
|
TuiLineOrAddress lineOrAddr;
|
|
|
|
|
|
|
|
if (winInfo->generic.type == SRC_WIN)
|
|
|
|
lineOrAddr.lineNo =
|
|
|
|
winInfo->detail.sourceInfo.startLineOrAddr.lineNo;
|
|
|
|
else
|
|
|
|
lineOrAddr.addr =
|
|
|
|
winInfo->detail.sourceInfo.startLineOrAddr.addr;
|
|
|
|
freeWinContent (&winInfo->generic);
|
|
|
|
tuiUpdateSourceWindow (winInfo,
|
2001-07-20 23:06:48 +00:00
|
|
|
current_source_symtab, lineOrAddr, TRUE);
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
else if (selected_frame != (struct frame_info *) NULL)
|
|
|
|
{
|
2001-07-20 23:06:48 +00:00
|
|
|
TuiLineOrAddress line;
|
1999-04-16 01:35:26 +00:00
|
|
|
extern int current_source_line;
|
|
|
|
|
|
|
|
s = find_pc_symtab (selected_frame->pc);
|
|
|
|
if (winInfo->generic.type == SRC_WIN)
|
2001-07-20 23:06:48 +00:00
|
|
|
line.lineNo = current_source_line;
|
1999-04-16 01:35:26 +00:00
|
|
|
else
|
2001-07-17 22:22:40 +00:00
|
|
|
{
|
2001-07-20 23:06:48 +00:00
|
|
|
find_line_pc (s, current_source_line, &line.addr);
|
2001-07-17 22:22:40 +00:00
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
tuiUpdateSourceWindow (winInfo, s, line, TRUE);
|
|
|
|
}
|
|
|
|
if (m_hasLocator (winInfo))
|
|
|
|
{
|
|
|
|
m_beVisible (locatorWinInfoPtr ());
|
|
|
|
tuiClearLocatorDisplay ();
|
|
|
|
tuiShowLocatorContent ();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DATA_WIN:
|
|
|
|
tuiDisplayAllData ();
|
|
|
|
break;
|
|
|
|
case CMD_WIN:
|
|
|
|
winInfo->detail.commandInfo.curLine = 0;
|
|
|
|
winInfo->detail.commandInfo.curch = 0;
|
|
|
|
wmove (winInfo->generic.handle,
|
|
|
|
winInfo->detail.commandInfo.curLine,
|
|
|
|
winInfo->detail.commandInfo.curch);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* _makeVisibleWithNewHeight */
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2001-07-14 19:31:09 +00:00
|
|
|
_newHeightOk (TuiWinInfoPtr primaryWinInfo, int newHeight)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
int ok = (newHeight < termHeight ());
|
|
|
|
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
int diff, curHeight;
|
|
|
|
TuiLayoutType curLayout = currentLayout ();
|
|
|
|
|
|
|
|
diff = (newHeight - primaryWinInfo->generic.height) * (-1);
|
|
|
|
if (curLayout == SRC_COMMAND || curLayout == DISASSEM_COMMAND)
|
|
|
|
{
|
|
|
|
ok = ((primaryWinInfo->generic.type == CMD_WIN &&
|
|
|
|
newHeight <= (termHeight () - 4) &&
|
|
|
|
newHeight >= MIN_CMD_WIN_HEIGHT) ||
|
|
|
|
(primaryWinInfo->generic.type != CMD_WIN &&
|
|
|
|
newHeight <= (termHeight () - 2) &&
|
|
|
|
newHeight >= MIN_WIN_HEIGHT));
|
|
|
|
if (ok)
|
|
|
|
{ /* check the total height */
|
|
|
|
TuiWinInfoPtr winInfo;
|
|
|
|
|
|
|
|
if (primaryWinInfo == cmdWin)
|
|
|
|
winInfo = (TuiWinInfoPtr) (sourceWindows ())->list[0];
|
|
|
|
else
|
|
|
|
winInfo = cmdWin;
|
|
|
|
ok = ((newHeight +
|
|
|
|
(winInfo->generic.height + diff)) <= termHeight ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int curTotalHeight, totalHeight, minHeight;
|
|
|
|
TuiWinInfoPtr firstWin, secondWin;
|
|
|
|
|
|
|
|
if (curLayout == SRC_DISASSEM_COMMAND)
|
|
|
|
{
|
|
|
|
firstWin = srcWin;
|
|
|
|
secondWin = disassemWin;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
firstWin = dataWin;
|
|
|
|
secondWin = (TuiWinInfoPtr) (sourceWindows ())->list[0];
|
|
|
|
}
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** We could simply add all the heights to obtain the same result
|
|
|
|
** but below is more explicit since we subtract 1 for the
|
|
|
|
** line that the first and second windows share, and add one
|
|
|
|
** for the locator.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
curTotalHeight =
|
|
|
|
(firstWin->generic.height + secondWin->generic.height - 1)
|
1999-07-07 20:19:36 +00:00
|
|
|
+ cmdWin->generic.height + 1 /*locator */ ;
|
1999-04-16 01:35:26 +00:00
|
|
|
if (primaryWinInfo == cmdWin)
|
|
|
|
{
|
|
|
|
/* locator included since first & second win share a line */
|
|
|
|
ok = ((firstWin->generic.height +
|
|
|
|
secondWin->generic.height + diff) >=
|
|
|
|
(MIN_WIN_HEIGHT * 2) &&
|
|
|
|
newHeight >= MIN_CMD_WIN_HEIGHT);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
totalHeight = newHeight + (firstWin->generic.height +
|
|
|
|
secondWin->generic.height + diff);
|
|
|
|
minHeight = MIN_CMD_WIN_HEIGHT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
minHeight = MIN_WIN_HEIGHT;
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** First see if we can increase/decrease the command
|
|
|
|
** window. And make sure that the command window is
|
|
|
|
** at least 1 line
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
ok = ((cmdWin->generic.height + diff) > 0);
|
|
|
|
if (!ok)
|
|
|
|
{ /*
|
1999-07-07 20:19:36 +00:00
|
|
|
** Looks like we have to increase/decrease one of
|
|
|
|
** the other windows
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
if (primaryWinInfo == firstWin)
|
|
|
|
ok = (secondWin->generic.height + diff) >= minHeight;
|
|
|
|
else
|
|
|
|
ok = (firstWin->generic.height + diff) >= minHeight;
|
|
|
|
}
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
if (primaryWinInfo == firstWin)
|
|
|
|
totalHeight = newHeight +
|
|
|
|
secondWin->generic.height +
|
|
|
|
cmdWin->generic.height + diff;
|
|
|
|
else
|
|
|
|
totalHeight = newHeight +
|
|
|
|
firstWin->generic.height +
|
|
|
|
cmdWin->generic.height + diff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** Now make sure that the proposed total height doesn't exceed
|
|
|
|
** the old total height.
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
if (ok)
|
|
|
|
ok = (newHeight >= minHeight && totalHeight <= curTotalHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
} /* _newHeightOk */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** _parseScrollingArgs().
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
static void
|
2001-07-14 19:31:09 +00:00
|
|
|
_parseScrollingArgs (char *arg, TuiWinInfoPtr * winToScroll, int *numToScroll)
|
1999-04-16 01:35:26 +00:00
|
|
|
{
|
|
|
|
if (numToScroll)
|
|
|
|
*numToScroll = 0;
|
|
|
|
*winToScroll = tuiWinWithFocus ();
|
|
|
|
|
|
|
|
/*
|
1999-07-07 20:19:36 +00:00
|
|
|
** First set up the default window to scroll, in case there is no
|
|
|
|
** window name arg
|
|
|
|
*/
|
1999-04-16 01:35:26 +00:00
|
|
|
if (arg != (char *) NULL)
|
|
|
|
{
|
|
|
|
char *buf, *bufPtr;
|
|
|
|
|
|
|
|
/* process the number of lines to scroll */
|
2001-07-20 22:22:08 +00:00
|
|
|
buf = bufPtr = xstrdup (arg);
|
1999-04-16 01:35:26 +00:00
|
|
|
if (isdigit (*bufPtr))
|
|
|
|
{
|
|
|
|
char *numStr;
|
|
|
|
|
|
|
|
numStr = bufPtr;
|
|
|
|
bufPtr = strchr (bufPtr, ' ');
|
|
|
|
if (bufPtr != (char *) NULL)
|
|
|
|
{
|
|
|
|
*bufPtr = (char) 0;
|
|
|
|
if (numToScroll)
|
|
|
|
*numToScroll = atoi (numStr);
|
|
|
|
bufPtr++;
|
|
|
|
}
|
|
|
|
else if (numToScroll)
|
|
|
|
*numToScroll = atoi (numStr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* process the window name if one is specified */
|
|
|
|
if (bufPtr != (char *) NULL)
|
|
|
|
{
|
|
|
|
char *wname;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (*bufPtr == ' ')
|
|
|
|
while (*(++bufPtr) == ' ')
|
|
|
|
;
|
|
|
|
|
|
|
|
if (*bufPtr != (char) 0)
|
|
|
|
wname = bufPtr;
|
2001-07-20 23:06:48 +00:00
|
|
|
else
|
|
|
|
wname = "?";
|
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
/* Validate the window name */
|
|
|
|
for (i = 0; i < strlen (wname); i++)
|
|
|
|
wname[i] = toupper (wname[i]);
|
|
|
|
*winToScroll = partialWinByName (wname);
|
|
|
|
|
|
|
|
if (*winToScroll == (TuiWinInfoPtr) NULL ||
|
|
|
|
!(*winToScroll)->generic.isVisible)
|
|
|
|
warning ("Invalid window specified. \n\
|
|
|
|
The window name specified must be valid and visible.\n");
|
|
|
|
else if (*winToScroll == cmdWin)
|
|
|
|
*winToScroll = (TuiWinInfoPtr) (sourceWindows ())->list[0];
|
|
|
|
}
|
|
|
|
tuiFree (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
} /* _parseScrollingArgs */
|