Remove visual noise from accessibility

Change-Id: I876e5c4d1991b35c1dc2cea709d8a2ddf781b012
Reviewed-on: https://gerrit.libreoffice.org/8225
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
Alexander Wilms
2014-02-25 16:37:07 +01:00
committed by Caolán McNamara
parent c30fb7d726
commit 2e821e4741
78 changed files with 314 additions and 314 deletions

View File

@@ -26,14 +26,14 @@
#include <cppuhelper/weakref.hxx>
#include <svtools/accessibletableprovider.hxx>
// ============================================================================
namespace accessibility {
class AccessibleBrowseBoxImpl;
class AccessibleBrowseBoxTable;
// ============================================================================
/** This class represents the complete accessible BrowseBox object. */
class AccessibleBrowseBox : public AccessibleBrowseBoxBase
@@ -192,7 +192,7 @@ private:
boost::scoped_ptr< AccessibleBrowseBoxImpl > m_pImpl;
};
// ============================================================================
/** the XAccessible which creates/returns an AccessibleBrowseBox
<p>The instance holds it's XAccessibleContext with a hard reference, while
@@ -292,10 +292,10 @@ private:
AccessibleBrowseBoxAccess& operator=( const AccessibleBrowseBoxAccess& ); // never implemented
};
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif

View File

@@ -42,7 +42,7 @@
#include <comphelper/accessibleeventnotifier.hxx>
#include <comphelper/uno3.hxx>
// ============================================================================
class Window;
@@ -54,11 +54,11 @@ namespace svt {
class IAccessibleTableProvider;
}
// ============================================================================
namespace accessibility {
// ============================================================================
typedef ::cppu::WeakAggComponentImplHelper5<
::com::sun::star::accessibility::XAccessibleContext,
@@ -376,7 +376,7 @@ private:
::comphelper::AccessibleEventNotifier::TClientId m_aClientId;
};
// ============================================================================
// a version of AccessibleBrowseBoxBase which implements not only the XAccessibleContext,
// but also the XAccessible
@@ -446,7 +446,7 @@ private:
BrowseBoxAccessibleElement& operator=( const BrowseBoxAccessibleElement& ); // never implemented
};
// ============================================================================
// a helper class for protecting methods which need to lock the solar mutex in addition to the own mutex
typedef ::osl::MutexGuard OslMutexGuard;
@@ -492,11 +492,11 @@ inline void AccessibleBrowseBoxBase::implSetDescription(
maDescription = rDescription;
}
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif

View File

@@ -25,10 +25,10 @@
#include "accessibility/extended/accessiblebrowseboxcell.hxx"
#include <cppuhelper/implbase2.hxx>
#include <tools/wintypes.hxx>
// ============================================================================
namespace accessibility
{
// ============================================================================
typedef ::cppu::ImplHelper2 < ::com::sun::star::accessibility::XAccessible,
::com::sun::star::accessibility::XAccessibleValue
> AccessibleCheckBoxCell_BASE;

View File

@@ -25,11 +25,11 @@
#include <cppuhelper/implbase1.hxx>
#include <com/sun/star/accessibility/XAccessibleSelection.hpp>
// ============================================================================
namespace accessibility {
// ============================================================================
typedef ::cppu::ImplHelper1<
::com::sun::star::accessibility::XAccessibleSelection >
@@ -263,11 +263,11 @@ inline sal_Bool AccessibleBrowseBoxHeaderBar::isColumnBar() const
return getType() == ::svt::BBTYPE_COLUMNHEADERBAR;
}
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif

View File

@@ -23,11 +23,11 @@
#include "accessibility/extended/AccessibleBrowseBoxTableBase.hxx"
// ============================================================================
namespace accessibility {
// ============================================================================
/** This class represents the accessible object of the data table of a
BrowseBox control. */
@@ -157,11 +157,11 @@ protected:
throw ( ::com::sun::star::uno::RuntimeException );
};
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif

View File

@@ -25,7 +25,7 @@
#include <cppuhelper/implbase1.hxx>
#include <com/sun/star/accessibility/XAccessibleTable.hpp>
// ============================================================================
namespace accessibility {
@@ -262,11 +262,11 @@ protected:
throw ( ::com::sun::star::lang::IndexOutOfBoundsException );
};
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif

View File

