Lines Matching refs:i_tableControl

62 …FunctionResult ColumnResize::handleMouseMove( ITableControl& i_tableControl, MouseEvent const & i_…  in handleMouseMove()  argument
70 TableCell const tableCell = i_tableControl.hitTest( aPoint ); in handleMouseMove()
75 i_tableControl.setPointer( aNewPointer ); in handleMouseMove()
80 ::Size const tableSize = i_tableControl.getTableSizePixel(); in handleMouseMove()
84 ColumnMetrics const & columnMetrics( i_tableControl.getColumnMetrics( m_nResizingColumn ) ); in handleMouseMove()
95 i_tableControl.setPointer( aNewPointer ); in handleMouseMove()
98 i_tableControl.hideTracking(); in handleMouseMove()
99 i_tableControl.showTracking( in handleMouseMove()
112 …FunctionResult ColumnResize::handleMouseDown( ITableControl& i_tableControl, MouseEvent const & i_… in handleMouseDown() argument
120 TableCell const tableCell( i_tableControl.hitTest( i_event.GetPosPixel() ) ); in handleMouseDown()
128 i_tableControl.captureMouse(); in handleMouseDown()
137 …FunctionResult ColumnResize::handleMouseUp( ITableControl& i_tableControl, MouseEvent const & i_ev… in handleMouseUp() argument
144 i_tableControl.hideTracking(); in handleMouseUp()
145 PColumnModel const pColumn = i_tableControl.getModel()->getColumnModel( m_nResizingColumn ); in handleMouseUp()
153 long const oldEnd = i_tableControl.getColumnMetrics( m_nResizingColumn ).nEndPixel; in handleMouseUp()
156 long const columnStart = i_tableControl.getColumnMetrics( m_nResizingColumn ).nStartPixel; in handleMouseUp()
163 long requestedWidthLogical = i_tableControl.pixelWidthToAppFont( requestedWidth ); in handleMouseUp()
178 i_tableControl.invalidate( TableAreaAll ); in handleMouseUp()
181 i_tableControl.setPointer( Pointer() ); in handleMouseUp()
182 i_tableControl.releaseMouse(); in handleMouseUp()
192 …FunctionResult RowSelection::handleMouseMove( ITableControl& i_tableControl, MouseEvent const & i_… in handleMouseMove() argument
194 OSL_UNUSED( i_tableControl ); in handleMouseMove()
200 …FunctionResult RowSelection::handleMouseDown( ITableControl& i_tableControl, MouseEvent const & i_… in handleMouseDown() argument
204 TableCell const tableCell( i_tableControl.hitTest( i_event.GetPosPixel() ) ); in handleMouseDown()
207 if ( i_tableControl.getSelEngine()->GetSelectionMode() == NO_SELECTION ) in handleMouseDown()
209 i_tableControl.activateCell( tableCell.nColumn, tableCell.nRow ); in handleMouseDown()
214 handled = i_tableControl.getSelEngine()->SelMouseButtonDown( i_event ); in handleMouseDown()
224 …FunctionResult RowSelection::handleMouseUp( ITableControl& i_tableControl, MouseEvent const & i_ev… in handleMouseUp() argument
226 TableCell const tableCell = i_tableControl.hitTest( i_event.GetPosPixel() ); in handleMouseUp()
229 if ( i_tableControl.getSelEngine()->GetSelectionMode() != NO_SELECTION ) in handleMouseUp()
231 i_tableControl.getSelEngine()->SelMouseButtonUp( i_event ); in handleMouseUp()
246 …FunctionResult ColumnSortHandler::handleMouseMove( ITableControl& i_tableControl, MouseEvent const… in handleMouseMove() argument
248 OSL_UNUSED( i_tableControl ); in handleMouseMove()
254 …FunctionResult ColumnSortHandler::handleMouseDown( ITableControl& i_tableControl, MouseEvent const… in handleMouseDown() argument
262 if ( i_tableControl.getModel()->getSortAdapter() == NULL ) in handleMouseDown()
266 TableCell const tableCell( i_tableControl.hitTest( i_event.GetPosPixel() ) ); in handleMouseDown()
277 …FunctionResult ColumnSortHandler::handleMouseUp( ITableControl& i_tableControl, MouseEvent const &… in handleMouseUp() argument
282 TableCell const tableCell( i_tableControl.hitTest( i_event.GetPosPixel() ) ); in handleMouseUp()
285 ITableDataSort* pSort = i_tableControl.getModel()->getSortAdapter(); in handleMouseUp()