summaryrefslogtreecommitdiff
path: root/accessibility/source/standard/vclxaccessibletabpage.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'accessibility/source/standard/vclxaccessibletabpage.cxx')
-rw-r--r--accessibility/source/standard/vclxaccessibletabpage.cxx35
1 files changed, 0 insertions, 35 deletions
diff --git a/accessibility/source/standard/vclxaccessibletabpage.cxx b/accessibility/source/standard/vclxaccessibletabpage.cxx
index 8b5b5e702232..bb70bdf77880 100644
--- a/accessibility/source/standard/vclxaccessibletabpage.cxx
+++ b/accessibility/source/standard/vclxaccessibletabpage.cxx
@@ -44,7 +44,6 @@ using namespace ::com::sun::star;
using namespace ::comphelper;
-
// class VCLXAccessibleTabPage
@@ -60,7 +59,6 @@ VCLXAccessibleTabPage::VCLXAccessibleTabPage( TabControl* pTabControl, sal_uInt1
}
-
VCLXAccessibleTabPage::~VCLXAccessibleTabPage()
{
delete m_pExternalLock;
@@ -68,7 +66,6 @@ VCLXAccessibleTabPage::~VCLXAccessibleTabPage()
}
-
bool VCLXAccessibleTabPage::IsFocused()
{
bool bFocused = false;
@@ -80,7 +77,6 @@ bool VCLXAccessibleTabPage::IsFocused()
}
-
bool VCLXAccessibleTabPage::IsSelected()
{
bool bSelected = false;
@@ -92,7 +88,6 @@ bool VCLXAccessibleTabPage::IsSelected()
}
-
void VCLXAccessibleTabPage::SetFocused( bool bFocused )
{
if ( m_bFocused != bFocused )
@@ -108,7 +103,6 @@ void VCLXAccessibleTabPage::SetFocused( bool bFocused )
}
-
void VCLXAccessibleTabPage::SetSelected( bool bSelected )
{
if ( m_bSelected != bSelected )
@@ -124,7 +118,6 @@ void VCLXAccessibleTabPage::SetSelected( bool bSelected )
}
-
void VCLXAccessibleTabPage::SetPageText( const OUString& sPageText )
{
Any aOldValue, aNewValue;
@@ -140,7 +133,6 @@ void VCLXAccessibleTabPage::SetPageText( const OUString& sPageText )
}
-
OUString VCLXAccessibleTabPage::GetPageText()
{
OUString sText;
@@ -151,7 +143,6 @@ OUString VCLXAccessibleTabPage::GetPageText()
}
-
void VCLXAccessibleTabPage::Update( bool bNew )
{
if ( m_pTabControl )
@@ -174,7 +165,6 @@ void VCLXAccessibleTabPage::Update( bool bNew )
}
-
void VCLXAccessibleTabPage::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
{
rStateSet.AddState( AccessibleStateType::ENABLED );
@@ -219,14 +209,12 @@ OUString VCLXAccessibleTabPage::implGetText()
}
-
lang::Locale VCLXAccessibleTabPage::implGetLocale()
{
return Application::GetSettings().GetLanguageTag().getLocale();
}
-
void VCLXAccessibleTabPage::implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex )
{
nStartIndex = 0;
@@ -267,14 +255,12 @@ OUString VCLXAccessibleTabPage::getImplementationName() throw (RuntimeException,
}
-
sal_Bool VCLXAccessibleTabPage::supportsService( const OUString& rServiceName ) throw (RuntimeException, std::exception)
{
return cppu::supportsService(this, rServiceName);
}
-
Sequence< OUString > VCLXAccessibleTabPage::getSupportedServiceNames() throw (RuntimeException, std::exception)
{
Sequence< OUString > aNames { "com.sun.star.awt.AccessibleTabPage" };
@@ -312,7 +298,6 @@ sal_Int32 VCLXAccessibleTabPage::getAccessibleChildCount() throw (RuntimeExcepti
}
-
Reference< XAccessible > VCLXAccessibleTabPage::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -332,7 +317,6 @@ Reference< XAccessible > VCLXAccessibleTabPage::getAccessibleChild( sal_Int32 i
}
-
Reference< XAccessible > VCLXAccessibleTabPage::getAccessibleParent( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -345,7 +329,6 @@ Reference< XAccessible > VCLXAccessibleTabPage::getAccessibleParent( ) throw (R
}
-
sal_Int32 VCLXAccessibleTabPage::getAccessibleIndexInParent( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -358,7 +341,6 @@ sal_Int32 VCLXAccessibleTabPage::getAccessibleIndexInParent( ) throw (RuntimeEx
}
-
sal_Int16 VCLXAccessibleTabPage::getAccessibleRole( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -367,7 +349,6 @@ sal_Int16 VCLXAccessibleTabPage::getAccessibleRole( ) throw (RuntimeException,
}
-
OUString VCLXAccessibleTabPage::getAccessibleDescription( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -380,7 +361,6 @@ OUString VCLXAccessibleTabPage::getAccessibleDescription( ) throw (RuntimeExc
}
-
OUString VCLXAccessibleTabPage::getAccessibleName( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -389,7 +369,6 @@ OUString VCLXAccessibleTabPage::getAccessibleName( ) throw (RuntimeException, s
}
-
Reference< XAccessibleRelationSet > VCLXAccessibleTabPage::getAccessibleRelationSet( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -400,7 +379,6 @@ Reference< XAccessibleRelationSet > VCLXAccessibleTabPage::getAccessibleRelation
}
-
Reference< XAccessibleStateSet > VCLXAccessibleTabPage::getAccessibleStateSet( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -421,7 +399,6 @@ Reference< XAccessibleStateSet > VCLXAccessibleTabPage::getAccessibleStateSet(
}
-
Locale VCLXAccessibleTabPage::getLocale( ) throw (IllegalAccessibleComponentStateException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -461,7 +438,6 @@ Reference< XAccessible > VCLXAccessibleTabPage::getAccessibleAtPoint( const awt:
}
-
void VCLXAccessibleTabPage::grabFocus( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -474,7 +450,6 @@ void VCLXAccessibleTabPage::grabFocus( ) throw (RuntimeException, std::exceptio
}
-
sal_Int32 VCLXAccessibleTabPage::getForeground( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -492,7 +467,6 @@ sal_Int32 VCLXAccessibleTabPage::getForeground( ) throw (RuntimeException, std::
}
-
sal_Int32 VCLXAccessibleTabPage::getBackground( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -530,7 +504,6 @@ Reference< awt::XFont > VCLXAccessibleTabPage::getFont( ) throw (RuntimeExcepti
}
-
OUString VCLXAccessibleTabPage::getTitledBorderText( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -539,7 +512,6 @@ OUString VCLXAccessibleTabPage::getTitledBorderText( ) throw (RuntimeException,
}
-
OUString VCLXAccessibleTabPage::getToolTipText( ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -559,7 +531,6 @@ sal_Int32 VCLXAccessibleTabPage::getCaretPosition() throw (RuntimeException, std
}
-
sal_Bool VCLXAccessibleTabPage::setCaretPosition( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -571,7 +542,6 @@ sal_Bool VCLXAccessibleTabPage::setCaretPosition( sal_Int32 nIndex ) throw (Inde
}
-
Sequence< PropertyValue > VCLXAccessibleTabPage::getCharacterAttributes( sal_Int32 nIndex, const Sequence< OUString >& aRequestedAttributes ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -595,7 +565,6 @@ Sequence< PropertyValue > VCLXAccessibleTabPage::getCharacterAttributes( sal_Int
}
-
awt::Rectangle VCLXAccessibleTabPage::getCharacterBounds( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -616,7 +585,6 @@ awt::Rectangle VCLXAccessibleTabPage::getCharacterBounds( sal_Int32 nIndex ) thr
}
-
sal_Int32 VCLXAccessibleTabPage::getIndexAtPoint( const awt::Point& aPoint ) throw (RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -637,7 +605,6 @@ sal_Int32 VCLXAccessibleTabPage::getIndexAtPoint( const awt::Point& aPoint ) thr
}
-
sal_Bool VCLXAccessibleTabPage::setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -649,7 +616,6 @@ sal_Bool VCLXAccessibleTabPage::setSelection( sal_Int32 nStartIndex, sal_Int32 n
}
-
sal_Bool VCLXAccessibleTabPage::copyText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{
OExternalLockGuard aGuard( this );
@@ -680,5 +646,4 @@ sal_Bool VCLXAccessibleTabPage::copyText( sal_Int32 nStartIndex, sal_Int32 nEndI
}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */