wiki:Docs/Prog/Manual/ApplicationLibraries/lib825ev/Form/CFormRect

CFormRect 825gen2

Class for specifying a display rectangle. CFormRect may specify an alternate position and size for the zoom state.

Constructors

CFormRect(void);

Example

CFormRect rect;

Member Functions

SetX

Sets X coordinate

void SetX(int x);

Parameters

  • x - X coordinate

Return Value

Function does not return a value.

SetY

Sets Y coordinate

void SetY(int y);

Parameters

  • y - Y coordinate

Return Value

Function does not return a value.

SetWidth

Sets width of the rectangle

void SetWidth(int width);

Parameters

  • width - width value

Return Value

Function does not return a value.

SetHeight

Sets width of the rectangle

void SetHeight(int height);

Parameters

  • height - height value

Return Value

Function does not return a value.

AddToWidth

Adds specified number of pixels to width of the rectangle

void AddToWidth(int addToWidth);

Parameters

  • addToWidth - number of pixels to add

Return Value

Function does not return a value.

operator +=

Updates a rect position based on a CFormAdvanceX or CFormAdvanceY

CFormRect& opeator+=(const CFormAdvanceY& advY);

CFormRect& opeator+=(const CFormAdvanceX& advX);

CFormRect& opeator+=(const CFormRect& advRect);

Parameters

  • advY - CFormAdvanceY value
  • advX - CFormAdvanceX value
  • adv - CFormRect

Return Value

Function returns a reference to the CFormRect (this).

SetTopBasedOnFont

Sets top coordinate of the rectangle based on a font

void SetTopBasedOnFont(CFont& font, double multiplier, int addPixels = 0)

Parameters

  • font - CFont
  • multiplier - Value to multiplier times the height of the specified font to set the rectangle top
  • addPixels - value of additional pixels to add after the multiplication

Return Value

Function does not return a value.

SetHeightBasedOnFont

Sets the height of the rectangle based on a font

void SetHeightBasedOnFont(CFont& font, double heightMultiplier, int addPixels = 0

Parameters

  • font - CFont
  • heightMultiplier - Value to multiple the specified font height to set the rectangle height
  • addPixels - value of additional pixels to add after multiplication

Return Value

Function does not return a value.

SetTopAndHeightBasedOnFont

Sets top coordinate and height of the rectangle based on a font

void SetTopAndHeightBasedOnFont(CFont& font, double topMultiplier, double heightMultiplier)

Parameters

  • font - CFont
  • topMultiplier - Value to multiplier times the height of the specified font to set the rectangle top
  • heightMultiplier - value of multiplier time the height of the specified font to set the rectangle height

Return Value

Function does not return a value.

SetTopAndHeightSameAsOtherRect

Sets top coordinate and height of the rectangle based on a another rectangle

void SetTopAndHeightSameAsOtherRect(CFormRect& r)

Parameters

  • r = CFormRectangle

Return Value

Function does not return a value.

SetAsRegionOfRect

Sets coordinates of rectangle as a region of another rectangle

void SetAsRegionOfRect(CFormRect& r, double left, double top, double width, double height)

Parameters

  • r - CFormRect
  • left - Value for left multiplication factor
  • top - Value for top multiplication factor
  • width - Value for width multiplication factor
  • height - Value for height multiplication factor

Return Value

Function does not return a value.

SetWidthBasedOnFontStrWidth

Sets width of rectangle based on a font string

void SetWidthBasedOnFontStrWidth(CFont& font, const char* str, double widthMultiplier = 1.0)

void SetWidthBasedOnFontStrWidth(CFont& font, std::string& str, double widthMultiplier = 1.0)

Parameters

  • font - CFont
  • str - character array string
  • str - std::string reference
  • widthMultiplier - optional value

Return Value

Function does not return a value.

SetLeftBasedOnDspArea

Sets left of rectangle based on a CDspArea

void SetLeftBasedOnDspArea(CDspArea* pDspArea, double leftMultiplier)

Parameters

  • pDspArea - pointer to CDspArea
  • leftMultiplier - value for multiplication of dspArea width

Return Value

Function does not return a value.

SetLeftAndWidthBasedOnDspArea

Sets left and width of rectangle based on a CDspArea

void SetLeftAndWidthBasedOnDspArea(CDspArea* pDspArea, double leftMultiplier, double widthMultiplier)

Parameters

  • pDspArea - pointer to CDspArea
  • leftMultiplier - value for multiplication of dspArea width
  • widthMultiplier - value for multiplication of dspArea width

Return Value

Function does not return a value.

SetLeftToRightOfRect

Sets left to the right of specified rectangle

void SetLeftToRightOfRect(CFormRect& r, int addPixels = 0)

Parameters

  • r - CFormRect reference
  • addPixels - additional pixel value to add to the left coordinate

Return Value

Function does not return a value.

SetTopSameAsRect

Sets top of rectangle same as specified rectangle

void SetTopSameAsRect(CFormRect& r, int addPixels = 0)

Parameters

  • r - CFormRect reference
  • addPixels - additional pixel value to add to the top coordinate

Return Value

Function does not return a value.

SetLocationAndSizeFrom

Sets location and size of rectangle based on two specified rectangles

void SetLocationAndSizeFrom(CFormRect& upperLeft, CFormRect& lowerRight)

Parameters

  • upperLeft - CFormRect reference for upper left coordinate
  • lowerRight - CFormRect reference for lower right coordinate

Return Value

Function does not return a value.

Last modified 3 weeks ago Last modified on 03/12/25 15:15:12
Note: See TracWiki for help on using the wiki.