os/ossrv/lowlevellibsandfws/apputils/inc/BACELL.H
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// Written by DanH, Sept 1995
sl@0
    17
#if !defined(__BACELL_H__)
sl@0
    18
#define __BACELL_H__
sl@0
    19
sl@0
    20
#if !defined(__E32DEF_H_)
sl@0
    21
#include <e32def.h>
sl@0
    22
#endif
sl@0
    23
sl@0
    24
#if !defined(__S32STRM_H__)
sl@0
    25
#include <s32strm.h>
sl@0
    26
#endif
sl@0
    27
sl@0
    28
//class RReadStream;
sl@0
    29
//class RWriteStream;
sl@0
    30
sl@0
    31
class TCellRef
sl@0
    32
/** 
sl@0
    33
Identifies a cell by row and column number. 
sl@0
    34
@publishedAll
sl@0
    35
@released
sl@0
    36
*/
sl@0
    37
	{
sl@0
    38
public:
sl@0
    39
	inline TCellRef();
sl@0
    40
	inline TCellRef(TInt aRow,TInt aCol);
sl@0
    41
sl@0
    42
	inline TBool operator==(const TCellRef& aCell) const;
sl@0
    43
	inline TBool operator!=(const TCellRef& aCell) const;
sl@0
    44
sl@0
    45
	inline TCellRef& operator+=(const TCellRef& aCell);
sl@0
    46
	inline TCellRef& operator-=(const TCellRef& aCell);
sl@0
    47
sl@0
    48
	IMPORT_C void Offset(TInt aRowOffset,TInt aColOffset);
sl@0
    49
//
sl@0
    50
	IMPORT_C void InternalizeL(RReadStream& aStream);
sl@0
    51
	inline void ExternalizeL(RWriteStream& aStream) const;
sl@0
    52
public:
sl@0
    53
	/** The row number. */
sl@0
    54
	TInt iRow;
sl@0
    55
	/** The column number. */
sl@0
    56
	TInt iCol;
sl@0
    57
	};
sl@0
    58
sl@0
    59
/** 
sl@0
    60
@publishedAll
sl@0
    61
@released
sl@0
    62
*/
sl@0
    63
IMPORT_C TCellRef operator+(const TCellRef& aLeft,const TCellRef& aRight);
sl@0
    64
IMPORT_C TCellRef operator-(const TCellRef& aLeft,const TCellRef& aRight);
sl@0
    65
sl@0
    66
inline TCellRef::TCellRef()
sl@0
    67
	/** Default constructor.
sl@0
    68
	
sl@0
    69
	The object's row and column number are undefined. */
sl@0
    70
	{}
sl@0
    71
inline TCellRef::TCellRef(TInt aRow,TInt aCol)
sl@0
    72
    : iRow(aRow),iCol(aCol)
sl@0
    73
	/** Constructor taking a row and column number.
sl@0
    74
	
sl@0
    75
	@param aRow The row number.
sl@0
    76
	@param aCol The column number. */
sl@0
    77
	{}
sl@0
    78
inline TBool TCellRef::operator==(const TCellRef& aCell) const
sl@0
    79
	/** Compares this cell with the specified cell for equality.
sl@0
    80
	
sl@0
    81
	@param aCell The cell to be compared.
sl@0
    82
	@return ETrue, if the row numbers are the same and column numbers are 
sl@0
    83
	the same. */
sl@0
    84
	{return aCell.iRow==iRow && aCell.iCol==iCol;}
sl@0
    85
inline TBool TCellRef::operator!=(const TCellRef& aCell) const
sl@0
    86
	/** Compares this cell with the specified cell for inequality.
sl@0
    87
	
sl@0
    88
	@param aCell The cell to be compared.
sl@0
    89
	@return ETrue, if the row numbers are different or the column numbers are 
sl@0
    90
	different. */
sl@0
    91
	{return aCell.iRow!=iRow || aCell.iCol!=iCol;}
