diff options
author | Oliver Specht <os@openoffice.org> | 2002-05-06 11:11:40 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2002-05-06 11:11:40 +0000 |
commit | 3236db5ef93df40cd3b190d16e1a04015a0e8dd5 (patch) | |
tree | 2517f94d2a2cc2554ba30e54ec2e4c9e41e39366 /sw | |
parent | 9a79fdb0106e019311d80dd1fa88a31872070318 (diff) |
#98823# Accessibility options forwarded to the ViewShell's ViewOption
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/viewopt.hxx | 24 | ||||
-rw-r--r-- | sw/inc/viewsh.hxx | 8 | ||||
-rw-r--r-- | sw/source/core/view/viewsh.cxx | 26 | ||||
-rw-r--r-- | sw/source/ui/app/apphdl.cxx | 28 | ||||
-rw-r--r-- | sw/source/ui/config/viewopt.cxx | 5 | ||||
-rw-r--r-- | sw/source/ui/inc/pview.hxx | 8 | ||||
-rw-r--r-- | sw/source/ui/inc/view.hxx | 8 | ||||
-rw-r--r-- | sw/source/ui/uiview/pview.cxx | 156 | ||||
-rw-r--r-- | sw/source/ui/uiview/view.cxx | 5 | ||||
-rw-r--r-- | sw/source/ui/uiview/view0.cxx | 133 |
10 files changed, 107 insertions, 294 deletions
diff --git a/sw/inc/viewopt.hxx b/sw/inc/viewopt.hxx index dace854826b2..ec2a986fe0c2 100644 --- a/sw/inc/viewopt.hxx +++ b/sw/inc/viewopt.hxx @@ -2,9 +2,9 @@ * * $RCSfile: viewopt.hxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: os $ $Date: 2002-04-25 13:55:37 $ + * last change: $Author: os $ $Date: 2002-05-06 12:10:12 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -91,8 +91,8 @@ namespace svx{ class ColorConfig;} #define VIEWOPT_1_REF 0x00000400L #define VIEWOPT_1_FLDNAME 0x00000800L - - +#define VIEWOPT_1_ALWAYS_AUTOCOLOR 0x00001000L +#define VIEWOPT_1_STOP_ANIMATED_GRAPHIC 0x00002000L #define VIEWOPT_1_POSTITS 0x00004000L #define VIEWOPT_1_HIDDEN 0x00008000L @@ -100,7 +100,7 @@ namespace svx{ class ColorConfig;} #define VIEWOPT_1_TABLE 0x00040000L #define VIEWOPT_1_DRAW 0x00080000L #define VIEWOPT_1_CONTROL 0x00100000L - +#define VIEWOPT_1_STOP_ANIMATED_TEXT 0x00200000L #define VIEWOPT_1_CROSSHAIR 0x00400000L #define VIEWOPT_1_SNAP 0x00800000L #define VIEWOPT_1_SYNCHRONIZE 0x01000000L @@ -409,6 +409,20 @@ public: inline void SetCursorInProtectedArea(BOOL b) { (b != 0) ? (nCore2Options |= VIEWOPT_CORE2_CRSR_IN_PROT) : (nCore2Options &= ~VIEWOPT_CORE2_CRSR_IN_PROT);} + //--------Accessibility options + inline BOOL IsAlwaysAutoColor() const { return !bReadonly && (nCoreOptions & VIEWOPT_1_ALWAYS_AUTOCOLOR) ? TRUE : FALSE; } + inline void SetAlwaysAutoColor( BOOL b ) + { (b != 0) ? (nCoreOptions |= VIEWOPT_1_ALWAYS_AUTOCOLOR ) : ( nCoreOptions &= ~VIEWOPT_1_ALWAYS_AUTOCOLOR); } + + + inline BOOL IsStopAnimatedGraphics() const { return !bReadonly && (nCoreOptions & VIEWOPT_1_STOP_ANIMATED_GRAPHIC ) ? TRUE : FALSE; } + inline void SetStopAnimatedGraphics( BOOL b ) + { (b != 0) ? (nCoreOptions |= VIEWOPT_1_STOP_ANIMATED_GRAPHIC ) : ( nCoreOptions &= ~VIEWOPT_1_STOP_ANIMATED_GRAPHIC ); } + + inline BOOL IsStopAnimatedText() const { return !bReadonly && (nCoreOptions & VIEWOPT_1_STOP_ANIMATED_TEXT ) ? TRUE : FALSE; } + inline void SetStopAnimatedText( BOOL b ) + { (b != 0) ? (nCoreOptions |= VIEWOPT_1_STOP_ANIMATED_TEXT ) : ( nCoreOptions &= ~VIEWOPT_1_STOP_ANIMATED_TEXT ); } + /*--------------------------------------------------------------------------- ----------------------------------------------------------------------------*/ diff --git a/sw/inc/viewsh.hxx b/sw/inc/viewsh.hxx index 0f1381123384..cd64f93963de 100644 --- a/sw/inc/viewsh.hxx +++ b/sw/inc/viewsh.hxx @@ -2,9 +2,9 @@ * * $RCSfile: viewsh.hxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: ama $ $Date: 2002-03-15 11:43:42 $ + * last change: $Author: os $ $Date: 2002-05-06 12:10:12 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -106,6 +106,7 @@ struct ShellResource; class SwRegionRects; class SwFrm; struct SwPrintData; +class SvtAccessibilityOptions; //JP 19.07.98: - Bug 52312 // define fuer Flags, die im CTOR oder den darunter liegenden Schichten @@ -419,6 +420,9 @@ public: ::com::sun::star::uno::Reference< ::drafts::com::sun::star::accessibility::XAccessible > CreateAccessible(); #endif + //apply Accessiblity options + void ApplyAccessiblityOptions(SvtAccessibilityOptions& rAccessibilityOptions); + ViewShell( ViewShell&, Window *pWin = 0, OutputDevice *pOut = 0, long nFlags = 0 ); ViewShell( SwDoc& rDoc, Window *pWin, diff --git a/sw/source/core/view/viewsh.cxx b/sw/source/core/view/viewsh.cxx index eb348a36dfca..739f742e7d6b 100644 --- a/sw/source/core/view/viewsh.cxx +++ b/sw/source/core/view/viewsh.cxx @@ -2,9 +2,9 @@ * * $RCSfile: viewsh.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: os $ $Date: 2002-04-25 13:57:38 $ + * last change: $Author: os $ $Date: 2002-05-06 12:11:40 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -172,6 +172,9 @@ #ifndef _SVX_COLORCFG_HXX #include <svx/colorcfg.hxx> #endif +#ifndef INCLUDED_SVTOOLS_ACCESSIBILITYOPTIONS_HXX +#include <svtools/accessibilityoptions.hxx> +#endif #ifndef _STATSTR_HRC #include <statstr.hrc> @@ -2199,3 +2202,22 @@ BOOL ViewShell::IsNewLayout() const return xAcc; } #endif +/* -----------------------------06.05.2002 13:23------------------------------ + + ---------------------------------------------------------------------------*/ +void ViewShell::ApplyAccessiblityOptions(SvtAccessibilityOptions& rAccessibilityOptions) +{ + if(pOpt->IsPagePreview() && !rAccessibilityOptions.GetIsForPagePreviews()) + { + pOpt->SetAlwaysAutoColor(sal_False); + pOpt->SetStopAnimatedGraphics(sal_False); + pOpt->SetStopAnimatedText(sal_False); + } + else + { + pOpt->SetAlwaysAutoColor(rAccessibilityOptions.GetIsAutomaticFontColor()); + pOpt->SetStopAnimatedGraphics(rAccessibilityOptions.GetIsAllowAnimatedGraphics()); + pOpt->SetStopAnimatedText(rAccessibilityOptions.GetIsAllowAnimatedText()); + } +} + diff --git a/sw/source/ui/app/apphdl.cxx b/sw/source/ui/app/apphdl.cxx index b82b0849a429..5e733f5c857f 100644 --- a/sw/source/ui/app/apphdl.cxx +++ b/sw/source/ui/app/apphdl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: apphdl.cxx,v $ * - * $Revision: 1.21 $ + * $Revision: 1.22 $ * - * last change: $Author: os $ $Date: 2002-05-06 08:53:45 $ + * last change: $Author: os $ $Date: 2002-05-06 12:11:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1014,8 +1014,11 @@ void SwModule::Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) if(SFX_HINT_COLORS_CHANGED == nHintId || SFX_HINT_ACCESSIBILITY_CHANGED == nHintId) { + sal_Bool bAccessibility = sal_False; if(SFX_HINT_COLORS_CHANGED == nHintId) SwViewOption::ApplyColorConfigValues(*pColorConfig); + else + bAccessibility = sal_True; //invalidate all edit windows const TypeId aSwViewTypeId = TYPE(SwView); @@ -1024,11 +1027,22 @@ void SwModule::Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) SfxViewShell* pViewShell = SfxViewShell::GetFirst(); while(pViewShell) { - if(pViewShell->GetWindow() && - (pViewShell->IsA(aSwViewTypeId) || - pViewShell->IsA(aSwViewTypeId) || - pViewShell->IsA(aSwViewTypeId))) - pViewShell->GetWindow()->Invalidate(); + if(pViewShell->GetWindow()) + { + if((pViewShell->IsA(aSwViewTypeId) || + pViewShell->IsA(aSwPreViewTypeId) || + pViewShell->IsA(aSwSrcViewTypeId))) + { + if(bAccessibility) + { + if(pViewShell->IsA(aSwViewTypeId)) + ((SwView*)pViewShell)->ApplyAccessiblityOptions(*pAccessibilityOptions); + else if(pViewShell->IsA(aSwPreViewTypeId)) + ((SwPagePreView*)pViewShell)->ApplyAccessiblityOptions(*pAccessibilityOptions); + } + pViewShell->GetWindow()->Invalidate(); + } + } pViewShell = SfxViewShell::GetNext( *pViewShell ); } } diff --git a/sw/source/ui/config/viewopt.cxx b/sw/source/ui/config/viewopt.cxx index 16cf90570501..fbc3cf4754fb 100644 --- a/sw/source/ui/config/viewopt.cxx +++ b/sw/source/ui/config/viewopt.cxx @@ -2,9 +2,9 @@ * * $RCSfile: viewopt.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: os $ $Date: 2002-05-02 11:14:55 $ + * last change: $Author: os $ $Date: 2002-05-06 12:11:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -546,6 +546,7 @@ SwViewOption& SwViewOption::operator=( const SwViewOption &rVOpt ) nDivisionY = rVOpt.nDivisionY ; nPagePrevRow = rVOpt.nPagePrevRow; nPagePrevCol = rVOpt.nPagePrevCol; + bIsPagePreview = rVOpt.bIsPagePreview; eZoom = rVOpt.eZoom ; nTblDest = rVOpt.nTblDest ; nUIOptions = rVOpt.nUIOptions ; diff --git a/sw/source/ui/inc/pview.hxx b/sw/source/ui/inc/pview.hxx index c0c8ee8d2468..474d913164f2 100644 --- a/sw/source/ui/inc/pview.hxx +++ b/sw/source/ui/inc/pview.hxx @@ -2,9 +2,9 @@ * * $RCSfile: pview.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: os $ $Date: 2002-03-19 13:37:32 $ + * last change: $Author: os $ $Date: 2002-05-06 12:11:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -88,6 +88,7 @@ class Button; class SwRect; class DataChangedEvent; class CommandEvent; +class SvtAccessibilityOptions; class SwPagePreViewWin : public Window { @@ -250,6 +251,9 @@ public: SwDocShell* GetDocShell(); + //apply Accessiblity options + void ApplyAccessiblityOptions(SvtAccessibilityOptions& rAccessibilityOptions); + SwPagePreView( SfxViewFrame* pFrame, SfxViewShell* ); ~SwPagePreView(); }; diff --git a/sw/source/ui/inc/view.hxx b/sw/source/ui/inc/view.hxx index a414aabbeb82..5312cbe40988 100644 --- a/sw/source/ui/inc/view.hxx +++ b/sw/source/ui/inc/view.hxx @@ -2,9 +2,9 @@ * * $RCSfile: view.hxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: os $ $Date: 2002-03-15 07:32:50 $ + * last change: $Author: os $ $Date: 2002-05-06 12:11:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -127,7 +127,7 @@ class FmFormShell; class CommandEvent; class InsCaptionOpt; class SvGlobalName; - +class SvtAccessibilityOptions; namespace com{ namespace sun { namespace star { namespace view{ class XSelectionSupplier; } @@ -599,6 +599,8 @@ public: BOOL IsPasteAllowed(); BOOL IsPasteSpecialAllowed(); + //apply Accessiblity options + void ApplyAccessiblityOptions(SvtAccessibilityOptions& rAccessibilityOptions); SwView(SfxViewFrame* pFrame, SfxViewShell*); ~SwView(); diff --git a/sw/source/ui/uiview/pview.cxx b/sw/source/ui/uiview/pview.cxx index 79c81574baeb..0175f442cc2b 100644 --- a/sw/source/ui/uiview/pview.cxx +++ b/sw/source/ui/uiview/pview.cxx @@ -2,9 +2,9 @@ * * $RCSfile: pview.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: os $ $Date: 2002-04-26 16:17:48 $ + * last change: $Author: os $ $Date: 2002-05-06 12:11:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1441,6 +1441,7 @@ void SwPagePreView::Init(const SwViewOption * pPrefs) aOpt.SetGridVisible( FALSE ); aOpt.SetHideSpell( TRUE ); GetViewShell().ApplyViewOptions( aOpt ); + GetViewShell().ApplyAccessiblityOptions(SW_MOD()->GetAccessibilityOptions()); if( pESh->GetDoc()->IsBrowseMode() ) { @@ -2252,150 +2253,11 @@ BOOL SwPagePreView::HandleWheelCommands( const CommandEvent& rCEvt ) return bOk; } -/************************************************************************* - - $Log: not supported by cvs2svn $ - Revision 1.15 2002/04/25 13:53:11 os - #97695# color configuration entries added/moved/removed - - Revision 1.14 2002/03/20 11:00:27 os - #97978# close preview button as text only - - Revision 1.13 2002/03/20 09:18:37 os - #97978# keyboard access corrected - - Revision 1.12 2002/03/15 07:32:50 os - #97978# page preview accessiblity implemented - - Revision 1.11 2002/02/26 15:54:02 os - #97682# prevent division by zero if no printer can be found - - Revision 1.10 2001/11/30 12:54:23 jp - Bug #95431#: DataChanged - react only on whished type/flags - - Revision 1.9 2001/10/08 13:50:55 jp - Task #92830#: min/max -> Min/Max - - Revision 1.8 2001/06/01 11:23:56 fme - Fix #86988#: Redesign of dialogs - - Revision 1.7 2001/05/17 09:32:40 jp - Bug #80651#: call InitJob at the printer - - Revision 1.6 2001/05/10 08:48:50 os - store print options at the document - - Revision 1.5 2000/11/09 10:14:21 obo - Without string include - - Revision 1.4 2000/11/07 13:09:54 hjs - use min/max from stl - - Revision 1.3 2000/10/25 12:05:50 jp - Spellchecker/Hyphenator are not longer member of the shells - - Revision 1.2 2000/09/28 15:24:06 os - use of configuration service in view options - - Revision 1.1.1.1 2000/09/18 17:14:48 hr - initial import - - Revision 1.201 2000/09/18 16:06:10 willem.vandorp - OpenOffice header added. - - Revision 1.200 2000/09/07 15:59:32 os - change: SFX_DISPATCHER/SFX_BINDINGS removed - - Revision 1.199 2000/08/14 17:25:29 jp - Task #77422#: PrintPreView in the same window - - Revision 1.198 2000/08/07 11:48:15 jp - PagePreView replace the current view - - Revision 1.197 2000/06/19 11:33:51 os - #73648# display all values after <standard> has been reset - - Revision 1.196 2000/05/26 07:21:34 os - old SW Basic API Slots removed - - Revision 1.195 2000/05/23 19:42:35 jp - Bugfixes for Unicode - - Revision 1.194 2000/05/11 12:41:59 tl - if[n]def ONE_LINGU entfernt - - Revision 1.193 2000/05/10 11:53:20 os - Basic API removed - - Revision 1.192 2000/04/18 15:02:50 os - UNICODE +/* -----------------------------06.05.2002 13:18------------------------------ - Revision 1.191 2000/03/23 16:17:01 os - #74433# dont show section boundaries in print preview - - Revision 1.190 2000/03/03 15:17:04 os - StarView remainders removed - - Revision 1.189 2000/02/11 14:59:07 hr - #70473# changes for unicode ( patched by automated patchtool ) - - Revision 1.188 2000/01/04 15:40:55 os - #71433# no index background in preview - - Revision 1.187 1999/12/14 14:32:01 jp - Bug #69595#: print can create single Jobs - - Revision 1.186 1999/10/25 19:42:26 tl - ongoing ONE_LINGU implementation - - Revision 1.185 1999/09/10 13:19:10 os - Chg: resource types removed - - Revision 1.184 1999/08/31 08:40:12 TL - #if[n]def ONE_LINGU inserted (for transition of lingu to StarOne) - - - Rev 1.183 31 Aug 1999 10:40:12 TL - #if[n]def ONE_LINGU inserted (for transition of lingu to StarOne) - - Rev 1.182 08 Jul 1999 18:45:16 MA - Use internal object to toggle wait cursor - - Rev 1.181 10 Jun 1999 10:52:32 JP - have to change: no AppWin from SfxApp - - Rev 1.180 09 Jun 1999 19:33:28 JP - have to change: no cast from GetpApp to SfxApp/OffApp, SfxShell only subclass of SfxApp - - Rev 1.179 11 May 1999 08:41:40 OS - #65779# SaveValue nach hinten verschoben - - Rev 1.178 08 Apr 1999 10:59:12 OS - #61864# Controls jetzt auch initial leer, wenn noch nichts gesetzt ist - - Rev 1.177 10 Mar 1999 12:02:54 MA - #52642# Fontwechsel im DataChanged - - Rev 1.176 02 Mar 1999 16:03:28 AMA - Fix #62568#: Invalidierungen so sparsam wie moeglich, so gruendlich wie noetig - - Rev 1.175 01 Mar 1999 13:54:40 JP - #62496# VScrollbar IMMER pruefen - - Rev 1.174 26 Feb 1999 15:07:28 OS - #62496# VScrollbar IMMER pruefen - - Rev 1.173 12 Nov 1998 12:24:26 OS - #59297# Einstellungen bei Standard zuruecksetzen - - Rev 1.172 29 Oct 1998 11:52:40 OM - #58593# Selektion nur anbieten, wenn auch vorhanden - - Rev 1.171 15 Oct 1998 13:39:20 OS - #57602# printPages mit optionen - - Rev 1.170 29 Sep 1998 14:35:44 OS - #57281#, #57264# Zoom der Preview mit Controller, Preview-Close ueber eigenen Slot - -*************************************************************************/ + ---------------------------------------------------------------------------*/ +void SwPagePreView::ApplyAccessiblityOptions(SvtAccessibilityOptions& rAccessibilityOptions) +{ + GetViewShell().ApplyAccessiblityOptions(rAccessibilityOptions); +} diff --git a/sw/source/ui/uiview/view.cxx b/sw/source/ui/uiview/view.cxx index 28e5ca8c060c..bac277f970e3 100644 --- a/sw/source/ui/uiview/view.cxx +++ b/sw/source/ui/uiview/view.cxx @@ -2,9 +2,9 @@ * * $RCSfile: view.cxx,v $ * - * $Revision: 1.42 $ + * $Revision: 1.43 $ * - * last change: $Author: os $ $Date: 2002-04-26 16:45:52 $ + * last change: $Author: os $ $Date: 2002-05-06 12:11:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -987,6 +987,7 @@ SwView::SwView( SfxViewFrame *pFrame, SfxViewShell* pOldSh ) pWrtShell->SetUIOptions( aUsrPref ); pWrtShell->SetReadOnlyAvailable( aUsrPref.IsCursorInProtectedArea() ); + pWrtShell->ApplyAccessiblityOptions(SW_MOD()->GetAccessibilityOptions()); if( UseObjectSize() ) { diff --git a/sw/source/ui/uiview/view0.cxx b/sw/source/ui/uiview/view0.cxx index e0e98936b038..2027596e0796 100644 --- a/sw/source/ui/uiview/view0.cxx +++ b/sw/source/ui/uiview/view0.cxx @@ -2,9 +2,9 @@ * * $RCSfile: view0.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: os $ $Date: 2001-07-24 07:53:46 $ + * last change: $Author: os $ $Date: 2002-05-06 12:11:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -92,6 +92,9 @@ #ifndef _NAVIPI_HXX //autogen #include <navipi.hxx> #endif +#ifndef _WRTSH_HXX +#include <wrtsh.hxx> +#endif #include "view.hxx" #include "basesh.hxx" #include "docsh.hxx" @@ -179,124 +182,10 @@ view::XSelectionSupplier* SwView::GetUNOObject() { return pViewImpl->GetUNOObject(); } +/* -----------------------------06.05.2002 13:18------------------------------ - -/*------------------------------------------------------------------------ - $Log: not supported by cvs2svn $ - Revision 1.7 2001/06/14 11:42:00 mba - #86150#: enable office without writer: webfactory always present, others are optional - - Revision 1.6 2001/01/10 16:10:12 os - Ruby dialog - - Revision 1.5 2000/11/10 15:49:54 tbe - removed outcommented basctl include file idetemp.hxx - - Revision 1.4 2000/10/23 10:52:34 tbe - idetemp.hxx include removed - - Revision 1.3 2000/10/10 16:41:12 rt - include vcl/graph.hxx (galbrws.hxx needs it for class Graphic) - - Revision 1.2 2000/09/28 15:34:12 os - gallery child window registered - - Revision 1.1.1.1 2000/09/18 17:14:49 hr - initial import - - Revision 1.72 2000/09/18 16:06:12 willem.vandorp - OpenOffice header added. - - Revision 1.71 2000/09/04 11:44:56 tbe - basicide, isetbrw, si, vcdlged moved from svx to basctl - - Revision 1.70 2000/05/10 11:53:20 os - Basic API removed - - Revision 1.69 2000/05/09 14:43:13 os - BASIC interface partially removed - - Revision 1.68 2000/04/18 15:02:50 os - UNICODE - - Revision 1.67 2000/03/23 07:50:25 os - UNO III - - Revision 1.66 2000/02/09 08:07:01 os - #72165# hyperlink dialog moved again - - Revision 1.65 1999/09/07 13:56:53 os - Insert/EditIndexEntry as FloatingWindow - - Revision 1.64 1999/01/27 08:58:32 OS - #56371# TF_ONE51 - - - Rev 1.63 27 Jan 1999 09:58:32 OS - #56371# TF_ONE51 - - Rev 1.62 15 Jul 1998 12:52:42 OS - Navigator an der SwView registrieren #34794# - - Rev 1.61 09 Jun 1998 15:32:20 OM - VC-Controls entfernt - - Rev 1.60 02 Jun 1998 15:49:54 OS - TF_STARONE raus; GetUNOSelectionObject gestrichen - - Rev 1.59 03 Apr 1998 14:38:18 OS - UnoObject fuer die View reaktiviert - - Rev 1.58 16 Mar 1998 16:18:04 OM - Aktualisieren-Button kontextsensitiv - - Rev 1.57 15 Mar 1998 15:14:08 OM - Synchron-Button - - Rev 1.56 27 Feb 1998 18:25:14 OM - Redline-Browser - - Rev 1.55 29 Jan 1998 09:21:06 OS - TF_STARONE - - Rev 1.54 16 Dec 1997 12:00:24 OS - Impl-Pointer fuer UNO - - Rev 1.53 29 Nov 1997 16:49:14 MA - includes - - Rev 1.52 21 Nov 1997 15:00:12 MA - includes - - Rev 1.51 03 Nov 1997 13:58:28 MA - precomp entfernt - - Rev 1.50 09 Sep 1997 11:33:08 OS - TextPage heisst nur Page #43650# - - Rev 1.49 08 Sep 1997 10:52:36 OS - DBG_ERROR -> DBG_ASSERT - - Rev 1.48 08 Sep 1997 07:43:38 OS - TextTables nur ClassName - - Rev 1.47 04 Sep 1997 18:10:56 MBA - GetSelectionObject erzeugt richtiges Objekt auch bei WebView - - Rev 1.46 04 Sep 1997 08:25:24 OS - Tables heisst jetzt TextTables, kein GPF wg. fehlender TLB-Angaben - - Rev 1.45 03 Sep 1997 10:52:26 MBA - OLEObjects in SVX - - Rev 1.44 29 Aug 1997 12:21:34 MH - chg: SfxTypeLib_Impl - - Rev 1.43 05 Aug 1997 16:36:38 TJ - include svx/srchitem.hxx - - Rev 1.42 07 Jul 1997 09:35:10 OS - Collection fuer GlobalDoc - -------------------------------------------------------------------------*/ - + ---------------------------------------------------------------------------*/ +void SwView::ApplyAccessiblityOptions(SvtAccessibilityOptions& rAccessibilityOptions) +{ + pWrtShell->ApplyAccessiblityOptions(rAccessibilityOptions); +} |