os/ossrv/lowlevellibsandfws/apputils/src/BACELL.CPP
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/src/BACELL.CPP	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,135 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <e32std.h>
    1.20 +#include <bacell.h>
    1.21 +
    1.22 +EXPORT_C TCellRef operator+(const TCellRef& aLeft,const TCellRef& aRight)
    1.23 +	{
    1.24 +	return TCellRef(aLeft.iRow+aRight.iRow,aLeft.iCol+aRight.iCol);
    1.25 +	}
    1.26 +
    1.27 +EXPORT_C TCellRef operator-(const TCellRef& aLeft,const TCellRef& aRight)
    1.28 +	{
    1.29 +	return TCellRef(aLeft.iRow-aRight.iRow,aLeft.iCol-aRight.iCol);
    1.30 +	}
    1.31 +
    1.32 +EXPORT_C void TCellRef::Offset(TInt aRowOffset,TInt aColOffset)
    1.33 +/** Adds the specified row and column numbers to this cell's row and column values.
    1.34 +
    1.35 +@param aRowOffset The row number to be added. The value may be positive, zero 
    1.36 +or negative.
    1.37 +@param aColOffset The column number to be added. The value may be positive, 
    1.38 +zero or negative. */
    1.39 +	{
    1.40 +	iRow += aRowOffset;
    1.41 +	iCol += aColOffset;
    1.42 +	}
    1.43 +
    1.44 +EXPORT_C void TCellRef::InternalizeL(RReadStream& aStream)
    1.45 +/** Internalises an object of this class from a read stream.
    1.46 +
    1.47 +The presence of this function means that the standard templated operator>>() 
    1.48 +can be used to internalise objects of this class.
    1.49 +
    1.50 +Note that the function has assignment semantics. It replaces the old value 
    1.51 +of the object with a new value read from the read stream. 
    1.52 +
    1.53 +@param aStream Stream from which the object is to be internalised. */
    1.54 +	{
    1.55 +	iRow = aStream.ReadInt32L();
    1.56 +	iCol = aStream.ReadInt32L();
    1.57 +	}
    1.58 +
    1.59 +// class TRangeRef
    1.60 +
    1.61 +EXPORT_C TBool TRangeRef::operator==(const TRangeRef& aRange) const
    1.62 +/** Compares this cell range with the specified cell range for equality.
    1.63 +
    1.64 +@param aRange The cell range to be compared.
    1.65 +@return ETrue, if the start cells and the end cells are the same. */
    1.66 +	{
    1.67 +	return aRange.iFrom==iFrom && aRange.iTo==iTo;
    1.68 +	}
    1.69 +
    1.70 +EXPORT_C TInt TRangeRef::NoCells() const
    1.71 +/** Gets the number of cells represented by the range.
    1.72 +
    1.73 +@return The number of cells. */
    1.74 +	{
    1.75 +	return NoRows()*NoCols();
    1.76 +	}
    1.77 +
    1.78 +EXPORT_C TBool TRangeRef::Contains(const TCellRef& aCell) const
    1.79 +/** Tests whether the specified cell is contained within the range.
    1.80 +
    1.81 +A range includes its outer perimeter.
    1.82 +
    1.83 +@param aCell The cell to be tested.
    1.84 +@return ETrue, if the specified cell is contained within the range; 
    1.85 +EFalse, otherwise. */
    1.86 +	{
    1.87 +	TInt row=aCell.iRow;
    1.88 +	TInt col=aCell.iCol;
    1.89 +	return row>=iFrom.iRow && row<=iTo.iRow && col>=iFrom.iCol && col<=iTo.iCol;
    1.90 +	}
    1.91 +
    1.92 +EXPORT_C void TRangeRef::InternalizeL(RReadStream& aStream)
    1.93 +/** Internalises an object of this class from a read stream.
    1.94 +
    1.95 +The presence of this function means that the standard templated operator>>() 
    1.96 +can be used to internalise objects of this class.
    1.97 +
    1.98 +Note that the function has assignment semantics. It replaces the old value 
    1.99 +of the object with a new value read from the read stream. 
   1.100 +
   1.101 +@param aStream Stream from which the object is to be internalised. */
   1.102 +	{
   1.103 +	aStream>>iFrom>>iTo;
   1.104 +	}
   1.105 +
   1.106 +EXPORT_C void TRangeRef::ExternalizeL(RWriteStream& aStream) const
   1.107 +/** Externalises an object of this class to a write stream.
   1.108 +
   1.109 +The presence of this function means that the standard templated operator<<() 
   1.110 +can be used to externalise objects of this class. 
   1.111 +
   1.112 +@param aStream Stream to which the object should be externalised. */
   1.113 +	{
   1.114 +	aStream<<iFrom<<iTo; 
   1.115 +	}
   1.116 +
   1.117 +// TRangeRef::TIter
   1.118 +
   1.119 +EXPORT_C TRangeRef::TIter::TIter(const TRangeRef& aRange)
   1.120 +	: iCurrent(aRange.iFrom),iRange(aRange)
   1.121 +    {}
   1.122 +
   1.123 +EXPORT_C TBool TRangeRef::TIter::operator++()
   1.124 +	{
   1.125 +	if (iCurrent.iCol<iRange.iTo.iCol)
   1.126 +		{
   1.127 +		++iCurrent.iCol;
   1.128 +		}
   1.129 +	else
   1.130 +		{
   1.131 +		++iCurrent.iRow;
   1.132 +		iCurrent.iCol = iRange.iFrom.iCol;
   1.133 +		}
   1.134 +	return iCurrent.iRow<=iRange.iFrom.iRow;
   1.135 +	}
   1.136 +
   1.137 +
   1.138 +/* End of $Workfile:   bacell.cpp  $*/