sl@0
    92
inline TCellRef& TCellRef::operator+=(const TCellRef& aCell)
sl@0
    93
	/** Adds the specified cell to this cell.
sl@0
    94
	
sl@0
    95
	Addition is the process of adding the specified cell's row and column 
sl@0
    96
	numbers to this cell's row and column numbers respectively.
sl@0
    97
	
sl@0
    98
	@param aCell The cell to be added.
sl@0
    99
	@return A reference to this cell object. */
sl@0
   100
	{Offset(aCell.iRow,aCell.iCol);return *this;}
sl@0
   101
inline TCellRef& TCellRef::operator-=(const TCellRef& aCell)
sl@0
   102
	/** Subtracts the specified cell from this cell.
sl@0
   103
	
sl@0
   104
	Subtraction is the process of subtracting the specified cell's row and 
sl@0
   105
	column numbers from this cell's row and column numbers respectively.
sl@0
   106
	
sl@0
   107
	@param aCell The cell to be subtracted.
sl@0
   108
	@return A reference to this cell object. */
sl@0
   109
	{Offset(-aCell.iRow,-aCell.iCol);return *this;}
sl@0
   110
inline void TCellRef::ExternalizeL(RWriteStream& aStream) const
sl@0
   111
	/** Externalises an object of this class to a write stream.
sl@0
   112
	
sl@0
   113
	The presence of this function means that the standard templated operator<<() 
sl@0
   114
	can be used to externalise objects of this class. 
sl@0
   115
	
sl@0
   116
	@param aStream Stream to which the object should be externalised. */
sl@0
   117
	{aStream.WriteInt32L(iRow);aStream.WriteInt32L(iCol);}
sl@0
   118
sl@0
   119
sl@0
   120
class TRangeRef
sl@0
   121
/** 
sl@0
   122
Identifies a range of cells by start and end cell references.
sl@0
   123
The range is inclusive of both the start and end cells.
sl@0
   124
@see TCellRef
sl@0
   125
@publishedAll
sl@0
   126
@released
sl@0
   127
*/
sl@0
   128
	{
sl@0
   129
public:
sl@0
   130
	inline TRangeRef();
sl@0
   131
	inline TRangeRef(const TCellRef& aFrom,const TCellRef& aTo);
sl@0
   132
	inline TRangeRef(TInt aFromRow,TInt aFromCol,TInt aToRow,TInt aToCol);
sl@0
   133
sl@0
   134
	IMPORT_C TBool operator==(const TRangeRef& aRange) const;
sl@0
   135
	inline TBool operator!=(const TRangeRef& aRange) const;
sl@0
   136
sl@0
   137
	inline void SetRange(const TCellRef& aFrom,const TCellRef& aTo);
sl@0
   138
	inline void SetRange(TInt aFromRow,TInt aFromCol,TInt aToRow,TInt aToCol);
sl@0
   139
	inline TInt NoRows() const;
sl@0
   140
	inline TInt NoCols() const;
sl@0
   141
	IMPORT_C TInt NoCells() const;
sl@0
   142
	IMPORT_C TBool Contains(const TCellRef& aCell) const;
sl@0
   143
	IMPORT_C void InternalizeL(RReadStream& aStream);
sl@0
   144
	IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
sl@0
   145
public:
sl@0
   146
	/** The start cell. */
sl@0
   147
	TCellRef	iFrom;
sl@0
   148
	/** The end cell. */
sl@0
   149
	TCellRef	iTo;
sl@0
   150
public:
sl@0
   151
	class TIter;	// defined outside TRangeRef class as contains TRangeRef
sl@0
   152
	};
sl@0
   153
class TRangeRef::TIter
sl@0
   154
/**
sl@0
   155
@publishedAll
sl@0
   156
@released
sl@0
   157
*/
sl@0
   158
	{
sl@0
   159
public:
sl@0
   160
	IMPORT_C TIter(const TRangeRef& aRangeRef);
sl@0
   161
	IMPORT_C TBool operator++();
sl@0
   162
	inline TBool InRange() const;
sl@0
   163
public:
sl@0
   164
	TCellRef	iCurrent;
sl@0
   165
private:
sl@0
   166
	TRangeRef	iRange;
sl@0
   167
	};
sl@0
   168
sl@0
   169
sl@0
   170
inline TRangeRef::TRangeRef()
sl@0
   171
	/** Default constructor.
sl@0
   172
	
sl@0
   173
	The object's start cell and end cell are undefined. */
sl@0
   174
	{}
sl@0
   175
inline TRangeRef::TRangeRef(const TCellRef& aFrom,const TCellRef& aTo)
sl@0
   176
	: iFrom(aFrom),iTo(aTo)
sl@0
   177
	/** Constructor taking a start and end cell.
sl@0
   178
	
sl@0
   179
	@param aFrom The start cell.
sl@0
   180
	@param aTo The end cell. */
sl@0
   181
	{}
sl@0
   182
inline TRangeRef::TRangeRef(TInt aFromRow,TInt aFromCol,TInt aToRow,TInt aToCol)
sl@0
   183
	: iFrom(aFromRow,aFromCol),iTo(aToRow,aToCol)
sl@0
   184
	/** Constructor taking a start row and start column number, and an end row and 
sl@0
   185
	end column number.
sl@0
   186
	
sl@0
   187
	@param aFromRow The start row number.
sl@0
   188
	@param aFromCol The start column number.
sl@0
   189
	@param aToRow The end row number.
sl@0
   190
	@param aToCol The end column number. */
sl@0
   191
	{}
sl@0
   192
inline void TRangeRef::SetRange(const TCellRef& aFrom,const TCellRef& aTo)
sl@0
   193
	/** Sets the cell range to the specified cells.
sl@0
   194
	
sl@0
   195
	@param aFrom The start cell for the range.
sl@0
   196
	@param aTo The end cell for the range. */
sl@0
   197
	{iFrom=aFrom;iTo=aTo;}
sl@0
   198
inline void TRangeRef::SetRange(TInt aFromRow,TInt aFromCol,TInt aToRow,TInt aToCol)
sl@0
   199
	/** Sets the cell range to the specified start row and column, and end row 
sl@0
   200
	and column.
sl@0
   201
	
sl@0
   202
	@param aFromRow The start row number.
sl@0
   203
	@param aFromCol The start column number.
sl@0
   204
	@param aToRow The end row number.
sl@0
   205
	@param aToCol The end column number. */
sl@0
   206
	{iFrom.iRow=aFromRow;iFrom.iCol=aFromCol;iTo.iRow=aToRow;iTo.iCol=aToCol;}
sl@0
   207
inline TBool TRangeRef::operator!=(const TRangeRef& aRange) const
sl@0
   208
	/** Compares this cell range with the specified cell range for inequality.
sl@0
   209
	
sl@0
   210
	@param aRange The cell to be compared.
sl@0
   211
	@return ETrue, if the start cells are different or the end cells are 
sl@0
   212
	different. */
sl@0
   213
	{return !operator==(aRange);}
sl@0
   214
inline TInt TRangeRef::NoRows() const
sl@0
   215
	/** Gets the number of rows represented by the range.
sl@0
   216
	
sl@0
   217
	@return The number of rows. */
sl@0
   218
	{return iTo.iRow - iFrom.iRow + 1;}
sl@0
   219
inline TInt TRangeRef::NoCols() const
sl@0
   220
	/** Gets the number of columns represented by the range.
sl@0
   221
	
sl@0
   222
	@return The number of columns. */
sl@0
   223
	{return iTo.iCol - iFrom.iCol + 1;}
sl@0
   224
inline TBool TRangeRef::TIter::InRange() const
sl@0
   225
	{return iRange.Contains(iCurrent);}
sl@0
   226
sl@0
   227
#endif