@@ -26,13 +26,13 @@
#include <cppuhelper/weakref.hxx>
#include <svtools/accessibletable.hxx>
// ============================================================================
namespace accessibility {
class AccessibleGridControl_Impl;
// ============================================================================
/** This class represents the complete accessible Grid Control object. */
class AccessibleGridControl : public AccessibleGridControlBase
@@ -180,7 +180,7 @@ private:
boost::scoped_ptr< AccessibleGridControl_Impl > m_pImpl;
};
// ============================================================================
/** the XAccessible which creates/returns an AccessibleGridControl
<p>The instance holds it's XAccessibleContext with a hard reference, while
@@ -278,10 +278,10 @@ private:
AccessibleGridControlAccess& operator=( const AccessibleGridControlAccess& ); // never implemented
};
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif

View File

@@ -41,7 +41,7 @@
#include <comphelper/accessibleeventnotifier.hxx>
#include <comphelper/uno3.hxx>
// ============================================================================
class Window;
@@ -49,13 +49,13 @@ namespace utl {
class AccessibleStateSetHelper;
}
// ============================================================================
namespace accessibility {
// ============================================================================
// ============================================================================
typedef ::cppu::WeakAggComponentImplHelper4<
::com::sun::star::accessibility::XAccessibleContext,
@@ -326,7 +326,7 @@ private:
::comphelper::AccessibleEventNotifier::TClientId m_aClientId;
};
// ============================================================================
// a version of AccessibleGridControlBase which implements not only the XAccessibleContext,
// but also the XAccessible
@@ -394,11 +394,11 @@ inline void AccessibleGridControlBase::implSetDescription(
m_aDescription = rDescription;
}
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif // ACCESSIBILITY_EXT_ACCESSIBILEGRIDCONTROLBASE_HXX

View File

@@ -25,11 +25,11 @@
#include "accessibility/extended/AccessibleGridControlHeaderCell.hxx"
#include "accessibility/extended/AccessibleGridControlTableBase.hxx"
// ============================================================================
namespace accessibility {
// ============================================================================
/** This class represents the accessible object of a header bar of a Grid Control
(row or column header bar). This object supports the
@@ -200,11 +200,11 @@ inline sal_Bool AccessibleGridControlHeader::isColumnBar() const
return getType() == ::svt::table::TCTYPE_COLUMNHEADERBAR;
}
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif // ACCESSIBILITY_EXT_ACCESSIBILEGRIDCONTROLHEADER_HXX

View File

@@ -26,11 +26,11 @@
#include <com/sun/star/accessibility/XAccessibleSelection.hpp>
#include <accessibility/extended/AccessibleGridControlTableCell.hxx>
// ============================================================================
namespace accessibility {
// ============================================================================
typedef ::cppu::ImplHelper1<
::com::sun::star::accessibility::XAccessibleSelection >
AccessibleGridControlTableImplHelper1;
@@ -216,11 +216,11 @@ protected:
throw ( ::com::sun::star::uno::RuntimeException );
};
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif // ACCESSIBILITY_EXT_ACCESSIBILEGRIDCONTROLTABLE_HXX

View File

@@ -25,7 +25,7 @@
#include <cppuhelper/implbase1.hxx>
#include <com/sun/star/accessibility/XAccessibleTable.hpp>
// ============================================================================
namespace accessibility {
@@ -218,11 +218,11 @@ protected:
throw ( ::com::sun::star::lang::IndexOutOfBoundsException );
};
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif // ACCESSIBILITY_EXT_ACCESSIBILEGRIDCONTROLTABLEBASE_HXX

View File

@@ -30,14 +30,14 @@ namespace svt
class ToolPanelDeck;
}
//......................................................................................................................
namespace accessibility
{
//......................................................................................................................
//==================================================================================================================
//= AccessibleToolPanelDeck
//==================================================================================================================
class AccessibleToolPanelDeck_Impl;
typedef VCLXAccessibleComponent AccessibleToolPanelDeck_Base;
class AccessibleToolPanelDeck : public AccessibleToolPanelDeck_Base
@@ -74,9 +74,9 @@ namespace accessibility
::boost::scoped_ptr< AccessibleToolPanelDeck_Impl > m_pImpl;
};
//......................................................................................................................
} // namespace accessibility
//......................................................................................................................
#endif // ACC_ACCESSIBLETOOLPANELDECK_HXX

View File

@@ -31,14 +31,14 @@ namespace svt
class PanelTabBar;
}
//......................................................................................................................
namespace accessibility
{
//......................................................................................................................
//==================================================================================================================
//= AccessibleToolPanelTabBar
//==================================================================================================================
class AccessibleToolPanelTabBar_Impl;
typedef VCLXAccessibleComponent AccessibleToolPanelTabBar_Base;
class AccessibleToolPanelTabBar : public AccessibleToolPanelTabBar_Base
@@ -75,9 +75,9 @@ namespace accessibility
::boost::scoped_ptr< AccessibleToolPanelTabBar_Impl > m_pImpl;
};
//......................................................................................................................
} // namespace accessibility
//......................................................................................................................
#endif // ACC_ACCESSIBLETOOLPANELTABBAR_HXX

View File

@@ -31,14 +31,14 @@ namespace svt
class PanelTabBar;
}
//......................................................................................................................
namespace accessibility
{
//......................................................................................................................
//==================================================================================================================
//= AccessibleToolPanelDeckTabBarItem
//==================================================================================================================
class AccessibleToolPanelDeckTabBarItem_Impl;
typedef ::comphelper::OAccessibleExtendedComponentHelper AccessibleToolPanelDeckTabBarItem_Base;
class AccessibleToolPanelDeckTabBarItem : public AccessibleToolPanelDeckTabBarItem_Base
@@ -90,9 +90,9 @@ namespace accessibility
::boost::scoped_ptr< AccessibleToolPanelDeckTabBarItem_Impl > m_pImpl;
};
//......................................................................................................................
} // namespace accessibility
//......................................................................................................................
#endif // ACC_ACCESSIBLETOOLPANELDECKTABBARITEM_HXX

View File

@@ -23,14 +23,14 @@
#include "accessibility/extended/AccessibleBrowseBoxBase.hxx"
#include <svtools/AccessibleBrowseBoxObjType.hxx>
// .................................................................................
namespace accessibility
{
// .................................................................................
// =============================================================================
// = AccessibleBrowseBoxCell
// =============================================================================
/** common accessibility-functionality for browse box elements which occupy a cell
*/
class AccessibleBrowseBoxCell : public AccessibleBrowseBoxBase
@@ -70,9 +70,9 @@ namespace accessibility
AccessibleBrowseBoxCell& operator=( const AccessibleBrowseBoxCell& ); // never implemented
};
// .................................................................................
} // namespace accessibility
// .................................................................................
#endif // ACCESSIBILITY_ACCESSIBLE_BROWSE_BOX_CELL_HXX

View File

@@ -31,9 +31,9 @@
namespace accessibility
{
// =============================================================================
// = EditBrowseBoxTableCell
// =============================================================================
class EditBrowseBoxTableCell :public AccessibleBrowseBoxCell
,public ::comphelper::OAccessibleContextWrapperHelper
{
@@ -93,9 +93,9 @@ namespace accessibility
EditBrowseBoxTableCell& operator=( const EditBrowseBoxTableCell& ); // never implemented
};
// =============================================================================
// = EditBrowseBoxTableCell
// =============================================================================
typedef ::cppu::WeakComponentImplHelper1 < ::com::sun::star::accessibility::XAccessible
> EditBrowseBoxTableCellAccess_Base;
// XAccessible providing an EditBrowseBoxTableCell

View File

@@ -30,10 +30,10 @@
class SvtIconChoiceCtrl;
//........................................................................
namespace accessibility
{
//........................................................................
typedef ::cppu::ImplHelper2< ::com::sun::star::accessibility::XAccessible
, ::com::sun::star::accessibility::XAccessibleSelection> AccessibleIconChoiceCtrl_BASE;
@@ -103,9 +103,9 @@ namespace accessibility
void SAL_CALL deselectAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
};
//........................................................................
}// namespace accessibility
//........................................................................
#endif // ACCESSIBILITY_EXT_ACCESSIBLEICONCHOICECTRL_HXX_

View File

@@ -41,10 +41,10 @@
class SvxIconChoiceCtrlEntry;
class SvtIconChoiceCtrl;
//........................................................................
namespace accessibility
{
//........................................................................
// class AccessibleIconChoiceCtrlEntry ------------------------------------------
@@ -183,9 +183,9 @@ namespace accessibility
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleKeyBinding > SAL_CALL getAccessibleActionKeyBinding( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
};
//........................................................................
}// namespace accessibility
//........................................................................
#endif // INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_EXTENDED_ACCESSIBLEICONCHOICECTRLENTRY_HXX

View File

@@ -32,11 +32,11 @@
class SvTreeListBox;
class SvTreeListEntry;
//........................................................................
namespace accessibility
{
class AccessibleListBoxEntry;
//........................................................................
typedef ::cppu::ImplHelper2< ::com::sun::star::accessibility::XAccessible
, ::com::sun::star::accessibility::XAccessibleSelection> AccessibleListBox_BASE;
@@ -125,9 +125,9 @@ private:
};
//........................................................................
}// namespace accessibility
//........................................................................
#endif // ACCESSIBILITY_EXT_ACCESSIBLELISTBOX_HXX_

View File

@@ -51,10 +51,10 @@ namespace com { namespace sun { namespace star { namespace awt {
class SvTreeListBox;
class SvTreeListEntry;
//........................................................................
namespace accessibility
{
//........................................................................
// class AccessibleListBoxEntry ------------------------------------------
/*
@@ -232,9 +232,9 @@ namespace accessibility
sal_Int32 GetRoleType();
};
//........................................................................
}// namespace accessibility
//........................................................................
#endif // ACCESSIBILITY_EXT_ACCESSIBLELISTBOXENTRY_HXX_

View File

@@ -31,14 +31,14 @@ namespace utl {
class AccessibleStateSetHelper;
}
//.........................................................................
namespace accessibility
{
//.........................................................................
// ----------------------------------------------------
// class AccessibleTabBar
// ----------------------------------------------------
typedef ::cppu::ImplHelper2<
::com::sun::star::accessibility::XAccessible,
@@ -104,9 +104,9 @@ namespace accessibility
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
};
//.........................................................................
} // namespace accessibility
//.........................................................................
#endif // ACCESSIBILITY_EXT_ACCESSIBLETABBAR_HXX_

View File

@@ -28,12 +28,12 @@ class VCLExternalSolarLock;
class VclSimpleEvent;
class VclWindowEvent;
//.........................................................................
namespace accessibility
{
//.........................................................................
// ============================================================================
typedef ::comphelper::OAccessibleExtendedComponentHelper AccessibleExtendedComponentHelper_BASE;
@@ -60,11 +60,11 @@ protected:
TabBar* m_pTabBar;
};
// ============================================================================
//.........................................................................
} // namespace accessibility
//.........................................................................
#endif

View File

@@ -31,14 +31,14 @@ namespace utl {
class AccessibleStateSetHelper;
}
//.........................................................................
namespace accessibility
{
//.........................................................................
// ----------------------------------------------------
// class AccessibleTabBarPage
// ----------------------------------------------------
typedef ::cppu::ImplHelper2<
::com::sun::star::accessibility::XAccessible,
@@ -121,9 +121,9 @@ namespace accessibility
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
};
//.........................................................................
} // namespace accessibility
//.........................................................................
#endif // ACCESSIBILITY_EXT_ACCESSIBLETABBARPAGE_HXX_

View File

@@ -32,14 +32,14 @@ namespace utl {
class AccessibleStateSetHelper;
}
//.........................................................................
namespace accessibility
{
//.........................................................................
// ----------------------------------------------------
// class AccessibleTabBarPageList
// ----------------------------------------------------
typedef ::cppu::ImplHelper3<
::com::sun::star::accessibility::XAccessible,
@@ -125,9 +125,9 @@ namespace accessibility
virtual void SAL_CALL deselectAccessibleChild( sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
};
//.........................................................................
} // namespace accessibility
//.........................................................................
#endif // ACCESSIBILITY_EXT_ACCESSIBLETABBARPAGELIST_HXX_

View File

@@ -27,7 +27,7 @@
class SvHeaderTabListBox;
// ============================================================================
namespace accessibility {
@@ -97,11 +97,11 @@ protected:
virtual AccessibleBrowseBoxTable* createAccessibleTable();
};
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif // ACCESSIBILITY_EXT_ACCESSIBLETABLISTBOX_HXX

View File

@@ -27,7 +27,7 @@
class SvHeaderTabListBox;
// ============================================================================
namespace accessibility {
@@ -106,11 +106,11 @@ public:
void SAL_CALL deselectAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
};
// ============================================================================
} // namespace accessibility
// ============================================================================
#endif // INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_EXTENDED_ACCESSIBLETABLISTBOXTABLE_HXX

View File

@@ -27,14 +27,14 @@ class SvTreeListBox;
class VclSimpleEvent;
class VclWindowEvent;
//........................................................................
namespace accessibility
{
//........................................................................
//====================================================================
//= ListBoxAccessibleBase
//====================================================================
/** helper class which couples it's life time to the life time of an
SvTreeListBox
*/
@@ -80,9 +80,9 @@ namespace accessibility
ListBoxAccessibleBase& operator=( const ListBoxAccessibleBase& ); // never implemented
};
//........................................................................
} // namespace accessibility
//........................................................................
#endif // ACCESSIBILITY_EXT_LISTBOX_ACCESSIBLE

View File

@@ -26,9 +26,9 @@ class SimpleResMgr;
#define TK_RES_STRING(id) ::accessibility::TkResMgr::loadString(id)
// -----------------------------------------------------------------------------
// TkResMgr
// -----------------------------------------------------------------------------
namespace accessibility
{

View File

@@ -26,9 +26,9 @@
#include <map>
// -----------------------------------------------------------------------------
// class CharacterAttributesHelper
// -----------------------------------------------------------------------------
class CharacterAttributesHelper
{

View File

@@ -25,15 +25,15 @@
#include <vcl/combobox.hxx>
#include <com/sun/star/datatransfer/clipboard/XClipboard.hpp>
// -----------------------------------------------------------------------------
// globals
// -----------------------------------------------------------------------------
const sal_Int32 DEFAULT_INDEX_IN_PARENT = -1;
// -----------------------------------------------------------------------------
// class VCLListBoxHelper
// -----------------------------------------------------------------------------
template< class T > class VCLListBoxHelper : public ::accessibility::IComboListBoxHelper
{
@@ -45,12 +45,12 @@ public:
VCLListBoxHelper( T& _pListBox ) :
m_aComboListBox( _pListBox ){}
// -----------------------------------------------------------------------------
virtual OUString GetEntry( sal_uInt16 nPos ) const
{
return m_aComboListBox.GetEntry( nPos );
}
// -----------------------------------------------------------------------------
virtual Rectangle GetDropDownPosSizePixel() const
{
Rectangle aTemp = m_aComboListBox.GetWindowExtentsRelative(NULL);
@@ -58,7 +58,7 @@ public:
aRet.Move(aTemp.TopLeft().X(),aTemp.TopLeft().Y());
return aRet;
}
// -----------------------------------------------------------------------------
virtual Rectangle GetBoundingRectangle( sal_uInt16 nItem ) const
{
Rectangle aRect;
@@ -75,94 +75,94 @@ public:
aRect = m_aComboListBox.GetBoundingRectangle( nItem );
return aRect;
}
// -----------------------------------------------------------------------------
virtual Rectangle GetWindowExtentsRelative( Window* pRelativeWindow )
{
return m_aComboListBox.GetWindowExtentsRelative( pRelativeWindow );
}
// -----------------------------------------------------------------------------
virtual bool IsActive() const
{
return m_aComboListBox.IsActive();
}
// -----------------------------------------------------------------------------
virtual bool IsEnabled() const
{
return m_aComboListBox.IsEnabled();
}
// -----------------------------------------------------------------------------
virtual bool IsEntryVisible( sal_uInt16 nPos ) const
{
sal_uInt16 nTopEntry = m_aComboListBox.GetTopEntry();
sal_uInt16 nLines = m_aComboListBox.GetDisplayLineCount();
return ( nPos >= nTopEntry && nPos < ( nTopEntry + nLines ) );
}
// -----------------------------------------------------------------------------
virtual sal_uInt16 GetDisplayLineCount() const
{
return m_aComboListBox.GetDisplayLineCount();
}
// -----------------------------------------------------------------------------
virtual void GetMaxVisColumnsAndLines( sal_uInt16& rnCols, sal_uInt16& rnLines ) const
{
m_aComboListBox.GetMaxVisColumnsAndLines(rnCols,rnLines);
}
// -----------------------------------------------------------------------------
virtual WinBits GetStyle() const
{
return m_aComboListBox.GetStyle();
}
// -----------------------------------------------------------------------------
virtual bool IsMultiSelectionEnabled() const
{
return m_aComboListBox.IsMultiSelectionEnabled();
}
// -----------------------------------------------------------------------------
virtual sal_uInt16 GetTopEntry() const
{
return m_aComboListBox.GetTopEntry();
}
// -----------------------------------------------------------------------------
virtual bool IsEntryPosSelected( sal_uInt16 nPos ) const
{
return m_aComboListBox.IsEntryPosSelected(nPos);
}
// -----------------------------------------------------------------------------
virtual sal_uInt16 GetEntryCount() const
{
return m_aComboListBox.GetEntryCount();
}
// -----------------------------------------------------------------------------
virtual void Select()
{
m_aComboListBox.Select();
}
// -----------------------------------------------------------------------------
virtual void SelectEntryPos( sal_uInt16 nPos, bool bSelect = true )
{
m_aComboListBox.SelectEntryPos(nPos,bSelect);
}
// -----------------------------------------------------------------------------
virtual sal_uInt16 GetSelectEntryCount() const
{
return m_aComboListBox.GetSelectEntryCount();
}
// -----------------------------------------------------------------------------
virtual void SetNoSelection()
{
m_aComboListBox.SetNoSelection();
}
// -----------------------------------------------------------------------------
virtual sal_uInt16 GetSelectEntryPos( sal_uInt16 nSelIndex = 0 ) const
{
return m_aComboListBox.GetSelectEntryPos(nSelIndex);
}
// -----------------------------------------------------------------------------
virtual bool IsInDropDown() const
{
return m_aComboListBox.IsInDropDown();
}
// -----------------------------------------------------------------------------
virtual Rectangle GetEntryCharacterBounds( const sal_Int32 _nEntryPos, const sal_Int32 _nCharacterIndex ) const
{
Rectangle aRect;
@@ -175,18 +175,18 @@ public:
}
return aRect;
}
// -----------------------------------------------------------------------------
long GetIndexForPoint( const Point& rPoint, sal_uInt16& nPos ) const
{
return m_aComboListBox.GetIndexForPoint( rPoint, nPos );
}
// -----------------------------------------------------------------------------
::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::clipboard::XClipboard >
GetClipboard()
{
return m_aComboListBox.GetClipboard();
}
// -----------------------------------------------------------------------------
};
#endif // ACCESSIBILITY_HELPER_LISTBOXHELPER_HXX

View File

@@ -38,9 +38,9 @@ namespace utl {
class AccessibleStateSetHelper;
}
// ----------------------------------------------------
// class OAccessibleMenuBaseComponent
// ----------------------------------------------------
typedef ::comphelper::OAccessibleExtendedComponentHelper AccessibleExtendedComponentHelper_BASE;

View File

@@ -25,9 +25,9 @@
#include <cppuhelper/implbase1.hxx>
// ----------------------------------------------------
// class OAccessibleMenuComponent
// ----------------------------------------------------
typedef ::comphelper::OAccessibleExtendedComponentHelper AccessibleExtendedComponentHelper_BASE;

View File

@@ -23,9 +23,9 @@
#include <accessibility/standard/accessiblemenubasecomponent.hxx>
// ----------------------------------------------------
// class OAccessibleMenuItemComponent
// ----------------------------------------------------
class OAccessibleMenuItemComponent : public OAccessibleMenuBaseComponent
{

View File

@@ -28,9 +28,9 @@
#include <cppuhelper/implbase2.hxx>
// ----------------------------------------------------
// class VCLXAccessibleButton
// ----------------------------------------------------
typedef ::cppu::ImplHelper2<
::com::sun::star::accessibility::XAccessibleAction,

View File

@@ -28,9 +28,9 @@
#include <cppuhelper/implbase2.hxx>
// ----------------------------------------------------
// class VCLXAccessibleCheckBox
// ----------------------------------------------------
typedef ::cppu::ImplHelper2<
::com::sun::star::accessibility::XAccessibleAction,

View File

@@ -27,9 +27,9 @@
#include <cppuhelper/implbase2.hxx>
// ----------------------------------------------------
// class VCLXAccessibleEdit
// ----------------------------------------------------
typedef ::cppu::ImplHelper2<
::com::sun::star::accessibility::XAccessibleAction,

View File

@@ -22,9 +22,9 @@
#include <accessibility/standard/vclxaccessibletextcomponent.hxx>
// ----------------------------------------------------
// class VCLXAccessibleFixedHyperlink
// ----------------------------------------------------
class VCLXAccessibleFixedHyperlink : public VCLXAccessibleTextComponent
{

View File

@@ -22,9 +22,9 @@
#include <accessibility/standard/vclxaccessibletextcomponent.hxx>
// ----------------------------------------------------
// class VCLXAccessibleFixedText
// ----------------------------------------------------
class VCLXAccessibleFixedText : public VCLXAccessibleTextComponent
{

View File

@@ -26,9 +26,9 @@
#include <cppuhelper/implbase1.hxx>
// ----------------------------------------------------
// class VCLXAccessibleMenu
// ----------------------------------------------------
typedef ::cppu::ImplHelper1 <
::com::sun::star::accessibility::XAccessibleSelection > VCLXAccessibleMenu_BASE;

View File

@@ -27,9 +27,9 @@ class VclWindowEvent;
class Window;
// ----------------------------------------------------
// class VCLXAccessibleMenuBar
// ----------------------------------------------------
class VCLXAccessibleMenuBar : public OAccessibleMenuComponent
{

View File

@@ -29,9 +29,9 @@
#include <comphelper/accessibletexthelper.hxx>
// ----------------------------------------------------
// class VCLXAccessibleMenuItem
// ----------------------------------------------------
typedef ::cppu::ImplHelper3<
::com::sun::star::accessibility::XAccessibleText,

View File

@@ -23,9 +23,9 @@
#include <accessibility/standard/accessiblemenuitemcomponent.hxx>
// ----------------------------------------------------
// class VCLXAccessibleMenuSeparator
// ----------------------------------------------------
class VCLXAccessibleMenuSeparator : public OAccessibleMenuItemComponent
{

View File

@@ -23,9 +23,9 @@
#include <accessibility/standard/accessiblemenucomponent.hxx>
// ----------------------------------------------------
// class VCLXAccessiblePopupMenu
// ----------------------------------------------------
class VCLXAccessiblePopupMenu : public OAccessibleMenuComponent
{

View File

@@ -28,9 +28,9 @@
#include <cppuhelper/implbase2.hxx>
// ----------------------------------------------------
// class VCLXAccessibleRadioButton
// ----------------------------------------------------
typedef ::cppu::ImplHelper2<
::com::sun::star::accessibility::XAccessibleAction,

View File

@@ -28,9 +28,9 @@
#include <cppuhelper/implbase2.hxx>
// ----------------------------------------------------
// class VCLXAccessibleScrollBar
// ----------------------------------------------------
typedef ::cppu::ImplHelper2<
::com::sun::star::accessibility::XAccessibleAction,

View File

@@ -26,9 +26,9 @@
class StatusBar;
// ----------------------------------------------------
// class VCLXAccessibleStatusBar
// ----------------------------------------------------
class VCLXAccessibleStatusBar : public VCLXAccessibleComponent
{

View File

@@ -34,9 +34,9 @@ class AccessibleStateSetHelper;
}
// ----------------------------------------------------
// class VCLXAccessibleStatusBarItem
// ----------------------------------------------------
typedef ::comphelper::OAccessibleTextHelper AccessibleTextHelper_BASE;

View File

@@ -28,9 +28,9 @@
class TabControl;
// ----------------------------------------------------
// class VCLXAccessibleTabControl
// ----------------------------------------------------
typedef ::cppu::ImplHelper1 <
::com::sun::star::accessibility::XAccessibleSelection > VCLXAccessibleTabControl_BASE;

View File

@@ -34,9 +34,9 @@ class AccessibleStateSetHelper;
}
// ----------------------------------------------------
// class VCLXAccessibleTabPage
// ----------------------------------------------------
typedef ::comphelper::OAccessibleTextHelper AccessibleTextHelper_BASE;

View File

@@ -27,9 +27,9 @@ class TabControl;
class TabPage;
// ----------------------------------------------------
// class VCLXAccessibleTabPageWindow
// ----------------------------------------------------
class VCLXAccessibleTabPageWindow : public VCLXAccessibleComponent
{

View File

@@ -24,9 +24,9 @@
#include <comphelper/accessibletexthelper.hxx>
// ----------------------------------------------------
// class VCLXAccessibleTextComponent
// ----------------------------------------------------
typedef ::cppu::ImplHelper1 <
::com::sun::star::accessibility::XAccessibleText > VCLXAccessibleTextComponent_BASE;

View File

@@ -23,9 +23,9 @@
#include <toolkit/awt/vclxaccessiblecomponent.hxx>
#include <com/sun/star/accessibility/XAccessibleSelection.hpp>
// ----------------------------------------------------
// class VCLXAccessibleToolBox
// ----------------------------------------------------
typedef ::cppu::ImplHelper1 < ::com::sun::star::accessibility::XAccessibleSelection > VCLXAccessibleToolBox_BASE;

View File

@@ -24,12 +24,12 @@
#include <comphelper/types.hxx>
#include <toolkit/helper/vclunohelper.hxx>
// ============================================================================
namespace accessibility
{
// ============================================================================
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star;
@@ -37,7 +37,7 @@ using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::accessibility;
using namespace ::svt;
// ============================================================================
class AccessibleBrowseBoxImpl
{
public:
@@ -318,9 +318,9 @@ void AccessibleBrowseBox::commitHeaderBarEvent( sal_Int16 _nEventId,
pHeaderBar->commitEvent(_nEventId,_rNewValue,_rOldValue);
}
// ============================================================================
// = AccessibleBrowseBoxAccess
// ============================================================================
AccessibleBrowseBoxAccess::AccessibleBrowseBoxAccess( const Reference< XAccessible >& _rxParent, IAccessibleTableProvider& _rBrowseBox )
:m_xParent( _rxParent )
,m_rBrowseBox( _rBrowseBox )
@@ -367,7 +367,7 @@ bool AccessibleBrowseBoxAccess::isContextAlive() const
return ( NULL != m_pContext ) && m_pContext->isAlive();
}
// ============================================================================
} // namespace accessibility

View File

@@ -26,7 +26,7 @@
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
#include <unotools/accessiblerelationsethelper.hxx>
// ============================================================================
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
@@ -38,12 +38,12 @@ using namespace ::comphelper;
using namespace ::svt;
// ============================================================================
namespace accessibility {
using namespace com::sun::star::accessibility::AccessibleStateType;
// ============================================================================
// Ctor/Dtor/disposing --------------------------------------------------------
@@ -575,7 +575,7 @@ sal_Int32 SAL_CALL AccessibleBrowseBoxBase::getBackground( ) throw (::com::sun:
return nColor;
}
// ============================================================================
// XInterface -----------------------------------------------------------------
IMPLEMENT_FORWARD_XINTERFACE2( BrowseBoxAccessibleElement, AccessibleBrowseBoxBase, BrowseBoxAccessibleElement_Base )
@@ -610,10 +610,10 @@ BrowseBoxAccessibleElement::~BrowseBoxAccessibleElement( )
{
}
// ============================================================================
} // namespace accessibility
// ============================================================================
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -21,7 +21,7 @@
#include <svtools/accessibletableprovider.hxx>
#include <comphelper/servicehelper.hxx>
// ============================================================================
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
@@ -31,11 +31,11 @@ using namespace ::com::sun::star;
using namespace ::com::sun::star::accessibility;
using namespace ::svt;
// ============================================================================
namespace accessibility {
// ============================================================================
// Ctor/Dtor/disposing --------------------------------------------------------
@@ -395,10 +395,10 @@ void AccessibleBrowseBoxHeaderBar::ensureIsValidHeaderIndex( sal_Int32 nIndex )
ensureIsValidColumn( nIndex );
}
// ============================================================================
} // namespace accessibility
// ============================================================================
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -20,7 +20,7 @@
#include "accessibility/extended/AccessibleBrowseBoxTable.hxx"
#include <svtools/accessibletableprovider.hxx>
// ============================================================================
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
@@ -30,11 +30,11 @@ using namespace ::com::sun::star;
using namespace ::com::sun::star::accessibility;
using namespace ::svt;
// ============================================================================
namespace accessibility {
// ============================================================================
// Ctor/Dtor/disposing --------------------------------------------------------
@@ -252,10 +252,10 @@ Reference< XAccessibleTable > AccessibleBrowseBoxTable::implGetHeaderBar(
return Reference< XAccessibleTable >( xRet, uno::UNO_QUERY );
}
// ============================================================================
} // namespace accessibility
// ============================================================================
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -23,7 +23,7 @@
#include <comphelper/sequence.hxx>
#include <comphelper/servicehelper.hxx>
// ============================================================================
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
@@ -33,11 +33,11 @@ using namespace ::com::sun::star;
using namespace ::com::sun::star::accessibility;
using namespace ::svt;
// ============================================================================
namespace accessibility {
// ============================================================================
// Ctor/Dtor/disposing --------------------------------------------------------
@@ -332,10 +332,10 @@ void AccessibleBrowseBoxTableBase::ensureIsValidIndex( sal_Int32 nChildIndex )
OUString( "child index is invalid" ), *this );
}
// ============================================================================
} // namespace accessibility
// ============================================================================
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -27,12 +27,12 @@
#include <comphelper/types.hxx>
#include <toolkit/helper/vclunohelper.hxx>
// ============================================================================
namespace accessibility
{
// ============================================================================
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star;
@@ -41,7 +41,7 @@ using namespace ::com::sun::star::accessibility;
using namespace ::svt;
using namespace ::svt::table;
// ============================================================================
class AccessibleGridControl_Impl
{
public:
@@ -402,9 +402,9 @@ void AccessibleGridControl::commitTableEvent(sal_Int16 _nEventId,const Any& _rNe
m_pImpl->m_pTable->commitEvent(_nEventId,_rNewValue,_rOldValue);
}
}
// ============================================================================
// = AccessibleGridControlAccess
// ============================================================================
AccessibleGridControlAccess::AccessibleGridControlAccess(
@@ -456,7 +456,7 @@ bool AccessibleGridControlAccess::isContextAlive() const
return ( NULL != m_pContext ) && m_pContext->isAlive();
}
// ============================================================================
} // namespace accessibility

View File

@@ -26,7 +26,7 @@
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
#include <unotools/accessiblerelationsethelper.hxx>
// ============================================================================
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
@@ -39,12 +39,12 @@ using namespace ::svt;
using namespace ::svt::table;
// ============================================================================
namespace accessibility {
using namespace com::sun::star::accessibility::AccessibleStateType;
// ============================================================================
AccessibleGridControlBase::AccessibleGridControlBase(
const Reference< XAccessible >& rxParent,
@@ -446,7 +446,7 @@ Reference<XAccessible > SAL_CALL AccessibleGridControlBase::getAccessibleAtPoint
{
return NULL;
}
//
sal_Int32 SAL_CALL AccessibleGridControlBase::getForeground( ) throw (::com::sun::star::uno::RuntimeException)
{
SolarMutexGuard aSolarGuard;
@@ -489,7 +489,7 @@ sal_Int32 SAL_CALL AccessibleGridControlBase::getBackground( ) throw (::com::su
return nColor;
}
//// ============================================================================
GridControlAccessibleElement::GridControlAccessibleElement( const Reference< XAccessible >& rxParent,
IAccessibleTable& rTable,
AccessibleTableControlObjType eObjType )
@@ -517,10 +517,10 @@ GridControlAccessibleElement::~GridControlAccessibleElement( )
{
}
// ============================================================================
} // namespace accessibility
// ============================================================================
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -24,7 +24,7 @@
#include <comphelper/servicehelper.hxx>
// ============================================================================
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
@@ -37,11 +37,11 @@ using namespace ::com::sun::star::accessibility;
using namespace ::svt;
using namespace ::svt::table;
// ============================================================================
namespace accessibility {
// ============================================================================
AccessibleGridControlHeader::AccessibleGridControlHeader(
const Reference< XAccessible >& rxParent,
@@ -278,10 +278,10 @@ Reference< XAccessible > AccessibleGridControlHeader::implGetChild(
return xChild;
}
// ============================================================================
} // namespace accessibility
// ============================================================================
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -21,7 +21,7 @@
#include "accessibility/extended/AccessibleGridControlTableCell.hxx"
#include <svtools/accessibletable.hxx>
// ============================================================================
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
@@ -31,11 +31,11 @@ using namespace ::com::sun::star;
using namespace ::com::sun::star::accessibility;
using namespace ::svt;
using namespace ::svt::table;
// ============================================================================
namespace accessibility {
// ============================================================================
AccessibleGridControlTable::AccessibleGridControlTable(
const Reference< XAccessible >& rxParent,
@@ -405,10 +405,10 @@ std::vector< Reference< XAccessible > >& AccessibleGridControlTable::getAccessib
{
return m_pAccessCellVector;
}
// ============================================================================
} // namespace accessibility
// ============================================================================
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -23,7 +23,7 @@
#include <comphelper/sequence.hxx>
#include <comphelper/servicehelper.hxx>
// ============================================================================
using ::com::sun::star::uno::Reference;
using ::com::sun::star::uno::Sequence;
@@ -34,11 +34,11 @@ using namespace ::com::sun::star::accessibility;
using namespace ::svt;
using namespace ::svt::table;
// ============================================================================
namespace accessibility {
// ============================================================================
AccessibleGridControlTableBase::AccessibleGridControlTableBase(
const Reference< XAccessible >& rxParent,
@@ -276,10 +276,10 @@ void AccessibleGridControlTableBase::ensureIsValidIndex( sal_Int32 nChildIndex )
OUString( "child index is invalid" ), *this );
}
// ============================================================================
} // namespace accessibility
// ============================================================================
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -48,9 +48,9 @@ namespace accessibility
using namespace ::svt::table;
// =============================================================================
// = AccessibleGridControlCell
// =============================================================================
AccessibleGridControlCell::AccessibleGridControlCell(
const Reference< XAccessible >& _rxParent, IAccessibleTable& _rTable,
@@ -83,7 +83,7 @@ namespace accessibility
m_aTable.GoToCell( m_nColPos, m_nRowPos );
}
//
// implementation of a table cell
OUString AccessibleGridControlTableCell::implGetText()
{

View File

@@ -28,10 +28,10 @@
#include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/typeprovider.hxx>
//........................................................................
namespace accessibility
{
//........................................................................
// class AccessibleIconChoiceCtrl ----------------------------------------------
@@ -372,8 +372,8 @@ namespace accessibility
return static_cast<SvtIconChoiceCtrl*>(GetWindow());
}
//........................................................................
}// namespace accessibility
//........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -50,7 +50,7 @@ namespace
}
}
//........................................................................
namespace accessibility
{
@@ -706,8 +706,8 @@ throw(RuntimeException)
// ... which key?
return xRet;
}
//........................................................................
}// namespace accessibility
//........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -33,10 +33,10 @@
#include <toolkit/helper/convert.hxx>
#include <unotools/accessiblestatesethelper.hxx>
//........................................................................
namespace accessibility
{
//........................................................................
// class AccessibleListBox -----------------------------------------------------
@@ -593,8 +593,8 @@ namespace accessibility
}
//........................................................................
}// namespace accessibility
//........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -55,7 +55,7 @@ namespace
}
}
//........................................................................
namespace accessibility
{
// class AccessibleListBoxEntry -----------------------------------------------------
@@ -1227,8 +1227,8 @@ namespace accessibility
}
return pEntry;
}
//........................................................................
}// namespace accessibility
//........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -34,10 +34,10 @@
#include <vector>
//.........................................................................
namespace accessibility
{
//.........................................................................
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
@@ -45,9 +45,9 @@ namespace accessibility
using namespace ::com::sun::star::accessibility;
using namespace ::comphelper;
// ----------------------------------------------------
// class AccessibleTabBar
// ----------------------------------------------------
AccessibleTabBar::AccessibleTabBar( TabBar* pTabBar )
:AccessibleTabBarBase( pTabBar )
@@ -530,8 +530,8 @@ namespace accessibility
//.........................................................................
} // namespace accessibility
//.........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -24,10 +24,10 @@
#include <toolkit/helper/externallock.hxx>
#include <svtools/tabbar.hxx>
//.........................................................................
namespace accessibility
{
//.........................................................................
AccessibleTabBarBase::AccessibleTabBarBase( TabBar* pTabBar ) :
AccessibleExtendedComponentHelper_BASE( new VCLExternalSolarLock() ),
@@ -98,8 +98,8 @@ void AccessibleTabBarBase::ClearTabBarPointer()
}
}
//.........................................................................
} // namespace accessibility
//.........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -30,10 +30,10 @@
#include <toolkit/helper/convert.hxx>
//.........................................................................
namespace accessibility
{
//.........................................................................
using namespace ::com::sun::star::accessibility;
using namespace ::com::sun::star::uno;
@@ -492,8 +492,8 @@ namespace accessibility
//.........................................................................
} // namespace accessibility
//.........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -31,10 +31,10 @@
#include <toolkit/helper/convert.hxx>
//.........................................................................
namespace accessibility
{
//.........................................................................
using namespace ::com::sun::star::accessibility;
using namespace ::com::sun::star::uno;
@@ -781,8 +781,8 @@ namespace accessibility
//.........................................................................
} // namespace accessibility
//.........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -23,10 +23,10 @@
#include <svtools/svtabbx.hxx>
#include <comphelper/sequence.hxx>
//........................................................................
namespace accessibility
{
//........................................................................
// class AccessibleTabListBox -----------------------------------------------------
@@ -113,8 +113,8 @@ namespace accessibility
return xRet;
}
//........................................................................
}// namespace accessibility
//........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -24,10 +24,10 @@
#include <svtools/svtabbx.hxx>
#include <com/sun/star/accessibility/AccessibleEventId.hpp>
//........................................................................
namespace accessibility
{
//........................................................................
// class AccessibleTabListBoxTable ---------------------------------------------
@@ -407,8 +407,8 @@ namespace accessibility
implSelectRow( implGetRow( nSelectedChildIndex ), sal_False );
}
//........................................................................
}// namespace accessibility
//........................................................................
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@@ -31,9 +31,9 @@ using namespace ::com::sun::star::accessibility;
using namespace ::comphelper;
// ----------------------------------------------------
// class VCLXAccessibleStatusBar
// ----------------------------------------------------
VCLXAccessibleStatusBar::VCLXAccessibleStatusBar( VCLXWindow* pVCLXWindow )
:VCLXAccessibleComponent( pVCLXWindow )

View File

@@ -36,9 +36,9 @@ using namespace ::com::sun::star::accessibility;
using namespace ::comphelper;
// ----------------------------------------------------
// class VCLXAccessibleTabControl
// ----------------------------------------------------
VCLXAccessibleTabControl::VCLXAccessibleTabControl( VCLXWindow* pVCLXWindow )
:VCLXAccessibleComponent( pVCLXWindow )

View File

@@ -29,9 +29,9 @@ using namespace ::com::sun::star::accessibility;
using namespace ::comphelper;
// ----------------------------------------------------
// class VCLXAccessibleTabPageWindow
// ----------------------------------------------------
VCLXAccessibleTabPageWindow::VCLXAccessibleTabPageWindow( VCLXWindow* pVCLXWindow )
:VCLXAccessibleComponent( pVCLXWindow )

View File

@@ -43,9 +43,9 @@ using namespace ::com::sun::star::accessibility;
using namespace ::comphelper;
// ----------------------------------------------------
// class VCLXAccessibleTextComponent
// ----------------------------------------------------
VCLXAccessibleTextComponent::VCLXAccessibleTextComponent( VCLXWindow* pVCLXWindow )
:VCLXAccessibleComponent( pVCLXWindow )

View File

@@ -38,9 +38,9 @@ using namespace ::com::sun::star::accessibility;
namespace
{
// =========================================================================
// = OToolBoxWindowItemContext
// =========================================================================
/** XAccessibleContext implementation for a toolbox item which is represented by a VCL Window
*/
class OToolBoxWindowItemContext : public OAccessibleContextWrapper
@@ -70,9 +70,9 @@ namespace
return m_nIndexInParent;
}
// =========================================================================
// = OToolBoxWindowItem
// =========================================================================
typedef ::cppu::ImplHelper1 < XUnoTunnel
> OToolBoxWindowItem_Base;