os/ossrv/lowlevellibsandfws/apputils/src/BACELL.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <e32std.h>
sl@0
    17
#include <bacell.h>
sl@0
    18
sl@0
    19
EXPORT_C TCellRef operator+(const TCellRef& aLeft,const TCellRef& aRight)
sl@0
    20
	{
sl@0
    21
	return TCellRef(aLeft.iRow+aRight.iRow,aLeft.iCol+aRight.iCol);
sl@0
    22
	}
sl@0
    23
sl@0
    24
EXPORT_C TCellRef operator-(const TCellRef& aLeft,const TCellRef& aRight)
sl@0
    25
	{
sl@0
    26
	return TCellRef(aLeft.iRow-aRight.iRow,aLeft.iCol-aRight.iCol);
sl@0
    27
	}
sl@0
    28
sl@0
    29
EXPORT_C void TCellRef::Offset(TInt aRowOffset,TInt aColOffset)
sl@0
    30
/** Adds the specified row and column numbers to this cell's row and column values.
sl@0
    31
sl@0
    32
@param aRowOffset The row number to be added. The value may be positive, zero 
sl@0
    33
or negative.
sl@0
    34
@param aColOffset The column number to be added. The value may be positive, 
sl@0
    35
zero or negative. */
sl@0
    36
	{
sl@0
    37
	iRow += aRowOffset;
sl@0
    38
	iCol += aColOffset;
sl@0
    39
	}
sl@0
    40
sl@0
    41
EXPORT_C void TCellRef::InternalizeL(RReadStream& aStream)
sl@0
    42
/** Internalises an object of this class from a read stream.
sl@0
    43
sl@0
    44
The presence of this function means that the standard templated operator>>() 
sl@0
    45
can be used to internalise objects of this class.
sl@0
    46
sl@0
    47
Note that the function has assignment semantics. It replaces the old value 
sl@0
    48
of the object with a new value read from the read stream. 
sl@0
    49
sl@0
    50
@param aStream Stream from which the object is to be internalised. */
sl@0
    51
	{
sl@0
    52
	iRow = aStream.ReadInt32L();
sl@0
    53
	iCol = aStream.ReadInt32L();
sl@0
    54
	}
sl@0
    55
sl@0
    56
// class TRangeRef
sl@0
    57
sl@0
    58
EXPORT_C TBool TRangeRef::operator==(const TRangeRef& aRange) const
sl@0
    59
/** Compares this cell range with the specified cell range for equality.
sl@0
    60
sl@0
    61
@param aRange The cell range to be compared.
sl@0
    62
@return ETrue, if the start cells and the end cells are the same. */
sl@0
    63
	{
sl@0
    64
	return aRange.iFrom==iFrom && aRange.iTo==iTo;
sl@0
    65
	}
sl@0
    66
sl@0
    67
EXPORT_C TInt TRangeRef::NoCells() const
sl@0
    68
/** Gets the number of cells represented by the range.
sl@0
    69
sl@0
    70
@return The number of cells. */
sl@0
    71
	{
sl@0
    72
	return NoRows()*NoCols();
sl@0
    73
	}
sl@0
    74
sl@0
    75
EXPORT_C TBool TRangeRef::Contains(const TCellRef& aCell) const
sl@0
    76
/** Tests whether the specified cell is contained within the range.
sl@0
    77
sl@0
    78
A range includes its outer perimeter.
sl@0
    79
sl@0
    80
@param aCell The cell to be tested.
sl@0
    81
@return ETrue, if the specified cell is contained within the range; 
sl@0
    82
EFalse, otherwise. */
sl@0
    83
	{
sl@0
    84
	TInt row=aCell.iRow;
sl@0
    85
	TInt col=aCell.iCol;
sl@0
    86
	return row>=iFrom.iRow && row<=iTo.iRow && col>=iFrom.iCol && col<=iTo.iCol;
sl@0
    87
	}
sl@0
    88
sl@0
    89
EXPORT_C void TRangeRef::InternalizeL(RReadStream& aStream)
sl@0
    90
/** Internalises an object of this class from a read stream.
sl@0
    91
sl@0
    92
The presence of this function means that the standard templated operator>>() 
sl@0
    93
can be used to internalise objects of this class.
sl@0
    94
sl@0
    95
Note that the function has assignment semantics. It replaces the old value 
sl@0
    96
of the object with a new value read from the read stream. 
sl@0
    97
sl@0
    98
@param aStream Stream from which the object is to be internalised. */
sl@0
    99
	{
sl@0
   100
	aStream>>iFrom>>iTo;
sl@0
   101
	}
sl@0
   102
sl@0
   103
EXPORT_C void TRangeRef::ExternalizeL(RWriteStream& aStream) const
sl@0
   104
/** Externalises an object of this class to a write stream.
sl@0
   105
sl@0
   106
The presence of this function means that the standard templated operator<<() 
sl@0
   107
can be used to externalise objects of this class. 
sl@0
   108
sl@0
   109
@param aStream Stream to which the object should be externalised. */
sl@0
   110
	{
sl@0
   111
	aStream<<iFrom<<iTo; 
sl@0
   112
	}
sl@0
   113
sl@0
   114
// TRangeRef::TIter
sl@0
   115
sl@0
   116
EXPORT_C TRangeRef::TIter::TIter(const TRangeRef& aRange)
sl@0
   117
	: iCurrent(aRange.iFrom),iRange(aRange)
sl@0
   118
    {}
sl@0
   119
sl@0
   120
EXPORT_C TBool TRangeRef::TIter::operator++()
sl@0
   121
	{
sl@0
   122
	if (iCurrent.iCol<iRange.iTo.iCol)
sl@0
   123
		{
sl@0
   124
		++iCurrent.iCol;
sl@0
   125
		}
sl@0
   126
	else
sl@0
   127
		{
sl@0
   128
		++iCurrent.iRow;
sl@0
   129
		iCurrent.iCol = iRange.iFrom.iCol;
sl@0
   130
		}
sl@0
   131
	return iCurrent.iRow<=iRange.iFrom.iRow;
sl@0
   132
	}
sl@0
   133
sl@0
   134
sl@0
   135
/* End of $Workfile:   bacell.cpp  $*/