1*5b190011SAndrew Rist /**************************************************************
2cdf0e10cSrcweir *
3*5b190011SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*5b190011SAndrew Rist * or more contributor license agreements. See the NOTICE file
5*5b190011SAndrew Rist * distributed with this work for additional information
6*5b190011SAndrew Rist * regarding copyright ownership. The ASF licenses this file
7*5b190011SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*5b190011SAndrew Rist * "License"); you may not use this file except in compliance
9*5b190011SAndrew Rist * with the License. You may obtain a copy of the License at
10*5b190011SAndrew Rist *
11*5b190011SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0
12*5b190011SAndrew Rist *
13*5b190011SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*5b190011SAndrew Rist * software distributed under the License is distributed on an
15*5b190011SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*5b190011SAndrew Rist * KIND, either express or implied. See the License for the
17*5b190011SAndrew Rist * specific language governing permissions and limitations
18*5b190011SAndrew Rist * under the License.
19*5b190011SAndrew Rist *
20*5b190011SAndrew Rist *************************************************************/
21*5b190011SAndrew Rist
22*5b190011SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_sd.hxx"
26cdf0e10cSrcweir
27cdf0e10cSrcweir #include "WindowUpdater.hxx"
28cdf0e10cSrcweir #include "ViewShell.hxx"
29cdf0e10cSrcweir #include "Window.hxx"
30cdf0e10cSrcweir #include "drawdoc.hxx"
31cdf0e10cSrcweir #include "View.hxx"
32cdf0e10cSrcweir
33cdf0e10cSrcweir #ifndef _SPLIT_HXX
34cdf0e10cSrcweir #include <vcl/split.hxx>
35cdf0e10cSrcweir #endif
36cdf0e10cSrcweir #include <sfx2/childwin.hxx>
37cdf0e10cSrcweir #include <sfx2/viewfrm.hxx>
38cdf0e10cSrcweir #include <svl/smplhint.hxx>
39cdf0e10cSrcweir
40cdf0e10cSrcweir #include <algorithm>
41cdf0e10cSrcweir
42cdf0e10cSrcweir namespace sd {
43cdf0e10cSrcweir
WindowUpdater(void)44cdf0e10cSrcweir WindowUpdater::WindowUpdater (void)
45cdf0e10cSrcweir : mpViewShell (NULL),
46cdf0e10cSrcweir mpDocument (NULL)
47cdf0e10cSrcweir {
48cdf0e10cSrcweir maCTLOptions.AddListener(this);
49cdf0e10cSrcweir }
50cdf0e10cSrcweir
51cdf0e10cSrcweir
52cdf0e10cSrcweir
53cdf0e10cSrcweir
~WindowUpdater(void)54cdf0e10cSrcweir WindowUpdater::~WindowUpdater (void) throw ()
55cdf0e10cSrcweir {
56cdf0e10cSrcweir maCTLOptions.RemoveListener(this);
57cdf0e10cSrcweir }
58cdf0e10cSrcweir
59cdf0e10cSrcweir
60cdf0e10cSrcweir
61cdf0e10cSrcweir
RegisterWindow(::Window * pWindow)62cdf0e10cSrcweir void WindowUpdater::RegisterWindow (::Window* pWindow)
63cdf0e10cSrcweir {
64cdf0e10cSrcweir if (pWindow != NULL)
65cdf0e10cSrcweir {
66cdf0e10cSrcweir tWindowList::iterator aWindowIterator (
67cdf0e10cSrcweir ::std::find (
68cdf0e10cSrcweir maWindowList.begin(), maWindowList.end(), pWindow));
69cdf0e10cSrcweir if (aWindowIterator == maWindowList.end())
70cdf0e10cSrcweir {
71cdf0e10cSrcweir // Update the device once right now and add it to the list.
72cdf0e10cSrcweir Update (pWindow);
73cdf0e10cSrcweir maWindowList.push_back (pWindow);
74cdf0e10cSrcweir }
75cdf0e10cSrcweir }
76cdf0e10cSrcweir }
77cdf0e10cSrcweir
78cdf0e10cSrcweir
79cdf0e10cSrcweir
80cdf0e10cSrcweir
UnregisterWindow(::Window * pWindow)81cdf0e10cSrcweir void WindowUpdater::UnregisterWindow (::Window* pWindow)
82cdf0e10cSrcweir {
83cdf0e10cSrcweir tWindowList::iterator aWindowIterator (
84cdf0e10cSrcweir ::std::find (
85cdf0e10cSrcweir maWindowList.begin(), maWindowList.end(), pWindow));
86cdf0e10cSrcweir if (aWindowIterator != maWindowList.end())
87cdf0e10cSrcweir {
88cdf0e10cSrcweir maWindowList.erase (aWindowIterator);
89cdf0e10cSrcweir }
90cdf0e10cSrcweir }
91cdf0e10cSrcweir
92cdf0e10cSrcweir
93cdf0e10cSrcweir
SetViewShell(ViewShell & rViewShell)94cdf0e10cSrcweir void WindowUpdater::SetViewShell (ViewShell& rViewShell)
95cdf0e10cSrcweir {
96cdf0e10cSrcweir mpViewShell = &rViewShell;
97cdf0e10cSrcweir }
98cdf0e10cSrcweir
99cdf0e10cSrcweir
100cdf0e10cSrcweir
101cdf0e10cSrcweir
SetDocument(SdDrawDocument * pDocument)102cdf0e10cSrcweir void WindowUpdater::SetDocument (SdDrawDocument* pDocument)
103cdf0e10cSrcweir {
104cdf0e10cSrcweir mpDocument = pDocument;
105cdf0e10cSrcweir }
106cdf0e10cSrcweir
107cdf0e10cSrcweir
108cdf0e10cSrcweir
109cdf0e10cSrcweir
Update(OutputDevice * pDevice,SdDrawDocument * pDocument) const110cdf0e10cSrcweir void WindowUpdater::Update (
111cdf0e10cSrcweir OutputDevice* pDevice,
112cdf0e10cSrcweir SdDrawDocument* pDocument) const
113cdf0e10cSrcweir {
114cdf0e10cSrcweir if (pDevice != NULL)
115cdf0e10cSrcweir {
116cdf0e10cSrcweir UpdateWindow (pDevice);
117cdf0e10cSrcweir if (pDocument != NULL)
118cdf0e10cSrcweir pDocument->ReformatAllTextObjects();
119cdf0e10cSrcweir }
120cdf0e10cSrcweir }
121cdf0e10cSrcweir
122cdf0e10cSrcweir
123cdf0e10cSrcweir
124cdf0e10cSrcweir
UpdateWindow(OutputDevice * pDevice) const125cdf0e10cSrcweir void WindowUpdater::UpdateWindow (OutputDevice* pDevice) const
126cdf0e10cSrcweir {
127cdf0e10cSrcweir if (pDevice != NULL)
128cdf0e10cSrcweir {
129cdf0e10cSrcweir SvtCTLOptions::TextNumerals aNumeralMode (maCTLOptions.GetCTLTextNumerals());
130cdf0e10cSrcweir
131cdf0e10cSrcweir LanguageType aLanguage;
132cdf0e10cSrcweir // Now this is a bit confusing. The numerals in arabic languages
133cdf0e10cSrcweir // are Hindi numerals and what the western world generally uses are
134cdf0e10cSrcweir // arabic numerals. The digits used in the Hindi language are not
135cdf0e10cSrcweir // used at all.
136cdf0e10cSrcweir switch (aNumeralMode)
137cdf0e10cSrcweir {
138cdf0e10cSrcweir case SvtCTLOptions::NUMERALS_HINDI:
139cdf0e10cSrcweir aLanguage = LANGUAGE_ARABIC_SAUDI_ARABIA;
140cdf0e10cSrcweir break;
141cdf0e10cSrcweir
142cdf0e10cSrcweir case SvtCTLOptions::NUMERALS_SYSTEM:
143cdf0e10cSrcweir aLanguage = LANGUAGE_SYSTEM;
144cdf0e10cSrcweir break;
145cdf0e10cSrcweir
146cdf0e10cSrcweir case SvtCTLOptions::NUMERALS_ARABIC:
147cdf0e10cSrcweir default:
148cdf0e10cSrcweir aLanguage = LANGUAGE_ENGLISH;
149cdf0e10cSrcweir break;
150cdf0e10cSrcweir }
151cdf0e10cSrcweir
152cdf0e10cSrcweir pDevice->SetDigitLanguage (aLanguage);
153cdf0e10cSrcweir }
154cdf0e10cSrcweir }
155cdf0e10cSrcweir
156cdf0e10cSrcweir
157cdf0e10cSrcweir
158cdf0e10cSrcweir
ConfigurationChanged(utl::ConfigurationBroadcaster *,sal_uInt32)159cdf0e10cSrcweir void WindowUpdater::ConfigurationChanged( utl::ConfigurationBroadcaster*, sal_uInt32 )
160cdf0e10cSrcweir {
161cdf0e10cSrcweir // #110094#-7
162cdf0e10cSrcweir // Clear the master page cache so that master pages will be redrawn.
163cdf0e10cSrcweir //if (mpViewShell != NULL)
164cdf0e10cSrcweir //{
165cdf0e10cSrcweir // SdView* pView = mpViewShell->GetView();
166cdf0e10cSrcweir // if (pView != NULL)
167cdf0e10cSrcweir // pView->ReleaseMasterPagePaintCache ();
168cdf0e10cSrcweir //}
169cdf0e10cSrcweir // Set the current state at all registered output devices.
170cdf0e10cSrcweir tWindowList::iterator aWindowIterator (maWindowList.begin());
171cdf0e10cSrcweir while (aWindowIterator != maWindowList.end())
172cdf0e10cSrcweir Update (*aWindowIterator++);
173cdf0e10cSrcweir
174cdf0e10cSrcweir // Reformat the document for the modified state to take effect.
175cdf0e10cSrcweir if (mpDocument != NULL)
176cdf0e10cSrcweir mpDocument->ReformatAllTextObjects();
177cdf0e10cSrcweir
178cdf0e10cSrcweir // Invalidate the windows to make the modified state visible.
179cdf0e10cSrcweir aWindowIterator = maWindowList.begin();
180cdf0e10cSrcweir while (aWindowIterator != maWindowList.end())
181cdf0e10cSrcweir (*aWindowIterator++)->Invalidate();
182cdf0e10cSrcweir }
183cdf0e10cSrcweir
184cdf0e10cSrcweir
185cdf0e10cSrcweir } // end of namespace sd
186