summaryrefslogtreecommitdiffstats
path: root/svtools/source/control/valueimp.hxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2009-09-18 12:59:21 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2009-09-18 12:59:21 +0000
commita82083128b2a4c6538ef5bff38dcc21e620b7a2c (patch)
treeedcf668b2882cbb3247214ac784af62abc9eb20a /svtools/source/control/valueimp.hxx
parentCWS-TOOLING: integrate CWS calc32stopper1 (diff)
downloadcore-a82083128b2a4c6538ef5bff38dcc21e620b7a2c.tar.gz
core-a82083128b2a4c6538ef5bff38dcc21e620b7a2c.zip
CWS-TOOLING: integrate CWS impressaccessibility4
2009-09-16 19:30:19 +0200 af r276217 : #i80994# Fixed the triggering of accessibility initialization. 2009-09-16 18:43:57 +0200 af r276214 : #i93083# ValueSet now handles the FOCUSED and FOCUSABLE states correctly.
Diffstat (limited to 'svtools/source/control/valueimp.hxx')
-rw-r--r--svtools/source/control/valueimp.hxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/svtools/source/control/valueimp.hxx b/svtools/source/control/valueimp.hxx
index 8d7951da0dfc..c176629953ae 100644
--- a/svtools/source/control/valueimp.hxx
+++ b/svtools/source/control/valueimp.hxx
@@ -150,6 +150,17 @@ public:
public:
+ /** Called by the corresponding ValueSet when it gets the focus.
+ Stores the new focus state and broadcasts a state change event.
+ */
+ void GetFocus (void);
+
+ /** Called by the corresponding ValueSet when it loses the focus.
+ Stores the new focus state and broadcasts a state change event.
+ */
+ void LoseFocus (void);
+
+
// XAccessible
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException);
@@ -201,6 +212,8 @@ private:
::com::sun::star::accessibility::XAccessibleEventListener > > mxEventListeners;
ValueSet* mpParent;
bool mbIsTransientChildrenDisabled;
+ /// The current FOCUSED state.
+ bool mbIsFocused;
static const ::com::sun::star::uno::Sequence< sal_Int8 >& getUnoTunnelId();