LibreOffice Module toolkit (master) 1
Public Member Functions | List of all members
svt::table::ITableRenderer Class Referenceabstract

interface to implement by components rendering a ->TableControl More...

#include <tablerenderer.hxx>

Inheritance diagram for svt::table::ITableRenderer:
[legend]

Public Member Functions

virtual void PaintHeaderArea (vcl::RenderContext &_rDevice, const tools::Rectangle &_rArea, bool _bIsColHeaderArea, bool _bIsRowHeaderArea, const StyleSettings &_rStyle)=0
 paints a (part of) header area More...
 
virtual void PaintColumnHeader (ColPos _nCol, vcl::RenderContext &_rDevice, const tools::Rectangle &_rArea, const StyleSettings &_rStyle)=0
 paints the header for a given column More...
 
virtual void PrepareRow (RowPos _nRow, bool i_hasControlFocus, bool _bSelected, vcl::RenderContext &_rDevice, const tools::Rectangle &_rRowArea, const StyleSettings &_rStyle)=0
 prepares a row for painting More...
 
virtual void PaintRowHeader (vcl::RenderContext &_rDevice, tools::Rectangle const &_rArea, StyleSettings const &_rStyle)=0
 paints the header of a row More...
 
virtual void PaintCell (ColPos const i_col, bool i_hasControlFocus, bool _bSelected, vcl::RenderContext &_rDevice, const tools::Rectangle &_rArea, const StyleSettings &_rStyle)=0
 paints a certain cell More...
 
virtual void ShowCellCursor (vcl::Window &_rView, const tools::Rectangle &_rCursorRect)=0
 draws a cell cursor in the given rectangle More...
 
virtual void HideCellCursor (vcl::Window &_rView)=0
 hides the cell cursor previously drawn into the given rectangle More...
 
virtual bool FitsIntoCell (css::uno::Any const &i_cellContent, OutputDevice &i_targetDevice, tools::Rectangle const &i_targetArea) const =0
 checks whether a given cell content fits into a given target area on a given device. More...
 
virtual bool GetFormattedCellString (css::uno::Any const &i_cellValue, OUString &o_cellString) const =0
 attempts to format the content of the given cell as string More...
 
virtual ~ITableRenderer ()
 deletes the renderer instance More...
 

Detailed Description

interface to implement by components rendering a ->TableControl

Definition at line 47 of file tablerenderer.hxx.

Constructor & Destructor Documentation

◆ ~ITableRenderer()

virtual svt::table::ITableRenderer::~ITableRenderer ( )
inlinevirtual

deletes the renderer instance

Definition at line 241 of file tablerenderer.hxx.

Member Function Documentation

◆ FitsIntoCell()

virtual bool svt::table::ITableRenderer::FitsIntoCell ( css::uno::Any const &  i_cellContent,
OutputDevice i_targetDevice,
tools::Rectangle const &  i_targetArea 
) const
pure virtual

checks whether a given cell content fits into a given target area on a given device.

Parameters
i_targetDevicedenotes the target device for the assumed rendering operation
i_targetAreadenotes the area within the target device for the assumed rendering operation.
Returns
<TRUE> if and only if the given cell content could be rendered into the given device and the given area.

Implemented in svt::table::GridTableRenderer.

◆ GetFormattedCellString()

virtual bool svt::table::ITableRenderer::GetFormattedCellString ( css::uno::Any const &  i_cellValue,
OUString &  o_cellString 
) const
pure virtual

attempts to format the content of the given cell as string

Parameters
i_cellValuethe value for which an attempt for a string conversion should be made
o_cellStringthe cell content, formatted as string
Returns
<TRUE> if and only if the content could be formatted as string

Implemented in svt::table::GridTableRenderer.

◆ HideCellCursor()

virtual void svt::table::ITableRenderer::HideCellCursor ( vcl::Window _rView)
pure virtual

hides the cell cursor previously drawn into the given rectangle

The cell cursor is used to indicate the active/current cell of a table control.

Implemented in svt::table::GridTableRenderer.

◆ PaintCell()

virtual void svt::table::ITableRenderer::PaintCell ( ColPos const  i_col,
bool  i_hasControlFocus,
bool  _bSelected,
vcl::RenderContext _rDevice,
const tools::Rectangle _rArea,
const StyleSettings _rStyle 
)
pure virtual

paints a certain cell

The row to be painted is denoted by the most recent call to ->PrepareRow.

Parameters
_bSelected<TRUE> if and only if the cell to be painted is selected currently. This is the case if either the row or the column of the cell is currently selected.
Note that this flag is equal to the respective flag in the previous ->PrepareRow call, it's passed here for convenience only.
i_hasControlFocus<TRUE> if and only if the table control currently has the focus
Note that this flag is equal to the respective flag in the previous ->PrepareRow call, it's passed here for convenience only.
_rDevicedenotes the device to paint onto
_rAreathe are into which the cell should be painted
_rStylethe style to be used for drawing

Implemented in svt::table::GridTableRenderer.

◆ PaintColumnHeader()

virtual void svt::table::ITableRenderer::PaintColumnHeader ( ColPos  _nCol,
vcl::RenderContext _rDevice,
const tools::Rectangle _rArea,
const StyleSettings _rStyle 
)
pure virtual

paints the header for a given column

Parameters
_nColthe index of the column to paint
_rDevicedenotes the device to paint onto
_rAreathe are into which the column header should be painted
_rStylethe style to be used for drawing

Implemented in svt::table::GridTableRenderer.

◆ PaintHeaderArea()

virtual void svt::table::ITableRenderer::PaintHeaderArea ( vcl::RenderContext _rDevice,
const tools::Rectangle _rArea,
bool  _bIsColHeaderArea,
bool  _bIsRowHeaderArea,
const StyleSettings _rStyle 
)
pure virtual

paints a (part of) header area

There are two header areas in a table control:

  • The row containing all column headers, i.e. above all rows containing the data
  • The column containing all row headers. i.e. left of all columns containing the data

A header area is more than the union of the single column/row headers.

First, there might be less columns than fit into the view - in this case, right beside the right-most column, there's still room which belongs to the column header area, but is not occupied by any particular column header.
An equivalent statement holds for the row header area, if there are fewer rows than fit into the view.

Second, if the table control has both a row header and a column header, the intersection between those both belongs to both the column header area and the row header area, but not to any particular column or row header.

There are two flags specifying whether the to-be-painted area is part of the column and/or row header area.

  • If both are <TRUE>, the intersection of both areas is to be painted.
  • If ->_bIsColHeaderArea is <TRUE> and ->_bIsRowHeaderArea is <FALSE>, then ->_rArea denotes the column header area excluding the intersection between row and column header area.
  • Equivalently for ->_bIsColHeaderArea being <FALSE> and ->_bIsRowHeaderArea being <TRUE>

Note that it's not possible for both ->_bIsColHeaderArea and ->_bIsRowHeaderArea to be <FALSE> at the same time.

Parameters
_rDevicethe device to paint onto
_rAreathe area to paint into
_bIsColHeaderArea<TRUE> if and only if ->_rArea is part of the column header area.
_bIsRowHeaderArea<TRUE> if and only if ->_rArea is part of the row header area.
_rStylethe style to be used for drawing

Implemented in svt::table::GridTableRenderer.

◆ PaintRowHeader()

virtual void svt::table::ITableRenderer::PaintRowHeader ( vcl::RenderContext _rDevice,
tools::Rectangle const &  _rArea,
StyleSettings const &  _rStyle 
)
pure virtual

paints the header of a row

The row to be painted is denoted by the most recent call to ->PrepareRow.

Parameters
_rDevicedenotes the device to paint onto
_rAreathe are into which the row header should be painted
_rStylethe style to be used for drawing

Implemented in svt::table::GridTableRenderer.

◆ PrepareRow()

virtual void svt::table::ITableRenderer::PrepareRow ( RowPos  _nRow,
bool  i_hasControlFocus,
bool  _bSelected,
vcl::RenderContext _rDevice,
const tools::Rectangle _rRowArea,
const StyleSettings _rStyle 
)
pure virtual

prepares a row for painting

Painting a table means painting rows as necessary, in an increasing order. The assumption is that retrieving data for two different rows is (potentially) more expensive than retrieving data for two different columns. Thus, the renderer will get the chance to "seek" to a certain row, and then has to render all cells in this row, before another row is going to be painted.

Parameters
_nRowthe row which is going to be painted. The renderer should at least remember this row, since subsequent calls to ->PaintRowHeader(), ->PaintCell(), and ->FinishRow() will not pass this parameter again.

However, the renderer is also allowed to render any cell-independent content of this row.

Parameters
i_hasControlFocus<TRUE> if and only if the table control currently has the focus
_bSelected<TRUE> if and only if the row to be prepared is selected currently.
_rDevicedenotes the device to paint onto
_rRowAreathe are into which the row should be painted. This excludes the row header area, if applicable.
_rStylethe style to be used for drawing

Implemented in svt::table::GridTableRenderer.

◆ ShowCellCursor()

virtual void svt::table::ITableRenderer::ShowCellCursor ( vcl::Window _rView,
const tools::Rectangle _rCursorRect 
)
pure virtual

draws a cell cursor in the given rectangle

The cell cursor is used to indicate the active/current cell of a table control.

Implemented in svt::table::GridTableRenderer.


The documentation for this class was generated from the following file: