::rtl::OUString to OUString correction in accessibility
Change-Id: Ib59e07ef5dcdd2f30bc5abee2e958cbda57e9629 Reviewed-on: https://gerrit.libreoffice.org/589 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
This commit is contained in:
committed by
Luboš Luňák
parent
a1417c73a2
commit
1ebed7b6c9
@@ -52,7 +52,6 @@
|
||||
|
||||
#include <osl/diagnose.h>
|
||||
|
||||
using ::rtl::OUString;
|
||||
using ::com::sun::star::uno::Mapping;
|
||||
using ::com::sun::star::uno::Reference;
|
||||
using ::com::sun::star::uno::RuntimeException;
|
||||
|
@@ -104,7 +104,7 @@ protected:
|
||||
/** @return
|
||||
The name of this class.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
||||
virtual OUString SAL_CALL getImplementationName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
public:
|
||||
|
@@ -112,8 +112,8 @@ public:
|
||||
::svt::IAccessibleTableProvider& rBrowseBox,
|
||||
const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow >& _xFocusWindow,
|
||||
::svt::AccessibleBrowseBoxObjType eObjType,
|
||||
const ::rtl::OUString& rName,
|
||||
const ::rtl::OUString& rDescription );
|
||||
const OUString& rName,
|
||||
const OUString& rDescription );
|
||||
|
||||
protected:
|
||||
virtual ~AccessibleBrowseBoxBase();
|
||||
@@ -137,13 +137,13 @@ public:
|
||||
/** @return
|
||||
The description of this object.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription()
|
||||
virtual OUString SAL_CALL getAccessibleDescription()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return
|
||||
The name of this object.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName()
|
||||
virtual OUString SAL_CALL getAccessibleName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return
|
||||
@@ -266,11 +266,11 @@ public:
|
||||
// XServiceInfo -----------------------------------------------------------
|
||||
|
||||
/** @return Whether the specified service is supported by this class. */
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName )
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName )
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return A list of all supported services. */
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
@@ -283,9 +283,9 @@ public:
|
||||
inline ::svt::AccessibleBrowseBoxObjType getType() const;
|
||||
|
||||
/** Changes the name of the object and notifies listeners. */
|
||||
void setAccessibleName( const ::rtl::OUString& rName );
|
||||
void setAccessibleName( const OUString& rName );
|
||||
/** Changes the description of the object and notifies listeners. */
|
||||
void setAccessibleDescription( const ::rtl::OUString& rDescription );
|
||||
void setAccessibleDescription( const OUString& rDescription );
|
||||
|
||||
/** Commits an event to all listeners. */
|
||||
void commitEvent(
|
||||
@@ -336,10 +336,10 @@ protected:
|
||||
|
||||
/** Changes the name of the object (flat assignment, no notify).
|
||||
@attention This method requires a locked mutex. */
|
||||
inline void implSetName( const ::rtl::OUString& rName );
|
||||
inline void implSetName( const OUString& rName );
|
||||
/** Changes the description of the object (flat assignment, no notify).
|
||||
@attention This method requires a locked mutex. */
|
||||
inline void implSetDescription( const ::rtl::OUString& rDescription );
|
||||
inline void implSetDescription( const OUString& rDescription );
|
||||
|
||||
/** Locks all mutex's and calculates the bounding box relative to the
|
||||
parent window.
|
||||
@@ -377,9 +377,9 @@ protected:
|
||||
|
||||
private:
|
||||
/** Localized name. */
|
||||
::rtl::OUString maName;
|
||||
OUString maName;
|
||||
/** Localized description text. */
|
||||
::rtl::OUString maDescription;
|
||||
OUString maDescription;
|
||||
|
||||
/** The type of this object (for names, descriptions, state sets, ...). */
|
||||
::svt::AccessibleBrowseBoxObjType meObjType;
|
||||
@@ -430,8 +430,8 @@ protected:
|
||||
::svt::IAccessibleTableProvider& rBrowseBox,
|
||||
const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow >& _xFocusWindow,
|
||||
::svt::AccessibleBrowseBoxObjType eObjType,
|
||||
const ::rtl::OUString& rName,
|
||||
const ::rtl::OUString& rDescription );
|
||||
const OUString& rName,
|
||||
const OUString& rDescription );
|
||||
|
||||
public:
|
||||
// XInterface
|
||||
@@ -492,13 +492,13 @@ inline ::osl::Mutex* AccessibleBrowseBoxBase::getOslGlobalMutex()
|
||||
}
|
||||
|
||||
inline void AccessibleBrowseBoxBase::implSetName(
|
||||
const ::rtl::OUString& rName )
|
||||
const OUString& rName )
|
||||
{
|
||||
maName = rName;
|
||||
}
|
||||
|
||||
inline void AccessibleBrowseBoxBase::implSetDescription(
|
||||
const ::rtl::OUString& rDescription )
|
||||
const OUString& rDescription )
|
||||
{
|
||||
maDescription = rDescription;
|
||||
}
|
||||
|
@@ -65,7 +65,7 @@ namespace accessibility
|
||||
// XAccessibleContext
|
||||
virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleChild( sal_Int32 i ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw ( ::com::sun::star::uno::RuntimeException );
|
||||
virtual OUString SAL_CALL getImplementationName() throw ( ::com::sun::star::uno::RuntimeException );
|
||||
virtual ::sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
|
||||
|
@@ -90,13 +90,13 @@ public:
|
||||
// XAccessibleTable -------------------------------------------------------
|
||||
|
||||
/** @return The description text of the specified row. */
|
||||
virtual ::rtl::OUString SAL_CALL
|
||||
virtual OUString SAL_CALL
|
||||
getAccessibleRowDescription( sal_Int32 nRow )
|
||||
throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return The description text of the specified column. */
|
||||
virtual ::rtl::OUString SAL_CALL
|
||||
virtual OUString SAL_CALL
|
||||
getAccessibleColumnDescription( sal_Int32 nColumn )
|
||||
throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
@@ -198,7 +198,7 @@ public:
|
||||
// XServiceInfo -----------------------------------------------------------
|
||||
|
||||
/** @return The name of this class. */
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
||||
virtual OUString SAL_CALL getImplementationName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return An unique implementation ID. */
|
||||
|
@@ -53,7 +53,7 @@ namespace accessibility
|
||||
/** @return
|
||||
The name of this class.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw ( ::com::sun::star::uno::RuntimeException );
|
||||
virtual OUString SAL_CALL getImplementationName() throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** Creates a new AccessibleStateSetHelper and fills it with states of the
|
||||
current object.
|
||||
|
@@ -77,12 +77,12 @@ public:
|
||||
// XAccessibleTable -------------------------------------------------------
|
||||
|
||||
/** @return The description text of the specified row. */
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleRowDescription( sal_Int32 nRow )
|
||||
virtual OUString SAL_CALL getAccessibleRowDescription( sal_Int32 nRow )
|
||||
throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return The description text of the specified column. */
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleColumnDescription( sal_Int32 nColumn )
|
||||
virtual OUString SAL_CALL getAccessibleColumnDescription( sal_Int32 nColumn )
|
||||
throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
|
||||
@@ -134,7 +134,7 @@ public:
|
||||
// XServiceInfo -----------------------------------------------------------
|
||||
|
||||
/** @return The name of this class. */
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
||||
virtual OUString SAL_CALL getImplementationName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
protected:
|
||||
|
@@ -39,7 +39,7 @@ namespace accessibility
|
||||
|
||||
protected:
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
@@ -51,7 +51,7 @@ namespace accessibility
|
||||
sal_uInt16 _nColId,
|
||||
sal_Int32 _nOffset );
|
||||
|
||||
void nameChanged( const ::rtl::OUString& rNewName, const ::rtl::OUString& rOldName );
|
||||
void nameChanged( const OUString& rNewName, const OUString& rOldName );
|
||||
|
||||
// XInterface -------------------------------------------------------------
|
||||
|
||||
@@ -78,7 +78,7 @@ namespace accessibility
|
||||
/** @return
|
||||
The name of this class.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
||||
virtual OUString SAL_CALL getImplementationName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return
|
||||
@@ -115,16 +115,16 @@ namespace accessibility
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Unicode SAL_CALL getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getCharacterCount() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionStart() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionEnd() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -107,7 +107,7 @@ protected:
|
||||
/** @return
|
||||
The name of this class.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
||||
virtual OUString SAL_CALL getImplementationName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
public:
|
||||
|
@@ -115,13 +115,13 @@ public:
|
||||
/** @return
|
||||
The description of this object.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription()
|
||||
virtual OUString SAL_CALL getAccessibleDescription()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return
|
||||
The name of this object.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName()
|
||||
virtual OUString SAL_CALL getAccessibleName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return
|
||||
@@ -240,11 +240,11 @@ public:
|
||||
// XServiceInfo -----------------------------------------------------------
|
||||
|
||||
/** @return Whether the specified service is supported by this class. */
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName )
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName )
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return A list of all supported services. */
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
@@ -305,10 +305,10 @@ protected:
|
||||
|
||||
/** Changes the name of the object (flat assignment, no notify).
|
||||
@attention This method requires a locked mutex. */
|
||||
inline void implSetName( const ::rtl::OUString& rName );
|
||||
inline void implSetName( const OUString& rName );
|
||||
/** Changes the description of the object (flat assignment, no notify).
|
||||
@attention This method requires a locked mutex. */
|
||||
inline void implSetDescription( const ::rtl::OUString& rDescription );
|
||||
inline void implSetDescription( const OUString& rDescription );
|
||||
|
||||
/** Locks all mutex's and calculates the bounding box relative to the
|
||||
parent window.
|
||||
@@ -344,9 +344,9 @@ protected:
|
||||
|
||||
private:
|
||||
/** Localized name. */
|
||||
::rtl::OUString m_aName;
|
||||
OUString m_aName;
|
||||
/** Localized description text. */
|
||||
::rtl::OUString m_aDescription;
|
||||
OUString m_aDescription;
|
||||
::comphelper::AccessibleEventNotifier::TClientId m_aClientId;
|
||||
};
|
||||
|
||||
@@ -434,13 +434,13 @@ inline ::osl::Mutex* AccessibleGridControlBase::getOslGlobalMutex()
|
||||
}
|
||||
|
||||
inline void AccessibleGridControlBase::implSetName(
|
||||
const ::rtl::OUString& rName )
|
||||
const OUString& rName )
|
||||
{
|
||||
m_aName = rName;
|
||||
}
|
||||
|
||||
inline void AccessibleGridControlBase::implSetDescription(
|
||||
const ::rtl::OUString& rDescription )
|
||||
const OUString& rDescription )
|
||||
{
|
||||
m_aDescription = rDescription;
|
||||
}
|
||||
|
@@ -84,13 +84,13 @@ public:
|
||||
// XAccessibleTable -------------------------------------------------------
|
||||
|
||||
/** @return The description text of the specified row. */
|
||||
virtual ::rtl::OUString SAL_CALL
|
||||
virtual OUString SAL_CALL
|
||||
getAccessibleRowDescription( sal_Int32 nRow )
|
||||
throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return The description text of the specified column. */
|
||||
virtual ::rtl::OUString SAL_CALL
|
||||
virtual OUString SAL_CALL
|
||||
getAccessibleColumnDescription( sal_Int32 nColumn )
|
||||
throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
@@ -143,7 +143,7 @@ public:
|
||||
// XServiceInfo -----------------------------------------------------------
|
||||
|
||||
/** @return The name of this class. */
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
||||
virtual OUString SAL_CALL getImplementationName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return An unique implementation ID. */
|
||||
|
@@ -72,7 +72,7 @@ namespace accessibility
|
||||
/** @return
|
||||
The name of this class.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw ( ::com::sun::star::uno::RuntimeException );
|
||||
virtual OUString SAL_CALL getImplementationName() throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** Creates a new AccessibleStateSetHelper and fills it with states of the
|
||||
current object.
|
||||
@@ -86,7 +86,7 @@ namespace accessibility
|
||||
|
||||
virtual Rectangle implGetBoundingBoxOnScreen();
|
||||
private:
|
||||
::rtl::OUString m_sHeaderName;
|
||||
OUString m_sHeaderName;
|
||||
};
|
||||
}
|
||||
|
||||
|
@@ -90,12 +90,12 @@ public:
|
||||
// XAccessibleTable -------------------------------------------------------
|
||||
|
||||
/** @return The description text of the specified row. */
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleRowDescription( sal_Int32 nRow )
|
||||
virtual OUString SAL_CALL getAccessibleRowDescription( sal_Int32 nRow )
|
||||
throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return The description text of the specified column. */
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleColumnDescription( sal_Int32 nColumn )
|
||||
virtual OUString SAL_CALL getAccessibleColumnDescription( sal_Int32 nColumn )
|
||||
throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
|
||||
@@ -194,7 +194,7 @@ public:
|
||||
// XServiceInfo -----------------------------------------------------------
|
||||
|
||||
/** @return The name of this class. */
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
||||
virtual OUString SAL_CALL getImplementationName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
protected:
|
||||
|
@@ -76,7 +76,7 @@ namespace accessibility
|
||||
{
|
||||
protected:
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
virtual Rectangle implGetBoundingBox();
|
||||
@@ -109,7 +109,7 @@ namespace accessibility
|
||||
/** @return
|
||||
The name of this class.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName()
|
||||
virtual OUString SAL_CALL getImplementationName()
|
||||
throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
/** @return
|
||||
@@ -146,16 +146,16 @@ namespace accessibility
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Unicode SAL_CALL getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getCharacterCount() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionStart() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionEnd() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -63,8 +63,8 @@ namespace accessibility
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleChild( sal_Int32 i ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
@@ -76,8 +76,8 @@ namespace accessibility
|
||||
|
||||
// XAccessibleExtendedComponent
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
protected:
|
||||
// OCommonAccessibleComponent
|
||||
|
@@ -57,7 +57,7 @@ namespace accessibility
|
||||
virtual sal_Int32 SAL_CALL getBackground( ) throw (::com::sun::star::uno::RuntimeException) ;
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw ( ::com::sun::star::uno::RuntimeException );
|
||||
virtual OUString SAL_CALL getImplementationName() throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
// XInterface
|
||||
DECLARE_XINTERFACE( )
|
||||
@@ -66,8 +66,8 @@ namespace accessibility
|
||||
|
||||
// XAccessibleContext
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
|
@@ -73,13 +73,13 @@ namespace accessibility
|
||||
DECLARE_XINTERFACE()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XServiceInfo - static methods
|
||||
static com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static ::rtl::OUString getImplementationName_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static OUString getImplementationName_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -90,8 +90,8 @@ namespace accessibility
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleSelection
|
||||
void SAL_CALL selectAccessibleChild( sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -99,7 +99,7 @@ namespace accessibility
|
||||
virtual void SAL_CALL disposing();
|
||||
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
@@ -120,13 +120,13 @@ namespace accessibility
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XServiceInfo - static methods
|
||||
static com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static ::rtl::OUString getImplementationName_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static OUString getImplementationName_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XEventListener
|
||||
virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException);
|
||||
@@ -141,8 +141,8 @@ namespace accessibility
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -162,16 +162,16 @@ namespace accessibility
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Unicode SAL_CALL getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getCharacterCount() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionStart() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionEnd() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -186,7 +186,7 @@ namespace accessibility
|
||||
// XAccessibleAction
|
||||
virtual sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL doAccessibleAction( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
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);
|
||||
};
|
||||
|
||||
|
@@ -79,13 +79,13 @@ namespace accessibility
|
||||
DECLARE_XINTERFACE()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XServiceInfo - static methods
|
||||
static com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static ::rtl::OUString getImplementationName_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static OUString getImplementationName_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -96,8 +96,8 @@ namespace accessibility
|
||||
::com::sun::star::uno::RuntimeException );
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleSelection
|
||||
void SAL_CALL selectAccessibleChild( sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -106,7 +106,7 @@ namespace accessibility
|
||||
virtual void SAL_CALL dispose() throw ( ::com::sun::star::uno::RuntimeException );
|
||||
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
@@ -128,13 +128,13 @@ namespace accessibility
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XServiceInfo - static methods
|
||||
static com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static ::rtl::OUString getImplementationName_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
static OUString getImplementationName_Static(void) throw(com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -146,8 +146,8 @@ namespace accessibility
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -167,16 +167,16 @@ namespace accessibility
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Unicode SAL_CALL getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getCharacterCount() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionStart() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionEnd() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -191,7 +191,7 @@ namespace accessibility
|
||||
// XAccessibleAction
|
||||
virtual sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL doAccessibleAction( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
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);
|
||||
|
||||
// XAccessibleSelection
|
||||
|
@@ -73,9 +73,9 @@ namespace accessibility
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -86,8 +86,8 @@ namespace accessibility
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -100,8 +100,8 @@ namespace accessibility
|
||||
|
||||
// XAccessibleExtendedComponent
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
};
|
||||
|
||||
//.........................................................................
|
||||
|
@@ -54,7 +54,7 @@ namespace accessibility
|
||||
sal_Bool m_bEnabled;
|
||||
sal_Bool m_bShowing;
|
||||
sal_Bool m_bSelected;
|
||||
::rtl::OUString m_sPageText;
|
||||
OUString m_sPageText;
|
||||
|
||||
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > m_xParent;
|
||||
|
||||
@@ -66,7 +66,7 @@ namespace accessibility
|
||||
void SetEnabled( sal_Bool bEnabled );
|
||||
void SetShowing( sal_Bool bShowing );
|
||||
void SetSelected( sal_Bool bSelected );
|
||||
void SetPageText( const ::rtl::OUString& sPageText );
|
||||
void SetPageText( const OUString& sPageText );
|
||||
|
||||
sal_uInt16 GetPageId() const { return m_nPageId; }
|
||||
|
||||
@@ -90,9 +90,9 @@ namespace accessibility
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -103,8 +103,8 @@ namespace accessibility
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -117,8 +117,8 @@ namespace accessibility
|
||||
|
||||
// XAccessibleExtendedComponent
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
};
|
||||
|
||||
//.........................................................................
|
||||
|
@@ -85,9 +85,9 @@ namespace accessibility
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -98,8 +98,8 @@ namespace accessibility
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -112,8 +112,8 @@ namespace accessibility
|
||||
|
||||
// XAccessibleExtendedComponent
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleSelection
|
||||
virtual void SAL_CALL selectAccessibleChild( sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -91,7 +91,7 @@ public:
|
||||
DECLARE_XTYPEPROVIDER( )
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName (void)
|
||||
virtual OUString SAL_CALL getImplementationName (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleSelection
|
||||
|
@@ -196,10 +196,10 @@ private:
|
||||
virtual ::sal_Int16 SAL_CALL getAccessibleRole()
|
||||
throw (::css::uno::RuntimeException);
|
||||
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription()
|
||||
virtual OUString SAL_CALL getAccessibleDescription()
|
||||
throw (::css::uno::RuntimeException);
|
||||
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName()
|
||||
virtual OUString SAL_CALL getAccessibleName()
|
||||
throw (::css::uno::RuntimeException);
|
||||
|
||||
virtual
|
||||
@@ -256,7 +256,7 @@ private:
|
||||
::css::uno::RuntimeException);
|
||||
|
||||
virtual ::css::uno::Sequence< ::css::beans::PropertyValue > SAL_CALL
|
||||
getCharacterAttributes(::sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes )
|
||||
getCharacterAttributes(::sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes )
|
||||
throw (::css::lang::IndexOutOfBoundsException,
|
||||
::css::uno::RuntimeException);
|
||||
|
||||
@@ -272,7 +272,7 @@ private:
|
||||
getIndexAtPoint(::css::awt::Point const & rPoint)
|
||||
throw (::css::uno::RuntimeException);
|
||||
|
||||
virtual ::rtl::OUString SAL_CALL getSelectedText()
|
||||
virtual OUString SAL_CALL getSelectedText()
|
||||
throw (::css::uno::RuntimeException);
|
||||
|
||||
virtual ::sal_Int32 SAL_CALL getSelectionStart()
|
||||
@@ -286,10 +286,10 @@ private:
|
||||
throw (::css::lang::IndexOutOfBoundsException,
|
||||
::css::uno::RuntimeException);
|
||||
|
||||
virtual ::rtl::OUString SAL_CALL getText()
|
||||
virtual OUString SAL_CALL getText()
|
||||
throw (::css::uno::RuntimeException);
|
||||
|
||||
virtual ::rtl::OUString SAL_CALL getTextRange(::sal_Int32 nStartIndex,
|
||||
virtual OUString SAL_CALL getTextRange(::sal_Int32 nStartIndex,
|
||||
::sal_Int32 nEndIndex)
|
||||
throw (::css::lang::IndexOutOfBoundsException,
|
||||
::css::uno::RuntimeException);
|
||||
@@ -317,14 +317,14 @@ private:
|
||||
throw (::css::lang::IndexOutOfBoundsException,
|
||||
::css::uno::RuntimeException);
|
||||
|
||||
virtual ::sal_Bool SAL_CALL insertText(::rtl::OUString const & rText,
|
||||
virtual ::sal_Bool SAL_CALL insertText(OUString const & rText,
|
||||
::sal_Int32 nIndex)
|
||||
throw (::css::lang::IndexOutOfBoundsException,
|
||||
::css::uno::RuntimeException);
|
||||
|
||||
virtual ::sal_Bool SAL_CALL replaceText(
|
||||
::sal_Int32 nStartIndex, ::sal_Int32 nEndIndex,
|
||||
::rtl::OUString const & rReplacement)
|
||||
OUString const & rReplacement)
|
||||
throw (::css::lang::IndexOutOfBoundsException,
|
||||
::css::uno::RuntimeException);
|
||||
|
||||
@@ -335,15 +335,15 @@ private:
|
||||
throw (::css::lang::IndexOutOfBoundsException,
|
||||
::css::uno::RuntimeException);
|
||||
|
||||
virtual ::sal_Bool SAL_CALL setText(::rtl::OUString const & rText)
|
||||
virtual ::sal_Bool SAL_CALL setText(OUString const & rText)
|
||||
throw (::css::uno::RuntimeException);
|
||||
|
||||
virtual ::css::uno::Sequence< ::css::beans::PropertyValue > SAL_CALL
|
||||
getDefaultAttributes(const ::css::uno::Sequence< ::rtl::OUString >& RequestedAttributes)
|
||||
getDefaultAttributes(const ::css::uno::Sequence< OUString >& RequestedAttributes)
|
||||
throw (::css::uno::RuntimeException);
|
||||
|
||||
virtual ::css::uno::Sequence< ::css::beans::PropertyValue > SAL_CALL
|
||||
getRunAttributes(::sal_Int32 Index, const ::css::uno::Sequence< ::rtl::OUString >& RequestedAttributes)
|
||||
getRunAttributes(::sal_Int32 Index, const ::css::uno::Sequence< OUString >& RequestedAttributes)
|
||||
throw (::css::lang::IndexOutOfBoundsException,
|
||||
::css::uno::RuntimeException);
|
||||
|
||||
@@ -375,7 +375,7 @@ private:
|
||||
|
||||
virtual void SAL_CALL disposing();
|
||||
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
|
||||
virtual ::css::lang::Locale implGetLocale();
|
||||
|
||||
@@ -392,14 +392,14 @@ private:
|
||||
/// client id in the AccessibleEventNotifier queue
|
||||
sal_uInt32 m_nClientId;
|
||||
|
||||
::rtl::OUString m_aParagraphText;
|
||||
OUString m_aParagraphText;
|
||||
};
|
||||
|
||||
|
||||
typedef ::boost::unordered_map< ::rtl::OUString,
|
||||
typedef ::boost::unordered_map< OUString,
|
||||
::css::beans::PropertyValue,
|
||||
::rtl::OUStringHash,
|
||||
::std::equal_to< ::rtl::OUString > > tPropValMap;
|
||||
OUStringHash,
|
||||
::std::equal_to< OUString > > tPropValMap;
|
||||
|
||||
class Document: public ::VCLXAccessibleComponent, public ::SfxListener
|
||||
{
|
||||
@@ -440,7 +440,7 @@ public:
|
||||
// within Paragraph's constructor (i.e., when the Paragraph's ref count is
|
||||
// still zero), pass a "ParagraphImpl const &" instead of a
|
||||
// "::rtl::Reference< ParagraphImpl > const &".
|
||||
::rtl::OUString retrieveParagraphText(ParagraphImpl const * pParagraph);
|
||||
OUString retrieveParagraphText(ParagraphImpl const * pParagraph);
|
||||
|
||||
// Must be called only after init has been called.
|
||||
// To make it possible for this method to be (indirectly) called from
|
||||
@@ -483,7 +483,7 @@ public:
|
||||
// Throws ::css::lang::IndexOutOfBoundsException.
|
||||
::css::uno::Sequence< ::css::beans::PropertyValue > retrieveCharacterAttributes(
|
||||
ParagraphImpl const * pParagraph, ::sal_Int32 nIndex,
|
||||
const ::css::uno::Sequence< ::rtl::OUString >& aRequestedAttributes);
|
||||
const ::css::uno::Sequence< OUString >& aRequestedAttributes);
|
||||
|
||||
// Must be called only after init has been called.
|
||||
// To make it possible for this method to be (indirectly) called from
|
||||
@@ -492,7 +492,7 @@ public:
|
||||
// "::rtl::Reference< ParagraphImpl > const &".
|
||||
::css::uno::Sequence< ::css::beans::PropertyValue > retrieveDefaultAttributes(
|
||||
ParagraphImpl const * pParagraph,
|
||||
const ::css::uno::Sequence< ::rtl::OUString >& RequestedAttributes);
|
||||
const ::css::uno::Sequence< OUString >& RequestedAttributes);
|
||||
|
||||
// Must be called only after init has been called.
|
||||
// To make it possible for this method to be (indirectly) called from
|
||||
@@ -502,7 +502,7 @@ public:
|
||||
// Throws ::css::lang::IndexOutOfBoundsException.
|
||||
::css::uno::Sequence< ::css::beans::PropertyValue > retrieveRunAttributes(
|
||||
ParagraphImpl const * pParagraph, ::sal_Int32 Index,
|
||||
const ::css::uno::Sequence< ::rtl::OUString >& RequestedAttributes);
|
||||
const ::css::uno::Sequence< OUString >& RequestedAttributes);
|
||||
|
||||
// Must be called only after init has been called.
|
||||
// To make it possible for this method to be (indirectly) called from
|
||||
@@ -510,7 +510,7 @@ public:
|
||||
// still zero), pass a "ParagraphImpl const &" instead of a
|
||||
// "::rtl::Reference< ParagraphImpl > const &".
|
||||
void changeParagraphText(ParagraphImpl * pParagraph,
|
||||
::rtl::OUString const & rText);
|
||||
OUString const & rText);
|
||||
|
||||
// Must be called only after init has been called.
|
||||
// To make it possible for this method to be (indirectly) called from
|
||||
@@ -520,7 +520,7 @@ public:
|
||||
// Throws ::css::lang::IndexOutOfBoundsException.
|
||||
void changeParagraphText(ParagraphImpl * pParagraph, ::sal_Int32 nBegin,
|
||||
::sal_Int32 nEnd, bool bCut, bool bPaste,
|
||||
::rtl::OUString const & rText);
|
||||
OUString const & rText);
|
||||
|
||||
// Must be called only after init has been called.
|
||||
// To make it possible for this method to be (indirectly) called from
|
||||
@@ -627,7 +627,7 @@ private:
|
||||
// locked, and after init has been called:
|
||||
void changeParagraphText(::sal_uLong nNumber, ::sal_uInt16 nBegin, ::sal_uInt16 nEnd,
|
||||
bool bCut, bool bPaste,
|
||||
::rtl::OUString const & rText);
|
||||
OUString const & rText);
|
||||
|
||||
void
|
||||
handleParagraphNotifications();
|
||||
@@ -650,12 +650,12 @@ private:
|
||||
|
||||
void retrieveDefaultAttributesImpl(
|
||||
ParagraphImpl const * pParagraph,
|
||||
const ::css::uno::Sequence< ::rtl::OUString >& RequestedAttributes,
|
||||
const ::css::uno::Sequence< OUString >& RequestedAttributes,
|
||||
tPropValMap& rDefAttrSeq);
|
||||
|
||||
void retrieveRunAttributesImpl(
|
||||
ParagraphImpl const * pParagraph, ::sal_Int32 Index,
|
||||
const ::css::uno::Sequence< ::rtl::OUString >& RequestedAttributes,
|
||||
const ::css::uno::Sequence< OUString >& RequestedAttributes,
|
||||
tPropValMap& rRunAttrSeq);
|
||||
|
||||
static ::css::uno::Sequence< ::css::beans::PropertyValue >
|
||||
|
@@ -54,7 +54,7 @@ protected:
|
||||
|
||||
public:
|
||||
// loads the string with the specified resource id
|
||||
static ::rtl::OUString loadString( sal_uInt16 nResId );
|
||||
static OUString loadString( sal_uInt16 nResId );
|
||||
};
|
||||
|
||||
|
||||
|
@@ -34,7 +34,7 @@ class CharacterAttributesHelper
|
||||
{
|
||||
private:
|
||||
|
||||
typedef ::std::map< ::rtl::OUString, ::com::sun::star::uno::Any, ::std::less< ::rtl::OUString > > AttributeMap;
|
||||
typedef ::std::map< OUString, ::com::sun::star::uno::Any, ::std::less< OUString > > AttributeMap;
|
||||
|
||||
AttributeMap m_aAttributeMap;
|
||||
|
||||
@@ -44,7 +44,7 @@ public:
|
||||
~CharacterAttributesHelper();
|
||||
|
||||
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > GetCharacterAttributes();
|
||||
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > GetCharacterAttributes( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes );
|
||||
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > GetCharacterAttributes( const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes );
|
||||
};
|
||||
|
||||
#endif // ACCESSIBILITY_HELPER_CHARACTERATTRIBUTESHELPER_HXX
|
||||
|
@@ -134,7 +134,7 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -61,8 +61,8 @@ public:
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleChild( sal_Int32 i ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
|
||||
@@ -75,8 +75,8 @@ public:
|
||||
|
||||
// XAccessibleExtendedComponent
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleSelection
|
||||
virtual void SAL_CALL selectAccessibleChild( sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -34,8 +34,8 @@ class OAccessibleMenuItemComponent : public OAccessibleMenuBaseComponent
|
||||
protected:
|
||||
Menu* m_pParent;
|
||||
sal_uInt16 m_nItemPos;
|
||||
::rtl::OUString m_sAccessibleName;
|
||||
::rtl::OUString m_sItemText;
|
||||
OUString m_sAccessibleName;
|
||||
OUString m_sItemText;
|
||||
|
||||
virtual sal_Bool IsEnabled();
|
||||
virtual sal_Bool IsVisible();
|
||||
@@ -44,10 +44,10 @@ protected:
|
||||
virtual void Click();
|
||||
|
||||
void SetItemPos( sal_uInt16 nItemPos );
|
||||
void SetAccessibleName( const ::rtl::OUString& sAccessibleName );
|
||||
::rtl::OUString GetAccessibleName();
|
||||
void SetItemText( const ::rtl::OUString& sItemText );
|
||||
::rtl::OUString GetItemText();
|
||||
void SetAccessibleName( const OUString& sAccessibleName );
|
||||
OUString GetAccessibleName();
|
||||
void SetItemText( const OUString& sItemText );
|
||||
OUString GetItemText();
|
||||
|
||||
virtual void FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet );
|
||||
|
||||
@@ -67,8 +67,8 @@ public:
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
|
||||
@@ -80,8 +80,8 @@ public:
|
||||
|
||||
// XAccessibleExtendedComponent
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
};
|
||||
|
||||
#endif // ACCESSIBILITY_STANDARD_ACCESSIBLEMENUITEMCOMPONENT_HXX
|
||||
|
@@ -103,7 +103,7 @@ public:
|
||||
/** The returned string is assoicated with resource
|
||||
<const>RID_STR_ACC_ACTION_TOGGLEPOPUP</const>.
|
||||
*/
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription (sal_Int32 nIndex)
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription (sal_Int32 nIndex)
|
||||
throw (::com::sun::star::lang::IndexOutOfBoundsException,
|
||||
::com::sun::star::uno::RuntimeException);
|
||||
/** No keybinding returned so far.
|
||||
|
@@ -55,16 +55,16 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleAction
|
||||
virtual sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL doAccessibleAction ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
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);
|
||||
|
||||
// XAccessibleValue
|
||||
|
@@ -65,13 +65,13 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleAction
|
||||
virtual sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL doAccessibleAction ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
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);
|
||||
|
||||
// XAccessibleValue
|
||||
|
@@ -39,10 +39,10 @@ public:
|
||||
VCLXAccessibleComboBox (VCLXWindow* pVCLXindow);
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName (void)
|
||||
virtual OUString SAL_CALL getImplementationName (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
// Return combo box specific services.
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
|
@@ -41,10 +41,10 @@ public:
|
||||
VCLXAccessibleDropDownComboBox (VCLXWindow* pVCLXindow);
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName (void)
|
||||
virtual OUString SAL_CALL getImplementationName (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
// Return drop down combo box specific services.
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
|
@@ -40,10 +40,10 @@ public:
|
||||
VCLXAccessibleDropDownListBox (VCLXWindow* pVCLXindow);
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName (void)
|
||||
virtual OUString SAL_CALL getImplementationName (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
// Return drop down list box specific services.
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
|
@@ -51,7 +51,7 @@ protected:
|
||||
virtual void FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet );
|
||||
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
public:
|
||||
@@ -64,8 +64,8 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -75,23 +75,23 @@ public:
|
||||
// XAccessibleAction
|
||||
virtual sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL doAccessibleAction ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
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);
|
||||
|
||||
// XAccessibleText
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Unicode SAL_CALL getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getCharacterCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getSelectedText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getSelectedText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionStart( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionEnd( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -101,10 +101,10 @@ public:
|
||||
virtual sal_Bool SAL_CALL cutText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL pasteText( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL deleteText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL insertText( const ::rtl::OUString& sText, sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL replaceText( sal_Int32 nStartIndex, sal_Int32 nEndIndex, const ::rtl::OUString& sReplacement ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL insertText( const OUString& sText, sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL replaceText( sal_Int32 nStartIndex, sal_Int32 nEndIndex, const OUString& sReplacement ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setAttributes( sal_Int32 nStartIndex, sal_Int32 nEndIndex, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aAttributeSet ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setText( const ::rtl::OUString& sText ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setText( const OUString& sText ) throw (::com::sun::star::uno::RuntimeException);
|
||||
};
|
||||
|
||||
#endif // ACCESSIBILITY_STANDARD_VCLXACCESSIBLEEDIT_HXX
|
||||
|
@@ -38,8 +38,8 @@ public:
|
||||
VCLXAccessibleFixedHyperlink( VCLXWindow* pVCLXindow );
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
};
|
||||
|
||||
#endif // ACCESSIBILITY_STANDARD_VCLXACCESSIBLEFIXEDHYPERLINK_HXX
|
||||
|
@@ -38,8 +38,8 @@ public:
|
||||
VCLXAccessibleFixedText( VCLXWindow* pVCLXindow );
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
};
|
||||
|
||||
#endif // ACCESSIBILITY_STANDARD_VCLXACCESSIBLEFIXEDTEXT_HXX
|
||||
|
@@ -78,7 +78,7 @@ public:
|
||||
This string contains the text of the the currently selected
|
||||
item. It is used to retrieve the index of that item.
|
||||
*/
|
||||
void UpdateSelection (::rtl::OUString sTextOfSelectedItem);
|
||||
void UpdateSelection (OUString sTextOfSelectedItem);
|
||||
|
||||
// XInterface
|
||||
DECLARE_XINTERFACE()
|
||||
@@ -118,10 +118,10 @@ public:
|
||||
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName (void)
|
||||
virtual OUString SAL_CALL getImplementationName (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
// Return list specific services.
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
|
@@ -37,10 +37,10 @@ public:
|
||||
VCLXAccessibleListBox (VCLXWindow* pVCLXindow);
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName (void)
|
||||
virtual OUString SAL_CALL getImplementationName (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
// Return list box specific services.
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
|
@@ -61,7 +61,7 @@ class VCLXAccessibleListItem : public ::comphelper::OBaseMutex,
|
||||
public VCLXAccessibleListItem_BASE
|
||||
{
|
||||
private:
|
||||
::rtl::OUString m_sEntryText;
|
||||
OUString m_sEntryText;
|
||||
sal_Int32 m_nIndexInParent;
|
||||
sal_Bool m_bSelected;
|
||||
sal_Bool m_bVisible;
|
||||
@@ -94,7 +94,7 @@ protected:
|
||||
virtual void SAL_CALL disposing();
|
||||
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
@@ -128,9 +128,9 @@ public:
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -141,8 +141,8 @@ public:
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -162,16 +162,16 @@ public:
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Unicode SAL_CALL getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getCharacterCount() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionStart() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionEnd() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -51,8 +51,8 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -50,8 +50,8 @@ public:
|
||||
virtual ~VCLXAccessibleMenuBar();
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -52,7 +52,7 @@ protected:
|
||||
virtual void FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet );
|
||||
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
@@ -67,8 +67,8 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -77,16 +77,16 @@ public:
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Unicode SAL_CALL getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getCharacterCount() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionStart() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionEnd() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -95,7 +95,7 @@ public:
|
||||
// XAccessibleAction
|
||||
virtual sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL doAccessibleAction ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
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);
|
||||
|
||||
// XAccessibleValue
|
||||
|
@@ -34,8 +34,8 @@ public:
|
||||
virtual ~VCLXAccessibleMenuSeparator();
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -37,8 +37,8 @@ public:
|
||||
virtual ~VCLXAccessiblePopupMenu();
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -56,13 +56,13 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleAction
|
||||
virtual sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL doAccessibleAction ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
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);
|
||||
|
||||
// XAccessibleValue
|
||||
|
@@ -55,13 +55,13 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleAction
|
||||
virtual sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL doAccessibleAction ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
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);
|
||||
|
||||
// XAccessibleValue
|
||||
|
@@ -56,8 +56,8 @@ public:
|
||||
~VCLXAccessibleStatusBar();
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -53,17 +53,17 @@ private:
|
||||
VCLExternalSolarLock* m_pExternalLock;
|
||||
StatusBar* m_pStatusBar;
|
||||
sal_uInt16 m_nItemId;
|
||||
::rtl::OUString m_sItemName;
|
||||
::rtl::OUString m_sItemText;
|
||||
OUString m_sItemName;
|
||||
OUString m_sItemText;
|
||||
sal_Bool m_bShowing;
|
||||
|
||||
protected:
|
||||
sal_Bool IsShowing();
|
||||
void SetShowing( sal_Bool bShowing );
|
||||
void SetItemName( const ::rtl::OUString& sItemName );
|
||||
::rtl::OUString GetItemName();
|
||||
void SetItemText( const ::rtl::OUString& sItemText );
|
||||
::rtl::OUString GetItemText();
|
||||
void SetItemName( const OUString& sItemName );
|
||||
OUString GetItemName();
|
||||
void SetItemText( const OUString& sItemText );
|
||||
OUString GetItemText();
|
||||
sal_uInt16 GetItemId() const { return m_nItemId; }
|
||||
|
||||
virtual void FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet );
|
||||
@@ -72,7 +72,7 @@ protected:
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL implGetBounds( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
@@ -90,9 +90,9 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -103,8 +103,8 @@ public:
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -117,13 +117,13 @@ public:
|
||||
|
||||
// XAccessibleExtendedComponent
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleText
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -71,14 +71,14 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleChild( sal_Int32 i ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleSelection
|
||||
virtual void SAL_CALL selectAccessibleChild( sal_Int32 nChildIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -55,7 +55,7 @@ private:
|
||||
sal_uInt16 m_nPageId;
|
||||
bool m_bFocused;
|
||||
bool m_bSelected;
|
||||
::rtl::OUString m_sPageText;
|
||||
OUString m_sPageText;
|
||||
|
||||
protected:
|
||||
bool IsFocused();
|
||||
@@ -63,8 +63,8 @@ protected:
|
||||
|
||||
void SetFocused( bool bFocused );
|
||||
void SetSelected( bool bSelected );
|
||||
void SetPageText( const ::rtl::OUString& sPageText );
|
||||
::rtl::OUString GetPageText();
|
||||
void SetPageText( const OUString& sPageText );
|
||||
OUString GetPageText();
|
||||
|
||||
void Update( bool bNew );
|
||||
|
||||
@@ -76,7 +76,7 @@ protected:
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL implGetBounds( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
@@ -94,9 +94,9 @@ public:
|
||||
DECLARE_XTYPEPROVIDER()
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -107,8 +107,8 @@ public:
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::lang::Locale SAL_CALL getLocale( ) throw (::com::sun::star::accessibility::IllegalAccessibleComponentStateException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -121,13 +121,13 @@ public:
|
||||
|
||||
// XAccessibleExtendedComponent
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleText
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -36,14 +36,14 @@ class VCLXAccessibleTextComponent : public VCLXAccessibleComponent,
|
||||
public VCLXAccessibleTextComponent_BASE
|
||||
{
|
||||
protected:
|
||||
::rtl::OUString m_sText;
|
||||
OUString m_sText;
|
||||
|
||||
void SetText( const ::rtl::OUString& sText );
|
||||
void SetText( const OUString& sText );
|
||||
|
||||
virtual void ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent );
|
||||
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
@@ -64,16 +64,16 @@ public:
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Unicode SAL_CALL getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getCharacterCount() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getSelectedText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionStart() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getSelectionEnd() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getText() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::accessibility::TextSegment SAL_CALL getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -68,10 +68,10 @@ public:
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName (void)
|
||||
virtual OUString SAL_CALL getImplementationName (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
// Return text field specific services.
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL
|
||||
getSupportedServiceNames (void)
|
||||
throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
@@ -81,7 +81,7 @@ protected:
|
||||
/** With this method the text of the currently selected item is made
|
||||
available to the <type>VCLXAccessibleTextComponent</type> base class.
|
||||
*/
|
||||
::rtl::OUString implGetText (void);
|
||||
OUString implGetText (void);
|
||||
|
||||
private:
|
||||
/** We need to save the accessible parent to return it in <type>getAccessibleParent()</type>,
|
||||
|
@@ -76,8 +76,8 @@ public:
|
||||
DECLARE_XTYPEPROVIDER( )
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleContext
|
||||
virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
@@ -48,7 +48,7 @@ class VCLXAccessibleToolBoxItem : public AccessibleTextHelper_BASE,
|
||||
public VCLXAccessibleToolBoxItem_BASE
|
||||
{
|
||||
private:
|
||||
::rtl::OUString m_sOldName;
|
||||
OUString m_sOldName;
|
||||
ToolBox* m_pToolBox;
|
||||
VCLExternalSolarLock* m_pExternalLock;
|
||||
sal_Int32 m_nIndexInParent;
|
||||
@@ -73,11 +73,11 @@ protected:
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL implGetBounds( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// OCommonAccessibleText
|
||||
virtual ::rtl::OUString implGetText();
|
||||
virtual OUString implGetText();
|
||||
virtual ::com::sun::star::lang::Locale implGetLocale();
|
||||
virtual void implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex );
|
||||
|
||||
::rtl::OUString GetText( bool _bAsName );
|
||||
OUString GetText( bool _bAsName );
|
||||
|
||||
public:
|
||||
VCLXAccessibleToolBoxItem( ToolBox* _pToolBox, sal_Int32 _nPos );
|
||||
@@ -102,9 +102,9 @@ public:
|
||||
DECLARE_XTYPEPROVIDER( )
|
||||
|
||||
// XServiceInfo
|
||||
virtual ::rtl::OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getImplementationName() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL supportsService( const OUString& rServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessible
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
@@ -115,15 +115,15 @@ public:
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL getAccessibleParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleDescription( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleName( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleStateSet > SAL_CALL getAccessibleStateSet( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleText
|
||||
virtual sal_Int32 SAL_CALL getCaretPosition() throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setCaretPosition( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& aRequestedAttributes ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCharacterBounds( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
@@ -138,13 +138,13 @@ public:
|
||||
// XAccessibleExtendedComponent
|
||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::com::sun::star::awt::FontDescriptor SAL_CALL getFontMetrics( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont >& xFont ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getTitledBorderText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getToolTipText( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
|
||||
// XAccessibleAction
|
||||
virtual sal_Int32 SAL_CALL getAccessibleActionCount( ) throw (::com::sun::star::uno::RuntimeException);
|
||||
virtual sal_Bool SAL_CALL doAccessibleAction ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
virtual OUString SAL_CALL getAccessibleActionDescription ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
||||
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);
|
||||
|
||||
// XAccessibleValue
|
||||
|
@@ -487,7 +487,7 @@ namespace accessibility
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
::rtl::OUString AccessibleTabBarPage::getTitledBorderText( ) throw (RuntimeException)
|
||||
OUString AccessibleTabBarPage::getTitledBorderText( ) throw (RuntimeException)
|
||||
{
|
||||
OExternalLockGuard aGuard( this );
|
||||
|
||||
|
@@ -62,7 +62,7 @@ VCLXAccessibleTextComponent::~VCLXAccessibleTextComponent()
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
void VCLXAccessibleTextComponent::SetText( const ::rtl::OUString& sText )
|
||||
void VCLXAccessibleTextComponent::SetText( const OUString& sText )
|
||||
{
|
||||
Any aOldValue, aNewValue;
|
||||
if ( implInitTextChangedEvent( m_sText, sText, aOldValue, aNewValue ) )
|
||||
@@ -93,9 +93,9 @@ void VCLXAccessibleTextComponent::ProcessWindowEvent( const VclWindowEvent& rVcl
|
||||
// OCommonAccessibleText
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
::rtl::OUString VCLXAccessibleTextComponent::implGetText()
|
||||
OUString VCLXAccessibleTextComponent::implGetText()
|
||||
{
|
||||
::rtl::OUString aText;
|
||||
OUString aText;
|
||||
if ( GetWindow() )
|
||||
aText = OutputDevice::GetNonMnemonicString( GetWindow()->GetText() );
|
||||
|
||||
@@ -125,7 +125,7 @@ void VCLXAccessibleTextComponent::disposing()
|
||||
{
|
||||
VCLXAccessibleComponent::disposing();
|
||||
|
||||
m_sText = ::rtl::OUString();
|
||||
m_sText = OUString();
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
@@ -171,12 +171,12 @@ sal_Unicode VCLXAccessibleTextComponent::getCharacter( sal_Int32 nIndex ) throw
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
Sequence< PropertyValue > VCLXAccessibleTextComponent::getCharacterAttributes( sal_Int32 nIndex, const Sequence< ::rtl::OUString >& aRequestedAttributes ) throw (IndexOutOfBoundsException, RuntimeException)
|
||||
Sequence< PropertyValue > VCLXAccessibleTextComponent::getCharacterAttributes( sal_Int32 nIndex, const Sequence< OUString >& aRequestedAttributes ) throw (IndexOutOfBoundsException, RuntimeException)
|
||||
{
|
||||
OExternalLockGuard aGuard( this );
|
||||
|
||||
Sequence< PropertyValue > aValues;
|
||||
::rtl::OUString sText( implGetText() );
|
||||
OUString sText( implGetText() );
|
||||
|
||||
if ( !implIsValidIndex( nIndex, sText.getLength() ) )
|
||||
throw IndexOutOfBoundsException();
|
||||
@@ -235,7 +235,7 @@ sal_Int32 VCLXAccessibleTextComponent::getIndexAtPoint( const awt::Point& aPoint
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
::rtl::OUString VCLXAccessibleTextComponent::getSelectedText() throw (RuntimeException)
|
||||
OUString VCLXAccessibleTextComponent::getSelectedText() throw (RuntimeException)
|
||||
{
|
||||
OExternalLockGuard aGuard( this );
|
||||
|
||||
@@ -274,7 +274,7 @@ sal_Bool VCLXAccessibleTextComponent::setSelection( sal_Int32 nStartIndex, sal_I
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
::rtl::OUString VCLXAccessibleTextComponent::getText() throw (RuntimeException)
|
||||
OUString VCLXAccessibleTextComponent::getText() throw (RuntimeException)
|
||||
{
|
||||
OExternalLockGuard aGuard( this );
|
||||
|
||||
@@ -283,7 +283,7 @@ sal_Bool VCLXAccessibleTextComponent::setSelection( sal_Int32 nStartIndex, sal_I
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
::rtl::OUString VCLXAccessibleTextComponent::getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException)
|
||||
OUString VCLXAccessibleTextComponent::getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException)
|
||||
{
|
||||
OExternalLockGuard aGuard( this );
|
||||
|
||||
@@ -330,7 +330,7 @@ sal_Bool VCLXAccessibleTextComponent::copyText( sal_Int32 nStartIndex, sal_Int32
|
||||
Reference< datatransfer::clipboard::XClipboard > xClipboard = GetWindow()->GetClipboard();
|
||||
if ( xClipboard.is() )
|
||||
{
|
||||
::rtl::OUString sText( getTextRange( nStartIndex, nEndIndex ) );
|
||||
OUString sText( getTextRange( nStartIndex, nEndIndex ) );
|
||||
|
||||
::vcl::unohelper::TextDataObject* pDataObj = new ::vcl::unohelper::TextDataObject( sText );
|
||||
const sal_uInt32 nRef = Application::ReleaseSolarMutex();
|
||||
|
@@ -593,7 +593,7 @@ OUString SAL_CALL VCLXAccessibleToolBoxItem::getToolTipText( ) throw (RuntimeEx
|
||||
{
|
||||
OExternalLockGuard aGuard( this );
|
||||
|
||||
::rtl::OUString sRet;
|
||||
OUString sRet;
|
||||
if ( m_pToolBox )
|
||||
{
|
||||
if ( Help::IsExtHelpEnabled() )
|
||||
|
Reference in New Issue
Block a user