summaryrefslogtreecommitdiff
path: root/accessibility/source/extended/accessibletabbarpagelist.cxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-22 21:20:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-23 03:38:49 +0000
commit0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch)
tree5024cba9f9ea5e3b23ea26025323f6aef39488d0 /accessibility/source/extended/accessibletabbarpagelist.cxx
parentb81ac16e65b311d6e43c05c22c65d2040c9d7e04 (diff)
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'accessibility/source/extended/accessibletabbarpagelist.cxx')
-rw-r--r--accessibility/source/extended/accessibletabbarpagelist.cxx110
1 files changed, 55 insertions, 55 deletions
diff --git a/accessibility/source/extended/accessibletabbarpagelist.cxx b/accessibility/source/extended/accessibletabbarpagelist.cxx
index 57c054db528d..b7a87b073161 100644
--- a/accessibility/source/extended/accessibletabbarpagelist.cxx
+++ b/accessibility/source/extended/accessibletabbarpagelist.cxx
@@ -42,9 +42,9 @@ namespace accessibility
using namespace ::com::sun::star;
using namespace ::comphelper;
- // -----------------------------------------------------------------------------
+
// class AccessibleTabBarPageList
- // -----------------------------------------------------------------------------
+
AccessibleTabBarPageList::AccessibleTabBarPageList( TabBar* pTabBar, sal_Int32 nIndexInParent )
:AccessibleTabBarBase( pTabBar )
@@ -54,13 +54,13 @@ namespace accessibility
m_aAccessibleChildren.assign( m_pTabBar->GetPageCount(), Reference< XAccessible >() );
}
- // -----------------------------------------------------------------------------
+
AccessibleTabBarPageList::~AccessibleTabBarPageList()
{
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::UpdateEnabled( sal_Int32 i, sal_Bool bEnabled )
{
@@ -76,7 +76,7 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::UpdateShowing( sal_Bool bShowing )
{
@@ -92,7 +92,7 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::UpdateSelected( sal_Int32 i, sal_Bool bSelected )
{
@@ -110,7 +110,7 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::UpdatePageText( sal_Int32 i )
{
@@ -132,7 +132,7 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::InsertChild( sal_Int32 i )
{
@@ -152,7 +152,7 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::RemoveChild( sal_Int32 i )
{
@@ -178,7 +178,7 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::MoveChild( sal_Int32 i, sal_Int32 j )
{
@@ -199,7 +199,7 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent )
{
@@ -346,7 +346,7 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
{
@@ -365,9 +365,9 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
// OCommonAccessibleComponent
- // -----------------------------------------------------------------------------
+
awt::Rectangle AccessibleTabBarPageList::implGetBounds() throw (RuntimeException)
{
@@ -378,21 +378,21 @@ namespace accessibility
return aBounds;
}
- // -----------------------------------------------------------------------------
+
// XInterface
- // -----------------------------------------------------------------------------
+
IMPLEMENT_FORWARD_XINTERFACE2( AccessibleTabBarPageList, AccessibleExtendedComponentHelper_BASE, AccessibleTabBarPageList_BASE )
- // -----------------------------------------------------------------------------
+
// XTypeProvider
- // -----------------------------------------------------------------------------
+
IMPLEMENT_FORWARD_XTYPEPROVIDER2( AccessibleTabBarPageList, AccessibleExtendedComponentHelper_BASE, AccessibleTabBarPageList_BASE )
- // -----------------------------------------------------------------------------
+
// XComponent
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::disposing()
{
@@ -408,23 +408,23 @@ namespace accessibility
m_aAccessibleChildren.clear();
}
- // -----------------------------------------------------------------------------
+
// XServiceInfo
- // -----------------------------------------------------------------------------
+
OUString AccessibleTabBarPageList::getImplementationName() throw (RuntimeException)
{
return OUString( "com.sun.star.comp.svtools.AccessibleTabBarPageList" );
}
- // -----------------------------------------------------------------------------
+
sal_Bool AccessibleTabBarPageList::supportsService( const OUString& rServiceName ) throw (RuntimeException)
{
return cppu::supportsService(this, rServiceName);
}
- // -----------------------------------------------------------------------------
+
Sequence< OUString > AccessibleTabBarPageList::getSupportedServiceNames() throw (RuntimeException)
{
@@ -433,9 +433,9 @@ namespace accessibility
return aNames;
}
- // -----------------------------------------------------------------------------
+
// XAccessible
- // -----------------------------------------------------------------------------
+
Reference< XAccessibleContext > AccessibleTabBarPageList::getAccessibleContext( ) throw (RuntimeException)
{
@@ -444,9 +444,9 @@ namespace accessibility
return this;
}
- // -----------------------------------------------------------------------------
+
// XAccessibleContext
- // -----------------------------------------------------------------------------
+
sal_Int32 AccessibleTabBarPageList::getAccessibleChildCount() throw (RuntimeException)
{
@@ -455,7 +455,7 @@ namespace accessibility
return m_aAccessibleChildren.size();
}
- // -----------------------------------------------------------------------------
+
Reference< XAccessible > AccessibleTabBarPageList::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException)
{
@@ -481,7 +481,7 @@ namespace accessibility
return xChild;
}
- // -----------------------------------------------------------------------------
+
Reference< XAccessible > AccessibleTabBarPageList::getAccessibleParent( ) throw (RuntimeException)
{
@@ -494,7 +494,7 @@ namespace accessibility
return xParent;
}
- // -----------------------------------------------------------------------------
+
sal_Int32 AccessibleTabBarPageList::getAccessibleIndexInParent( ) throw (RuntimeException)
{
@@ -503,7 +503,7 @@ namespace accessibility
return m_nIndexInParent;
}
- // -----------------------------------------------------------------------------
+
sal_Int16 AccessibleTabBarPageList::getAccessibleRole( ) throw (RuntimeException)
{
@@ -512,7 +512,7 @@ namespace accessibility
return AccessibleRole::PAGE_TAB_LIST;
}
- // -----------------------------------------------------------------------------
+
OUString AccessibleTabBarPageList::getAccessibleDescription( ) throw (RuntimeException)
{
@@ -521,7 +521,7 @@ namespace accessibility
return OUString();
}
- // -----------------------------------------------------------------------------
+
OUString AccessibleTabBarPageList::getAccessibleName( ) throw (RuntimeException)
{
@@ -530,7 +530,7 @@ namespace accessibility
return OUString();
}
- // -----------------------------------------------------------------------------
+
Reference< XAccessibleRelationSet > AccessibleTabBarPageList::getAccessibleRelationSet( ) throw (RuntimeException)
{
@@ -541,7 +541,7 @@ namespace accessibility
return xSet;
}
- // -----------------------------------------------------------------------------
+
Reference< XAccessibleStateSet > AccessibleTabBarPageList::getAccessibleStateSet( ) throw (RuntimeException)
{
@@ -562,7 +562,7 @@ namespace accessibility
return xSet;
}
- // -----------------------------------------------------------------------------
+
Locale AccessibleTabBarPageList::getLocale( ) throw (IllegalAccessibleComponentStateException, RuntimeException)
{
@@ -571,9 +571,9 @@ namespace accessibility
return Application::GetSettings().GetLanguageTag().getLocale();
}
- // -----------------------------------------------------------------------------
+
// XAccessibleComponent
- // -----------------------------------------------------------------------------
+
Reference< XAccessible > AccessibleTabBarPageList::getAccessibleAtPoint( const awt::Point& rPoint ) throw (RuntimeException)
{
@@ -602,14 +602,14 @@ namespace accessibility
return xChild;
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::grabFocus( ) throw (RuntimeException)
{
// no focus
}
- // -----------------------------------------------------------------------------
+
sal_Int32 AccessibleTabBarPageList::getForeground( ) throw (RuntimeException)
{
@@ -627,7 +627,7 @@ namespace accessibility
return nColor;
}
- // -----------------------------------------------------------------------------
+
sal_Int32 AccessibleTabBarPageList::getBackground( ) throw (RuntimeException)
{
@@ -645,9 +645,9 @@ namespace accessibility
return nColor;
}
- // -----------------------------------------------------------------------------
+
// XAccessibleExtendedComponent
- // -----------------------------------------------------------------------------
+
Reference< awt::XFont > AccessibleTabBarPageList::getFont( ) throw (RuntimeException)
{
@@ -665,7 +665,7 @@ namespace accessibility
return xFont;
}
- // -----------------------------------------------------------------------------
+
OUString AccessibleTabBarPageList::getTitledBorderText( ) throw (RuntimeException)
{
@@ -674,7 +674,7 @@ namespace accessibility
return OUString();
}
- // -----------------------------------------------------------------------------
+
OUString AccessibleTabBarPageList::getToolTipText( ) throw (RuntimeException)
{
@@ -683,9 +683,9 @@ namespace accessibility
return OUString();
}
- // -----------------------------------------------------------------------------
+
// XAccessibleSelection
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::selectAccessibleChild( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException)
{
@@ -703,7 +703,7 @@ namespace accessibility
}
}
- // -----------------------------------------------------------------------------
+
sal_Bool AccessibleTabBarPageList::isAccessibleChildSelected( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException)
{
@@ -719,14 +719,14 @@ namespace accessibility
return bSelected;
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::clearAccessibleSelection( ) throw (RuntimeException)
{
// This method makes no sense in a TabBar, and so does nothing.
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::selectAllAccessibleChildren( ) throw (RuntimeException)
{
@@ -735,7 +735,7 @@ namespace accessibility
selectAccessibleChild( 0 );
}
- // -----------------------------------------------------------------------------
+
sal_Int32 AccessibleTabBarPageList::getSelectedAccessibleChildCount( ) throw (RuntimeException)
{
@@ -744,7 +744,7 @@ namespace accessibility
return 1;
}
- // -----------------------------------------------------------------------------
+
Reference< XAccessible > AccessibleTabBarPageList::getSelectedAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException)
{
@@ -767,7 +767,7 @@ namespace accessibility
return xChild;
}
- // -----------------------------------------------------------------------------
+
void AccessibleTabBarPageList::deselectAccessibleChild( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException)
{
@@ -779,7 +779,7 @@ namespace accessibility
// This method makes no sense in a TabBar, and so does nothing.
}
- // -----------------------------------------------------------------------------
+
//.........................................................................
} // namespace accessibility