Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <framework/titlehelper.hxx>
21 : #include <services.h>
22 : #include <properties.h>
23 :
24 : #include <com/sun/star/frame/UntitledNumbersConst.hpp>
25 : #include <com/sun/star/frame/XStorable.hpp>
26 : #include <com/sun/star/frame/ModuleManager.hpp>
27 : #include <com/sun/star/container/XNameAccess.hpp>
28 : #include <com/sun/star/document/XEventBroadcaster.hpp>
29 : #include <com/sun/star/beans/XMaterialHolder.hpp>
30 :
31 : #include <unotools/configmgr.hxx>
32 : #include <unotools/bootstrap.hxx>
33 : #include <comphelper/sequenceashashmap.hxx>
34 : #include <rtl/ustrbuf.hxx>
35 : #include <osl/mutex.hxx>
36 : #include <tools/urlobj.hxx>
37 :
38 :
39 : namespace framework{
40 :
41 : //-----------------------------------------------
42 942 : TitleHelper::TitleHelper(const css::uno::Reference< css::uno::XComponentContext >& rxContext)
43 : : ::cppu::BaseMutex ()
44 : , m_xContext (rxContext)
45 : , m_xOwner ()
46 : , m_xUntitledNumbers()
47 : , m_xSubTitle ()
48 : , m_bExternalTitle (sal_False)
49 : , m_sTitle ()
50 : , m_nLeasedNumber (css::frame::UntitledNumbersConst::INVALID_NUMBER)
51 942 : , m_aListener (m_aMutex)
52 : {
53 942 : }
54 :
55 : //-----------------------------------------------
56 684 : TitleHelper::~TitleHelper()
57 : {
58 684 : }
59 :
60 : //-----------------------------------------------
61 942 : void TitleHelper::setOwner(const css::uno::Reference< css::uno::XInterface >& xOwner)
62 : {
63 : // SYNCHRONIZED ->
64 942 : ::osl::ResettableMutexGuard aLock(m_aMutex);
65 :
66 942 : m_xOwner = xOwner;
67 :
68 942 : aLock.clear ();
69 : // <- SYNCHRONIZED
70 :
71 942 : css::uno::Reference< css::frame::XModel > xModel(xOwner, css::uno::UNO_QUERY);
72 942 : if (xModel.is ())
73 : {
74 462 : impl_startListeningForModel (xModel);
75 : return;
76 : }
77 :
78 480 : css::uno::Reference< css::frame::XController > xController(xOwner, css::uno::UNO_QUERY);
79 480 : if (xController.is ())
80 : {
81 240 : impl_startListeningForController (xController);
82 : return;
83 : }
84 :
85 240 : css::uno::Reference< css::frame::XFrame > xFrame(xOwner, css::uno::UNO_QUERY);
86 240 : if (xFrame.is ())
87 : {
88 240 : impl_startListeningForFrame (xFrame);
89 : return;
90 240 : }
91 : }
92 :
93 : //-----------------------------------------------
94 1695 : ::rtl::OUString SAL_CALL TitleHelper::getTitle()
95 : throw (css::uno::RuntimeException)
96 : {
97 : // SYNCHRONIZED ->
98 1695 : ::osl::ResettableMutexGuard aLock(m_aMutex);
99 :
100 : // An external title will win always and disable all internal logic about
101 : // creating/using a title value.
102 : // Even an empty string will be accepted as valid title !
103 1695 : if (m_bExternalTitle)
104 0 : return m_sTitle;
105 :
106 : // Title seams to be up-to-date. Return it directly.
107 1695 : if (!m_sTitle.isEmpty())
108 690 : return m_sTitle;
109 :
110 : // Title seams to be unused till now ... do bootstraping
111 1005 : impl_updateTitle (true);
112 :
113 1005 : return m_sTitle;
114 :
115 : // <- SYNCHRONIZED
116 : }
117 :
118 : //-----------------------------------------------
119 702 : void TitleHelper::connectWithUntitledNumbers (const css::uno::Reference< css::frame::XUntitledNumbers >& xNumbers)
120 : {
121 : // SYNCHRONIZED ->
122 702 : ::osl::ResettableMutexGuard aLock(m_aMutex);
123 :
124 702 : m_xUntitledNumbers = xNumbers;
125 :
126 : // <- SYNCHRONIZED
127 702 : }
128 :
129 : //-----------------------------------------------
130 0 : void SAL_CALL TitleHelper::setTitle(const ::rtl::OUString& sTitle)
131 : throw (css::uno::RuntimeException)
132 : {
133 : // SYNCHRONIZED ->
134 0 : ::osl::ResettableMutexGuard aLock(m_aMutex);
135 :
136 0 : m_bExternalTitle = sal_True;
137 0 : m_sTitle = sTitle;
138 :
139 0 : aLock.clear ();
140 : // <- SYNCHRONIZED
141 :
142 0 : impl_sendTitleChangedEvent ();
143 0 : }
144 :
145 : //-----------------------------------------------
146 720 : void SAL_CALL TitleHelper::addTitleChangeListener(const css::uno::Reference< css::frame::XTitleChangeListener >& xListener)
147 : throw (css::uno::RuntimeException)
148 : {
149 : // container is threadsafe by himself
150 720 : m_aListener.addInterface( ::getCppuType( (const css::uno::Reference< css::frame::XTitleChangeListener >*)NULL ), xListener );
151 720 : }
152 :
153 : //-----------------------------------------------
154 0 : void SAL_CALL TitleHelper::removeTitleChangeListener(const css::uno::Reference< css::frame::XTitleChangeListener >& xListener)
155 : throw (css::uno::RuntimeException)
156 : {
157 : // container is threadsafe by himself
158 0 : m_aListener.removeInterface( ::getCppuType( (const css::uno::Reference< css::frame::XTitleChangeListener >*)NULL ), xListener );
159 0 : }
160 :
161 : //-----------------------------------------------
162 145 : void SAL_CALL TitleHelper::titleChanged(const css::frame::TitleChangedEvent& aEvent)
163 : throw (css::uno::RuntimeException)
164 : {
165 : // SYNCHRONIZED ->
166 145 : ::osl::ResettableMutexGuard aLock(m_aMutex);
167 :
168 145 : css::uno::Reference< css::frame::XTitle > xSubTitle(m_xSubTitle.get (), css::uno::UNO_QUERY);
169 :
170 145 : aLock.clear ();
171 : // <- SYNCHRONIZED
172 :
173 145 : if (aEvent.Source != xSubTitle)
174 145 : return;
175 :
176 145 : impl_updateTitle ();
177 : }
178 :
179 : //-----------------------------------------------
180 3682 : void SAL_CALL TitleHelper::notifyEvent(const css::document::EventObject& aEvent)
181 : throw (css::uno::RuntimeException)
182 : {
183 10689 : if ( ! aEvent.EventName.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("OnSaveAsDone"))
184 3682 : && ! aEvent.EventName.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("OnModeChanged"))
185 3325 : && ! aEvent.EventName.equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("OnTitleChanged")))
186 : return;
187 :
188 : // SYNCHRONIZED ->
189 1326 : ::osl::ResettableMutexGuard aLock(m_aMutex);
190 :
191 1326 : css::uno::Reference< css::frame::XModel > xOwner(m_xOwner.get (), css::uno::UNO_QUERY);
192 :
193 1326 : aLock.clear ();
194 : // <- SYNCHRONIZED
195 :
196 4947 : if (aEvent.Source != xOwner
197 : || ((aEvent.EventName.equalsIgnoreAsciiCaseAsciiL(
198 1326 : RTL_CONSTASCII_STRINGPARAM("OnModeChanged"))
199 : || aEvent.EventName.equalsIgnoreAsciiCaseAsciiL(
200 969 : RTL_CONSTASCII_STRINGPARAM("OnTitleChanged")))
201 1326 : && !xOwner.is()))
202 : {
203 : return;
204 : }
205 :
206 1326 : impl_updateTitle ();
207 : }
208 :
209 : //-----------------------------------------------
210 1090 : void SAL_CALL TitleHelper::frameAction(const css::frame::FrameActionEvent& aEvent)
211 : throw(css::uno::RuntimeException)
212 : {
213 : // SYNCHRONIZED ->
214 1090 : ::osl::ResettableMutexGuard aLock(m_aMutex);
215 :
216 1090 : css::uno::Reference< css::frame::XFrame > xOwner(m_xOwner.get (), css::uno::UNO_QUERY);
217 :
218 1090 : aLock.clear ();
219 : // <- SYNCHRONIZED
220 :
221 1090 : if (aEvent.Source != xOwner)
222 1090 : return;
223 :
224 : // we are interested on events only, which must trigger a title bar update
225 : // because component was changed.
226 1090 : if (
227 : (aEvent.Action == css::frame::FrameAction_COMPONENT_ATTACHED ) ||
228 : (aEvent.Action == css::frame::FrameAction_COMPONENT_REATTACHED) ||
229 : (aEvent.Action == css::frame::FrameAction_COMPONENT_DETACHING )
230 : )
231 : {
232 303 : impl_updateListeningForFrame (xOwner);
233 303 : impl_updateTitle ();
234 1090 : }
235 : }
236 :
237 : //-----------------------------------------------
238 299 : void SAL_CALL TitleHelper::disposing(const css::lang::EventObject& aEvent)
239 : throw (css::uno::RuntimeException)
240 : {
241 : // SYNCHRONIZED ->
242 299 : ::osl::ResettableMutexGuard aLock(m_aMutex);
243 299 : css::uno::Reference< css::uno::XInterface > xOwner (m_xOwner.get() , css::uno::UNO_QUERY);
244 299 : css::uno::Reference< css::frame::XUntitledNumbers > xNumbers (m_xUntitledNumbers.get(), css::uno::UNO_QUERY);
245 299 : ::sal_Int32 nLeasedNumber = m_nLeasedNumber;
246 299 : aLock.clear ();
247 : // <- SYNCHRONIZED
248 :
249 299 : if ( ! xOwner.is ())
250 : return;
251 :
252 299 : if (xOwner != aEvent.Source)
253 : return;
254 :
255 299 : if (
256 299 : (xNumbers.is () ) &&
257 : (nLeasedNumber != css::frame::UntitledNumbersConst::INVALID_NUMBER)
258 : )
259 104 : xNumbers->releaseNumber (nLeasedNumber);
260 :
261 : // SYNCHRONIZED ->
262 299 : aLock.reset ();
263 :
264 299 : m_sTitle = ::rtl::OUString ();
265 299 : m_nLeasedNumber = css::frame::UntitledNumbersConst::INVALID_NUMBER;
266 :
267 299 : aLock.clear ();
268 : // <- SYNCHRONIZED
269 :
270 299 : impl_sendTitleChangedEvent ();
271 : }
272 :
273 : //-----------------------------------------------
274 1625 : void TitleHelper::impl_sendTitleChangedEvent ()
275 : {
276 : // SYNCHRONIZED ->
277 1625 : ::osl::ResettableMutexGuard aLock(m_aMutex);
278 :
279 1625 : css::frame::TitleChangedEvent aEvent(m_xOwner.get (), m_sTitle);
280 :
281 1625 : aLock.clear ();
282 : // <- SYNCHRONIZED
283 :
284 1625 : ::cppu::OInterfaceContainerHelper* pContainer = m_aListener.getContainer( ::getCppuType( ( const css::uno::Reference< css::frame::XTitleChangeListener >*) NULL ) );
285 1625 : if ( ! pContainer)
286 1625 : return;
287 :
288 208 : ::cppu::OInterfaceIteratorHelper pIt( *pContainer );
289 624 : while ( pIt.hasMoreElements() )
290 : {
291 : try
292 : {
293 208 : ((css::frame::XTitleChangeListener*)pIt.next())->titleChanged( aEvent );
294 : }
295 0 : catch(const css::uno::Exception&)
296 : {
297 0 : pIt.remove();
298 : }
299 208 : }
300 : }
301 :
302 : //-----------------------------------------------
303 2779 : void TitleHelper::impl_updateTitle (bool init)
304 : {
305 : // SYNCHRONIZED ->
306 2779 : ::osl::ResettableMutexGuard aLock(m_aMutex);
307 :
308 2779 : css::uno::Reference< css::frame::XModel > xModel (m_xOwner.get(), css::uno::UNO_QUERY);
309 2779 : css::uno::Reference< css::frame::XController > xController(m_xOwner.get(), css::uno::UNO_QUERY);
310 2779 : css::uno::Reference< css::frame::XFrame > xFrame (m_xOwner.get(), css::uno::UNO_QUERY);
311 :
312 2779 : aLock.clear ();
313 : // <- SYNCHRONIZED
314 :
315 2779 : if (xModel.is ())
316 : {
317 1788 : impl_updateTitleForModel (xModel, init);
318 : }
319 991 : else if (xController.is ())
320 : {
321 385 : impl_updateTitleForController (xController, init);
322 : }
323 606 : else if (xFrame.is ())
324 : {
325 606 : impl_updateTitleForFrame (xFrame, init);
326 2779 : }
327 2779 : }
328 :
329 : //-----------------------------------------------
330 1788 : void TitleHelper::impl_updateTitleForModel (const css::uno::Reference< css::frame::XModel >& xModel, bool init)
331 : {
332 : // SYNCHRONIZED ->
333 1788 : ::osl::ResettableMutexGuard aLock(m_aMutex);
334 :
335 : // external title wont be updated internaly !
336 : // It has to be set from outside new.
337 1788 : if (m_bExternalTitle)
338 : return;
339 :
340 1788 : css::uno::Reference< css::uno::XInterface > xOwner (m_xOwner.get() , css::uno::UNO_QUERY);
341 1788 : css::uno::Reference< css::frame::XUntitledNumbers > xNumbers (m_xUntitledNumbers.get(), css::uno::UNO_QUERY);
342 1788 : ::sal_Int32 nLeasedNumber = m_nLeasedNumber;
343 :
344 1788 : aLock.clear ();
345 : // <- SYNCHRONIZED
346 :
347 5364 : if (
348 1788 : ( ! xOwner.is ()) ||
349 1788 : ( ! xNumbers.is ()) ||
350 1788 : ( ! xModel.is ())
351 : )
352 : return;
353 :
354 1788 : ::rtl::OUString sTitle;
355 1788 : ::rtl::OUString sURL ;
356 :
357 1788 : css::uno::Reference< css::frame::XStorable > xURLProvider(xModel , css::uno::UNO_QUERY);
358 1788 : if (xURLProvider.is())
359 1788 : sURL = xURLProvider->getLocation ();
360 :
361 1788 : if (!sURL.isEmpty())
362 : {
363 631 : sTitle = impl_convertURL2Title(sURL);
364 631 : if (nLeasedNumber != css::frame::UntitledNumbersConst::INVALID_NUMBER)
365 0 : xNumbers->releaseNumber (nLeasedNumber);
366 631 : nLeasedNumber = css::frame::UntitledNumbersConst::INVALID_NUMBER;
367 : }
368 : else
369 : {
370 1157 : if (nLeasedNumber == css::frame::UntitledNumbersConst::INVALID_NUMBER)
371 150 : nLeasedNumber = xNumbers->leaseNumber (xOwner);
372 :
373 1157 : ::rtl::OUStringBuffer sNewTitle(256);
374 1157 : sNewTitle.append (xNumbers->getUntitledPrefix ());
375 1157 : if (nLeasedNumber != css::frame::UntitledNumbersConst::INVALID_NUMBER)
376 1157 : sNewTitle.append ((::sal_Int32)nLeasedNumber);
377 : else
378 0 : sNewTitle.appendAscii ("?");
379 :
380 1157 : sTitle = sNewTitle.makeStringAndClear ();
381 : }
382 :
383 : // SYNCHRONIZED ->
384 1788 : aLock.reset ();
385 :
386 : // WORKAROUND: the notification is currently sent always,
387 : // can be changed after shared mode is supported per UNO API
388 1788 : sal_Bool bChanged = !init; // && m_sTitle != sTitle
389 :
390 1788 : m_sTitle = sTitle;
391 1788 : m_nLeasedNumber = nLeasedNumber;
392 :
393 1788 : aLock.clear ();
394 : // <- SYNCHRONIZED
395 :
396 1788 : if (bChanged)
397 1326 : impl_sendTitleChangedEvent ();
398 : }
399 :
400 : //-----------------------------------------------
401 385 : void TitleHelper::impl_updateTitleForController (const css::uno::Reference< css::frame::XController >& xController, bool init)
402 : {
403 : // SYNCHRONIZED ->
404 385 : ::osl::ResettableMutexGuard aLock(m_aMutex);
405 :
406 : // external title wont be updated internaly !
407 : // It has to be set from outside new.
408 385 : if (m_bExternalTitle)
409 : return;
410 :
411 385 : css::uno::Reference< css::uno::XInterface > xOwner (m_xOwner.get() , css::uno::UNO_QUERY);
412 385 : css::uno::Reference< css::frame::XUntitledNumbers > xNumbers (m_xUntitledNumbers.get(), css::uno::UNO_QUERY);
413 385 : ::sal_Int32 nLeasedNumber = m_nLeasedNumber;
414 :
415 385 : aLock.clear ();
416 : // <- SYNCHRONIZED
417 :
418 1155 : if (
419 385 : ( ! xOwner.is ()) ||
420 385 : ( ! xNumbers.is ()) ||
421 385 : ( ! xController.is ())
422 : )
423 : return;
424 :
425 385 : ::rtl::OUStringBuffer sTitle(256);
426 :
427 385 : if (nLeasedNumber == css::frame::UntitledNumbersConst::INVALID_NUMBER)
428 240 : nLeasedNumber = xNumbers->leaseNumber (xOwner);
429 :
430 385 : css::uno::Reference< css::frame::XTitle > xModelTitle(xController->getModel (), css::uno::UNO_QUERY);
431 385 : if (!xModelTitle.is ())
432 63 : xModelTitle.set(xController, css::uno::UNO_QUERY);
433 385 : if (xModelTitle.is ())
434 : {
435 385 : sTitle.append (xModelTitle->getTitle ());
436 385 : if ( nLeasedNumber > 1 )
437 : {
438 0 : sTitle.appendAscii (" : ");
439 0 : sTitle.append ((::sal_Int32)nLeasedNumber);
440 : }
441 : }
442 : else
443 : {
444 0 : sTitle.append (xNumbers->getUntitledPrefix ());
445 0 : if ( nLeasedNumber > 1 )
446 : {
447 0 : sTitle.append ((::sal_Int32)nLeasedNumber );
448 : }
449 : }
450 :
451 : // SYNCHRONIZED ->
452 385 : aLock.reset ();
453 :
454 385 : ::rtl::OUString sNewTitle = sTitle.makeStringAndClear ();
455 385 : sal_Bool bChanged = !init && m_sTitle != sNewTitle;
456 385 : m_sTitle = sNewTitle;
457 385 : m_nLeasedNumber = nLeasedNumber;
458 :
459 385 : aLock.clear ();
460 : // <- SYNCHRONIZED
461 :
462 385 : if (bChanged)
463 0 : impl_sendTitleChangedEvent ();
464 : }
465 :
466 : //-----------------------------------------------
467 606 : void TitleHelper::impl_updateTitleForFrame (const css::uno::Reference< css::frame::XFrame >& xFrame, bool init)
468 : {
469 606 : if ( ! xFrame.is ())
470 : return;
471 :
472 : // SYNCHRONIZED ->
473 606 : ::osl::ResettableMutexGuard aLock(m_aMutex);
474 :
475 : // external title wont be updated internaly !
476 : // It has to be set from outside new.
477 606 : if (m_bExternalTitle)
478 : return;
479 :
480 606 : aLock.clear ();
481 : // <- SYNCHRONIZED
482 :
483 606 : css::uno::Reference< css::uno::XInterface > xComponent;
484 606 : xComponent = xFrame->getController ();
485 606 : if ( ! xComponent.is ())
486 63 : xComponent = xFrame->getComponentWindow ();
487 :
488 606 : ::rtl::OUStringBuffer sTitle (256);
489 :
490 606 : impl_appendComponentTitle (sTitle, xComponent);
491 606 : impl_appendProductName (sTitle);
492 606 : impl_appendModuleName (sTitle);
493 606 : impl_appendProductExtension (sTitle);
494 606 : impl_appendDebugVersion (sTitle);
495 :
496 : // SYNCHRONIZED ->
497 606 : aLock.reset ();
498 :
499 606 : ::rtl::OUString sNewTitle = sTitle.makeStringAndClear ();
500 606 : sal_Bool bChanged = !init && m_sTitle != sNewTitle;
501 606 : m_sTitle = sNewTitle;
502 :
503 606 : aLock.clear ();
504 : // <- SYNCHRONIZED
505 :
506 606 : if (bChanged)
507 0 : impl_sendTitleChangedEvent ();
508 : }
509 :
510 : //*****************************************************************************************************************
511 606 : void TitleHelper::impl_appendComponentTitle ( ::rtl::OUStringBuffer& sTitle ,
512 : const css::uno::Reference< css::uno::XInterface >& xComponent)
513 : {
514 606 : css::uno::Reference< css::frame::XTitle > xTitle(xComponent, css::uno::UNO_QUERY);
515 :
516 : // Note: Title has to be used (even if it's empty) if the right interface is supported.
517 606 : if (xTitle.is ())
518 543 : sTitle.append (xTitle->getTitle ());
519 606 : }
520 :
521 : //*****************************************************************************************************************
522 606 : void TitleHelper::impl_appendProductName (::rtl::OUStringBuffer& sTitle)
523 : {
524 606 : rtl::OUString name(utl::ConfigManager::getProductName());
525 606 : if (!name.isEmpty())
526 : {
527 606 : if (sTitle.getLength() != 0)
528 543 : sTitle.appendAscii(RTL_CONSTASCII_STRINGPARAM(" - "));
529 606 : sTitle.append(name);
530 606 : }
531 606 : }
532 :
533 : //*****************************************************************************************************************
534 606 : void TitleHelper::impl_appendProductExtension (::rtl::OUStringBuffer& sTitle)
535 : {
536 606 : rtl::OUString ext(utl::ConfigManager::getProductExtension());
537 606 : if (!ext.isEmpty())
538 : {
539 606 : sTitle.append(' ');
540 606 : sTitle.append(ext);
541 606 : }
542 606 : }
543 :
544 : //*****************************************************************************************************************
545 606 : void TitleHelper::impl_appendModuleName (::rtl::OUStringBuffer& sTitle)
546 : {
547 : // SYNCHRONIZED ->
548 606 : ::osl::ResettableMutexGuard aLock(m_aMutex);
549 :
550 606 : css::uno::Reference< css::uno::XInterface > xOwner = m_xOwner.get();
551 606 : css::uno::Reference< css::uno::XComponentContext > xContext = m_xContext;
552 :
553 606 : aLock.clear ();
554 : // <- SYNCHRONIZED
555 :
556 : try
557 : {
558 : css::uno::Reference< css::frame::XModuleManager2 > xModuleManager =
559 606 : css::frame::ModuleManager::create(xContext);
560 :
561 606 : const ::rtl::OUString sID = xModuleManager->identify(xOwner);
562 543 : ::comphelper::SequenceAsHashMap lProps = xModuleManager->getByName (sID);
563 535 : const ::rtl::OUString sUIName = lProps.getUnpackedValueOrDefault (OFFICEFACTORY_PROPNAME_UINAME, ::rtl::OUString());
564 :
565 : // An UIname property is an optional value !
566 : // So please add it to the title in case it does realy exists only.
567 535 : if (!sUIName.isEmpty())
568 : {
569 535 : sTitle.appendAscii (" " );
570 535 : sTitle.append (sUIName);
571 535 : }
572 : }
573 71 : catch(const css::uno::Exception&)
574 606 : {}
575 606 : }
576 :
577 : //*****************************************************************************************************************
578 : #ifdef DBG_UTIL
579 : void TitleHelper::impl_appendDebugVersion (::rtl::OUStringBuffer& sTitle)
580 : {
581 : ::rtl::OUString sDefault(RTL_CONSTASCII_USTRINGPARAM("development"));
582 : ::rtl::OUString sVersion = ::utl::Bootstrap::getProductSource(sDefault);
583 : sTitle.appendAscii(RTL_CONSTASCII_STRINGPARAM(" ["));
584 : sTitle.append(sVersion);
585 : sTitle.appendAscii(RTL_CONSTASCII_STRINGPARAM("]"));
586 : }
587 : #else
588 606 : void TitleHelper::impl_appendDebugVersion (::rtl::OUStringBuffer&)
589 : {
590 606 : }
591 : #endif
592 :
593 : //-----------------------------------------------
594 462 : void TitleHelper::impl_startListeningForModel (const css::uno::Reference< css::frame::XModel >& xModel)
595 : {
596 462 : css::uno::Reference< css::document::XEventBroadcaster > xBroadcaster(xModel, css::uno::UNO_QUERY);
597 462 : if ( ! xBroadcaster.is ())
598 462 : return;
599 :
600 462 : xBroadcaster->addEventListener (static_cast< css::document::XEventListener* >(this));
601 : }
602 :
603 : //-----------------------------------------------
604 240 : void TitleHelper::impl_startListeningForController (const css::uno::Reference< css::frame::XController >& xController)
605 : {
606 240 : css::uno::Reference< css::frame::XTitle > xSubTitle(xController->getModel (), css::uno::UNO_QUERY);
607 240 : impl_setSubTitle (xSubTitle);
608 240 : }
609 :
610 : //-----------------------------------------------
611 240 : void TitleHelper::impl_startListeningForFrame (const css::uno::Reference< css::frame::XFrame >& xFrame)
612 : {
613 240 : xFrame->addFrameActionListener(this );
614 240 : impl_updateListeningForFrame (xFrame);
615 240 : }
616 :
617 : //-----------------------------------------------
618 543 : void TitleHelper::impl_updateListeningForFrame (const css::uno::Reference< css::frame::XFrame >& xFrame)
619 : {
620 543 : css::uno::Reference< css::frame::XTitle > xSubTitle(xFrame->getController (), css::uno::UNO_QUERY);
621 543 : impl_setSubTitle (xSubTitle);
622 543 : }
623 :
624 : //-----------------------------------------------
625 783 : void TitleHelper::impl_setSubTitle (const css::uno::Reference< css::frame::XTitle >& xSubTitle)
626 : {
627 : // SYNCHRONIZED ->
628 783 : ::osl::ResettableMutexGuard aLock(m_aMutex);
629 :
630 : // ignore duplicate calls. Makes outside using of this helper more easy :-)
631 783 : css::uno::Reference< css::frame::XTitle > xOldSubTitle(m_xSubTitle.get(), css::uno::UNO_QUERY);
632 783 : if (xOldSubTitle == xSubTitle)
633 783 : return;
634 :
635 480 : m_xSubTitle = xSubTitle;
636 :
637 480 : aLock.clear ();
638 : // <- SYNCHRONIZED
639 :
640 480 : css::uno::Reference< css::frame::XTitleChangeBroadcaster > xOldBroadcaster(xOldSubTitle , css::uno::UNO_QUERY );
641 480 : css::uno::Reference< css::frame::XTitleChangeBroadcaster > xNewBroadcaster(xSubTitle , css::uno::UNO_QUERY );
642 480 : css::uno::Reference< css::frame::XTitleChangeListener > xThis (static_cast< css::frame::XTitleChangeListener* >(this), css::uno::UNO_QUERY_THROW);
643 :
644 480 : if (xOldBroadcaster.is())
645 0 : xOldBroadcaster->removeTitleChangeListener (xThis);
646 :
647 480 : if (xNewBroadcaster.is())
648 480 : xNewBroadcaster->addTitleChangeListener (xThis);
649 : }
650 :
651 : //-----------------------------------------------
652 631 : ::rtl::OUString TitleHelper::impl_convertURL2Title(const ::rtl::OUString& sURL)
653 : {
654 631 : INetURLObject aURL (sURL);
655 631 : ::rtl::OUString sTitle;
656 :
657 631 : if (aURL.GetProtocol() == INET_PROT_FILE)
658 : {
659 631 : if (aURL.HasMark())
660 0 : aURL = INetURLObject(aURL.GetURLNoMark());
661 :
662 631 : sTitle = aURL.getName(INetURLObject::LAST_SEGMENT, sal_True, INetURLObject::DECODE_WITH_CHARSET);
663 : }
664 : else
665 : {
666 0 : if (aURL.hasExtension(INetURLObject::LAST_SEGMENT))
667 0 : sTitle = aURL.getName(INetURLObject::LAST_SEGMENT, sal_True, INetURLObject::DECODE_WITH_CHARSET);
668 :
669 0 : if ( sTitle.isEmpty() )
670 0 : sTitle = aURL.GetHostPort(INetURLObject::DECODE_WITH_CHARSET);
671 :
672 0 : if ( sTitle.isEmpty() )
673 0 : sTitle = aURL.GetURLNoPass(INetURLObject::DECODE_WITH_CHARSET);
674 : }
675 :
676 631 : return sTitle;
677 : }
678 :
679 : } // namespace framework
680 :
681 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|