git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@7 0109f412-320b-0410-ab79-c3e0c5ffbbe6
73 lines
2.4 KiB
C++
73 lines
2.4 KiB
C++
//------------------------------------------------------------------------------
|
|
// Desc: This file contains display routines for the VIEW program.
|
|
//
|
|
// Tabs: 3
|
|
//
|
|
// Copyright (c) 1992-1995, 1998-2000, 2002-2003,2005-2006 Novell, Inc.
|
|
// All Rights Reserved.
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of version 2 of the GNU General Public
|
|
// License as published by the Free Software Foundation.
|
|
//
|
|
// 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, contact Novell, Inc.
|
|
//
|
|
// To contact Novell about this file by physical or electronic mail,
|
|
// you may find current contact information at www.novell.com
|
|
//
|
|
// $Id: viewdisp.cpp 3119 2006-01-19 13:39:12 -0700 (Thu, 19 Jan 2006) dsanders $
|
|
//------------------------------------------------------------------------------
|
|
|
|
#include "view.h"
|
|
|
|
/***************************************************************************
|
|
Desc: This routine displays an error message to the screen.
|
|
*****************************************************************************/
|
|
void ViewShowError(
|
|
const char * pszMessage)
|
|
{
|
|
FLMUINT uiChar;
|
|
FLMUINT uiNumCols;
|
|
FLMUINT uiNumRows;
|
|
|
|
WpsScrSize( &uiNumCols, &uiNumRows);
|
|
WpsScrBackFor( WPS_BLACK, WPS_WHITE);
|
|
WpsScrClr( 0, uiNumRows - 2);
|
|
WpsScrBackFor( WPS_RED, WPS_WHITE);
|
|
WpsStrOutXY( pszMessage, 0, uiNumRows - 2);
|
|
WpsStrOutXY( "Press ENTER to continue: ", 0, uiNumRows - 1);
|
|
for (;;)
|
|
{
|
|
uiChar = (FLMUINT)WpkIncar();
|
|
if (uiChar == WPK_ENTER || uiChar == WPK_ESCAPE)
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
WpsScrBackFor( WPS_BLACK, WPS_WHITE);
|
|
WpsScrClr( 0, uiNumRows - 2);
|
|
ViewEscPrompt();
|
|
}
|
|
|
|
/***************************************************************************
|
|
Desc: This routine displays a FLAIM error message to the screen. It
|
|
formats the RCODE into a message and calls ViewShowError
|
|
to display the error.
|
|
*****************************************************************************/
|
|
void ViewShowRCError(
|
|
const char * pszWhat,
|
|
RCODE rc)
|
|
{
|
|
char szTBuf [100];
|
|
|
|
f_sprintf( szTBuf, "Error %s: %s", pszWhat,
|
|
F_DbSystem::_errorString( rc));
|
|
ViewShowError( szTBuf);
|
|
}
|