2009-08-26 13:11:27 +00:00
|
|
|
/*************************************************************************
|
2010-02-12 15:01:35 +01:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* This file is part of OpenOffice.org.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
|
|
|
*
|
2009-08-26 13:11:27 +00:00
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_svtools.hxx"
|
|
|
|
|
|
|
|
#include "svtools/table/tablecontrol.hxx"
|
|
|
|
#include "tablegeometry.hxx"
|
|
|
|
#include "tablecontrol_impl.hxx"
|
2010-04-09 14:15:44 +02:00
|
|
|
#include "accessibletableimp.hxx"
|
2009-08-26 13:11:27 +00:00
|
|
|
#include "svtools/table/tabledatawindow.hxx"
|
2009-10-30 12:37:25 +00:00
|
|
|
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
|
|
|
|
#include <com/sun/star/accessibility/AccessibleRole.hpp>
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using ::com::sun::star::accessibility::XAccessible;
|
|
|
|
using namespace ::com::sun::star::accessibility;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace utl;
|
|
|
|
//using namespace rtl;
|
2009-08-26 13:11:27 +00:00
|
|
|
//........................................................................
|
|
|
|
namespace svt { namespace table
|
|
|
|
{
|
2009-10-30 12:37:25 +00:00
|
|
|
//====================================================================
|
|
|
|
//= AccessibleTableControl_Impl
|
|
|
|
//====================================================================
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
Reference< XAccessible > AccessibleTableControl_Impl::getAccessibleTableHeader( AccessibleTableControlObjType _eObjType )
|
|
|
|
{
|
|
|
|
if ( m_pAccessible && m_pAccessible->isAlive() )
|
|
|
|
return m_pAccessible->getTableHeader( _eObjType );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
Reference< XAccessible > AccessibleTableControl_Impl::getAccessibleTable( )
|
|
|
|
{
|
|
|
|
if ( m_pAccessible && m_pAccessible->isAlive() )
|
|
|
|
return m_pAccessible->getTable( );
|
|
|
|
return NULL;
|
|
|
|
}
|
2009-08-26 13:11:27 +00:00
|
|
|
|
|
|
|
//====================================================================
|
|
|
|
//= TableControl
|
|
|
|
//====================================================================
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
TableControl::TableControl( Window* _pParent, WinBits _nStyle )
|
|
|
|
:Control( _pParent, _nStyle )
|
|
|
|
,m_pImpl( new TableControl_Impl( *this ) )
|
2010-03-22 11:17:10 +01:00
|
|
|
,m_bSelectionChanged(false)
|
2010-06-04 15:02:11 +02:00
|
|
|
,m_bTooltip(false)
|
2009-08-26 13:11:27 +00:00
|
|
|
{
|
2010-04-23 17:41:32 +02:00
|
|
|
TableDataWindow* aTableData = m_pImpl->getDataWindow();
|
|
|
|
aTableData->SetMouseButtonDownHdl( LINK( this, TableControl, ImplMouseButtonDownHdl ) );
|
|
|
|
aTableData->SetMouseButtonUpHdl( LINK( this, TableControl, ImplMouseButtonUpHdl ) );
|
|
|
|
aTableData->SetSelectHdl( LINK( this, TableControl, ImplSelectHdl ) );
|
2009-10-30 12:37:25 +00:00
|
|
|
m_pAccessTable.reset(new ::svt::table::AccessibleTableControl_Impl());
|
2010-05-05 10:46:06 +02:00
|
|
|
|
|
|
|
// by default, use the background as determined by the style settings
|
|
|
|
const Color aWindowColor( GetSettings().GetStyleSettings().GetFieldColor() );
|
|
|
|
SetBackground( Wallpaper( aWindowColor ) );
|
|
|
|
SetFillColor( aWindowColor );
|
2009-08-26 13:11:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
TableControl::~TableControl()
|
|
|
|
{
|
2010-03-22 11:17:10 +01:00
|
|
|
ImplCallEventListeners( VCLEVENT_OBJECT_DYING );
|
2009-08-26 13:11:27 +00:00
|
|
|
DELETEZ( m_pImpl );
|
2009-10-30 12:37:25 +00:00
|
|
|
if ( m_pAccessTable->m_pAccessible )
|
|
|
|
{
|
|
|
|
m_pAccessTable->m_pAccessible->dispose();
|
|
|
|
}
|
2009-08-26 13:11:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void TableControl::GetFocus()
|
|
|
|
{
|
|
|
|
if ( !m_pImpl->getInputHandler()->GetFocus( *m_pImpl ) )
|
|
|
|
{
|
|
|
|
Control::GetFocus();
|
2009-10-30 12:37:25 +00:00
|
|
|
Control::GrabFocus();
|
2009-08-26 13:11:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void TableControl::LoseFocus()
|
|
|
|
{
|
|
|
|
if ( !m_pImpl->getInputHandler()->LoseFocus( *m_pImpl ) )
|
|
|
|
Control::LoseFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void TableControl::KeyInput( const KeyEvent& rKEvt )
|
|
|
|
{
|
|
|
|
if ( !m_pImpl->getInputHandler()->KeyInput( *m_pImpl, rKEvt ) )
|
|
|
|
Control::KeyInput( rKEvt );
|
2010-03-22 11:17:10 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if(m_bSelectionChanged)
|
|
|
|
{
|
|
|
|
Select();
|
|
|
|
m_bSelectionChanged = false;
|
|
|
|
}
|
|
|
|
}
|
2009-08-26 13:11:27 +00:00
|
|
|
}
|
2010-05-05 10:46:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void TableControl::StateChanged( StateChangedType i_nStateChange )
|
|
|
|
{
|
|
|
|
Control::StateChanged( i_nStateChange );
|
|
|
|
|
|
|
|
// forward certain settings to the data window
|
|
|
|
switch ( i_nStateChange )
|
|
|
|
{
|
|
|
|
case STATE_CHANGE_CONTROLBACKGROUND:
|
|
|
|
if ( IsControlBackground() )
|
|
|
|
getDataWindow()->SetControlBackground( GetControlBackground() );
|
|
|
|
else
|
|
|
|
getDataWindow()->SetControlBackground();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case STATE_CHANGE_CONTROLFOREGROUND:
|
|
|
|
if ( IsControlForeground() )
|
|
|
|
getDataWindow()->SetControlForeground( GetControlForeground() );
|
|
|
|
else
|
|
|
|
getDataWindow()->SetControlForeground();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case STATE_CHANGE_CONTROLFONT:
|
|
|
|
if ( IsControlFont() )
|
|
|
|
getDataWindow()->SetControlFont( GetControlFont() );
|
|
|
|
else
|
|
|
|
getDataWindow()->SetControlFont();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-26 13:11:27 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void TableControl::Resize()
|
|
|
|
{
|
|
|
|
Control::Resize();
|
|
|
|
m_pImpl->onResize();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void TableControl::SetModel( PTableModel _pModel )
|
|
|
|
{
|
|
|
|
m_pImpl->setModel( _pModel );
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
PTableModel TableControl::GetModel() const
|
|
|
|
{
|
|
|
|
return m_pImpl->getModel();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
RowPos TableControl::GetTopRow() const
|
|
|
|
{
|
|
|
|
return m_pImpl->getTopRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void TableControl::SetTopRow( RowPos _nRow )
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
(void)_nRow;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2009-10-30 12:37:25 +00:00
|
|
|
sal_Int32 TableControl::GetCurrentRow() const
|
2009-08-26 13:11:27 +00:00
|
|
|
{
|
|
|
|
return m_pImpl->getCurRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2009-10-30 12:37:25 +00:00
|
|
|
sal_Int32 TableControl::GetCurrentColumn() const
|
2009-08-26 13:11:27 +00:00
|
|
|
{
|
|
|
|
return m_pImpl->getCurColumn();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
bool TableControl::GoTo( ColPos _nColumn, RowPos _nRow )
|
|
|
|
{
|
|
|
|
return m_pImpl->goTo( _nColumn, _nRow );
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
2009-10-30 12:37:25 +00:00
|
|
|
sal_Bool TableControl::GoToCell(sal_Int32 _nColPos, sal_Int32 _nRowPos)
|
|
|
|
{
|
|
|
|
return m_pImpl->goTo( _nColPos, _nRowPos );
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
2010-03-18 08:21:26 +01:00
|
|
|
void TableControl::clearSelection()
|
|
|
|
{
|
|
|
|
m_pImpl->clearSelection();
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
2010-03-22 11:17:10 +01:00
|
|
|
void TableControl::InvalidateDataWindow(RowPos _nRowStart, RowPos _nRowEnd, bool _bRemoved)
|
2009-08-26 13:11:27 +00:00
|
|
|
{
|
|
|
|
Rectangle _rRect;
|
|
|
|
if(_bRemoved)
|
2010-03-25 11:49:27 +01:00
|
|
|
m_pImpl->invalidateRows();
|
2009-08-26 13:11:27 +00:00
|
|
|
else
|
2010-03-22 11:17:10 +01:00
|
|
|
{
|
|
|
|
if(m_bSelectionChanged)
|
|
|
|
{
|
|
|
|
m_pImpl->invalidateSelectedRegion(_nRowStart, _nRowEnd, _rRect);
|
|
|
|
m_bSelectionChanged = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
m_pImpl->invalidateRow(_nRowStart, _rRect);
|
|
|
|
}
|
2009-08-26 13:11:27 +00:00
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
2009-10-30 12:37:25 +00:00
|
|
|
std::vector<sal_Int32>& TableControl::GetSelectedRows()
|
2009-08-26 13:11:27 +00:00
|
|
|
{
|
|
|
|
return m_pImpl->getSelectedRows();
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
2010-03-22 11:17:10 +01:00
|
|
|
void TableControl::RemoveSelectedRow(RowPos _nRowPos)
|
2009-08-26 13:11:27 +00:00
|
|
|
{
|
|
|
|
m_pImpl->removeSelectedRow(_nRowPos);
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
|
|
|
|
RowPos TableControl::GetCurrentRow(const Point& rPoint)
|
|
|
|
{
|
|
|
|
return m_pImpl->getCurrentRow( rPoint );
|
|
|
|
}
|
|
|
|
|
|
|
|
SelectionEngine* TableControl::getSelEngine()
|
|
|
|
{
|
|
|
|
return m_pImpl->getSelEngine();
|
|
|
|
}
|
|
|
|
|
|
|
|
TableDataWindow* TableControl::getDataWindow()
|
|
|
|
{
|
|
|
|
return m_pImpl->getDataWindow();
|
|
|
|
}
|
2009-10-30 12:37:25 +00:00
|
|
|
|
|
|
|
Reference< XAccessible > TableControl::CreateAccessible()
|
|
|
|
{
|
|
|
|
Window* pParent = GetAccessibleParentWindow();
|
|
|
|
DBG_ASSERT( pParent, "TableControl::CreateAccessible - parent not found" );
|
|
|
|
|
|
|
|
if( pParent && !m_pAccessTable->m_pAccessible)
|
|
|
|
{
|
|
|
|
Reference< XAccessible > xAccParent = pParent->GetAccessible();
|
|
|
|
if( xAccParent.is() )
|
|
|
|
{
|
|
|
|
m_pAccessTable->m_pAccessible = getAccessibleFactory().createAccessibleTableControl(
|
|
|
|
xAccParent, *this
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Reference< XAccessible > xAccessible;
|
|
|
|
if ( m_pAccessTable->m_pAccessible )
|
|
|
|
xAccessible = m_pAccessTable->m_pAccessible->getMyself();
|
|
|
|
return xAccessible;
|
|
|
|
}
|
|
|
|
Reference<XAccessible> TableControl::CreateAccessibleControl( sal_Int32 _nIndex )
|
|
|
|
{
|
|
|
|
(void)_nIndex;
|
|
|
|
DBG_ASSERT( FALSE, "TableControl::CreateAccessibleControl: to be overwritten!" );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
::rtl::OUString TableControl::GetAccessibleObjectName( AccessibleTableControlObjType eObjType, sal_Int32 _nRow, sal_Int32 _nCol) const
|
|
|
|
{
|
|
|
|
::rtl::OUString aRetText;
|
2010-02-12 17:08:15 +01:00
|
|
|
//Window* pWin;
|
2009-10-30 12:37:25 +00:00
|
|
|
switch( eObjType )
|
|
|
|
{
|
|
|
|
case TCTYPE_GRIDCONTROL:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "GridControl" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_TABLE:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Table" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_ROWHEADERBAR:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "RowHeaderBar" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_COLUMNHEADERBAR:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ColumnHeaderBar" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_TABLECELL:
|
2010-06-09 14:39:18 +02:00
|
|
|
aRetText = GetAccessibleCellText(_nRow, _nCol);
|
2009-10-30 12:37:25 +00:00
|
|
|
break;
|
|
|
|
case TCTYPE_ROWHEADERCELL:
|
|
|
|
aRetText = GetRowName(_nRow);
|
|
|
|
break;
|
|
|
|
case TCTYPE_COLUMNHEADERCELL:
|
|
|
|
aRetText = GetColumnName(_nCol);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
OSL_ENSURE(0,"GridControl::GetAccessibleName: invalid enum!");
|
|
|
|
}
|
|
|
|
return aRetText;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
::rtl::OUString TableControl::GetAccessibleObjectDescription( AccessibleTableControlObjType eObjType, sal_Int32 ) const
|
|
|
|
{
|
|
|
|
::rtl::OUString aRetText;
|
|
|
|
switch( eObjType )
|
|
|
|
{
|
|
|
|
case TCTYPE_GRIDCONTROL:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "GridControl description" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_TABLE:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "TABLE description" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_ROWHEADERBAR:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ROWHEADERBAR description" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_COLUMNHEADERBAR:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "COLUMNHEADERBAR description" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_TABLECELL:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "TABLECELL description" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_ROWHEADERCELL:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "ROWHEADERCELL description" ) );
|
|
|
|
break;
|
|
|
|
case TCTYPE_COLUMNHEADERCELL:
|
|
|
|
aRetText = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "COLUMNHEADERCELL description" ) );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return aRetText;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
::rtl::OUString TableControl::GetRowDescription( sal_Int32 _nRow) const
|
|
|
|
{
|
|
|
|
(void)_nRow;
|
|
|
|
return rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "row description" ) );
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
::rtl::OUString TableControl::GetRowName( sal_Int32 _nIndex) const
|
|
|
|
{
|
|
|
|
return GetModel()->getRowHeaderName()[_nIndex];
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
::rtl::OUString TableControl::GetColumnDescription( sal_uInt16 _nColumn) const
|
|
|
|
{
|
|
|
|
(void)_nColumn;
|
|
|
|
return rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "col description" ) );
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
::rtl::OUString TableControl::GetColumnName( sal_Int32 _nIndex) const
|
|
|
|
{
|
|
|
|
return GetModel()->getColumnModel(_nIndex)->getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2010-02-12 17:08:15 +01:00
|
|
|
::com::sun::star::uno::Any TableControl::GetCellContent( sal_Int32 _nRowPos, sal_Int32 _nColPos) const
|
2009-10-30 12:37:25 +00:00
|
|
|
{
|
2010-04-16 16:55:27 +02:00
|
|
|
::com::sun::star::uno::Any cellContent(::com::sun::star::uno::Any(::rtl::OUString::createFromAscii("")));
|
2010-02-12 17:08:15 +01:00
|
|
|
std::vector<std::vector< ::com::sun::star::uno::Any > >& aTableContent = GetModel()->getCellContent();
|
2009-10-30 12:37:25 +00:00
|
|
|
if(&aTableContent)
|
2010-03-26 17:45:16 +01:00
|
|
|
cellContent = aTableContent[_nRowPos][_nColPos];
|
2009-10-30 12:37:25 +00:00
|
|
|
return cellContent;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2010-06-09 14:39:18 +02:00
|
|
|
::rtl::OUString TableControl::GetAccessibleCellText( sal_Int32 _nRowPos, sal_Int32 _nColPos) const
|
2010-03-22 11:17:10 +01:00
|
|
|
{
|
2010-06-09 14:39:18 +02:00
|
|
|
const ::com::sun::star::uno::Any cellContent = GetCellContent(_nRowPos, _nColPos);
|
2010-03-26 17:45:16 +01:00
|
|
|
return m_pImpl->convertToString(cellContent);
|
2010-03-22 11:17:10 +01:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2009-10-30 12:37:25 +00:00
|
|
|
void TableControl::FillAccessibleStateSet(
|
|
|
|
::utl::AccessibleStateSetHelper& rStateSet,
|
|
|
|
AccessibleTableControlObjType eObjType ) const
|
|
|
|
{
|
|
|
|
switch( eObjType )
|
|
|
|
{
|
|
|
|
case TCTYPE_GRIDCONTROL:
|
|
|
|
case TCTYPE_TABLE:
|
|
|
|
|
|
|
|
rStateSet.AddState( AccessibleStateType::FOCUSABLE );
|
|
|
|
rStateSet.AddState( AccessibleStateType::MULTI_SELECTABLE);
|
|
|
|
if ( HasFocus() )
|
|
|
|
rStateSet.AddState( AccessibleStateType::FOCUSED );
|
|
|
|
if ( IsActive() )
|
|
|
|
rStateSet.AddState( AccessibleStateType::ACTIVE );
|
|
|
|
if ( IsEnabled() )
|
|
|
|
rStateSet.AddState( AccessibleStateType::ENABLED );
|
|
|
|
if ( IsReallyVisible() )
|
|
|
|
rStateSet.AddState( AccessibleStateType::VISIBLE );
|
|
|
|
rStateSet.AddState( AccessibleStateType::MANAGES_DESCENDANTS );
|
|
|
|
|
|
|
|
break;
|
|
|
|
case TCTYPE_ROWHEADERBAR:
|
|
|
|
rStateSet.AddState( AccessibleStateType::VISIBLE );
|
|
|
|
rStateSet.AddState( AccessibleStateType::MANAGES_DESCENDANTS );
|
|
|
|
break;
|
|
|
|
case TCTYPE_COLUMNHEADERBAR:
|
|
|
|
rStateSet.AddState( AccessibleStateType::VISIBLE );
|
|
|
|
rStateSet.AddState( AccessibleStateType::MANAGES_DESCENDANTS );
|
|
|
|
break;
|
|
|
|
case TCTYPE_TABLECELL:
|
|
|
|
{
|
|
|
|
rStateSet.AddState( AccessibleStateType::TRANSIENT );
|
|
|
|
rStateSet.AddState( AccessibleStateType::SELECTABLE);
|
|
|
|
if( GetSelectedRowCount()>0)
|
|
|
|
rStateSet.AddState( AccessibleStateType::SELECTED);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case TCTYPE_ROWHEADERCELL:
|
|
|
|
rStateSet.AddState( AccessibleStateType::VISIBLE );
|
|
|
|
rStateSet.AddState( AccessibleStateType::TRANSIENT );
|
|
|
|
break;
|
|
|
|
case TCTYPE_COLUMNHEADERCELL:
|
|
|
|
rStateSet.AddState( AccessibleStateType::VISIBLE );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-01 17:52:56 +02:00
|
|
|
Rectangle TableControl::GetWindowExtentsRelative( Window *pRelativeWindow ) const
|
2009-10-30 12:37:25 +00:00
|
|
|
{
|
|
|
|
return Control::GetWindowExtentsRelative( pRelativeWindow );
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void TableControl::GrabFocus()
|
|
|
|
{
|
|
|
|
Control::GrabFocus();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Reference< XAccessible > TableControl::GetAccessible( BOOL bCreate )
|
|
|
|
{
|
|
|
|
return Control::GetAccessible( bCreate );
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Window* TableControl::GetAccessibleParentWindow() const
|
|
|
|
{
|
|
|
|
return Control::GetAccessibleParentWindow();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Window* TableControl::GetWindowInstance()
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Bool TableControl::HasRowHeader()
|
|
|
|
{
|
|
|
|
return GetModel()->hasRowHeaders();
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
sal_Bool TableControl::HasColHeader()
|
|
|
|
{
|
|
|
|
return GetModel()->hasColumnHeaders();
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------
|
|
|
|
sal_Int32 TableControl::GetAccessibleControlCount() const
|
|
|
|
{
|
|
|
|
sal_Int32 count = 0;
|
|
|
|
if(GetRowCount()>0)
|
|
|
|
count+=1;
|
|
|
|
if(GetModel()->hasRowHeaders())
|
|
|
|
count+=1;
|
|
|
|
if(GetModel()->hasColumnHeaders())
|
|
|
|
count+=1;
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
sal_Bool TableControl::ConvertPointToControlIndex( sal_Int32& _rnIndex, const Point& _rPoint )
|
|
|
|
{
|
|
|
|
sal_Int32 nRow = m_pImpl->getCurrentRow(_rPoint);
|
|
|
|
sal_Int32 nCol = GetCurrentColumn();
|
|
|
|
_rnIndex = nRow * GetColumnCount() + nCol;
|
|
|
|
return nRow>=0 ? sal_True : sal_False;
|
|
|
|
}
|
|
|
|
|
|
|
|
long TableControl::GetRowCount() const
|
|
|
|
{
|
|
|
|
return m_pImpl->getRowCount();
|
|
|
|
}
|
|
|
|
long TableControl::GetColumnCount() const
|
|
|
|
{
|
|
|
|
return m_pImpl->getColumnCount();
|
|
|
|
}
|
|
|
|
sal_Bool TableControl::HasRowHeader() const
|
|
|
|
{
|
|
|
|
PTableModel pModel = GetModel();
|
|
|
|
return pModel->hasRowHeaders();
|
|
|
|
}
|
|
|
|
sal_Int32 TableControl::GetSelectedRowCount() const
|
|
|
|
{
|
|
|
|
return m_pImpl->getSelectedRows().size();
|
|
|
|
}
|
|
|
|
bool TableControl::IsRowSelected( long _nRow ) const
|
|
|
|
{
|
|
|
|
return m_pImpl->isRowSelected(m_pImpl->getSelectedRows(), _nRow);
|
|
|
|
}
|
|
|
|
sal_Bool TableControl::ConvertPointToCellAddress( sal_Int32& _rnRow, sal_Int32& _rnColPos, const Point& _rPoint )
|
|
|
|
{
|
|
|
|
_rnRow = m_pImpl->getCurrentRow(_rPoint);
|
|
|
|
_rnColPos = GetCurrentColumn();
|
|
|
|
return _rnRow>=0 ? sal_True : sal_False;
|
|
|
|
}
|
|
|
|
void TableControl::FillAccessibleStateSetForCell( ::utl::AccessibleStateSetHelper& _rStateSet, sal_Int32 _nRow, sal_uInt16 _nColumnPos ) const
|
|
|
|
{
|
|
|
|
if ( GetCurrentRow() == _nRow && GetCurrentColumn() == _nColumnPos )
|
|
|
|
_rStateSet.AddState( AccessibleStateType::FOCUSED );
|
|
|
|
else // only transient when column is not focused
|
|
|
|
_rStateSet.AddState( AccessibleStateType::TRANSIENT );
|
|
|
|
}
|
|
|
|
Rectangle TableControl::GetFieldCharacterBounds(sal_Int32 _nRow,sal_Int32 _nColumnPos,sal_Int32 nIndex)
|
|
|
|
{
|
|
|
|
(void)_nRow;
|
|
|
|
(void)_nColumnPos;
|
|
|
|
return GetCharacterBounds(nIndex);
|
|
|
|
}
|
|
|
|
sal_Int32 TableControl::GetFieldIndexAtPoint(sal_Int32 _nRow,sal_Int32 _nColumnPos,const Point& _rPoint)
|
|
|
|
{
|
|
|
|
(void)_nRow;
|
|
|
|
(void)_nColumnPos;
|
2010-02-12 16:56:44 +01:00
|
|
|
return GetIndexForPoint(_rPoint);
|
2009-10-30 12:37:25 +00:00
|
|
|
;
|
|
|
|
}
|
2010-02-12 16:56:44 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Bool TableControl::isAccessibleAlive( ) const
|
|
|
|
{
|
|
|
|
return ( NULL != m_pAccessTable->m_pAccessible ) && m_pAccessTable->m_pAccessible->isAlive();
|
|
|
|
}
|
2009-10-30 12:37:25 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
::svt::IAccessibleFactory& TableControl::getAccessibleFactory()
|
|
|
|
{
|
|
|
|
return m_pAccessTable->m_aFactoryAccess.getFactory();
|
|
|
|
}
|
2010-02-12 16:56:44 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void TableControl::commitGridControlEvent( sal_Int16 _nEventId, const Any& _rNewValue, const Any& _rOldValue )
|
|
|
|
{
|
|
|
|
if ( isAccessibleAlive() )
|
|
|
|
m_pAccessTable->m_pAccessible->commitEvent( _nEventId, _rNewValue, _rOldValue);
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Rectangle TableControl::calcHeaderRect(sal_Bool _bIsColumnBar,BOOL _bOnScreen)
|
|
|
|
{
|
|
|
|
(void)_bOnScreen;
|
2010-03-26 17:45:16 +01:00
|
|
|
return m_pImpl->calcHeaderRect(_bIsColumnBar);
|
2010-02-12 16:56:44 +01:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Rectangle TableControl::calcTableRect(BOOL _bOnScreen)
|
|
|
|
{
|
|
|
|
(void)_bOnScreen;
|
2010-03-26 17:45:16 +01:00
|
|
|
return m_pImpl->calcTableRect();
|
2010-02-12 17:08:15 +01:00
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
::com::sun::star::uno::Sequence< sal_Int32 >& TableControl::getColumnsForTooltip()
|
|
|
|
{
|
|
|
|
return m_nCols;
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
::com::sun::star::uno::Sequence< ::rtl::OUString >& TableControl::getTextForTooltip()
|
|
|
|
{
|
|
|
|
return m_aText;
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void TableControl::setTooltip(const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aText, const ::com::sun::star::uno::Sequence< sal_Int32 >& nCols )
|
|
|
|
{
|
|
|
|
m_aText = aText;
|
|
|
|
m_nCols = nCols;
|
2010-06-04 15:02:11 +02:00
|
|
|
m_bTooltip = true;
|
2010-02-12 17:08:15 +01:00
|
|
|
}
|
2010-03-22 11:17:10 +01:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void TableControl::selectionChanged(bool _bChanged)
|
|
|
|
{
|
|
|
|
m_bSelectionChanged = _bChanged;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
2010-06-04 15:02:11 +02:00
|
|
|
bool TableControl::isTooltip()
|
|
|
|
{
|
|
|
|
return m_bTooltip;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
2010-03-22 11:17:10 +01:00
|
|
|
IMPL_LINK( TableControl, ImplSelectHdl, void*, EMPTYARG )
|
|
|
|
{
|
|
|
|
Select();
|
|
|
|
return 1;
|
|
|
|
}
|
2010-04-16 16:55:27 +02:00
|
|
|
IMPL_LINK( TableControl, ImplMouseButtonDownHdl, MouseEvent*, pData )
|
|
|
|
{
|
|
|
|
CallEventListeners( VCLEVENT_WINDOW_MOUSEBUTTONDOWN, pData );
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
IMPL_LINK( TableControl, ImplMouseButtonUpHdl, MouseEvent*, pData )
|
|
|
|
{
|
|
|
|
CallEventListeners( VCLEVENT_WINDOW_MOUSEBUTTONUP, pData );
|
|
|
|
return 1;
|
|
|
|
}
|
2010-03-22 11:17:10 +01:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void TableControl::Select()
|
|
|
|
{
|
|
|
|
ImplCallEventListenersAndHandler( VCLEVENT_TABLEROW_SELECT, m_aSelectHdl, this );
|
2009-10-30 12:37:25 +00:00
|
|
|
}
|
2009-08-26 13:11:27 +00:00
|
|
|
//........................................................................
|
2009-10-30 12:37:25 +00:00
|
|
|
}} // namespace svt::table
|
2009-08-26 13:11:27 +00:00
|
|
|
//........................................................................
|