Beispiel #1
0
void QuickView::PrintText(const string& Str)
{
	if (WhereY()>m_Y2-3 || WhereX()>m_X2-2)
		return;

	Global->FS << fmt::MaxWidth(m_X2-2-WhereX()+1)<<Str;
}
Beispiel #2
0
/**
Sets the cursor's x-position.

@param aX The x-position.
*/
EXPORT_C void CConsoleBase::SetPos(TInt aX)
	{

	SetCursorPosAbs(TPoint(aX,WhereY()));
	}