1*5900e8ecSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*5900e8ecSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*5900e8ecSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*5900e8ecSAndrew Rist  * distributed with this work for additional information
6*5900e8ecSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*5900e8ecSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*5900e8ecSAndrew Rist  * "License"); you may not use this file except in compliance
9*5900e8ecSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*5900e8ecSAndrew Rist  *
11*5900e8ecSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*5900e8ecSAndrew Rist  *
13*5900e8ecSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*5900e8ecSAndrew Rist  * software distributed under the License is distributed on an
15*5900e8ecSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*5900e8ecSAndrew Rist  * KIND, either express or implied.  See the License for the
17*5900e8ecSAndrew Rist  * specific language governing permissions and limitations
18*5900e8ecSAndrew Rist  * under the License.
19*5900e8ecSAndrew Rist  *
20*5900e8ecSAndrew Rist  *************************************************************/
21*5900e8ecSAndrew Rist 
22*5900e8ecSAndrew Rist 
23cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
24cdf0e10cSrcweir #include "precompiled_svtools.hxx"
25cdf0e10cSrcweir 
26cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
27cdf0e10cSrcweir #include "precompiled_svtools.hxx"
28cdf0e10cSrcweir 
29cdf0e10cSrcweir #include <svtools/textwindowpeer.hxx>
30cdf0e10cSrcweir #include <svtools/textview.hxx>
31cdf0e10cSrcweir #include "svtaccessiblefactory.hxx"
32cdf0e10cSrcweir 
33cdf0e10cSrcweir namespace css = ::com::sun::star;
34cdf0e10cSrcweir 
35cdf0e10cSrcweir namespace svt
36cdf0e10cSrcweir {
TextWindowPeer(::TextView & rView,bool bCompoundControlChild)37cdf0e10cSrcweir     TextWindowPeer::TextWindowPeer(::TextView & rView, bool bCompoundControlChild):
38cdf0e10cSrcweir         m_rEngine(*rView.GetTextEngine()), m_rView(rView), m_bCompoundControlChild(bCompoundControlChild)
39cdf0e10cSrcweir     {
40cdf0e10cSrcweir         SetWindow(rView.GetWindow());
41cdf0e10cSrcweir         m_pFactoryAccess.reset( new AccessibleFactoryAccess );
42cdf0e10cSrcweir     }
43cdf0e10cSrcweir 
44cdf0e10cSrcweir     // virtual
~TextWindowPeer()45cdf0e10cSrcweir     TextWindowPeer::~TextWindowPeer()
46cdf0e10cSrcweir     {
47cdf0e10cSrcweir     }
48cdf0e10cSrcweir 
CreateAccessibleContext()49cdf0e10cSrcweir     ::css::uno::Reference< ::css::accessibility::XAccessibleContext > TextWindowPeer::CreateAccessibleContext()
50cdf0e10cSrcweir     {
51cdf0e10cSrcweir         return m_pFactoryAccess->getFactory().createAccessibleTextWindowContext(
52cdf0e10cSrcweir             this, m_rEngine, m_rView, m_bCompoundControlChild
53cdf0e10cSrcweir         );
54cdf0e10cSrcweir     }
55cdf0e10cSrcweir }
56