Kaydet (Commit) 22ffe753 authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS uaa02 (1.28.8); FILE MERGED

2003/04/17 17:21:52 mt 1.28.8.2: RESYNC: (1.28-1.29); FILE MERGED
2003/04/11 16:58:16 mt 1.28.8.1: #108656# Moved accessibility from drafts to final
üst 959ee1ab
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: view.cxx,v $ * $RCSfile: view.cxx,v $
* *
* $Revision: 1.29 $ * $Revision: 1.30 $
* *
* last change: $Author: vg $ $Date: 2003-04-15 16:22:42 $ * last change: $Author: vg $ $Date: 2003-04-24 17:30:04 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -61,17 +61,17 @@ ...@@ -61,17 +61,17 @@
#pragma hdrstop #pragma hdrstop
#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_XACCESSIBLE_HPP_ #ifndef _COM_SUN_STAR_ACCESSIBILITY_XACCESSIBLE_HPP_
#include <drafts/com/sun/star/accessibility/XAccessible.hpp> #include <com/sun/star/accessibility/XAccessible.hpp>
#endif #endif
#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLEEVENTOBJECT_HPP_ #ifndef _COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLEEVENTOBJECT_HPP_
#include <drafts/com/sun/star/accessibility/AccessibleEventObject.hpp> #include <com/sun/star/accessibility/AccessibleEventObject.hpp>
#endif #endif
#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLEEVENTID_HPP_ #ifndef _COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLEEVENTID_HPP_
#include <drafts/com/sun/star/accessibility/AccessibleEventId.hpp> #include <com/sun/star/accessibility/AccessibleEventId.hpp>
#endif #endif
#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLESTATETYPE_HPP_ #ifndef _COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLESTATETYPE_HPP_
#include <drafts/com/sun/star/accessibility/AccessibleStateType.hpp> #include <com/sun/star/accessibility/AccessibleStateType.hpp>
#endif #endif
#ifndef _SV_MENU_HXX //autogen #ifndef _SV_MENU_HXX //autogen
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
#define SmViewShell #define SmViewShell
#include "smslots.hxx" #include "smslots.hxx"
using namespace drafts::com::sun::star::accessibility; using namespace com::sun::star::accessibility;
using namespace com::sun::star; using namespace com::sun::star;
using namespace com::sun::star::uno; using namespace com::sun::star::uno;
...@@ -305,7 +305,7 @@ void SmGraphicWindow::GetFocus() ...@@ -305,7 +305,7 @@ void SmGraphicWindow::GetFocus()
uno::Any aOldValue, aNewValue; uno::Any aOldValue, aNewValue;
// aOldValue remains empty // aOldValue remains empty
aNewValue <<= AccessibleStateType::FOCUSED; aNewValue <<= AccessibleStateType::FOCUSED;
pAccessible->LaunchEvent( AccessibleEventId::ACCESSIBLE_STATE_EVENT, pAccessible->LaunchEvent( AccessibleEventId::STATE_CHANGED,
aOldValue, aNewValue ); aOldValue, aNewValue );
} }
} }
...@@ -318,7 +318,7 @@ void SmGraphicWindow::LoseFocus() ...@@ -318,7 +318,7 @@ void SmGraphicWindow::LoseFocus()
uno::Any aOldValue, aNewValue; uno::Any aOldValue, aNewValue;
aOldValue <<= AccessibleStateType::FOCUSED; aOldValue <<= AccessibleStateType::FOCUSED;
// aNewValue remains empty // aNewValue remains empty
pAccessible->LaunchEvent( AccessibleEventId::ACCESSIBLE_STATE_EVENT, pAccessible->LaunchEvent( AccessibleEventId::STATE_CHANGED,
aOldValue, aNewValue ); aOldValue, aNewValue );
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment