Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <e32cmn.h>
Link against: euser.lib

Class TPoint

class TPoint;

Description

Stores a two-dimensional point in Cartesian co-ordinates.

Its data members (iX and iY) are public and can be manipulated directly, or by means of the functions provided. Functions are provided to set and manipulate the point, and to compare points for equality.

Members

Defined in TPoint:


Construction and destruction


TPoint(TUninitialized)

inline TPoint(TUninitialized);

Description

Constructs default point, initialising its iX and iY members to zero.

Parameters

TPoint::TUninitialized


TPoint()

inline TPoint();

Description

Constructs default point, initialising its iX and iY members to zero.


TPoint(TInt,TInt)

inline TPoint(TInt aX, TInt aY);

Description

Constructs a point with the specified x and y co-ordinates.

Parameters

TInt aX

The x co-ordinate value.

TInt aY

The y co-ordinate value.

[Top]


Member functions


operator==(const TPoint &)const

IMPORT_C TBool operator==(const TPoint &aPoint) const;

Description

Compares two points for equality.

For two points to be equal, both their x and y co-ordinate values must be equal.

Parameters

const TPoint &aPoint

The point to be compared with this point.

Return value

TBool

True, if the two points are equal; false, otherwise.


operator!=(const TPoint &)const

IMPORT_C TBool operator!=(const TPoint &aPoint) const;

Description

Compares two points for inequality.

For two points to be unequal, either their x or their y co-ordinate values must be different.

Parameters

const TPoint &aPoint

The point to be compared with this point.

Return value

TBool

True, if the two points are unequal; false, otherwise.


operator-=(const TPoint &)

IMPORT_C TPoint& operator-=(const TPoint &aPoint);

Description

TPoint subtraction assignment operator.

The operator subtracts the specified point from this point, and assigns the result back to this point.

Parameters

const TPoint &aPoint

The point to be subtracted.

Return value

TPoint &

A reference to this point object.


operator+=(const TPoint &)

IMPORT_C TPoint& operator+=(const TPoint &aPoint);

Description

TPoint addition assignment operator.

The operator adds the specified point to this point, and assigns the result back to this point.

Parameters

const TPoint &aPoint

The point to be added.

Return value

TPoint &

A reference to this point object.


operator-=(const TSize &)

IMPORT_C TPoint& operator-=(const TSize &aSize);

Description

TSize subtraction assignment operator.

The operator subtracts the specified TSize from this point, and assigns the result back to this point.

The operation proceeds by:

1. subtracting the width value of the TSize from the x co-ordinate value

2. subtracting the height value of the TSize from the y co-ordinate value

Parameters

const TSize &aSize

The TSize to be subtracted.

Return value

TPoint &

A reference to this point object.


operator+=(const TSize &)

IMPORT_C TPoint& operator+=(const TSize &aSize);

Description

TSize addition assignment operator.

The operator adds the specified TSize to this point, and assigns the result back to this point.

The operation proceeds by:

1. adding the width value of the TSize to the x co-ordinate value

2. adding the height value of the TSize to the y co-ordinate value

Parameters

const TSize &aSize

The TSize to be added to this point.

Return value

TPoint &

A reference to this point object.


operator-(const TPoint &)const

IMPORT_C TPoint operator-(const TPoint &aPoint) const;

Description

TPoint subtraction operator.

The operator subtracts the specified point from this point, and returns the resulting value.

Parameters

const TPoint &aPoint

The point to be subtracted from this point.

Return value

TPoint

The result of the operation.


operator+(const TPoint &)const

IMPORT_C TPoint operator+(const TPoint &aPoint) const;

Description

The operator adds the specified point to this point, and returns the resulting value.

Parameters

const TPoint &aPoint

The point to be added to this point.

Return value

TPoint

The result of the operation.


operator-(const TSize &)const

IMPORT_C TPoint operator-(const TSize &aSize) const;

Description

TSize subtraction operator.

The operator subtracts the specified TSize from this point, and returns the resulting value.

The operation proceeds by:

1. subtracting the width value of the TSize from the x co-ordinate value

2. subtracting the height value of the TSize from the y co-ordinate value.

Parameters

const TSize &aSize

The TSize to be subtracted.

Return value

TPoint

The result of the operation.


operator+(const TSize &)const

IMPORT_C TPoint operator+(const TSize &aSize) const;

Description

TSize addition operator.

The operator adds the specified TSize to this point, and returns the resulting value.

The operation proceeds by:

1. adding the width value of the TSize to the x co-ordinate value

2. adding the height value of the TSize to the y co-ordinate value.

Parameters

const TSize &aSize

The TSize to be added to this TPoint.

Return value

TPoint

The result of the operation.


operator-()const

IMPORT_C TPoint operator-() const;

Description

Unary minus operator.

The operator returns the negation of this point.

Return value

TPoint

The result of the operation.


SetXY(TInt,TInt)

IMPORT_C void SetXY(TInt aX, TInt aY);

Description

Sets the x and y co-ordinates for this point.

Parameters

TInt aX

The value to assign to the x co-ordinate.

TInt aY

The value to assign to the y co-ordinate.


AsSize()const

IMPORT_C TSize AsSize() const;

Description

Gets the size of the rectangle whose top left hand corner is the origin of the screen co-ordinates and whose bottom right hand corner is this point.

Return value

TSize

The co-ordinates of this point converted to a size.

[Top]


Member enumerations


Enum TUninitialized

TUninitialized

Description

EUninitialized

[Top]


Member data


iX

TInt iX;

Description

The x co-ordinate.


iY

TInt iY;

Description

The y co-ordinate.