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 "sal/config.h"
21 :
22 : #include <cassert>
23 : #include <stdlib.h>
24 : #include <time.h>
25 :
26 : #include <vcl/help.hxx>
27 : #include <vcl/msgbox.hxx>
28 : #include <vcl/decoview.hxx>
29 : #include <vcl/toolbox.hxx>
30 : #include <vcl/scrbar.hxx>
31 : #include <vcl/virdev.hxx>
32 :
33 : #include <sfx2/app.hxx>
34 : #include <sfx2/sfxdlg.hxx>
35 : #include <sfx2/viewfrm.hxx>
36 : #include <sfx2/viewsh.hxx>
37 : #include <sfx2/msg.hxx>
38 : #include <sfx2/msgpool.hxx>
39 : #include <sfx2/mnumgr.hxx>
40 : #include <sfx2/minfitem.hxx>
41 : #include <sfx2/objsh.hxx>
42 : #include <sfx2/request.hxx>
43 : #include <sfx2/filedlghelper.hxx>
44 : #include <svl/stritem.hxx>
45 : #include <svtools/miscopt.hxx>
46 : #include <svtools/svlbitm.hxx>
47 : #include "svtools/treelistentry.hxx"
48 : #include "svtools/viewdataentry.hxx"
49 : #include <tools/diagnose_ex.h>
50 : #include <toolkit/unohlp.hxx>
51 :
52 : #include <algorithm>
53 : #include <cuires.hrc>
54 : #include "cfg.hrc"
55 : #include "helpid.hrc"
56 :
57 : #include "acccfg.hxx"
58 : #include "cfg.hxx"
59 : #include "eventdlg.hxx"
60 : #include <dialmgr.hxx>
61 :
62 : #include <comphelper/documentinfo.hxx>
63 : #include <comphelper/processfactory.hxx>
64 : #include <unotools/configmgr.hxx>
65 : #include <com/sun/star/ui/ItemType.hpp>
66 : #include <com/sun/star/ui/ItemStyle.hpp>
67 : #include <com/sun/star/ui/ModuleUIConfigurationManagerSupplier.hpp>
68 : #include <com/sun/star/frame/ModuleManager.hpp>
69 : #include <com/sun/star/frame/XController.hpp>
70 : #include <com/sun/star/frame/Desktop.hpp>
71 : #include <com/sun/star/frame/UICommandDescription.hpp>
72 : #include <com/sun/star/ui/XUIConfiguration.hpp>
73 : #include <com/sun/star/ui/XUIConfigurationListener.hpp>
74 : #include <com/sun/star/ui/XUIConfigurationManagerSupplier.hpp>
75 : #include <com/sun/star/ui/XUIConfigurationPersistence.hpp>
76 : #include <com/sun/star/ui/XUIConfigurationStorage.hpp>
77 : #include <com/sun/star/ui/XModuleUIConfigurationManager.hpp>
78 : #include <com/sun/star/ui/XUIElement.hpp>
79 : #include <com/sun/star/ui/UIElementType.hpp>
80 : #include <com/sun/star/ui/ImageType.hpp>
81 : #include <com/sun/star/ui/WindowStateConfiguration.hpp>
82 : #include <com/sun/star/frame/XLayoutManager.hpp>
83 : #include <com/sun/star/ui/dialogs/ExtendedFilePickerElementIds.hpp>
84 : #include "com/sun/star/ui/dialogs/TemplateDescription.hpp"
85 : #include <com/sun/star/ui/dialogs/XFilePickerControlAccess.hpp>
86 : #include <com/sun/star/frame/XFramesSupplier.hpp>
87 : #include <com/sun/star/frame/XFrames.hpp>
88 : #include <com/sun/star/frame/FrameSearchFlag.hpp>
89 : #include <com/sun/star/graphic/GraphicProvider.hpp>
90 : #include <com/sun/star/embed/ElementModes.hpp>
91 : #include <com/sun/star/embed/FileSystemStorageFactory.hpp>
92 :
93 : #include "dlgname.hxx"
94 :
95 : #define PRTSTR(x) rtl::OUStringToOString(x, RTL_TEXTENCODING_ASCII_US).pData->buffer
96 :
97 : #define ENTRY_HEIGHT 16
98 :
99 : static const char ITEM_DESCRIPTOR_COMMANDURL[] = "CommandURL";
100 : static const char ITEM_DESCRIPTOR_CONTAINER[] = "ItemDescriptorContainer";
101 : static const char ITEM_DESCRIPTOR_LABEL[] = "Label";
102 : static const char ITEM_DESCRIPTOR_TYPE[] = "Type";
103 : static const char ITEM_DESCRIPTOR_STYLE[] = "Style";
104 : static const char ITEM_DESCRIPTOR_ISVISIBLE[] = "IsVisible";
105 : static const char ITEM_DESCRIPTOR_RESOURCEURL[] = "ResourceURL";
106 : static const char ITEM_DESCRIPTOR_UINAME[] = "UIName";
107 :
108 : static const char ITEM_MENUBAR_URL[] = "private:resource/menubar/menubar";
109 : static const char ITEM_TOOLBAR_URL[] = "private:resource/toolbar/";
110 :
111 : static const char CUSTOM_TOOLBAR_STR[] = "custom_toolbar_";
112 : static const char CUSTOM_MENU_STR[] = "vnd.openoffice.org:CustomMenu";
113 :
114 : static const char aSeparatorStr[] = "----------------------------------";
115 : static const char aMenuSeparatorStr[] = " | ";
116 :
117 : #ifdef _MSC_VER
118 : #pragma warning (disable:4355)
119 : #endif
120 :
121 : using rtl::OUString;
122 : namespace uno = com::sun::star::uno;
123 : namespace frame = com::sun::star::frame;
124 : namespace lang = com::sun::star::lang;
125 : namespace container = com::sun::star::container;
126 : namespace beans = com::sun::star::beans;
127 : namespace graphic = com::sun::star::graphic;
128 :
129 : #if OSL_DEBUG_LEVEL > 1
130 :
131 : void printPropertySet(
132 : const OUString& prefix,
133 : const uno::Reference< beans::XPropertySet >& xPropSet )
134 : {
135 : uno::Reference< beans::XPropertySetInfo > xPropSetInfo =
136 : xPropSet->getPropertySetInfo();
137 :
138 : uno::Sequence< beans::Property > aPropDetails =
139 : xPropSetInfo->getProperties();
140 :
141 : OSL_TRACE("printPropertySet: %d properties", aPropDetails.getLength());
142 :
143 : for ( sal_Int32 i = 0; i < aPropDetails.getLength(); ++i )
144 : {
145 : OUString tmp;
146 : sal_Int32 ival;
147 :
148 : uno::Any a = xPropSet->getPropertyValue( aPropDetails[i].Name );
149 :
150 : if ( a >>= tmp )
151 : {
152 : OSL_TRACE("%s: Got property: %s = %s",
153 : PRTSTR(prefix), PRTSTR(aPropDetails[i].Name), PRTSTR(tmp));
154 : }
155 : else if ( ( a >>= ival ) )
156 : {
157 : OSL_TRACE("%s: Got property: %s = %d",
158 : PRTSTR(prefix), PRTSTR(aPropDetails[i].Name), PRTSTR(tmp));
159 : }
160 : else
161 : {
162 : OSL_TRACE("%s: Got property: %s of type %s",
163 : PRTSTR(prefix), PRTSTR(aPropDetails[i].Name), PRTSTR(a.getValueTypeName()));
164 : }
165 : }
166 : }
167 :
168 : void printProperties(
169 : const OUString& prefix,
170 : const uno::Sequence< beans::PropertyValue >& aProp )
171 : {
172 : for ( sal_Int32 i = 0; i < aProp.getLength(); ++i )
173 : {
174 : OUString tmp;
175 :
176 : aProp[i].Value >>= tmp;
177 :
178 : OSL_TRACE("%s: Got property: %s = %s",
179 : PRTSTR(prefix), PRTSTR(aProp[i].Name), PRTSTR(tmp));
180 : }
181 : }
182 :
183 : void printEntries(SvxEntries* entries)
184 : {
185 : SvxEntries::const_iterator iter = entries->begin();
186 :
187 : for ( ; iter != entries->end(); ++iter )
188 : {
189 : SvxConfigEntry* entry = *iter;
190 :
191 : OSL_TRACE("printEntries: %s", PRTSTR(entry->GetName()));
192 : }
193 : }
194 :
195 : #endif
196 :
197 : OUString
198 0 : stripHotKey( const OUString& str )
199 : {
200 0 : sal_Int32 index = str.indexOf( '~' );
201 0 : if ( index == -1 )
202 : {
203 0 : return str;
204 : }
205 : else
206 : {
207 0 : return str.replaceAt( index, 1, OUString() );
208 : }
209 : }
210 :
211 0 : OUString replaceSaveInName(
212 : const OUString& rMessage,
213 : const OUString& rSaveInName )
214 : {
215 0 : OUString name;
216 0 : OUString placeholder("%SAVE IN SELECTION%" );
217 :
218 0 : sal_Int32 pos = rMessage.indexOf( placeholder );
219 :
220 0 : if ( pos != -1 )
221 : {
222 : name = rMessage.replaceAt(
223 0 : pos, placeholder.getLength(), rSaveInName );
224 : }
225 :
226 0 : return name;
227 : }
228 :
229 : OUString
230 0 : replaceSixteen( const OUString& str, sal_Int32 nReplacement )
231 : {
232 0 : OUString result( str );
233 0 : OUString sixteen = OUString::valueOf( (sal_Int32)16 );
234 0 : OUString expected = OUString::valueOf( nReplacement );
235 :
236 0 : sal_Int32 len = sixteen.getLength();
237 0 : sal_Int32 index = result.indexOf( sixteen );
238 :
239 0 : while ( index != -1 )
240 : {
241 0 : result = result.replaceAt( index, len, expected );
242 0 : index = result.indexOf( sixteen, index );
243 : }
244 :
245 0 : return result;
246 : }
247 :
248 : OUString
249 0 : generateCustomName(
250 : const OUString& prefix,
251 : SvxEntries* entries,
252 : sal_Int32 suffix = 1 )
253 : {
254 : // find and replace the %n placeholder in the prefix string
255 0 : OUString name;
256 0 : OUString placeholder("%n" );
257 :
258 0 : sal_Int32 pos = prefix.indexOf( placeholder );
259 :
260 0 : if ( pos != -1 )
261 : {
262 : name = prefix.replaceAt(
263 0 : pos, placeholder.getLength(), OUString::valueOf( suffix ) );
264 : }
265 : else
266 : {
267 : // no placeholder found so just append the suffix
268 0 : name = prefix + OUString::valueOf( suffix );
269 : }
270 :
271 : // now check is there is an already existing entry with this name
272 0 : SvxEntries::const_iterator iter = entries->begin();
273 :
274 : SvxConfigEntry* pEntry;
275 0 : while ( iter != entries->end() )
276 : {
277 0 : pEntry = *iter;
278 :
279 0 : if ( name.equals( pEntry->GetName() ) )
280 : {
281 0 : break;
282 : }
283 0 : ++iter;
284 : }
285 :
286 0 : if ( iter != entries->end() )
287 : {
288 : // name already exists so try the next number up
289 0 : return generateCustomName( prefix, entries, ++suffix );
290 : }
291 :
292 0 : return name;
293 : }
294 :
295 0 : sal_uInt32 generateRandomValue()
296 : {
297 0 : srand( unsigned( time( NULL ) ));
298 0 : return sal_uInt32( rand() );
299 : }
300 :
301 : OUString
302 0 : generateCustomURL(
303 : SvxEntries* entries )
304 : {
305 0 : OUString url = OUString(ITEM_TOOLBAR_URL );
306 0 : url += OUString(CUSTOM_TOOLBAR_STR );
307 :
308 : // use a random number to minimize possible clash with existing custom toolbars
309 0 : url += OUString::valueOf( sal_Int64( generateRandomValue() ), 16 );
310 :
311 : // now check is there is an already existing entry with this url
312 0 : SvxEntries::const_iterator iter = entries->begin();
313 :
314 : SvxConfigEntry* pEntry;
315 0 : while ( iter != entries->end() )
316 : {
317 0 : pEntry = *iter;
318 :
319 0 : if ( url.equals( pEntry->GetCommand() ) )
320 : {
321 0 : break;
322 : }
323 0 : ++iter;
324 : }
325 :
326 0 : if ( iter != entries->end() )
327 : {
328 : // url already exists so try the next number up
329 0 : return generateCustomURL( entries );
330 : }
331 :
332 0 : return url;
333 : }
334 :
335 : OUString
336 0 : generateCustomMenuURL(
337 : SvxEntries* entries,
338 : sal_Int32 suffix = 1 )
339 : {
340 0 : OUString url(CUSTOM_MENU_STR );
341 0 : url += OUString::valueOf( suffix );
342 :
343 : // now check is there is an already existing entry with this url
344 0 : SvxEntries::const_iterator iter = entries->begin();
345 :
346 : SvxConfigEntry* pEntry;
347 0 : while ( iter != entries->end() )
348 : {
349 0 : pEntry = *iter;
350 :
351 0 : if ( url.equals( pEntry->GetCommand() ) )
352 : {
353 0 : break;
354 : }
355 0 : ++iter;
356 : }
357 :
358 0 : if ( iter != entries->end() )
359 : {
360 : // url already exists so try the next number up
361 0 : return generateCustomMenuURL( entries, ++suffix );
362 : }
363 :
364 0 : return url;
365 : }
366 :
367 : static sal_Int16 theImageType =
368 : css::ui::ImageType::COLOR_NORMAL |
369 : css::ui::ImageType::SIZE_DEFAULT;
370 :
371 0 : void InitImageType()
372 : {
373 : theImageType =
374 : css::ui::ImageType::COLOR_NORMAL |
375 0 : css::ui::ImageType::SIZE_DEFAULT;
376 :
377 0 : if ( SvtMiscOptions().AreCurrentSymbolsLarge() )
378 : {
379 0 : theImageType |= css::ui::ImageType::SIZE_LARGE;
380 : }
381 0 : }
382 :
383 0 : sal_Int16 GetImageType()
384 : {
385 0 : return theImageType;
386 : }
387 :
388 0 : void RemoveEntry( SvxEntries* pEntries, SvxConfigEntry* pChildEntry )
389 : {
390 0 : SvxEntries::iterator iter = pEntries->begin();
391 :
392 0 : while ( iter != pEntries->end() )
393 : {
394 0 : if ( pChildEntry == *iter )
395 : {
396 0 : pEntries->erase( iter );
397 0 : break;
398 : }
399 0 : ++iter;
400 : }
401 0 : }
402 :
403 : bool
404 0 : SvxConfigPage::CanConfig( const OUString& aModuleId )
405 : {
406 : OSL_TRACE("SupportsDocumentConfig: %s", PRTSTR(aModuleId));
407 :
408 0 : if ( aModuleId == "com.sun.star.script.BasicIDE" || aModuleId == "com.sun.star.frame.Bibliography" )
409 : {
410 0 : return sal_False;
411 : }
412 0 : return sal_True;
413 : }
414 :
415 0 : OUString GetModuleName( const OUString& aModuleId )
416 : {
417 0 : if ( aModuleId.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "com.sun.star.text.TextDocument" ) ) ||
418 0 : aModuleId.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "com.sun.star.text.GlobalDocument" ) ) )
419 0 : return OUString("Writer");
420 0 : else if ( aModuleId == "com.sun.star.text.WebDocument" )
421 0 : return OUString("Writer/Web");
422 0 : else if ( aModuleId == "com.sun.star.drawing.DrawingDocument" )
423 0 : return OUString("Draw");
424 0 : else if ( aModuleId == "com.sun.star.presentation.PresentationDocument" )
425 0 : return OUString("Impress");
426 0 : else if ( aModuleId == "com.sun.star.sheet.SpreadsheetDocument" )
427 0 : return OUString("Calc");
428 0 : else if ( aModuleId == "com.sun.star.script.BasicIDE" )
429 0 : return OUString("Basic");
430 0 : else if ( aModuleId == "com.sun.star.formula.FormulaProperties" )
431 0 : return OUString("Math");
432 0 : else if ( aModuleId == "com.sun.star.sdb.RelationDesign" )
433 0 : return OUString("Relation Design");
434 0 : else if ( aModuleId == "com.sun.star.sdb.QueryDesign" )
435 0 : return OUString("Query Design");
436 0 : else if ( aModuleId == "com.sun.star.sdb.TableDesign" )
437 0 : return OUString("Table Design");
438 0 : else if ( aModuleId == "com.sun.star.sdb.DataSourceBrowser" )
439 0 : return OUString("Data Source Browser" );
440 0 : else if ( aModuleId == "com.sun.star.sdb.DatabaseDocument" )
441 0 : return OUString("Database" );
442 :
443 0 : return ::rtl::OUString();
444 : }
445 :
446 0 : OUString GetUIModuleName( const OUString& aModuleId, const uno::Reference< css::frame::XModuleManager2 >& rModuleManager )
447 : {
448 : assert(rModuleManager.is());
449 :
450 0 : OUString aModuleUIName;
451 :
452 : try
453 : {
454 0 : uno::Any a = rModuleManager->getByName( aModuleId );
455 0 : uno::Sequence< beans::PropertyValue > aSeq;
456 :
457 0 : if ( a >>= aSeq )
458 : {
459 0 : for ( sal_Int32 i = 0; i < aSeq.getLength(); ++i )
460 : {
461 0 : if ( aSeq[i].Name == "ooSetupFactoryUIName" )
462 : {
463 0 : aSeq[i].Value >>= aModuleUIName;
464 0 : break;
465 : }
466 : }
467 0 : }
468 : }
469 0 : catch ( uno::RuntimeException& )
470 : {
471 0 : throw;
472 : }
473 0 : catch ( uno::Exception& )
474 : {
475 : }
476 :
477 0 : if ( aModuleUIName.isEmpty() )
478 0 : aModuleUIName = GetModuleName( aModuleId );
479 :
480 0 : return aModuleUIName;
481 : }
482 :
483 0 : bool GetMenuItemData(
484 : const uno::Reference< container::XIndexAccess >& rItemContainer,
485 : sal_Int32 nIndex,
486 : OUString& rCommandURL,
487 : OUString& rLabel,
488 : sal_uInt16& rType,
489 : uno::Reference< container::XIndexAccess >& rSubMenu )
490 : {
491 : try
492 : {
493 0 : uno::Sequence< beans::PropertyValue > aProp;
494 0 : if ( rItemContainer->getByIndex( nIndex ) >>= aProp )
495 : {
496 0 : for ( sal_Int32 i = 0; i < aProp.getLength(); ++i )
497 : {
498 0 : if ( aProp[i].Name.equalsAscii( ITEM_DESCRIPTOR_COMMANDURL ))
499 : {
500 0 : aProp[i].Value >>= rCommandURL;
501 : }
502 0 : else if ( aProp[i].Name.equalsAscii( ITEM_DESCRIPTOR_CONTAINER ))
503 : {
504 0 : aProp[i].Value >>= rSubMenu;
505 : }
506 0 : else if ( aProp[i].Name.equalsAscii( ITEM_DESCRIPTOR_LABEL ))
507 : {
508 0 : aProp[i].Value >>= rLabel;
509 : }
510 0 : else if ( aProp[i].Name.equalsAscii( ITEM_DESCRIPTOR_TYPE ))
511 : {
512 0 : aProp[i].Value >>= rType;
513 : }
514 : }
515 :
516 0 : return sal_True;
517 0 : }
518 : }
519 0 : catch ( ::com::sun::star::lang::IndexOutOfBoundsException& )
520 : {
521 : }
522 :
523 0 : return sal_False;
524 : }
525 :
526 0 : bool GetToolbarItemData(
527 : const uno::Reference< container::XIndexAccess >& rItemContainer,
528 : sal_Int32 nIndex,
529 : OUString& rCommandURL,
530 : OUString& rLabel,
531 : sal_uInt16& rType,
532 : sal_Bool& rIsVisible,
533 : sal_Int32& rStyle,
534 : uno::Reference< container::XIndexAccess >& rSubMenu )
535 : {
536 : try
537 : {
538 0 : uno::Sequence< beans::PropertyValue > aProp;
539 0 : if ( rItemContainer->getByIndex( nIndex ) >>= aProp )
540 : {
541 0 : for ( sal_Int32 i = 0; i < aProp.getLength(); ++i )
542 : {
543 0 : if ( aProp[i].Name.equalsAscii( ITEM_DESCRIPTOR_COMMANDURL ))
544 : {
545 0 : aProp[i].Value >>= rCommandURL;
546 : }
547 0 : if ( aProp[i].Name.equalsAscii( ITEM_DESCRIPTOR_STYLE ))
548 : {
549 0 : aProp[i].Value >>= rStyle;
550 : }
551 0 : else if (aProp[i].Name.equalsAscii(ITEM_DESCRIPTOR_CONTAINER))
552 : {
553 0 : aProp[i].Value >>= rSubMenu;
554 : }
555 0 : else if ( aProp[i].Name.equalsAscii( ITEM_DESCRIPTOR_LABEL ))
556 : {
557 0 : aProp[i].Value >>= rLabel;
558 : }
559 0 : else if ( aProp[i].Name.equalsAscii( ITEM_DESCRIPTOR_TYPE ))
560 : {
561 0 : aProp[i].Value >>= rType;
562 : }
563 0 : else if (aProp[i].Name.equalsAscii(ITEM_DESCRIPTOR_ISVISIBLE))
564 : {
565 0 : aProp[i].Value >>= rIsVisible;
566 : }
567 : }
568 :
569 0 : return sal_True;
570 0 : }
571 : }
572 0 : catch ( ::com::sun::star::lang::IndexOutOfBoundsException& )
573 : {
574 : }
575 :
576 0 : return sal_False;
577 : }
578 :
579 : uno::Sequence< beans::PropertyValue >
580 0 : ConvertSvxConfigEntry(
581 : const uno::Reference< container::XNameAccess >& xCommandToLabelMap,
582 : const SvxConfigEntry* pEntry )
583 : {
584 : static const OUString aDescriptorCommandURL (
585 0 : ITEM_DESCRIPTOR_COMMANDURL );
586 :
587 : static const OUString aDescriptorType(
588 0 : ITEM_DESCRIPTOR_TYPE );
589 :
590 : static const OUString aDescriptorLabel(
591 0 : ITEM_DESCRIPTOR_LABEL );
592 :
593 : static const OUString aDescriptorContainer(
594 0 : ITEM_DESCRIPTOR_CONTAINER );
595 :
596 0 : uno::Sequence< beans::PropertyValue > aPropSeq( 3 );
597 :
598 0 : aPropSeq[0].Name = aDescriptorCommandURL;
599 0 : aPropSeq[0].Value <<= rtl::OUString( pEntry->GetCommand() );
600 :
601 0 : aPropSeq[1].Name = aDescriptorType;
602 0 : aPropSeq[1].Value <<= css::ui::ItemType::DEFAULT;
603 :
604 : // If the name has not been changed and the name is the same as
605 : // in the default command to label map then the label can be stored
606 : // as an empty string.
607 : // It will be initialised again later using the command to label map.
608 0 : aPropSeq[2].Name = aDescriptorLabel;
609 0 : if ( pEntry->HasChangedName() == sal_False && !pEntry->GetCommand().isEmpty() )
610 : {
611 0 : sal_Bool isDefaultName = sal_False;
612 : try
613 : {
614 0 : uno::Any a( xCommandToLabelMap->getByName( pEntry->GetCommand() ) );
615 0 : uno::Sequence< beans::PropertyValue > tmpPropSeq;
616 0 : if ( a >>= tmpPropSeq )
617 : {
618 0 : for ( sal_Int32 i = 0; i < tmpPropSeq.getLength(); ++i )
619 : {
620 0 : if ( tmpPropSeq[i].Name.equals( aDescriptorLabel ) )
621 : {
622 0 : OUString tmpLabel;
623 0 : tmpPropSeq[i].Value >>= tmpLabel;
624 :
625 0 : if ( tmpLabel.equals( pEntry->GetName() ) )
626 : {
627 0 : isDefaultName = sal_True;
628 : }
629 :
630 0 : break;
631 : }
632 : }
633 0 : }
634 : }
635 0 : catch ( container::NoSuchElementException& )
636 : {
637 : // isDefaultName is left as FALSE
638 : }
639 :
640 0 : if ( isDefaultName )
641 : {
642 0 : aPropSeq[2].Value <<= rtl::OUString();
643 : }
644 : else
645 : {
646 0 : aPropSeq[2].Value <<= rtl::OUString( pEntry->GetName() );
647 : }
648 : }
649 : else
650 : {
651 0 : aPropSeq[2].Value <<= rtl::OUString( pEntry->GetName() );
652 : }
653 :
654 0 : return aPropSeq;
655 : }
656 :
657 : uno::Sequence< beans::PropertyValue >
658 0 : ConvertToolbarEntry(
659 : const uno::Reference< container::XNameAccess >& xCommandToLabelMap,
660 : const SvxConfigEntry* pEntry )
661 : {
662 : static const OUString aDescriptorCommandURL (
663 0 : ITEM_DESCRIPTOR_COMMANDURL );
664 :
665 : static const OUString aDescriptorType(
666 0 : ITEM_DESCRIPTOR_TYPE );
667 :
668 : static const OUString aDescriptorLabel(
669 0 : ITEM_DESCRIPTOR_LABEL );
670 :
671 : static const OUString aDescriptorContainer(
672 0 : ITEM_DESCRIPTOR_CONTAINER );
673 :
674 : static const OUString aIsVisible(
675 0 : ITEM_DESCRIPTOR_ISVISIBLE );
676 :
677 0 : uno::Sequence< beans::PropertyValue > aPropSeq( 4 );
678 :
679 0 : aPropSeq[0].Name = aDescriptorCommandURL;
680 0 : aPropSeq[0].Value <<= rtl::OUString( pEntry->GetCommand() );
681 :
682 0 : aPropSeq[1].Name = aDescriptorType;
683 0 : aPropSeq[1].Value <<= css::ui::ItemType::DEFAULT;
684 :
685 : // If the name has not been changed and the name is the same as
686 : // in the default command to label map then the label can be stored
687 : // as an empty string.
688 : // It will be initialised again later using the command to label map.
689 0 : aPropSeq[2].Name = aDescriptorLabel;
690 0 : if ( pEntry->HasChangedName() == sal_False && !pEntry->GetCommand().isEmpty() )
691 : {
692 0 : sal_Bool isDefaultName = sal_False;
693 : try
694 : {
695 0 : uno::Any a( xCommandToLabelMap->getByName( pEntry->GetCommand() ) );
696 0 : uno::Sequence< beans::PropertyValue > tmpPropSeq;
697 0 : if ( a >>= tmpPropSeq )
698 : {
699 0 : for ( sal_Int32 i = 0; i < tmpPropSeq.getLength(); ++i )
700 : {
701 0 : if ( tmpPropSeq[i].Name.equals( aDescriptorLabel ) )
702 : {
703 0 : OUString tmpLabel;
704 0 : tmpPropSeq[i].Value >>= tmpLabel;
705 :
706 0 : if ( tmpLabel.equals( pEntry->GetName() ) )
707 : {
708 0 : isDefaultName = sal_True;
709 : }
710 :
711 0 : break;
712 : }
713 : }
714 0 : }
715 : }
716 0 : catch ( container::NoSuchElementException& )
717 : {
718 : // isDefaultName is left as FALSE
719 : }
720 :
721 0 : if ( isDefaultName )
722 : {
723 0 : aPropSeq[2].Value <<= rtl::OUString();
724 : }
725 : else
726 : {
727 0 : aPropSeq[2].Value <<= rtl::OUString( pEntry->GetName() );
728 : }
729 : }
730 : else
731 : {
732 0 : aPropSeq[2].Value <<= rtl::OUString( pEntry->GetName() );
733 : }
734 :
735 0 : aPropSeq[3].Name = aIsVisible;
736 0 : aPropSeq[3].Value <<= pEntry->IsVisible();
737 :
738 0 : return aPropSeq;
739 : }
740 :
741 0 : SfxTabPage *CreateSvxMenuConfigPage( Window *pParent, const SfxItemSet& rSet )
742 : {
743 0 : return new SvxMenuConfigPage( pParent, rSet );
744 : }
745 :
746 0 : SfxTabPage *CreateKeyboardConfigPage( Window *pParent, const SfxItemSet& rSet )
747 : {
748 0 : return new SfxAcceleratorConfigPage( pParent, rSet );
749 : }
750 :
751 0 : SfxTabPage *CreateSvxToolbarConfigPage( Window *pParent, const SfxItemSet& rSet )
752 : {
753 0 : return new SvxToolbarConfigPage( pParent, rSet );
754 : }
755 :
756 0 : SfxTabPage *CreateSvxEventConfigPage( Window *pParent, const SfxItemSet& rSet )
757 : {
758 0 : return new SvxEventConfigPage( pParent, rSet, SvxEventConfigPage::EarlyInit() );
759 : }
760 :
761 0 : sal_Bool impl_showKeyConfigTabPage( const css::uno::Reference< css::frame::XFrame >& xFrame )
762 : {
763 0 : static ::rtl::OUString MODULEID_STARTMODULE ("com.sun.star.frame.StartModule" );
764 :
765 : try
766 : {
767 0 : css::uno::Reference< css::uno::XComponentContext > xContext = ::comphelper::getProcessComponentContext();
768 0 : css::uno::Reference< css::frame::XDesktop2 > xDesktop = css::frame::Desktop::create( xContext );
769 0 : css::uno::Reference< css::frame::XModuleManager2 > xMM = css::frame::ModuleManager::create(xContext);
770 :
771 0 : if (xFrame.is())
772 : {
773 0 : ::rtl::OUString sModuleId = xMM->identify(xFrame);
774 0 : if (
775 0 : ( !sModuleId.isEmpty() ) &&
776 0 : (!sModuleId.equals(MODULEID_STARTMODULE))
777 : )
778 0 : return sal_True;
779 0 : }
780 : }
781 0 : catch(const css::uno::Exception&)
782 : {}
783 :
784 0 : return sal_False;
785 : }
786 :
787 : /******************************************************************************
788 : *
789 : * SvxConfigDialog is the configuration dialog which is brought up from the
790 : * Tools menu. It includes tabs for customizing menus, toolbars, events and
791 : * key bindings.
792 : *
793 : *****************************************************************************/
794 0 : SvxConfigDialog::SvxConfigDialog(
795 : Window * pParent, const SfxItemSet* pSet_ )
796 : :
797 : SfxTabDialog( pParent,
798 0 : CUI_RES( RID_SVXDLG_CUSTOMIZE ), pSet_ )
799 : {
800 0 : FreeResource();
801 :
802 0 : InitImageType();
803 :
804 0 : AddTabPage( RID_SVXPAGE_MENUS, CreateSvxMenuConfigPage, NULL );
805 0 : AddTabPage( RID_SVXPAGE_KEYBOARD, CreateKeyboardConfigPage, NULL );
806 0 : AddTabPage( RID_SVXPAGE_TOOLBARS, CreateSvxToolbarConfigPage, NULL );
807 0 : AddTabPage( RID_SVXPAGE_EVENTS, CreateSvxEventConfigPage, NULL );
808 :
809 : const SfxPoolItem* pItem =
810 0 : pSet_->GetItem( pSet_->GetPool()->GetWhich( SID_CONFIG ) );
811 :
812 0 : if ( pItem )
813 : {
814 0 : OUString text = ((const SfxStringItem*)pItem)->GetValue();
815 :
816 0 : if (text.indexOf( ITEM_TOOLBAR_URL ) == 0)
817 : {
818 0 : SetCurPageId( RID_SVXPAGE_TOOLBARS );
819 0 : }
820 : }
821 0 : }
822 :
823 0 : void SvxConfigDialog::SetFrame(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame)
824 : {
825 0 : m_xFrame = xFrame;
826 :
827 0 : if (!impl_showKeyConfigTabPage( xFrame ))
828 0 : RemoveTabPage( RID_SVXPAGE_KEYBOARD );
829 0 : }
830 :
831 0 : SvxConfigDialog::~SvxConfigDialog()
832 : {
833 0 : }
834 :
835 0 : short SvxConfigDialog::Ok()
836 : {
837 0 : return SfxTabDialog::Ok();
838 : }
839 :
840 0 : void SvxConfigDialog::PageCreated( sal_uInt16 nId, SfxTabPage& rPage )
841 : {
842 : (void)rPage;
843 :
844 0 : switch ( nId )
845 : {
846 : case RID_SVXPAGE_MENUS:
847 : case RID_SVXPAGE_TOOLBARS:
848 : case RID_SVXPAGE_KEYBOARD:
849 : {
850 0 : rPage.SetFrame(m_xFrame);
851 : }
852 0 : break;
853 : case RID_SVXPAGE_EVENTS:
854 : {
855 0 : dynamic_cast< SvxEventConfigPage& >( rPage ).LateInit( m_xFrame );
856 : };
857 0 : break;
858 : default:
859 0 : break;
860 : }
861 0 : }
862 :
863 : /******************************************************************************
864 : *
865 : * The SaveInData class is used to hold data for entries in the Save In
866 : * ListBox controls in the menu and toolbar tabs
867 : *
868 : ******************************************************************************/
869 :
870 : // Initialize static variable which holds default XImageManager
871 : uno::Reference< css::ui::XImageManager>* SaveInData::xDefaultImgMgr = NULL;
872 :
873 0 : SaveInData::SaveInData(
874 : const uno::Reference< css::ui::XUIConfigurationManager >& xCfgMgr,
875 : const uno::Reference< css::ui::XUIConfigurationManager >& xParentCfgMgr,
876 : const OUString& aModuleId,
877 : bool isDocConfig )
878 : :
879 : bModified( sal_False ),
880 : bDocConfig( isDocConfig ),
881 : bReadOnly( sal_False ),
882 : m_xCfgMgr( xCfgMgr ),
883 0 : m_xParentCfgMgr( xParentCfgMgr )
884 : {
885 0 : m_aSeparatorSeq.realloc( 1 );
886 0 : m_aSeparatorSeq[0].Name = OUString( ITEM_DESCRIPTOR_TYPE );
887 0 : m_aSeparatorSeq[0].Value <<= css::ui::ItemType::SEPARATOR_LINE;
888 :
889 0 : if ( bDocConfig )
890 : {
891 : uno::Reference< css::ui::XUIConfigurationPersistence >
892 0 : xDocPersistence( GetConfigManager(), uno::UNO_QUERY );
893 :
894 0 : bReadOnly = xDocPersistence->isReadOnly();
895 : }
896 :
897 0 : uno::Reference<uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
898 :
899 : uno::Reference< container::XNameAccess > xNameAccess(
900 0 : css::frame::UICommandDescription::create(xContext) );
901 :
902 0 : xNameAccess->getByName( aModuleId ) >>= m_xCommandToLabelMap;
903 :
904 0 : if ( !m_xImgMgr.is() )
905 : {
906 : m_xImgMgr = uno::Reference< css::ui::XImageManager >(
907 0 : GetConfigManager()->getImageManager(), uno::UNO_QUERY );
908 : }
909 :
910 0 : if ( !IsDocConfig() )
911 : {
912 : // If this is not a document configuration then it is the settings
913 : // for the module (writer, calc, impress etc.) Use this as the default
914 : // XImageManager instance
915 0 : xDefaultImgMgr = &m_xImgMgr;
916 : }
917 : else
918 : {
919 : // If this is a document configuration then use the module image manager
920 : // as default.
921 0 : if ( m_xParentCfgMgr.is() )
922 : {
923 : m_xParentImgMgr = uno::Reference< css::ui::XImageManager >(
924 0 : m_xParentCfgMgr->getImageManager(), uno::UNO_QUERY );
925 0 : xDefaultImgMgr = &m_xParentImgMgr;
926 : }
927 0 : }
928 0 : }
929 :
930 0 : uno::Reference< graphic::XGraphic > GetGraphic(
931 : const uno::Reference< css::ui::XImageManager >& xImageManager,
932 : const OUString& rCommandURL )
933 : {
934 0 : uno::Reference< graphic::XGraphic > result;
935 :
936 0 : if ( xImageManager.is() )
937 : {
938 : // TODO handle large graphics
939 0 : uno::Sequence< uno::Reference< graphic::XGraphic > > aGraphicSeq;
940 :
941 0 : uno::Sequence< OUString > aImageCmdSeq( 1 );
942 0 : aImageCmdSeq[0] = rCommandURL;
943 :
944 : try
945 : {
946 : aGraphicSeq =
947 0 : xImageManager->getImages( GetImageType(), aImageCmdSeq );
948 :
949 0 : if ( aGraphicSeq.getLength() > 0 )
950 : {
951 0 : result = aGraphicSeq[0];
952 : }
953 : }
954 0 : catch ( uno::Exception& )
955 : {
956 : // will return empty XGraphic
957 0 : }
958 : }
959 :
960 0 : return result;
961 : }
962 :
963 0 : Image SaveInData::GetImage( const OUString& rCommandURL )
964 : {
965 0 : Image aImage;
966 :
967 : uno::Reference< graphic::XGraphic > xGraphic =
968 0 : GetGraphic( m_xImgMgr, rCommandURL );
969 :
970 0 : if ( xGraphic.is() )
971 : {
972 0 : aImage = Image( xGraphic );
973 : }
974 0 : else if ( xDefaultImgMgr != NULL && (*xDefaultImgMgr).is() )
975 : {
976 0 : xGraphic = GetGraphic( (*xDefaultImgMgr), rCommandURL );
977 :
978 0 : if ( xGraphic.is() )
979 : {
980 0 : aImage = Image( xGraphic );
981 : }
982 : }
983 :
984 0 : return aImage;
985 : }
986 :
987 0 : bool SaveInData::PersistChanges(
988 : const uno::Reference< uno::XInterface >& xManager )
989 : {
990 0 : bool result = sal_True;
991 :
992 : try
993 : {
994 0 : if ( xManager.is() && !IsReadOnly() )
995 : {
996 : uno::Reference< css::ui::XUIConfigurationPersistence >
997 0 : xConfigPersistence( xManager, uno::UNO_QUERY );
998 :
999 0 : if ( xConfigPersistence->isModified() )
1000 : {
1001 0 : xConfigPersistence->store();
1002 0 : }
1003 : }
1004 : }
1005 0 : catch ( com::sun::star::io::IOException& )
1006 : {
1007 0 : result = sal_False;
1008 : }
1009 :
1010 0 : return result;
1011 : }
1012 :
1013 : /******************************************************************************
1014 : *
1015 : * The MenuSaveInData class extends SaveInData and provides menu specific
1016 : * load and store functionality.
1017 : *
1018 : ******************************************************************************/
1019 :
1020 : // Initialize static variable which holds default Menu data
1021 : MenuSaveInData* MenuSaveInData::pDefaultData = NULL;
1022 :
1023 0 : MenuSaveInData::MenuSaveInData(
1024 : const uno::Reference< css::ui::XUIConfigurationManager >& cfgmgr,
1025 : const uno::Reference< css::ui::XUIConfigurationManager >& xParentCfgMgr,
1026 : const OUString& aModuleId,
1027 : bool isDocConfig )
1028 : :
1029 : SaveInData( cfgmgr, xParentCfgMgr, aModuleId, isDocConfig ),
1030 : m_aMenuResourceURL(
1031 : ITEM_MENUBAR_URL ),
1032 : m_aDescriptorContainer(
1033 : ITEM_DESCRIPTOR_CONTAINER ),
1034 0 : pRootEntry( 0 )
1035 : {
1036 : try
1037 : {
1038 0 : OUString url( ITEM_MENUBAR_URL );
1039 0 : m_xMenuSettings = GetConfigManager()->getSettings( url, sal_False );
1040 : }
1041 0 : catch ( container::NoSuchElementException& )
1042 : {
1043 : // will use menu settings for the module
1044 : }
1045 :
1046 : // If this is not a document configuration then it is the settings
1047 : // for the module (writer, calc, impress etc.). These settings should
1048 : // be set as the default to be used for SaveIn locations that do not
1049 : // have custom settings
1050 0 : if ( !IsDocConfig() )
1051 : {
1052 0 : SetDefaultData( this );
1053 : }
1054 0 : }
1055 :
1056 0 : MenuSaveInData::~MenuSaveInData()
1057 : {
1058 0 : if ( pRootEntry != NULL )
1059 : {
1060 0 : delete pRootEntry;
1061 : }
1062 0 : }
1063 :
1064 : SvxEntries*
1065 0 : MenuSaveInData::GetEntries()
1066 : {
1067 0 : if ( pRootEntry == NULL )
1068 : {
1069 : pRootEntry = new SvxConfigEntry(
1070 : rtl::OUString("MainMenus"),
1071 0 : rtl::OUString(), sal_True);
1072 :
1073 0 : if ( m_xMenuSettings.is() )
1074 : {
1075 0 : LoadSubMenus( m_xMenuSettings, String(), pRootEntry );
1076 : }
1077 0 : else if ( GetDefaultData() != NULL )
1078 : {
1079 : // If the doc has no config settings use module config settings
1080 0 : LoadSubMenus( GetDefaultData()->m_xMenuSettings, String(), pRootEntry );
1081 : }
1082 : }
1083 :
1084 0 : return pRootEntry->GetEntries();
1085 : }
1086 :
1087 : void
1088 0 : MenuSaveInData::SetEntries( SvxEntries* pNewEntries )
1089 : {
1090 : // delete old menu hierarchy first
1091 0 : if ( pRootEntry != NULL )
1092 : {
1093 0 : delete pRootEntry->GetEntries();
1094 : }
1095 :
1096 : // now set new menu hierarchy
1097 0 : pRootEntry->SetEntries( pNewEntries );
1098 0 : }
1099 :
1100 0 : bool MenuSaveInData::LoadSubMenus(
1101 : const uno::Reference< container::XIndexAccess >& xMenuSettings,
1102 : const OUString& rBaseTitle,
1103 : SvxConfigEntry* pParentData )
1104 : {
1105 0 : SvxEntries* pEntries = pParentData->GetEntries();
1106 :
1107 : // Don't access non existing menu configuration!
1108 0 : if ( !xMenuSettings.is() )
1109 0 : return true;
1110 :
1111 0 : for ( sal_Int32 nIndex = 0; nIndex < xMenuSettings->getCount(); ++nIndex )
1112 : {
1113 0 : uno::Reference< container::XIndexAccess > xSubMenu;
1114 0 : OUString aCommandURL;
1115 0 : OUString aLabel;
1116 0 : bool bIsUserDefined = sal_True;
1117 :
1118 0 : sal_uInt16 nType( css::ui::ItemType::DEFAULT );
1119 :
1120 : bool bItem = GetMenuItemData( xMenuSettings, nIndex,
1121 0 : aCommandURL, aLabel, nType, xSubMenu );
1122 :
1123 0 : if ( bItem )
1124 : {
1125 0 : if ( nType == css::ui::ItemType::DEFAULT )
1126 : {
1127 0 : uno::Any a;
1128 : try
1129 : {
1130 0 : a = m_xCommandToLabelMap->getByName( aCommandURL );
1131 0 : bIsUserDefined = sal_False;
1132 : }
1133 0 : catch ( container::NoSuchElementException& )
1134 : {
1135 0 : bIsUserDefined = sal_True;
1136 : }
1137 :
1138 : // If custom label not set retrieve it from the command
1139 : // to info service
1140 0 : if ( aLabel.equals( OUString() ) )
1141 : {
1142 0 : uno::Sequence< beans::PropertyValue > aPropSeq;
1143 0 : if ( a >>= aPropSeq )
1144 : {
1145 0 : for ( sal_Int32 i = 0; i < aPropSeq.getLength(); ++i )
1146 : {
1147 0 : if ( aPropSeq[i].Name.equalsAscii( ITEM_DESCRIPTOR_LABEL ) )
1148 : {
1149 0 : aPropSeq[i].Value >>= aLabel;
1150 0 : break;
1151 : }
1152 : }
1153 0 : }
1154 : }
1155 :
1156 0 : if ( xSubMenu.is() )
1157 : {
1158 : // popup menu
1159 : SvxConfigEntry* pEntry = new SvxConfigEntry(
1160 0 : aLabel, aCommandURL, sal_True );
1161 :
1162 0 : pEntry->SetUserDefined( bIsUserDefined );
1163 :
1164 0 : pEntries->push_back( pEntry );
1165 :
1166 0 : OUString subMenuTitle( rBaseTitle );
1167 :
1168 0 : if ( !subMenuTitle.isEmpty() )
1169 : {
1170 0 : subMenuTitle += OUString( aMenuSeparatorStr);
1171 : }
1172 : else
1173 : {
1174 0 : pEntry->SetMain( sal_True );
1175 : }
1176 :
1177 0 : subMenuTitle += stripHotKey( aLabel );
1178 :
1179 0 : LoadSubMenus( xSubMenu, subMenuTitle, pEntry );
1180 : }
1181 : else
1182 : {
1183 : SvxConfigEntry* pEntry = new SvxConfigEntry(
1184 0 : aLabel, aCommandURL, sal_False );
1185 0 : pEntry->SetUserDefined( bIsUserDefined );
1186 0 : pEntries->push_back( pEntry );
1187 0 : }
1188 : }
1189 : else
1190 : {
1191 0 : SvxConfigEntry* pEntry = new SvxConfigEntry;
1192 0 : pEntry->SetUserDefined( bIsUserDefined );
1193 0 : pEntries->push_back( pEntry );
1194 : }
1195 : }
1196 0 : }
1197 0 : return true;
1198 : }
1199 :
1200 0 : bool MenuSaveInData::Apply()
1201 : {
1202 0 : bool result = sal_False;
1203 :
1204 0 : if ( IsModified() )
1205 : {
1206 : // Apply new menu bar structure to our settings container
1207 : m_xMenuSettings = uno::Reference< container::XIndexAccess >(
1208 0 : GetConfigManager()->createSettings(), uno::UNO_QUERY );
1209 :
1210 : uno::Reference< container::XIndexContainer > xIndexContainer (
1211 0 : m_xMenuSettings, uno::UNO_QUERY );
1212 :
1213 : uno::Reference< lang::XSingleComponentFactory > xFactory (
1214 0 : m_xMenuSettings, uno::UNO_QUERY );
1215 :
1216 0 : Apply( pRootEntry, xIndexContainer, xFactory, NULL );
1217 :
1218 : try
1219 : {
1220 0 : if ( GetConfigManager()->hasSettings( m_aMenuResourceURL ) )
1221 : {
1222 0 : GetConfigManager()->replaceSettings(
1223 0 : m_aMenuResourceURL, m_xMenuSettings );
1224 : }
1225 : else
1226 : {
1227 0 : GetConfigManager()->insertSettings(
1228 0 : m_aMenuResourceURL, m_xMenuSettings );
1229 : }
1230 : }
1231 0 : catch ( container::NoSuchElementException& )
1232 : {
1233 : OSL_TRACE("caught container::NoSuchElementException saving settings");
1234 : }
1235 0 : catch ( com::sun::star::io::IOException& )
1236 : {
1237 : OSL_TRACE("caught IOException saving settings");
1238 : }
1239 0 : catch ( com::sun::star::uno::Exception& )
1240 : {
1241 : OSL_TRACE("caught some other exception saving settings");
1242 : }
1243 :
1244 0 : SetModified( sal_False );
1245 :
1246 0 : result = PersistChanges( GetConfigManager() );
1247 : }
1248 :
1249 0 : return result;
1250 : }
1251 :
1252 0 : void MenuSaveInData::Apply(
1253 : SvxConfigEntry* pRootEntry_,
1254 : uno::Reference< container::XIndexContainer >& rMenuBar,
1255 : uno::Reference< lang::XSingleComponentFactory >& rFactory,
1256 : SvTreeListEntry *pParentEntry )
1257 : {
1258 : (void)pRootEntry_;
1259 : (void)pParentEntry;
1260 :
1261 0 : SvxEntries::const_iterator iter = GetEntries()->begin();
1262 0 : SvxEntries::const_iterator end = GetEntries()->end();
1263 :
1264 0 : uno::Reference<uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
1265 :
1266 0 : for ( ; iter != end; ++iter )
1267 : {
1268 0 : SvxConfigEntry* pEntryData = *iter;
1269 :
1270 : uno::Sequence< beans::PropertyValue > aPropValueSeq =
1271 0 : ConvertSvxConfigEntry( m_xCommandToLabelMap, pEntryData );
1272 :
1273 : uno::Reference< container::XIndexContainer > xSubMenuBar(
1274 0 : rFactory->createInstanceWithContext( xContext ),
1275 0 : uno::UNO_QUERY );
1276 :
1277 0 : sal_Int32 nIndex = aPropValueSeq.getLength();
1278 0 : aPropValueSeq.realloc( nIndex + 1 );
1279 0 : aPropValueSeq[nIndex].Name = m_aDescriptorContainer;
1280 0 : aPropValueSeq[nIndex].Value <<= xSubMenuBar;
1281 0 : rMenuBar->insertByIndex(
1282 0 : rMenuBar->getCount(), uno::makeAny( aPropValueSeq ));
1283 0 : ApplyMenu( xSubMenuBar, rFactory, pEntryData );
1284 0 : }
1285 0 : }
1286 :
1287 0 : void MenuSaveInData::ApplyMenu(
1288 : uno::Reference< container::XIndexContainer >& rMenuBar,
1289 : uno::Reference< lang::XSingleComponentFactory >& rFactory,
1290 : SvxConfigEntry* pMenuData )
1291 : {
1292 0 : uno::Reference<uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
1293 :
1294 0 : SvxEntries::const_iterator iter = pMenuData->GetEntries()->begin();
1295 0 : SvxEntries::const_iterator end = pMenuData->GetEntries()->end();
1296 :
1297 0 : for ( ; iter != end; ++iter )
1298 : {
1299 0 : SvxConfigEntry* pEntry = *iter;
1300 :
1301 0 : if ( pEntry->IsPopup() )
1302 : {
1303 : uno::Sequence< beans::PropertyValue > aPropValueSeq =
1304 0 : ConvertSvxConfigEntry( m_xCommandToLabelMap, pEntry );
1305 :
1306 : uno::Reference< container::XIndexContainer > xSubMenuBar(
1307 0 : rFactory->createInstanceWithContext( xContext ),
1308 0 : uno::UNO_QUERY );
1309 :
1310 0 : sal_Int32 nIndex = aPropValueSeq.getLength();
1311 0 : aPropValueSeq.realloc( nIndex + 1 );
1312 0 : aPropValueSeq[nIndex].Name = m_aDescriptorContainer;
1313 0 : aPropValueSeq[nIndex].Value <<= xSubMenuBar;
1314 :
1315 0 : rMenuBar->insertByIndex(
1316 0 : rMenuBar->getCount(), uno::makeAny( aPropValueSeq ));
1317 :
1318 0 : ApplyMenu( xSubMenuBar, rFactory, pEntry );
1319 : }
1320 0 : else if ( pEntry->IsSeparator() )
1321 : {
1322 0 : rMenuBar->insertByIndex(
1323 0 : rMenuBar->getCount(), uno::makeAny( m_aSeparatorSeq ));
1324 : }
1325 : else
1326 : {
1327 : uno::Sequence< beans::PropertyValue > aPropValueSeq =
1328 0 : ConvertSvxConfigEntry( m_xCommandToLabelMap, pEntry );
1329 0 : rMenuBar->insertByIndex(
1330 0 : rMenuBar->getCount(), uno::makeAny( aPropValueSeq ));
1331 : }
1332 0 : }
1333 0 : }
1334 :
1335 : void
1336 0 : MenuSaveInData::Reset()
1337 : {
1338 0 : GetConfigManager()->reset();
1339 :
1340 0 : delete pRootEntry;
1341 0 : pRootEntry = NULL;
1342 :
1343 : try
1344 : {
1345 0 : m_xMenuSettings = GetConfigManager()->getSettings(
1346 0 : m_aMenuResourceURL, sal_False );
1347 : }
1348 0 : catch ( container::NoSuchElementException& )
1349 : {
1350 : // will use default settings
1351 : }
1352 0 : }
1353 :
1354 : class PopupPainter : public SvLBoxString
1355 : {
1356 : public:
1357 0 : PopupPainter( SvTreeListEntry* pEntry, const String& rStr )
1358 0 : : SvLBoxString( pEntry, 0, rStr )
1359 0 : { }
1360 :
1361 0 : ~PopupPainter() { }
1362 :
1363 0 : virtual void Paint( const Point& rPos, SvTreeListBox& rOutDev,
1364 : const SvViewDataEntry* pView, const SvTreeListEntry* pEntry)
1365 : {
1366 0 : SvLBoxString::Paint(rPos, rOutDev, pView, pEntry);
1367 :
1368 0 : Color aOldFillColor = rOutDev.GetFillColor();
1369 :
1370 0 : SvTreeListBox* pTreeBox = static_cast< SvTreeListBox* >( &rOutDev );
1371 0 : long nX = pTreeBox->GetSizePixel().Width();
1372 :
1373 0 : ScrollBar* pVScroll = pTreeBox->GetVScroll();
1374 0 : if ( pVScroll->IsVisible() )
1375 : {
1376 0 : nX -= pVScroll->GetSizePixel().Width();
1377 : }
1378 :
1379 0 : const SvViewDataItem* pItem = rOutDev.GetViewDataItem( pEntry, this );
1380 0 : nX -= pItem->maSize.Height();
1381 :
1382 0 : long nSize = pItem->maSize.Height() / 2;
1383 0 : long nHalfSize = nSize / 2;
1384 0 : long nY = rPos.Y() + nHalfSize;
1385 :
1386 0 : if ( aOldFillColor == COL_WHITE )
1387 : {
1388 0 : rOutDev.SetFillColor( Color( COL_BLACK ) );
1389 : }
1390 : else
1391 : {
1392 0 : rOutDev.SetFillColor( Color( COL_WHITE ) );
1393 : }
1394 :
1395 0 : long n = 0;
1396 0 : while ( n <= nHalfSize )
1397 : {
1398 0 : rOutDev.DrawRect( Rectangle( nX+n, nY+n, nX+n, nY+nSize-n ) );
1399 0 : ++n;
1400 : }
1401 :
1402 0 : rOutDev.SetFillColor( aOldFillColor );
1403 0 : }
1404 : };
1405 :
1406 : /******************************************************************************
1407 : *
1408 : * SvxMenuEntriesListBox is the listbox in which the menu items for a
1409 : * particular menu are shown. We have a custom listbox because we need
1410 : * to add drag'n'drop support from the Macro Selector and within the
1411 : * listbox
1412 : *
1413 : *****************************************************************************/
1414 0 : SvxMenuEntriesListBox::SvxMenuEntriesListBox(
1415 : Window* pParent, const ResId& rResId)
1416 : : SvTreeListBox( pParent, rResId )
1417 : , pPage( (SvxMenuConfigPage*) pParent )
1418 0 : , m_bIsInternalDrag( sal_False )
1419 : {
1420 : SetStyle(
1421 0 : GetStyle() | WB_CLIPCHILDREN | WB_HSCROLL | WB_HIDESELECTION );
1422 :
1423 0 : SetSpaceBetweenEntries( 3 );
1424 0 : SetEntryHeight( ENTRY_HEIGHT );
1425 :
1426 0 : SetHighlightRange();
1427 0 : SetSelectionMode(SINGLE_SELECTION);
1428 :
1429 : SetDragDropMode( SV_DRAGDROP_CTRL_MOVE |
1430 : SV_DRAGDROP_APP_COPY |
1431 : SV_DRAGDROP_ENABLE_TOP |
1432 0 : SV_DRAGDROP_APP_DROP);
1433 0 : }
1434 :
1435 0 : SvxMenuEntriesListBox::~SvxMenuEntriesListBox()
1436 : {
1437 : // do nothing
1438 0 : }
1439 :
1440 : // drag and drop support
1441 0 : DragDropMode SvxMenuEntriesListBox::NotifyStartDrag(
1442 : TransferDataContainer& aTransferDataContainer, SvTreeListEntry* pEntry )
1443 : {
1444 : (void)aTransferDataContainer;
1445 : (void)pEntry;
1446 :
1447 0 : m_bIsInternalDrag = sal_True;
1448 0 : return GetDragDropMode();
1449 : }
1450 :
1451 0 : void SvxMenuEntriesListBox::DragFinished( sal_Int8 nDropAction )
1452 : {
1453 : (void)nDropAction;
1454 0 : m_bIsInternalDrag = sal_False;
1455 0 : }
1456 :
1457 0 : sal_Int8 SvxMenuEntriesListBox::AcceptDrop( const AcceptDropEvent& rEvt )
1458 : {
1459 0 : if ( m_bIsInternalDrag )
1460 : {
1461 : // internal copy isn't allowed!
1462 0 : if ( rEvt.mnAction == DND_ACTION_COPY )
1463 0 : return DND_ACTION_NONE;
1464 : else
1465 0 : return SvTreeListBox::AcceptDrop( rEvt );
1466 : }
1467 :
1468 : // Always do COPY instead of MOVE if D&D comes from outside!
1469 0 : AcceptDropEvent aNewAcceptDropEvent( rEvt );
1470 0 : aNewAcceptDropEvent.mnAction = DND_ACTION_COPY;
1471 0 : return SvTreeListBox::AcceptDrop( aNewAcceptDropEvent );
1472 : }
1473 :
1474 0 : sal_Bool SvxMenuEntriesListBox::NotifyAcceptDrop( SvTreeListEntry* )
1475 : {
1476 0 : return sal_True;
1477 : }
1478 :
1479 0 : sal_Bool SvxMenuEntriesListBox::NotifyMoving(
1480 : SvTreeListEntry* pTarget, SvTreeListEntry* pSource,
1481 : SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos)
1482 : {
1483 : // only try to do a move if we are dragging within the list box
1484 0 : if ( m_bIsInternalDrag )
1485 : {
1486 0 : if ( pPage->MoveEntryData( pSource, pTarget ) == sal_True )
1487 : {
1488 : SvTreeListBox::NotifyMoving(
1489 0 : pTarget, pSource, rpNewParent, rNewChildPos );
1490 0 : return sal_True;
1491 : }
1492 : else
1493 : {
1494 0 : return sal_False;
1495 : }
1496 : }
1497 : else
1498 : {
1499 0 : return NotifyCopying( pTarget, pSource, rpNewParent, rNewChildPos );
1500 : }
1501 : }
1502 :
1503 0 : sal_Bool SvxMenuEntriesListBox::NotifyCopying(
1504 : SvTreeListEntry* pTarget, SvTreeListEntry* pSource,
1505 : SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos)
1506 : {
1507 : (void)pSource;
1508 : (void)rpNewParent;
1509 : (void)rNewChildPos;
1510 :
1511 0 : if ( !m_bIsInternalDrag )
1512 : {
1513 : // if the target is NULL then add function to the start of the list
1514 0 : pPage->AddFunction( pTarget, pTarget == NULL );
1515 :
1516 : // AddFunction already adds the listbox entry so return FALSE
1517 : // to stop another listbox entry being added
1518 0 : return sal_False;
1519 : }
1520 :
1521 : // Copying is only allowed from external controls, not within the listbox
1522 0 : return sal_False;
1523 : }
1524 :
1525 0 : void SvxMenuEntriesListBox::KeyInput( const KeyEvent& rKeyEvent )
1526 : {
1527 0 : KeyCode keycode = rKeyEvent.GetKeyCode();
1528 :
1529 : // support DELETE for removing the current entry
1530 0 : if ( keycode == KEY_DELETE )
1531 : {
1532 0 : pPage->DeleteSelectedContent();
1533 : }
1534 : // support CTRL+UP and CTRL+DOWN for moving selected entries
1535 0 : else if ( keycode.GetCode() == KEY_UP && keycode.IsMod1() )
1536 : {
1537 0 : pPage->MoveEntry( sal_True );
1538 : }
1539 0 : else if ( keycode.GetCode() == KEY_DOWN && keycode.IsMod1() )
1540 : {
1541 0 : pPage->MoveEntry( sal_False );
1542 : }
1543 : else
1544 : {
1545 : // pass on to superclass
1546 0 : SvTreeListBox::KeyInput( rKeyEvent );
1547 : }
1548 0 : }
1549 :
1550 : // class SvxDescriptionEdit ----------------------------------------------
1551 :
1552 0 : SvxDescriptionEdit::SvxDescriptionEdit( Window* pParent, const ResId& _rId ) :
1553 :
1554 0 : ExtMultiLineEdit( pParent, _rId )
1555 :
1556 : {
1557 : // calculate the available space for help text
1558 0 : m_aRealRect = Rectangle( Point(), GetSizePixel() );
1559 0 : if ( GetVScrollBar() )
1560 0 : m_aRealRect.Right() -= ( GetVScrollBar()->GetSizePixel().Width() + 4 );
1561 :
1562 0 : SetLeftMargin(2);
1563 0 : SetBorderStyle( WINDOW_BORDER_MONO );
1564 0 : }
1565 :
1566 : // -----------------------------------------------------------------------
1567 :
1568 0 : void SvxDescriptionEdit::SetNewText( const String& _rText )
1569 : {
1570 0 : String sTemp( _rText );
1571 0 : sal_Bool bShow = sal_False;
1572 0 : if ( sTemp.Len() > 0 )
1573 : {
1574 : // detect if a scrollbar is necessary
1575 0 : Rectangle aRect = GetTextRect( m_aRealRect, sTemp, TEXT_DRAW_WORDBREAK | TEXT_DRAW_MULTILINE );
1576 0 : bShow = ( aRect.Bottom() > m_aRealRect.Bottom() );
1577 : }
1578 :
1579 0 : if ( GetVScrollBar() )
1580 0 : GetVScrollBar()->Show( bShow );
1581 :
1582 0 : if ( bShow )
1583 0 : sTemp += '\n';
1584 :
1585 0 : SetText( sTemp );
1586 0 : }
1587 :
1588 : /******************************************************************************
1589 : *
1590 : * SvxConfigPage is the abstract base class on which the Menu and Toolbar
1591 : * configuration tabpages are based. It includes methods which are common to
1592 : * both tabpages to add, delete, move and rename items etc.
1593 : *
1594 : *****************************************************************************/
1595 0 : SvxConfigPage::SvxConfigPage(
1596 : Window *pParent, const SfxItemSet& rSet )
1597 : :
1598 0 : SfxTabPage( pParent, CUI_RES( RID_SVXPAGE_MENUS ), rSet ),
1599 : bInitialised( sal_False ),
1600 : pCurrentSaveInData( 0 ),
1601 0 : aTopLevelSeparator( this, CUI_RES( GRP_MENUS ) ),
1602 0 : aTopLevelLabel( this, CUI_RES( FT_MENUS ) ),
1603 0 : aTopLevelListBox( this, CUI_RES( LB_MENUS ) ),
1604 0 : aNewTopLevelButton( this, CUI_RES( BTN_NEW ) ),
1605 0 : aModifyTopLevelButton( this, CUI_RES( BTN_CHANGE ) ),
1606 0 : aContentsSeparator( this, CUI_RES( GRP_MENU_SEPARATOR ) ),
1607 0 : aContentsLabel( this, CUI_RES( GRP_MENU_ENTRIES ) ),
1608 : aContentsListBox( 0 ),
1609 0 : aAddCommandsButton( this, CUI_RES( BTN_ADD_COMMANDS ) ),
1610 0 : aModifyCommandButton( this, CUI_RES( BTN_CHANGE_ENTRY ) ),
1611 0 : aMoveUpButton( this, CUI_RES( BTN_UP ) ),
1612 0 : aMoveDownButton( this, CUI_RES( BTN_DOWN ) ),
1613 0 : aSaveInText( this, CUI_RES( TXT_SAVEIN ) ),
1614 0 : aSaveInListBox( this, CUI_RES( LB_SAVEIN ) ),
1615 0 : aDescriptionLabel( this, CUI_RES( FT_DESCRIPTION ) ),
1616 0 : aDescriptionField( this, CUI_RES( ED_DESCRIPTION ) ),
1617 0 : pSelectorDlg( 0 )
1618 : {
1619 0 : aDescriptionField.SetControlBackground( GetSettings().GetStyleSettings().GetDialogColor() );
1620 0 : aDescriptionField.SetAutoScroll( sal_True );
1621 0 : aDescriptionField.EnableCursor( sal_False );
1622 :
1623 0 : aMoveUpButton.SetAccessibleName(String(CUI_RES(BUTTON_STR_UP)));
1624 0 : aMoveDownButton.SetAccessibleName(String(CUI_RES(BUTTON_STR_DOWN)));
1625 0 : aMoveUpButton.SetAccessibleRelationMemberOf(&aContentsSeparator);
1626 0 : aMoveDownButton.SetAccessibleRelationMemberOf(&aContentsSeparator);
1627 0 : aNewTopLevelButton.SetAccessibleRelationMemberOf(&aTopLevelSeparator);
1628 0 : aModifyTopLevelButton.SetAccessibleRelationMemberOf(&aTopLevelSeparator);
1629 0 : aAddCommandsButton.SetAccessibleRelationMemberOf(&aContentsSeparator);
1630 0 : aModifyCommandButton.SetAccessibleRelationMemberOf(&aContentsSeparator);
1631 0 : }
1632 :
1633 0 : SvxConfigPage::~SvxConfigPage()
1634 : {
1635 0 : }
1636 :
1637 0 : void SvxConfigPage::Reset( const SfxItemSet& )
1638 : {
1639 : // If we haven't initialised our XMultiServiceFactory reference
1640 : // then Reset is being called at the opening of the dialog.
1641 : //
1642 : // Load menu configuration data for the module of the currently
1643 : // selected document, for the currently selected document, and for
1644 : // all other open documents of the same module type
1645 0 : if ( !bInitialised )
1646 : {
1647 0 : sal_uInt16 nPos = 0;
1648 0 : uno::Reference < css::ui::XUIConfigurationManager > xCfgMgr;
1649 0 : uno::Reference < css::ui::XUIConfigurationManager > xDocCfgMgr;
1650 :
1651 : uno::Reference< uno::XComponentContext > xContext(
1652 0 : ::comphelper::getProcessComponentContext(), uno::UNO_QUERY_THROW );
1653 :
1654 0 : m_xFrame = GetFrame();
1655 0 : OUString aModuleId = GetFrameWithDefaultAndIdentify( m_xFrame );
1656 :
1657 : // replace %MODULENAME in the label with the correct module name
1658 : uno::Reference< css::frame::XModuleManager2 > xModuleManager(
1659 0 : css::frame::ModuleManager::create( xContext ));
1660 0 : OUString aModuleName = GetUIModuleName( aModuleId, xModuleManager );
1661 :
1662 0 : OUString title = aTopLevelSeparator.GetText();
1663 0 : OUString aSearchString("%MODULENAME" );
1664 0 : sal_Int32 index = title.indexOf( aSearchString );
1665 :
1666 0 : if ( index != -1 )
1667 : {
1668 : title = title.replaceAt(
1669 0 : index, aSearchString.getLength(), aModuleName );
1670 0 : aTopLevelSeparator.SetText( title );
1671 : }
1672 :
1673 : uno::Reference< css::ui::XModuleUIConfigurationManagerSupplier >
1674 0 : xModuleCfgSupplier( css::ui::ModuleUIConfigurationManagerSupplier::create(xContext) );
1675 :
1676 : // Set up data for module specific menus
1677 0 : SaveInData* pModuleData = NULL;
1678 :
1679 : try
1680 : {
1681 : xCfgMgr =
1682 0 : xModuleCfgSupplier->getUIConfigurationManager( aModuleId );
1683 :
1684 : pModuleData = CreateSaveInData( xCfgMgr,
1685 : uno::Reference< css::ui::XUIConfigurationManager >(),
1686 : aModuleId,
1687 0 : sal_False );
1688 : }
1689 0 : catch ( container::NoSuchElementException& )
1690 : {
1691 : }
1692 :
1693 0 : if ( pModuleData != NULL )
1694 : {
1695 : nPos = aSaveInListBox.InsertEntry(
1696 : utl::ConfigManager::getProductName() +
1697 0 : OUString( " " ) + aModuleName );
1698 0 : aSaveInListBox.SetEntryData( nPos, pModuleData );
1699 : }
1700 :
1701 : // try to retrieve the document based ui configuration manager
1702 0 : OUString aTitle;
1703 : uno::Reference< frame::XController > xController =
1704 0 : m_xFrame->getController();
1705 0 : if ( CanConfig( aModuleId ) && xController.is() )
1706 : {
1707 0 : uno::Reference< frame::XModel > xModel( xController->getModel() );
1708 0 : if ( xModel.is() )
1709 : {
1710 : uno::Reference< css::ui::XUIConfigurationManagerSupplier >
1711 0 : xCfgSupplier( xModel, uno::UNO_QUERY );
1712 :
1713 0 : if ( xCfgSupplier.is() )
1714 : {
1715 0 : xDocCfgMgr = xCfgSupplier->getUIConfigurationManager();
1716 : }
1717 0 : aTitle = ::comphelper::DocumentInfo::getDocumentTitle( xModel );
1718 0 : }
1719 : }
1720 :
1721 0 : SaveInData* pDocData = NULL;
1722 0 : if ( xDocCfgMgr.is() )
1723 : {
1724 0 : pDocData = CreateSaveInData( xDocCfgMgr, xCfgMgr, aModuleId, sal_True );
1725 :
1726 0 : if ( !pDocData->IsReadOnly() )
1727 : {
1728 0 : nPos = aSaveInListBox.InsertEntry( aTitle );
1729 0 : aSaveInListBox.SetEntryData( nPos, pDocData );
1730 : }
1731 : }
1732 :
1733 : // if an item to select has been passed in (eg. the ResourceURL for a
1734 : // toolbar) then try to select the SaveInData entry that has that item
1735 0 : bool bURLToSelectFound = sal_False;
1736 0 : if ( !m_aURLToSelect.isEmpty() )
1737 : {
1738 0 : if ( pDocData != NULL && pDocData->HasURL( m_aURLToSelect ) )
1739 : {
1740 0 : aSaveInListBox.SelectEntryPos( nPos, sal_True );
1741 0 : pCurrentSaveInData = pDocData;
1742 0 : bURLToSelectFound = sal_True;
1743 : }
1744 0 : else if ( pModuleData->HasURL( m_aURLToSelect ) )
1745 : {
1746 0 : aSaveInListBox.SelectEntryPos( 0, sal_True );
1747 0 : pCurrentSaveInData = pModuleData;
1748 0 : bURLToSelectFound = sal_True;
1749 : }
1750 : }
1751 :
1752 0 : if ( bURLToSelectFound == sal_False )
1753 : {
1754 : // if the document has menu configuration settings select it
1755 : // it the SaveIn listbox, otherwise select the module data
1756 0 : if ( pDocData != NULL && pDocData->HasSettings() )
1757 : {
1758 0 : aSaveInListBox.SelectEntryPos( nPos, sal_True );
1759 0 : pCurrentSaveInData = pDocData;
1760 : }
1761 : else
1762 : {
1763 0 : aSaveInListBox.SelectEntryPos( 0, sal_True );
1764 0 : pCurrentSaveInData = pModuleData;
1765 : }
1766 : }
1767 :
1768 : #ifdef DBG_UTIL
1769 : DBG_ASSERT( pCurrentSaveInData, "SvxConfigPage::Reset(): no SaveInData" );
1770 : #endif
1771 :
1772 0 : if ( CanConfig( aModuleId ) )
1773 : {
1774 : // Load configuration for other open documents which have
1775 : // same module type
1776 0 : uno::Sequence< uno::Reference< frame::XFrame > > aFrameList;
1777 : try
1778 : {
1779 : uno::Reference< frame::XDesktop2 > xFramesSupplier = frame::Desktop::create(
1780 0 : xContext );
1781 :
1782 : uno::Reference< frame::XFrames > xFrames =
1783 0 : xFramesSupplier->getFrames();
1784 :
1785 0 : aFrameList = xFrames->queryFrames(
1786 0 : frame::FrameSearchFlag::ALL & ~frame::FrameSearchFlag::SELF );
1787 :
1788 : }
1789 0 : catch( const uno::Exception& )
1790 : {
1791 : DBG_UNHANDLED_EXCEPTION();
1792 : }
1793 :
1794 0 : for ( sal_Int32 i = 0; i < aFrameList.getLength(); ++i )
1795 : {
1796 0 : SaveInData* pData = NULL;
1797 0 : uno::Reference < frame::XFrame > xf = aFrameList[i];
1798 :
1799 0 : if ( xf.is() && xf != m_xFrame )
1800 : {
1801 0 : OUString aCheckId;
1802 : try{
1803 0 : aCheckId = xModuleManager->identify( xf );
1804 0 : } catch(const uno::Exception&)
1805 0 : { aCheckId = ::rtl::OUString(); }
1806 :
1807 0 : if ( aModuleId.equals( aCheckId ) )
1808 : {
1809 : // try to get the document based ui configuration manager
1810 0 : OUString aTitle2;
1811 : uno::Reference< frame::XController > xController_ =
1812 0 : xf->getController();
1813 :
1814 0 : if ( xController_.is() )
1815 : {
1816 : uno::Reference< frame::XModel > xModel(
1817 0 : xController_->getModel() );
1818 :
1819 0 : if ( xModel.is() )
1820 : {
1821 : uno::Reference<
1822 : css::ui::XUIConfigurationManagerSupplier >
1823 0 : xCfgSupplier( xModel, uno::UNO_QUERY );
1824 :
1825 0 : if ( xCfgSupplier.is() )
1826 : {
1827 : xDocCfgMgr =
1828 0 : xCfgSupplier->getUIConfigurationManager();
1829 : }
1830 0 : aTitle2 = ::comphelper::DocumentInfo::getDocumentTitle( xModel );
1831 0 : }
1832 : }
1833 :
1834 0 : if ( xDocCfgMgr.is() )
1835 : {
1836 0 : pData = CreateSaveInData( xDocCfgMgr, xCfgMgr, aModuleId, sal_True );
1837 :
1838 0 : if ( pData && !pData->IsReadOnly() )
1839 : {
1840 0 : nPos = aSaveInListBox.InsertEntry( aTitle2 );
1841 0 : aSaveInListBox.SetEntryData( nPos, pData );
1842 : }
1843 0 : }
1844 0 : }
1845 : }
1846 0 : }
1847 : }
1848 :
1849 : aSaveInListBox.SetSelectHdl(
1850 0 : LINK( this, SvxConfigPage, SelectSaveInLocation ) );
1851 :
1852 0 : bInitialised = sal_True;
1853 :
1854 0 : Init();
1855 : }
1856 : else
1857 : {
1858 0 : if ( QueryReset() == RET_YES )
1859 : {
1860 : // Reset menu configuration for currently selected SaveInData
1861 0 : GetSaveInData()->Reset();
1862 :
1863 0 : Init();
1864 : }
1865 : }
1866 0 : }
1867 :
1868 0 : ::rtl::OUString SvxConfigPage::GetFrameWithDefaultAndIdentify( uno::Reference< frame::XFrame >& _inout_rxFrame )
1869 : {
1870 0 : ::rtl::OUString sModuleID;
1871 : try
1872 : {
1873 : uno::Reference< uno::XComponentContext > xContext(
1874 0 : ::comphelper::getProcessComponentContext() );
1875 :
1876 : uno::Reference< frame::XDesktop2 > xDesktop = frame::Desktop::create(
1877 0 : xContext );
1878 :
1879 0 : if ( !_inout_rxFrame.is() )
1880 0 : _inout_rxFrame = xDesktop->getActiveFrame();
1881 :
1882 0 : if ( !_inout_rxFrame.is() )
1883 : {
1884 0 : _inout_rxFrame = xDesktop->getCurrentFrame();
1885 : }
1886 :
1887 0 : if ( !_inout_rxFrame.is() && SfxViewFrame::Current() )
1888 0 : _inout_rxFrame = SfxViewFrame::Current()->GetFrame().GetFrameInterface();
1889 :
1890 0 : if ( !_inout_rxFrame.is() )
1891 : {
1892 : SAL_WARN( "cui.customize", "SvxConfigPage::GetFrameWithDefaultAndIdentify(): no frame found!" );
1893 : return sModuleID;
1894 : }
1895 :
1896 : uno::Reference< css::frame::XModuleManager2 > xModuleManager(
1897 0 : css::frame::ModuleManager::create( xContext ) );
1898 :
1899 : try
1900 : {
1901 0 : sModuleID = xModuleManager->identify( _inout_rxFrame );
1902 : }
1903 0 : catch ( const frame::UnknownModuleException& )
1904 : {
1905 0 : }
1906 :
1907 : }
1908 0 : catch( const uno::Exception& )
1909 : {
1910 : DBG_UNHANDLED_EXCEPTION();
1911 : }
1912 :
1913 0 : return sModuleID;
1914 : }
1915 :
1916 0 : sal_Bool SvxConfigPage::FillItemSet( SfxItemSet& )
1917 : {
1918 0 : bool result = sal_False;
1919 :
1920 0 : for ( sal_uInt16 i = 0 ; i < aSaveInListBox.GetEntryCount(); ++i )
1921 : {
1922 : SaveInData* pData =
1923 0 : (SaveInData*) aSaveInListBox.GetEntryData( i );
1924 :
1925 0 : result = pData->Apply();
1926 : }
1927 0 : return result;
1928 : }
1929 :
1930 0 : void SvxConfigPage::PositionContentsListBox()
1931 : {
1932 0 : if ( aContentsListBox == NULL )
1933 : {
1934 0 : return;
1935 : }
1936 :
1937 0 : Point p, newp;
1938 0 : Size s, news;
1939 : long x, y, width, height;
1940 :
1941 : // x and width is same as aTopLevelListBox
1942 0 : x = aTopLevelListBox.GetPosPixel().X();
1943 0 : width = aTopLevelListBox.GetSizePixel().Width();
1944 :
1945 : // y is same as aAddCommandsButton
1946 0 : y = aAddCommandsButton.GetPosPixel().Y();
1947 :
1948 : // get gap between aAddCommandsButton and aContentsSeparator
1949 0 : p = aContentsSeparator.GetPosPixel();
1950 0 : s = aContentsSeparator.GetSizePixel();
1951 0 : long gap = y - ( p.Y() + s.Height() );
1952 :
1953 0 : height = aSaveInListBox.GetPosPixel().Y() - y - gap;
1954 :
1955 0 : aContentsListBox->SetPosPixel( Point( x, y ) );
1956 0 : aContentsListBox->SetSizePixel( Size( width, height ) );
1957 : }
1958 :
1959 0 : IMPL_LINK( SvxConfigPage, SelectSaveInLocation, ListBox *, pBox )
1960 : {
1961 : (void)pBox;
1962 :
1963 : pCurrentSaveInData = (SaveInData*) aSaveInListBox.GetEntryData(
1964 0 : aSaveInListBox.GetSelectEntryPos());
1965 :
1966 0 : Init();
1967 0 : return 1;
1968 : }
1969 :
1970 0 : void SvxConfigPage::ReloadTopLevelListBox( SvxConfigEntry* pToSelect )
1971 : {
1972 0 : sal_uInt16 nSelectionPos = aTopLevelListBox.GetSelectEntryPos();
1973 0 : aTopLevelListBox.Clear();
1974 :
1975 0 : if ( GetSaveInData() && GetSaveInData()->GetEntries() )
1976 : {
1977 0 : SvxEntries::const_iterator iter = GetSaveInData()->GetEntries()->begin();
1978 0 : SvxEntries::const_iterator end = GetSaveInData()->GetEntries()->end();
1979 :
1980 0 : for ( ; iter != end; ++iter )
1981 : {
1982 0 : SvxConfigEntry* pEntryData = *iter;
1983 0 : sal_uInt16 nPos = aTopLevelListBox.InsertEntry( stripHotKey( pEntryData->GetName() ) );
1984 0 : aTopLevelListBox.SetEntryData( nPos, pEntryData );
1985 :
1986 0 : if ( pEntryData == pToSelect )
1987 0 : nSelectionPos = nPos;
1988 :
1989 0 : AddSubMenusToUI( stripHotKey( pEntryData->GetName() ), pEntryData );
1990 : }
1991 : }
1992 : #ifdef DBG_UTIL
1993 : else
1994 : {
1995 : DBG_ASSERT( GetSaveInData(), "SvxConfigPage::ReloadTopLevelListBox(): no SaveInData" );
1996 : DBG_ASSERT( GetSaveInData()->GetEntries() ,
1997 : "SvxConfigPage::ReloadTopLevelListBox(): no SaveInData entries" );
1998 : }
1999 : #endif
2000 :
2001 0 : nSelectionPos = nSelectionPos < aTopLevelListBox.GetEntryCount() ?
2002 0 : nSelectionPos : aTopLevelListBox.GetEntryCount() - 1;
2003 :
2004 0 : aTopLevelListBox.SelectEntryPos( nSelectionPos, sal_True );
2005 0 : aTopLevelListBox.GetSelectHdl().Call( this );
2006 0 : }
2007 :
2008 0 : void SvxConfigPage::AddSubMenusToUI(
2009 : const String& rBaseTitle, SvxConfigEntry* pParentData )
2010 : {
2011 0 : SvxEntries::const_iterator iter = pParentData->GetEntries()->begin();
2012 0 : SvxEntries::const_iterator end = pParentData->GetEntries()->end();
2013 :
2014 0 : for ( ; iter != end; ++iter )
2015 : {
2016 0 : SvxConfigEntry* pEntryData = *iter;
2017 :
2018 0 : if ( pEntryData->IsPopup() )
2019 : {
2020 0 : OUString subMenuTitle( rBaseTitle );
2021 0 : subMenuTitle += OUString(aMenuSeparatorStr);
2022 0 : subMenuTitle += stripHotKey( pEntryData->GetName() );
2023 :
2024 0 : sal_uInt16 nPos = aTopLevelListBox.InsertEntry( subMenuTitle );
2025 0 : aTopLevelListBox.SetEntryData( nPos, pEntryData );
2026 :
2027 0 : AddSubMenusToUI( subMenuTitle, pEntryData );
2028 : }
2029 : }
2030 0 : }
2031 :
2032 0 : SvxEntries* SvxConfigPage::FindParentForChild(
2033 : SvxEntries* pRootEntries, SvxConfigEntry* pChildData )
2034 : {
2035 0 : SvxEntries::const_iterator iter = pRootEntries->begin();
2036 0 : SvxEntries::const_iterator end = pRootEntries->end();
2037 :
2038 0 : for ( ; iter != end; ++iter )
2039 : {
2040 0 : SvxConfigEntry* pEntryData = *iter;
2041 :
2042 0 : if ( pEntryData == pChildData )
2043 : {
2044 0 : return pRootEntries;
2045 : }
2046 0 : else if ( pEntryData->IsPopup() )
2047 : {
2048 : SvxEntries* result =
2049 0 : FindParentForChild( pEntryData->GetEntries(), pChildData );
2050 :
2051 0 : if ( result != NULL )
2052 : {
2053 0 : return result;
2054 : }
2055 : }
2056 : }
2057 0 : return NULL;
2058 : }
2059 :
2060 0 : SvTreeListEntry* SvxConfigPage::AddFunction(
2061 : SvTreeListEntry* pTarget, bool bFront, bool bAllowDuplicates )
2062 : {
2063 0 : String aDisplayName = pSelectorDlg->GetSelectedDisplayName();
2064 0 : String aHelpText = pSelectorDlg->GetSelectedHelpText();
2065 0 : String aURL = pSelectorDlg->GetScriptURL();
2066 :
2067 0 : if ( !aURL.Len() )
2068 : {
2069 0 : return NULL;
2070 : }
2071 :
2072 : SvxConfigEntry* pNewEntryData =
2073 0 : new SvxConfigEntry( aDisplayName, aURL, sal_False );
2074 0 : pNewEntryData->SetUserDefined( sal_True );
2075 :
2076 : // check that this function is not already in the menu
2077 0 : SvxConfigEntry* pParent = GetTopLevelSelection();
2078 :
2079 0 : SvxEntries::const_iterator iter = pParent->GetEntries()->begin();
2080 0 : SvxEntries::const_iterator end = pParent->GetEntries()->end();
2081 :
2082 0 : if ( !bAllowDuplicates )
2083 : {
2084 0 : while ( iter != end )
2085 : {
2086 0 : SvxConfigEntry *pCurEntry = *iter;
2087 :
2088 0 : if ( pCurEntry->GetCommand() == pNewEntryData->GetCommand() )
2089 : {
2090 : // asynchronous error message, because of MsgBoxes
2091 : PostUserEvent(
2092 0 : LINK( this, SvxConfigPage, AsyncInfoMsg ) );
2093 0 : return NULL;
2094 : }
2095 :
2096 0 : ++iter;
2097 : }
2098 : }
2099 :
2100 0 : return InsertEntry( pNewEntryData, pTarget, bFront );
2101 : }
2102 :
2103 0 : SvTreeListEntry* SvxConfigPage::InsertEntry(
2104 : SvxConfigEntry* pNewEntryData,
2105 : SvTreeListEntry* pTarget,
2106 : bool bFront )
2107 : {
2108 : // Grab the entries list for the currently selected menu
2109 0 : SvxEntries* pEntries = GetTopLevelSelection()->GetEntries();
2110 :
2111 0 : SvTreeListEntry* pNewEntry = NULL;
2112 : SvTreeListEntry* pCurEntry =
2113 0 : pTarget != NULL ? pTarget : aContentsListBox->GetCurEntry();
2114 :
2115 0 : if ( bFront )
2116 : {
2117 0 : pEntries->insert( pEntries->begin(), pNewEntryData );
2118 0 : pNewEntry = InsertEntryIntoUI( pNewEntryData, 0 );
2119 : }
2120 0 : else if ( pCurEntry == NULL || pCurEntry == aContentsListBox->Last() )
2121 : {
2122 0 : pEntries->push_back( pNewEntryData );
2123 0 : pNewEntry = InsertEntryIntoUI( pNewEntryData );
2124 : }
2125 : else
2126 : {
2127 : SvxConfigEntry* pEntryData =
2128 0 : (SvxConfigEntry*) pCurEntry->GetUserData();
2129 :
2130 0 : SvxEntries::iterator iter = pEntries->begin();
2131 0 : SvxEntries::const_iterator end = pEntries->end();
2132 :
2133 : // Advance the iterator to the data for currently selected entry
2134 0 : sal_uInt16 nPos = 0;
2135 0 : while (*iter != pEntryData && ++iter != end)
2136 : {
2137 0 : ++nPos;
2138 : }
2139 :
2140 : // Now step past it to the entry after the currently selected one
2141 0 : ++iter;
2142 0 : ++nPos;
2143 :
2144 : // Now add the new entry to the UI and to the parent's list
2145 0 : if ( iter != end )
2146 : {
2147 0 : pEntries->insert( iter, pNewEntryData );
2148 0 : pNewEntry = InsertEntryIntoUI( pNewEntryData, nPos );
2149 : }
2150 : }
2151 :
2152 0 : if ( pNewEntry != NULL )
2153 : {
2154 0 : aContentsListBox->Select( pNewEntry );
2155 0 : aContentsListBox->MakeVisible( pNewEntry );
2156 :
2157 0 : GetSaveInData()->SetModified( sal_True );
2158 : }
2159 :
2160 0 : return pNewEntry;
2161 : }
2162 :
2163 0 : SvTreeListEntry* SvxConfigPage::InsertEntryIntoUI(
2164 : SvxConfigEntry* pNewEntryData, sal_uLong nPos )
2165 : {
2166 0 : SvTreeListEntry* pNewEntry = NULL;
2167 :
2168 0 : if (pNewEntryData->IsSeparator())
2169 : {
2170 : pNewEntry = aContentsListBox->InsertEntry(
2171 : rtl::OUString(aSeparatorStr),
2172 0 : 0, sal_False, nPos, pNewEntryData);
2173 : }
2174 : else
2175 : {
2176 0 : OUString aName = stripHotKey( pNewEntryData->GetName() );
2177 :
2178 0 : Image aImage = GetSaveInData()->GetImage(
2179 0 : pNewEntryData->GetCommand());
2180 :
2181 0 : if ( !!aImage )
2182 : {
2183 : pNewEntry = aContentsListBox->InsertEntry(
2184 0 : aName, aImage, aImage, 0, sal_False, nPos, pNewEntryData );
2185 : }
2186 : else
2187 : {
2188 : pNewEntry = aContentsListBox->InsertEntry(
2189 0 : aName, 0, sal_False, nPos, pNewEntryData );
2190 : }
2191 :
2192 0 : if ( pNewEntryData->IsPopup() ||
2193 0 : pNewEntryData->GetStyle() & css::ui::ItemStyle::DROP_DOWN )
2194 : {
2195 : // add new popup painter, it gets destructed by the entry
2196 : pNewEntry->ReplaceItem(
2197 0 : new PopupPainter( pNewEntry, aName ),
2198 0 : pNewEntry->ItemCount() - 1 );
2199 0 : }
2200 : }
2201 :
2202 0 : return pNewEntry;
2203 : }
2204 :
2205 0 : IMPL_LINK( SvxConfigPage, AsyncInfoMsg, String*, pMsg )
2206 : {
2207 : (void)pMsg;
2208 :
2209 : // Asynchronous msg because of D&D
2210 0 : InfoBox( this, CUI_RES(
2211 0 : IBX_MNUCFG_ALREADY_INCLUDED ) ).Execute();
2212 :
2213 0 : return 0;
2214 : }
2215 :
2216 0 : IMPL_LINK( SvxConfigPage, MoveHdl, Button *, pButton )
2217 : {
2218 0 : MoveEntry( pButton == &aMoveUpButton );
2219 0 : return 0;
2220 : }
2221 :
2222 0 : void SvxConfigPage::MoveEntry( bool bMoveUp )
2223 : {
2224 0 : SvTreeListEntry *pSourceEntry = aContentsListBox->FirstSelected();
2225 0 : SvTreeListEntry *pTargetEntry = NULL;
2226 0 : SvTreeListEntry *pToSelect = NULL;
2227 :
2228 0 : if ( !pSourceEntry )
2229 : {
2230 0 : return;
2231 : }
2232 :
2233 0 : if ( bMoveUp )
2234 : {
2235 : // Move Up is just a Move Down with the source and target reversed
2236 0 : pTargetEntry = pSourceEntry;
2237 0 : pSourceEntry = aContentsListBox->PrevSibling( pTargetEntry );
2238 0 : pToSelect = pTargetEntry;
2239 : }
2240 : else
2241 : {
2242 0 : pTargetEntry = aContentsListBox->NextSibling( pSourceEntry );
2243 0 : pToSelect = pSourceEntry;
2244 : }
2245 :
2246 0 : if ( MoveEntryData( pSourceEntry, pTargetEntry ) )
2247 : {
2248 0 : aContentsListBox->GetModel()->Move( pSourceEntry, pTargetEntry );
2249 0 : aContentsListBox->Select( pToSelect );
2250 0 : aContentsListBox->MakeVisible( pToSelect );
2251 :
2252 0 : UpdateButtonStates();
2253 : }
2254 : }
2255 :
2256 0 : bool SvxConfigPage::MoveEntryData(
2257 : SvTreeListEntry* pSourceEntry, SvTreeListEntry* pTargetEntry )
2258 : {
2259 : //modified by shizhoubo for issue53677
2260 0 : if ( NULL == pSourceEntry || NULL == pTargetEntry )
2261 : {
2262 0 : return sal_False;
2263 : }
2264 :
2265 : // Grab the entries list for the currently selected menu
2266 0 : SvxEntries* pEntries = GetTopLevelSelection()->GetEntries();
2267 :
2268 : SvxConfigEntry* pSourceData =
2269 0 : (SvxConfigEntry*) pSourceEntry->GetUserData();
2270 :
2271 0 : if ( pTargetEntry == NULL )
2272 : {
2273 0 : RemoveEntry( pEntries, pSourceData );
2274 : pEntries->insert(
2275 0 : pEntries->begin(), pSourceData );
2276 :
2277 0 : GetSaveInData()->SetModified( sal_True );
2278 :
2279 0 : return sal_True;
2280 : }
2281 : else
2282 : {
2283 : SvxConfigEntry* pTargetData =
2284 0 : (SvxConfigEntry*) pTargetEntry->GetUserData();
2285 :
2286 0 : if ( pSourceData != NULL && pTargetData != NULL )
2287 : {
2288 : // remove the source entry from our list
2289 0 : RemoveEntry( pEntries, pSourceData );
2290 :
2291 0 : SvxEntries::iterator iter = pEntries->begin();
2292 0 : SvxEntries::const_iterator end = pEntries->end();
2293 :
2294 : // advance the iterator to the position of the target entry
2295 0 : while (*iter != pTargetData && ++iter != end) ;
2296 :
2297 : // insert the source entry at the position after the target
2298 0 : pEntries->insert( ++iter, pSourceData );
2299 :
2300 0 : GetSaveInData()->SetModified( sal_True );
2301 :
2302 0 : return sal_True;
2303 : }
2304 : }
2305 :
2306 0 : return sal_False;
2307 : }
2308 :
2309 0 : SvxMenuConfigPage::SvxMenuConfigPage(
2310 : Window *pParent, const SfxItemSet& rSet )
2311 : :
2312 0 : SvxConfigPage( pParent, rSet )
2313 : {
2314 0 : aContentsListBox = new SvxMenuEntriesListBox( this, CUI_RES( BOX_ENTRIES ) );
2315 0 : FreeResource();
2316 :
2317 0 : PositionContentsListBox();
2318 0 : aContentsListBox->SetZOrder( &aAddCommandsButton, WINDOW_ZORDER_BEFOR );
2319 :
2320 : aTopLevelListBox.SetSelectHdl(
2321 0 : LINK( this, SvxMenuConfigPage, SelectMenu ) );
2322 :
2323 : aContentsListBox->SetSelectHdl(
2324 0 : LINK( this, SvxMenuConfigPage, SelectMenuEntry ) );
2325 :
2326 0 : aMoveUpButton.SetClickHdl ( LINK( this, SvxConfigPage, MoveHdl) );
2327 0 : aMoveDownButton.SetClickHdl ( LINK( this, SvxConfigPage, MoveHdl) );
2328 :
2329 : aNewTopLevelButton.SetClickHdl (
2330 0 : LINK( this, SvxMenuConfigPage, NewMenuHdl ) );
2331 :
2332 : aAddCommandsButton.SetClickHdl (
2333 0 : LINK( this, SvxMenuConfigPage, AddCommandsHdl ) );
2334 :
2335 0 : PopupMenu* pMenu = new PopupMenu( CUI_RES( MODIFY_MENU ) );
2336 : pMenu->SetMenuFlags(
2337 0 : pMenu->GetMenuFlags() | MENU_FLAG_ALWAYSSHOWDISABLEDENTRIES );
2338 :
2339 0 : aModifyTopLevelButton.SetPopupMenu( pMenu );
2340 : aModifyTopLevelButton.SetSelectHdl(
2341 0 : LINK( this, SvxMenuConfigPage, MenuSelectHdl ) );
2342 :
2343 0 : PopupMenu* pEntry = new PopupMenu( CUI_RES( MODIFY_ENTRY ) );
2344 : pEntry->SetMenuFlags(
2345 0 : pEntry->GetMenuFlags() | MENU_FLAG_ALWAYSSHOWDISABLEDENTRIES );
2346 :
2347 0 : aModifyCommandButton.SetPopupMenu( pEntry );
2348 : aModifyCommandButton.SetSelectHdl(
2349 0 : LINK( this, SvxMenuConfigPage, EntrySelectHdl ) );
2350 0 : }
2351 :
2352 : // Populates the Menu combo box
2353 0 : void SvxMenuConfigPage::Init()
2354 : {
2355 : // ensure that the UI is cleared before populating it
2356 0 : aTopLevelListBox.Clear();
2357 0 : aContentsListBox->Clear();
2358 :
2359 0 : ReloadTopLevelListBox();
2360 :
2361 0 : aTopLevelListBox.SelectEntryPos(0, sal_True);
2362 0 : aTopLevelListBox.GetSelectHdl().Call(this);
2363 0 : }
2364 :
2365 0 : SvxMenuConfigPage::~SvxMenuConfigPage()
2366 : {
2367 0 : for ( sal_uInt16 i = 0 ; i < aSaveInListBox.GetEntryCount(); ++i )
2368 : {
2369 : MenuSaveInData* pData =
2370 0 : (MenuSaveInData*) aSaveInListBox.GetEntryData( i );
2371 :
2372 0 : delete pData;
2373 : }
2374 :
2375 0 : if ( pSelectorDlg != NULL )
2376 : {
2377 0 : delete pSelectorDlg;
2378 : }
2379 :
2380 0 : delete aContentsListBox;
2381 0 : }
2382 :
2383 0 : IMPL_LINK( SvxMenuConfigPage, SelectMenuEntry, Control *, pBox )
2384 : {
2385 : (void)pBox;
2386 :
2387 0 : UpdateButtonStates();
2388 :
2389 0 : return 1;
2390 : }
2391 :
2392 0 : void SvxMenuConfigPage::UpdateButtonStates()
2393 : {
2394 0 : PopupMenu* pPopup = aModifyCommandButton.GetPopupMenu();
2395 :
2396 : // Disable Up and Down buttons depending on current selection
2397 0 : SvTreeListEntry* selection = aContentsListBox->GetCurEntry();
2398 :
2399 0 : if ( aContentsListBox->GetEntryCount() == 0 || selection == NULL )
2400 : {
2401 0 : aMoveUpButton.Enable( sal_False );
2402 0 : aMoveDownButton.Enable( sal_False );
2403 :
2404 0 : pPopup->EnableItem( ID_BEGIN_GROUP, sal_True );
2405 0 : pPopup->EnableItem( ID_RENAME, sal_False );
2406 0 : pPopup->EnableItem( ID_DELETE, sal_False );
2407 :
2408 0 : aDescriptionField.Clear();
2409 :
2410 0 : return;
2411 : }
2412 :
2413 0 : SvTreeListEntry* first = aContentsListBox->First();
2414 0 : SvTreeListEntry* last = aContentsListBox->Last();
2415 :
2416 0 : aMoveUpButton.Enable( selection != first );
2417 0 : aMoveDownButton.Enable( selection != last );
2418 :
2419 : SvxConfigEntry* pEntryData =
2420 0 : (SvxConfigEntry*) selection->GetUserData();
2421 :
2422 0 : if ( pEntryData->IsSeparator() )
2423 : {
2424 0 : pPopup->EnableItem( ID_DELETE, sal_True );
2425 0 : pPopup->EnableItem( ID_BEGIN_GROUP, sal_False );
2426 0 : pPopup->EnableItem( ID_RENAME, sal_False );
2427 :
2428 0 : aDescriptionField.Clear();
2429 : }
2430 : else
2431 : {
2432 0 : pPopup->EnableItem( ID_BEGIN_GROUP, sal_True );
2433 0 : pPopup->EnableItem( ID_DELETE, sal_True );
2434 0 : pPopup->EnableItem( ID_RENAME, sal_True );
2435 :
2436 0 : aDescriptionField.SetNewText( pEntryData->GetHelpText() );
2437 : }
2438 : }
2439 :
2440 0 : void SvxMenuConfigPage::DeleteSelectedTopLevel()
2441 : {
2442 0 : SvxConfigEntry* pMenuData = GetTopLevelSelection();
2443 :
2444 : SvxEntries* pParentEntries =
2445 0 : FindParentForChild( GetSaveInData()->GetEntries(), pMenuData );
2446 :
2447 0 : RemoveEntry( pParentEntries, pMenuData );
2448 0 : delete pMenuData;
2449 :
2450 0 : ReloadTopLevelListBox();
2451 :
2452 0 : GetSaveInData()->SetModified( sal_True );
2453 0 : }
2454 :
2455 0 : bool SvxMenuConfigPage::DeleteSelectedContent()
2456 : {
2457 0 : SvTreeListEntry *pActEntry = aContentsListBox->FirstSelected();
2458 :
2459 0 : if ( pActEntry != NULL )
2460 : {
2461 : // get currently selected menu entry
2462 : SvxConfigEntry* pMenuEntry =
2463 0 : (SvxConfigEntry*) pActEntry->GetUserData();
2464 :
2465 : // get currently selected menu
2466 0 : SvxConfigEntry* pMenu = GetTopLevelSelection();
2467 :
2468 : // remove menu entry from the list for this menu
2469 0 : RemoveEntry( pMenu->GetEntries(), pMenuEntry );
2470 :
2471 : // remove menu entry from UI
2472 0 : aContentsListBox->GetModel()->Remove( pActEntry );
2473 :
2474 : // if this is a submenu entry, redraw the menus list box
2475 0 : if ( pMenuEntry->IsPopup() )
2476 : {
2477 0 : ReloadTopLevelListBox();
2478 : }
2479 :
2480 : // delete data for menu entry
2481 0 : delete pMenuEntry;
2482 :
2483 0 : GetSaveInData()->SetModified( sal_True );
2484 :
2485 0 : return sal_True;
2486 : }
2487 0 : return sal_False;
2488 : }
2489 :
2490 0 : short SvxMenuConfigPage::QueryReset()
2491 : {
2492 : String msg =
2493 0 : String( CUI_RES( RID_SVXSTR_CONFIRM_MENU_RESET ) );
2494 :
2495 : String saveInName = aSaveInListBox.GetEntry(
2496 0 : aSaveInListBox.GetSelectEntryPos() );
2497 :
2498 0 : OUString label = replaceSaveInName( msg, saveInName );
2499 :
2500 0 : QueryBox qbox( this, WB_YES_NO, label );
2501 :
2502 0 : return qbox.Execute();
2503 : }
2504 :
2505 0 : IMPL_LINK( SvxMenuConfigPage, SelectMenu, ListBox *, pBox )
2506 : {
2507 : (void)pBox;
2508 :
2509 0 : aContentsListBox->Clear();
2510 :
2511 0 : SvxConfigEntry* pMenuData = GetTopLevelSelection();
2512 :
2513 0 : PopupMenu* pPopup = aModifyTopLevelButton.GetPopupMenu();
2514 0 : if ( pMenuData )
2515 : {
2516 0 : pPopup->EnableItem( ID_DELETE, pMenuData->IsDeletable() );
2517 0 : pPopup->EnableItem( ID_RENAME, pMenuData->IsRenamable() );
2518 0 : pPopup->EnableItem( ID_MOVE, pMenuData->IsMovable() );
2519 :
2520 0 : SvxEntries* pEntries = pMenuData->GetEntries();
2521 0 : SvxEntries::const_iterator iter = pEntries->begin();
2522 :
2523 0 : for ( ; iter != pEntries->end(); ++iter )
2524 : {
2525 0 : SvxConfigEntry* pEntry = *iter;
2526 0 : InsertEntryIntoUI( pEntry );
2527 : }
2528 : }
2529 :
2530 0 : UpdateButtonStates();
2531 :
2532 0 : return 0;
2533 : }
2534 :
2535 0 : IMPL_LINK( SvxMenuConfigPage, MenuSelectHdl, MenuButton *, pButton )
2536 : {
2537 0 : switch( pButton->GetCurItemId() )
2538 : {
2539 : case ID_DELETE:
2540 : {
2541 0 : DeleteSelectedTopLevel();
2542 0 : break;
2543 : }
2544 : case ID_RENAME:
2545 : {
2546 0 : SvxConfigEntry* pMenuData = GetTopLevelSelection();
2547 :
2548 0 : String aNewName( stripHotKey( pMenuData->GetName() ) );
2549 0 : String aDesc = CUI_RESSTR( RID_SVXSTR_LABEL_NEW_NAME );
2550 :
2551 0 : SvxNameDialog* pNameDialog = new SvxNameDialog( this, aNewName, aDesc );
2552 0 : pNameDialog->SetHelpId( HID_SVX_CONFIG_RENAME_MENU );
2553 0 : pNameDialog->SetText( CUI_RESSTR( RID_SVXSTR_RENAME_MENU ) );
2554 :
2555 0 : bool ret = pNameDialog->Execute();
2556 :
2557 0 : if ( ret == RET_OK ) {
2558 0 : pNameDialog->GetName( aNewName );
2559 0 : pMenuData->SetName( aNewName );
2560 :
2561 0 : ReloadTopLevelListBox();
2562 :
2563 0 : GetSaveInData()->SetModified( sal_True );
2564 : }
2565 :
2566 : // #i68101# Memory leak (!)
2567 0 : delete pNameDialog;
2568 :
2569 0 : break;
2570 : }
2571 : case ID_MOVE:
2572 : {
2573 0 : SvxConfigEntry* pMenuData = GetTopLevelSelection();
2574 :
2575 : SvxMainMenuOrganizerDialog* pDialog =
2576 : new SvxMainMenuOrganizerDialog( this,
2577 0 : GetSaveInData()->GetEntries(), pMenuData );
2578 :
2579 0 : bool ret = pDialog->Execute();
2580 :
2581 0 : if ( ret == RET_OK )
2582 : {
2583 0 : GetSaveInData()->SetEntries( pDialog->GetEntries() );
2584 :
2585 0 : ReloadTopLevelListBox( pDialog->GetSelectedEntry() );
2586 :
2587 0 : GetSaveInData()->SetModified( sal_True );
2588 : }
2589 :
2590 0 : delete pDialog;
2591 :
2592 0 : break;
2593 : }
2594 : default:
2595 0 : return sal_False;
2596 : }
2597 0 : return sal_True;
2598 : }
2599 :
2600 0 : IMPL_LINK( SvxMenuConfigPage, EntrySelectHdl, MenuButton *, pButton )
2601 : {
2602 0 : switch( pButton->GetCurItemId() )
2603 : {
2604 : case ID_ADD_SUBMENU:
2605 : {
2606 0 : String aNewName;
2607 0 : String aDesc = CUI_RESSTR( RID_SVXSTR_SUBMENU_NAME );
2608 :
2609 0 : SvxNameDialog* pNameDialog = new SvxNameDialog( this, aNewName, aDesc );
2610 0 : pNameDialog->SetHelpId( HID_SVX_CONFIG_NAME_SUBMENU );
2611 0 : pNameDialog->SetText( CUI_RESSTR( RID_SVXSTR_ADD_SUBMENU ) );
2612 :
2613 0 : bool ret = pNameDialog->Execute();
2614 :
2615 0 : if ( ret == RET_OK ) {
2616 0 : pNameDialog->GetName(aNewName);
2617 :
2618 : SvxConfigEntry* pNewEntryData =
2619 0 : new SvxConfigEntry( aNewName, aNewName, sal_True );
2620 0 : pNewEntryData->SetUserDefined( sal_True );
2621 :
2622 0 : InsertEntry( pNewEntryData );
2623 :
2624 0 : ReloadTopLevelListBox();
2625 :
2626 0 : GetSaveInData()->SetModified( sal_True );
2627 : }
2628 :
2629 0 : delete pNameDialog;
2630 :
2631 0 : break;
2632 : }
2633 : case ID_BEGIN_GROUP:
2634 : {
2635 0 : SvxConfigEntry* pNewEntryData = new SvxConfigEntry;
2636 0 : pNewEntryData->SetUserDefined( sal_True );
2637 0 : InsertEntry( pNewEntryData );
2638 :
2639 0 : break;
2640 : }
2641 : case ID_DELETE:
2642 : {
2643 0 : DeleteSelectedContent();
2644 0 : break;
2645 : }
2646 : case ID_RENAME:
2647 : {
2648 0 : SvTreeListEntry* pActEntry = aContentsListBox->GetCurEntry();
2649 : SvxConfigEntry* pEntry =
2650 0 : (SvxConfigEntry*) pActEntry->GetUserData();
2651 :
2652 0 : String aNewName( stripHotKey( pEntry->GetName() ) );
2653 0 : String aDesc = CUI_RESSTR( RID_SVXSTR_LABEL_NEW_NAME );
2654 :
2655 0 : SvxNameDialog* pNameDialog = new SvxNameDialog( this, aNewName, aDesc );
2656 0 : pNameDialog->SetHelpId( HID_SVX_CONFIG_RENAME_MENU_ITEM );
2657 0 : pNameDialog->SetText( CUI_RESSTR( RID_SVXSTR_RENAME_MENU ) );
2658 :
2659 0 : bool ret = pNameDialog->Execute();
2660 :
2661 0 : if ( ret == RET_OK ) {
2662 0 : pNameDialog->GetName(aNewName);
2663 :
2664 0 : pEntry->SetName( aNewName );
2665 0 : aContentsListBox->SetEntryText( pActEntry, aNewName );
2666 :
2667 0 : GetSaveInData()->SetModified( sal_True );
2668 : }
2669 :
2670 0 : delete pNameDialog;
2671 :
2672 0 : break;
2673 : }
2674 : default:
2675 : {
2676 0 : return sal_False;
2677 : }
2678 : }
2679 :
2680 0 : if ( GetSaveInData()->IsModified() )
2681 : {
2682 0 : UpdateButtonStates();
2683 : }
2684 :
2685 0 : return sal_True;
2686 : }
2687 :
2688 0 : IMPL_LINK( SvxMenuConfigPage, AddFunctionHdl,
2689 : SvxScriptSelectorDialog *, pDialog )
2690 : {
2691 : (void)pDialog;
2692 :
2693 0 : AddFunction();
2694 :
2695 0 : return 0;
2696 : }
2697 :
2698 0 : IMPL_LINK( SvxMenuConfigPage, NewMenuHdl, Button *, pButton )
2699 : {
2700 : (void)pButton;
2701 :
2702 : SvxMainMenuOrganizerDialog* pDialog =
2703 : new SvxMainMenuOrganizerDialog( 0,
2704 0 : GetSaveInData()->GetEntries(), NULL, sal_True );
2705 :
2706 0 : bool ret = pDialog->Execute();
2707 :
2708 0 : if ( ret == RET_OK )
2709 : {
2710 0 : GetSaveInData()->SetEntries( pDialog->GetEntries() );
2711 0 : ReloadTopLevelListBox( pDialog->GetSelectedEntry() );
2712 0 : GetSaveInData()->SetModified( sal_True );
2713 : }
2714 :
2715 0 : delete pDialog;
2716 :
2717 0 : return 0;
2718 : }
2719 :
2720 0 : IMPL_LINK( SvxMenuConfigPage, AddCommandsHdl, Button *, pButton )
2721 : {
2722 : (void)pButton;
2723 :
2724 0 : if ( pSelectorDlg == NULL )
2725 : {
2726 : // Create Script Selector which also shows builtin commands
2727 0 : pSelectorDlg = new SvxScriptSelectorDialog( this, sal_True, m_xFrame );
2728 :
2729 : pSelectorDlg->SetAddHdl(
2730 0 : LINK( this, SvxMenuConfigPage, AddFunctionHdl ) );
2731 :
2732 : pSelectorDlg->SetDialogDescription( String(
2733 0 : CUI_RES( RID_SVXSTR_MENU_ADDCOMMANDS_DESCRIPTION ) ) );
2734 : }
2735 :
2736 : // Position the Script Selector over the Add button so it is
2737 : // beside the menu contents list and does not obscure it
2738 0 : pSelectorDlg->SetPosPixel( aAddCommandsButton.GetPosPixel() );
2739 :
2740 : pSelectorDlg->SetImageProvider(
2741 0 : static_cast< ImageProvider* >( GetSaveInData() ) );
2742 :
2743 0 : pSelectorDlg->Show();
2744 0 : return 1;
2745 : }
2746 :
2747 0 : SaveInData* SvxMenuConfigPage::CreateSaveInData(
2748 : const uno::Reference< css::ui::XUIConfigurationManager >& xCfgMgr,
2749 : const uno::Reference< css::ui::XUIConfigurationManager >& xParentCfgMgr,
2750 : const OUString& aModuleId,
2751 : bool bDocConfig )
2752 : {
2753 : return static_cast< SaveInData* >(
2754 0 : new MenuSaveInData( xCfgMgr, xParentCfgMgr, aModuleId, bDocConfig ));
2755 : }
2756 :
2757 0 : SvxMainMenuOrganizerDialog::SvxMainMenuOrganizerDialog(
2758 : Window* pParent, SvxEntries* entries,
2759 : SvxConfigEntry* selection, bool bCreateMenu )
2760 : :
2761 0 : ModalDialog( pParent, CUI_RES( MD_MENU_ORGANISER ) ),
2762 0 : aMenuNameText( this, CUI_RES( TXT_MENU_NAME ) ),
2763 0 : aMenuNameEdit( this, CUI_RES( EDIT_MENU_NAME ) ),
2764 0 : aMenuListText( this, CUI_RES( TXT_MENU ) ),
2765 0 : aMenuListBox( this, CUI_RES( BOX_MAIN_MENUS ) ),
2766 0 : aMoveUpButton( this, CUI_RES( BTN_MENU_UP ) ),
2767 0 : aMoveDownButton( this, CUI_RES( BTN_MENU_DOWN ) ),
2768 0 : aOKButton( this, CUI_RES( BTN_MENU_ADD ) ),
2769 0 : aCloseButton( this, CUI_RES( BTN_MENU_CLOSE ) ),
2770 0 : aHelpButton( this, CUI_RES( BTN_MENU_HELP ) ),
2771 0 : bModified( sal_False )
2772 : {
2773 0 : FreeResource();
2774 :
2775 : // Copy the entries list passed in
2776 0 : if ( entries != NULL )
2777 : {
2778 : SvxConfigEntry* pEntry;
2779 : SvTreeListEntry* pLBEntry;
2780 :
2781 0 : pEntries = new SvxEntries();
2782 0 : SvxEntries::const_iterator iter = entries->begin();
2783 :
2784 0 : while ( iter != entries->end() )
2785 : {
2786 0 : pEntry = *iter;
2787 : pLBEntry =
2788 0 : aMenuListBox.InsertEntry( stripHotKey( pEntry->GetName() ) );
2789 0 : pLBEntry->SetUserData( pEntry );
2790 0 : pEntries->push_back( pEntry );
2791 :
2792 0 : if ( pEntry == selection )
2793 : {
2794 0 : aMenuListBox.Select( pLBEntry );
2795 : }
2796 0 : ++iter;
2797 : }
2798 : }
2799 :
2800 0 : if ( bCreateMenu )
2801 : {
2802 : // Generate custom name for new menu
2803 : String prefix =
2804 0 : String( CUI_RES( RID_SVXSTR_NEW_MENU ) );
2805 :
2806 0 : OUString newname = generateCustomName( prefix, entries );
2807 0 : OUString newurl = generateCustomMenuURL( pEntries );
2808 :
2809 : SvxConfigEntry* pNewEntryData =
2810 0 : new SvxConfigEntry( newname, newurl, sal_True );
2811 0 : pNewEntryData->SetUserDefined( sal_True );
2812 0 : pNewEntryData->SetMain( sal_True );
2813 :
2814 : pNewMenuEntry =
2815 0 : aMenuListBox.InsertEntry( stripHotKey( pNewEntryData->GetName() ) );
2816 0 : aMenuListBox.Select( pNewMenuEntry );
2817 :
2818 0 : pNewMenuEntry->SetUserData( pNewEntryData );
2819 :
2820 0 : pEntries->push_back( pNewEntryData );
2821 :
2822 0 : aMenuNameEdit.SetText( newname );
2823 : aMenuNameEdit.SetModifyHdl(
2824 0 : LINK( this, SvxMainMenuOrganizerDialog, ModifyHdl ) );
2825 : }
2826 : else
2827 : {
2828 0 : Point p, newp;
2829 0 : Size s, news;
2830 :
2831 : // get offset to bottom of name textfield from top of dialog
2832 0 : p = aMenuNameEdit.GetPosPixel();
2833 0 : s = aMenuNameEdit.GetSizePixel();
2834 0 : long offset = p.Y() + s.Height();
2835 :
2836 : // reposition menu list and label
2837 0 : aMenuListText.SetPosPixel( aMenuNameText.GetPosPixel() );
2838 0 : aMenuListBox.SetPosPixel( aMenuNameEdit.GetPosPixel() );
2839 :
2840 : // reposition up and down buttons
2841 0 : p = aMoveUpButton.GetPosPixel();
2842 0 : newp = Point( p.X(), p.Y() - offset );
2843 0 : aMoveUpButton.SetPosPixel( newp );
2844 :
2845 0 : p = aMoveDownButton.GetPosPixel();
2846 0 : newp = Point( p.X(), p.Y() - offset );
2847 0 : aMoveDownButton.SetPosPixel( newp );
2848 :
2849 : // change size of dialog
2850 0 : s = GetSizePixel();
2851 0 : news = Size( s.Width(), s.Height() - offset );
2852 0 : SetSizePixel( news );
2853 :
2854 : // hide name label and textfield
2855 0 : aMenuNameText.Hide();
2856 0 : aMenuNameEdit.Hide();
2857 :
2858 : // change the title
2859 0 : SetText( CUI_RES( RID_SVXSTR_MOVE_MENU ) );
2860 : }
2861 :
2862 : aMenuListBox.SetSelectHdl(
2863 0 : LINK( this, SvxMainMenuOrganizerDialog, SelectHdl ) );
2864 :
2865 : aMoveUpButton.SetClickHdl (
2866 0 : LINK( this, SvxMainMenuOrganizerDialog, MoveHdl) );
2867 : aMoveDownButton.SetClickHdl (
2868 0 : LINK( this, SvxMainMenuOrganizerDialog, MoveHdl) );
2869 :
2870 0 : aMoveUpButton.SetAccessibleName(String(CUI_RES(BUTTON_STR_UP)));
2871 0 : aMoveDownButton.SetAccessibleName(String(CUI_RES(BUTTON_STR_DOWN)));
2872 0 : }
2873 :
2874 0 : IMPL_LINK(SvxMainMenuOrganizerDialog, ModifyHdl, Edit*, pEdit)
2875 : {
2876 : (void)pEdit;
2877 :
2878 : // if the Edit control is empty do not change the name
2879 0 : if ( aMenuNameEdit.GetText().Equals( String() ) )
2880 : {
2881 0 : return 0;
2882 : }
2883 :
2884 : SvxConfigEntry* pNewEntryData =
2885 0 : (SvxConfigEntry*) pNewMenuEntry->GetUserData();
2886 :
2887 0 : pNewEntryData->SetName( aMenuNameEdit.GetText() );
2888 :
2889 0 : aMenuListBox.SetEntryText( pNewMenuEntry, pNewEntryData->GetName() );
2890 :
2891 0 : return 0;
2892 : }
2893 :
2894 0 : SvxMainMenuOrganizerDialog::~SvxMainMenuOrganizerDialog()
2895 : {
2896 0 : }
2897 :
2898 0 : IMPL_LINK( SvxMainMenuOrganizerDialog, SelectHdl, Control*, pCtrl )
2899 : {
2900 : (void)pCtrl;
2901 0 : UpdateButtonStates();
2902 0 : return 1;
2903 : }
2904 :
2905 0 : void SvxMainMenuOrganizerDialog::UpdateButtonStates()
2906 : {
2907 : // Disable Up and Down buttons depending on current selection
2908 0 : SvTreeListEntry* selection = aMenuListBox.GetCurEntry();
2909 0 : SvTreeListEntry* first = aMenuListBox.First();
2910 0 : SvTreeListEntry* last = aMenuListBox.Last();
2911 :
2912 0 : aMoveUpButton.Enable( selection != first );
2913 0 : aMoveDownButton.Enable( selection != last );
2914 0 : }
2915 :
2916 0 : IMPL_LINK( SvxMainMenuOrganizerDialog, MoveHdl, Button *, pButton )
2917 : {
2918 0 : SvTreeListEntry *pSourceEntry = aMenuListBox.FirstSelected();
2919 0 : SvTreeListEntry *pTargetEntry = NULL;
2920 :
2921 0 : if ( !pSourceEntry )
2922 : {
2923 0 : return 0;
2924 : }
2925 :
2926 0 : if ( pButton == &aMoveDownButton )
2927 : {
2928 0 : pTargetEntry = aMenuListBox.NextSibling( pSourceEntry );
2929 : }
2930 0 : else if ( pButton == &aMoveUpButton )
2931 : {
2932 : // Move Up is just a Move Down with the source and target reversed
2933 0 : pTargetEntry = pSourceEntry;
2934 0 : pSourceEntry = aMenuListBox.PrevSibling( pTargetEntry );
2935 : }
2936 :
2937 0 : if ( pSourceEntry != NULL && pTargetEntry != NULL )
2938 : {
2939 : SvxConfigEntry* pSourceData =
2940 0 : (SvxConfigEntry*) pSourceEntry->GetUserData();
2941 : SvxConfigEntry* pTargetData =
2942 0 : (SvxConfigEntry*) pTargetEntry->GetUserData();
2943 :
2944 0 : SvxEntries::iterator iter1 = GetEntries()->begin();
2945 0 : SvxEntries::iterator iter2 = GetEntries()->begin();
2946 0 : SvxEntries::const_iterator end = GetEntries()->end();
2947 :
2948 : // Advance the iterators to the positions of the source and target
2949 0 : while (*iter1 != pSourceData && ++iter1 != end) ;
2950 0 : while (*iter2 != pTargetData && ++iter2 != end) ;
2951 :
2952 : // Now swap the entries in the menu list and in the UI
2953 0 : if ( iter1 != end && iter2 != end )
2954 : {
2955 0 : std::swap( *iter1, *iter2 );
2956 0 : aMenuListBox.GetModel()->Move( pSourceEntry, pTargetEntry );
2957 0 : aMenuListBox.MakeVisible( pSourceEntry );
2958 :
2959 0 : bModified = sal_True;
2960 : }
2961 : }
2962 :
2963 0 : if ( bModified )
2964 : {
2965 0 : UpdateButtonStates();
2966 : }
2967 :
2968 0 : return 0;
2969 : }
2970 :
2971 0 : SvxEntries* SvxMainMenuOrganizerDialog::GetEntries()
2972 : {
2973 0 : return pEntries;
2974 : }
2975 :
2976 0 : SvxConfigEntry* SvxMainMenuOrganizerDialog::GetSelectedEntry()
2977 : {
2978 0 : return (SvxConfigEntry*)aMenuListBox.FirstSelected()->GetUserData();
2979 : }
2980 :
2981 : const OUString&
2982 0 : SvxConfigEntry::GetHelpText()
2983 : {
2984 0 : if ( aHelpText.isEmpty() )
2985 : {
2986 0 : if ( !aCommand.isEmpty() )
2987 : {
2988 0 : aHelpText = Application::GetHelp()->GetHelpText( aCommand, NULL );
2989 : }
2990 : }
2991 :
2992 0 : return aHelpText;
2993 : }
2994 :
2995 0 : SvxConfigEntry::SvxConfigEntry( const OUString& rDisplayName,
2996 : const OUString& rCommandURL, bool bPopup, bool bParentData )
2997 : : nId( 1 )
2998 : , aLabel(rDisplayName)
2999 : , aCommand(rCommandURL)
3000 : , bPopUp(bPopup)
3001 : , bStrEdited( sal_False )
3002 : , bIsUserDefined( sal_False )
3003 : , bIsMain( sal_False )
3004 : , bIsParentData( bParentData )
3005 : , bIsVisible( sal_True )
3006 : , nStyle( 0 )
3007 0 : , pEntries( 0 )
3008 : {
3009 0 : if (bPopUp)
3010 : {
3011 0 : pEntries = new SvxEntries();
3012 : }
3013 0 : }
3014 :
3015 0 : SvxConfigEntry::~SvxConfigEntry()
3016 : {
3017 0 : if ( pEntries != NULL )
3018 : {
3019 0 : SvxEntries::const_iterator iter = pEntries->begin();
3020 :
3021 0 : for ( ; iter != pEntries->end(); ++iter )
3022 : {
3023 0 : delete *iter;
3024 : }
3025 0 : delete pEntries;
3026 : }
3027 0 : }
3028 :
3029 0 : bool SvxConfigEntry::IsMovable()
3030 : {
3031 0 : if ( IsPopup() && !IsMain() )
3032 : {
3033 0 : return sal_False;
3034 : }
3035 0 : return sal_True;
3036 : }
3037 :
3038 0 : bool SvxConfigEntry::IsDeletable()
3039 : {
3040 0 : if ( IsMain() && !IsUserDefined() )
3041 : {
3042 0 : return sal_False;
3043 : }
3044 0 : return sal_True;
3045 : }
3046 :
3047 0 : bool SvxConfigEntry::IsRenamable()
3048 : {
3049 0 : if ( IsMain() && !IsUserDefined() )
3050 : {
3051 0 : return sal_False;
3052 : }
3053 0 : return sal_True;
3054 : }
3055 :
3056 0 : SvxToolbarConfigPage::SvxToolbarConfigPage(
3057 : Window *pParent, const SfxItemSet& rSet )
3058 : :
3059 0 : SvxConfigPage( pParent, rSet )
3060 : {
3061 0 : SetHelpId( HID_SVX_CONFIG_TOOLBAR );
3062 :
3063 0 : aContentsListBox = new SvxToolbarEntriesListBox(this, CUI_RES(BOX_ENTRIES));
3064 0 : FreeResource();
3065 0 : PositionContentsListBox();
3066 0 : aContentsListBox->SetZOrder( &aAddCommandsButton, WINDOW_ZORDER_BEFOR );
3067 :
3068 0 : aContentsListBox->SetHelpId( HID_SVX_CONFIG_TOOLBAR_CONTENTS );
3069 0 : aNewTopLevelButton.SetHelpId( HID_SVX_NEW_TOOLBAR );
3070 0 : aModifyTopLevelButton.SetHelpId( HID_SVX_MODIFY_TOOLBAR );
3071 0 : aAddCommandsButton.SetHelpId( HID_SVX_NEW_TOOLBAR_ITEM );
3072 0 : aModifyCommandButton.SetHelpId( HID_SVX_MODIFY_TOOLBAR_ITEM );
3073 0 : aSaveInListBox.SetHelpId( HID_SVX_SAVE_IN );
3074 :
3075 : aTopLevelSeparator.SetText(
3076 0 : CUI_RES ( RID_SVXSTR_PRODUCTNAME_TOOLBARS ) );
3077 :
3078 0 : aTopLevelLabel.SetText( CUI_RES( RID_SVXSTR_TOOLBAR ) );
3079 0 : aModifyTopLevelButton.SetText( CUI_RES( RID_SVXSTR_TOOLBAR ) );
3080 0 : aContentsSeparator.SetText( CUI_RES( RID_SVXSTR_TOOLBAR_CONTENT ) );
3081 0 : aContentsLabel.SetText( CUI_RES( RID_SVXSTR_COMMANDS ) );
3082 :
3083 : aTopLevelListBox.SetSelectHdl(
3084 0 : LINK( this, SvxToolbarConfigPage, SelectToolbar ) );
3085 : aContentsListBox->SetSelectHdl(
3086 0 : LINK( this, SvxToolbarConfigPage, SelectToolbarEntry ) );
3087 :
3088 : aNewTopLevelButton.SetClickHdl (
3089 0 : LINK( this, SvxToolbarConfigPage, NewToolbarHdl ) );
3090 :
3091 : aAddCommandsButton.SetClickHdl (
3092 0 : LINK( this, SvxToolbarConfigPage, AddCommandsHdl ) );
3093 :
3094 0 : aMoveUpButton.SetClickHdl ( LINK( this, SvxToolbarConfigPage, MoveHdl) );
3095 0 : aMoveDownButton.SetClickHdl ( LINK( this, SvxToolbarConfigPage, MoveHdl) );
3096 : // Always enable Up and Down buttons
3097 : // added for issue i53677 by shizhoubo
3098 0 : aMoveDownButton.Enable( sal_True );
3099 0 : aMoveUpButton.Enable( sal_True );
3100 :
3101 0 : PopupMenu* pMenu = new PopupMenu( CUI_RES( MODIFY_TOOLBAR ) );
3102 : pMenu->SetMenuFlags(
3103 0 : pMenu->GetMenuFlags() | MENU_FLAG_ALWAYSSHOWDISABLEDENTRIES );
3104 :
3105 0 : aModifyTopLevelButton.SetPopupMenu( pMenu );
3106 : aModifyTopLevelButton.SetSelectHdl(
3107 0 : LINK( this, SvxToolbarConfigPage, ToolbarSelectHdl ) );
3108 :
3109 : PopupMenu* pEntry = new PopupMenu(
3110 0 : CUI_RES( MODIFY_TOOLBAR_CONTENT ) );
3111 : pEntry->SetMenuFlags(
3112 0 : pEntry->GetMenuFlags() | MENU_FLAG_ALWAYSSHOWDISABLEDENTRIES );
3113 :
3114 0 : aModifyCommandButton.SetPopupMenu( pEntry );
3115 : aModifyCommandButton.SetSelectHdl(
3116 0 : LINK( this, SvxToolbarConfigPage, EntrySelectHdl ) );
3117 :
3118 : // default toolbar to select is standardbar unless a different one
3119 : // has been passed in
3120 0 : m_aURLToSelect = OUString(ITEM_TOOLBAR_URL );
3121 0 : m_aURLToSelect += OUString("standardbar" );
3122 :
3123 : const SfxPoolItem* pItem =
3124 0 : rSet.GetItem( rSet.GetPool()->GetWhich( SID_CONFIG ) );
3125 :
3126 0 : if ( pItem )
3127 : {
3128 0 : OUString text = ((const SfxStringItem*)pItem)->GetValue();
3129 0 : if (text.indexOf( ITEM_TOOLBAR_URL ) == 0)
3130 : {
3131 0 : m_aURLToSelect = text.copy( 0 );
3132 0 : }
3133 : }
3134 :
3135 0 : long nTxtW = aTopLevelLabel.GetCtrlTextWidth( aTopLevelLabel.GetText() );
3136 0 : long nCtrlW = aTopLevelLabel.GetSizePixel().Width();
3137 0 : if ( nTxtW >= nCtrlW )
3138 : {
3139 0 : long nDelta = Max( (long)10, nTxtW - nCtrlW );
3140 0 : Size aNewSz = aTopLevelLabel.GetSizePixel();
3141 0 : aNewSz.Width() += nDelta;
3142 0 : aTopLevelLabel.SetSizePixel( aNewSz );
3143 0 : aNewSz = aTopLevelListBox.GetSizePixel();
3144 0 : aNewSz.Width() -= nDelta;
3145 0 : Point aNewPt = aTopLevelListBox.GetPosPixel();
3146 0 : aNewPt.X() += nDelta;
3147 0 : aTopLevelListBox.SetPosSizePixel( aNewPt, aNewSz );
3148 : }
3149 0 : }
3150 :
3151 0 : SvxToolbarConfigPage::~SvxToolbarConfigPage()
3152 : {
3153 0 : for ( sal_uInt16 i = 0 ; i < aSaveInListBox.GetEntryCount(); ++i )
3154 : {
3155 : ToolbarSaveInData* pData =
3156 0 : (ToolbarSaveInData*) aSaveInListBox.GetEntryData( i );
3157 :
3158 0 : delete pData;
3159 : }
3160 :
3161 0 : if ( pSelectorDlg != NULL )
3162 : {
3163 0 : delete pSelectorDlg;
3164 : }
3165 :
3166 :
3167 0 : delete aContentsListBox;
3168 0 : }
3169 :
3170 0 : void SvxToolbarConfigPage::DeleteSelectedTopLevel()
3171 : {
3172 0 : sal_uInt16 nSelectionPos = aTopLevelListBox.GetSelectEntryPos();
3173 0 : ToolbarSaveInData* pSaveInData = (ToolbarSaveInData*) GetSaveInData();
3174 0 : pSaveInData->RemoveToolbar( GetTopLevelSelection() );
3175 :
3176 0 : if ( aTopLevelListBox.GetEntryCount() > 1 )
3177 : {
3178 : // select next entry after the one being deleted
3179 : // selection position is indexed from 0 so need to
3180 : // subtract one from the entry count
3181 0 : if ( nSelectionPos != aTopLevelListBox.GetEntryCount() - 1 )
3182 : {
3183 0 : aTopLevelListBox.SelectEntryPos( nSelectionPos + 1, sal_True );
3184 : }
3185 : else
3186 : {
3187 0 : aTopLevelListBox.SelectEntryPos( nSelectionPos - 1, sal_True );
3188 : }
3189 0 : aTopLevelListBox.GetSelectHdl().Call( this );
3190 :
3191 : // and now remove the entry
3192 0 : aTopLevelListBox.RemoveEntry( nSelectionPos );
3193 : }
3194 : else
3195 : {
3196 0 : ReloadTopLevelListBox();
3197 : }
3198 0 : }
3199 :
3200 0 : bool SvxToolbarConfigPage::DeleteSelectedContent()
3201 : {
3202 0 : SvTreeListEntry *pActEntry = aContentsListBox->FirstSelected();
3203 :
3204 0 : if ( pActEntry != NULL )
3205 : {
3206 : // get currently selected entry
3207 : SvxConfigEntry* pEntry =
3208 0 : (SvxConfigEntry*) pActEntry->GetUserData();
3209 :
3210 0 : SvxConfigEntry* pToolbar = GetTopLevelSelection();
3211 :
3212 : // remove entry from the list for this toolbar
3213 0 : RemoveEntry( pToolbar->GetEntries(), pEntry );
3214 :
3215 : // remove toolbar entry from UI
3216 0 : aContentsListBox->GetModel()->Remove( pActEntry );
3217 :
3218 : // delete data for toolbar entry
3219 0 : delete pEntry;
3220 :
3221 0 : (( ToolbarSaveInData* ) GetSaveInData())->ApplyToolbar( pToolbar );
3222 0 : UpdateButtonStates();
3223 :
3224 : // if this is the last entry in the toolbar and it is a user
3225 : // defined toolbar pop up a dialog asking the user if they
3226 : // want to delete the toolbar
3227 0 : if ( aContentsListBox->GetEntryCount() == 0 &&
3228 0 : GetTopLevelSelection()->IsDeletable() )
3229 : {
3230 : QueryBox qbox( this,
3231 0 : CUI_RES( QBX_CONFIRM_DELETE_TOOLBAR ) );
3232 :
3233 0 : if ( qbox.Execute() == RET_YES )
3234 : {
3235 0 : DeleteSelectedTopLevel();
3236 0 : }
3237 : }
3238 :
3239 0 : return sal_True;
3240 : }
3241 :
3242 0 : return sal_False;
3243 : }
3244 :
3245 0 : IMPL_LINK( SvxToolbarConfigPage, MoveHdl, Button *, pButton )
3246 : {
3247 0 : MoveEntry( pButton == &aMoveUpButton );
3248 0 : return 0;
3249 : }
3250 :
3251 0 : void SvxToolbarConfigPage::MoveEntry( bool bMoveUp )
3252 : {
3253 0 : SvxConfigPage::MoveEntry( bMoveUp );
3254 :
3255 : // Apply change to currently selected toolbar
3256 0 : SvxConfigEntry* pToolbar = GetTopLevelSelection();
3257 0 : if ( pToolbar )
3258 0 : ((ToolbarSaveInData*)GetSaveInData())->ApplyToolbar( pToolbar );
3259 : else
3260 : {
3261 : SAL_WARN( "cui.customize", "SvxToolbarConfigPage::MoveEntry(): no entry" );
3262 0 : UpdateButtonStates();
3263 : }
3264 0 : }
3265 :
3266 0 : IMPL_LINK( SvxToolbarConfigPage, ToolbarSelectHdl, MenuButton *, pButton )
3267 : {
3268 0 : sal_uInt16 nSelectionPos = aTopLevelListBox.GetSelectEntryPos();
3269 :
3270 : SvxConfigEntry* pToolbar =
3271 0 : (SvxConfigEntry*)aTopLevelListBox.GetEntryData( nSelectionPos );
3272 :
3273 0 : ToolbarSaveInData* pSaveInData = (ToolbarSaveInData*) GetSaveInData();
3274 :
3275 0 : switch( pButton->GetCurItemId() )
3276 : {
3277 : case ID_DELETE:
3278 : {
3279 0 : DeleteSelectedTopLevel();
3280 0 : UpdateButtonStates();
3281 0 : break;
3282 : }
3283 : case ID_RENAME:
3284 : {
3285 0 : String aNewName( stripHotKey( pToolbar->GetName() ) );
3286 0 : String aDesc = CUI_RESSTR( RID_SVXSTR_LABEL_NEW_NAME );
3287 :
3288 0 : SvxNameDialog* pNameDialog = new SvxNameDialog( this, aNewName, aDesc );
3289 0 : pNameDialog->SetHelpId( HID_SVX_CONFIG_RENAME_TOOLBAR );
3290 0 : pNameDialog->SetText( CUI_RESSTR( RID_SVXSTR_RENAME_TOOLBAR ) );
3291 :
3292 0 : bool ret = pNameDialog->Execute();
3293 :
3294 0 : if ( ret == RET_OK )
3295 : {
3296 0 : pNameDialog->GetName(aNewName);
3297 :
3298 0 : pToolbar->SetName( aNewName );
3299 0 : pSaveInData->ApplyToolbar( pToolbar );
3300 :
3301 : // have to use remove and insert to change the name
3302 0 : aTopLevelListBox.RemoveEntry( nSelectionPos );
3303 : nSelectionPos =
3304 0 : aTopLevelListBox.InsertEntry( aNewName, nSelectionPos );
3305 0 : aTopLevelListBox.SetEntryData( nSelectionPos, pToolbar );
3306 0 : aTopLevelListBox.SelectEntryPos( nSelectionPos );
3307 : }
3308 :
3309 0 : delete pNameDialog;
3310 :
3311 0 : break;
3312 : }
3313 : case ID_DEFAULT_STYLE:
3314 : {
3315 : QueryBox qbox( this,
3316 0 : CUI_RES( QBX_CONFIRM_RESTORE_DEFAULT ) );
3317 :
3318 0 : if ( qbox.Execute() == RET_YES )
3319 : {
3320 : ToolbarSaveInData* pSaveInData_ =
3321 0 : (ToolbarSaveInData*) GetSaveInData();
3322 :
3323 0 : pSaveInData_->RestoreToolbar( pToolbar );
3324 :
3325 0 : aTopLevelListBox.GetSelectHdl().Call( this );
3326 : }
3327 :
3328 0 : break;
3329 : }
3330 : case ID_ICONS_ONLY:
3331 : {
3332 0 : pToolbar->SetStyle( 0 );
3333 0 : pSaveInData->SetSystemStyle( m_xFrame, pToolbar->GetCommand(), 0 );
3334 :
3335 0 : aTopLevelListBox.GetSelectHdl().Call( this );
3336 :
3337 0 : break;
3338 : }
3339 : case ID_TEXT_ONLY:
3340 : {
3341 0 : pToolbar->SetStyle( 1 );
3342 0 : pSaveInData->SetSystemStyle( m_xFrame, pToolbar->GetCommand(), 1 );
3343 :
3344 0 : aTopLevelListBox.GetSelectHdl().Call( this );
3345 :
3346 0 : break;
3347 : }
3348 : case ID_ICONS_AND_TEXT:
3349 : {
3350 0 : pToolbar->SetStyle( 2 );
3351 0 : pSaveInData->SetSystemStyle( m_xFrame, pToolbar->GetCommand(), 2 );
3352 :
3353 0 : aTopLevelListBox.GetSelectHdl().Call( this );
3354 :
3355 0 : break;
3356 : }
3357 : }
3358 0 : return 1;
3359 : }
3360 :
3361 0 : IMPL_LINK( SvxToolbarConfigPage, EntrySelectHdl, MenuButton *, pButton )
3362 : {
3363 0 : bool bNeedsApply = sal_False;
3364 :
3365 : // get currently selected toolbar
3366 0 : SvxConfigEntry* pToolbar = GetTopLevelSelection();
3367 :
3368 0 : switch( pButton->GetCurItemId() )
3369 : {
3370 : case ID_RENAME:
3371 : {
3372 0 : SvTreeListEntry* pActEntry = aContentsListBox->GetCurEntry();
3373 : SvxConfigEntry* pEntry =
3374 0 : (SvxConfigEntry*) pActEntry->GetUserData();
3375 :
3376 0 : String aNewName( stripHotKey( pEntry->GetName() ) );
3377 0 : String aDesc = CUI_RESSTR( RID_SVXSTR_LABEL_NEW_NAME );
3378 :
3379 0 : SvxNameDialog* pNameDialog = new SvxNameDialog( this, aNewName, aDesc );
3380 0 : pNameDialog->SetHelpId( HID_SVX_CONFIG_RENAME_TOOLBAR_ITEM );
3381 0 : pNameDialog->SetText( CUI_RESSTR( RID_SVXSTR_RENAME_TOOLBAR ) );
3382 :
3383 0 : bool ret = pNameDialog->Execute();
3384 :
3385 0 : if ( ret == RET_OK ) {
3386 0 : pNameDialog->GetName(aNewName);
3387 :
3388 0 : pEntry->SetName( aNewName );
3389 0 : aContentsListBox->SetEntryText( pActEntry, aNewName );
3390 :
3391 0 : bNeedsApply = sal_True;
3392 : }
3393 :
3394 0 : delete pNameDialog;
3395 0 : break;
3396 : }
3397 : case ID_DEFAULT_COMMAND:
3398 : {
3399 0 : SvTreeListEntry* pActEntry = aContentsListBox->GetCurEntry();
3400 : SvxConfigEntry* pEntry =
3401 0 : (SvxConfigEntry*) pActEntry->GetUserData();
3402 :
3403 0 : sal_uInt16 nSelectionPos = 0;
3404 :
3405 : // find position of entry within the list
3406 0 : for ( sal_uInt16 i = 0; i < aContentsListBox->GetEntryCount(); ++i )
3407 : {
3408 0 : if ( aContentsListBox->GetEntry( 0, i ) == pActEntry )
3409 : {
3410 0 : nSelectionPos = i;
3411 0 : break;
3412 : }
3413 : }
3414 :
3415 : ToolbarSaveInData* pSaveInData =
3416 0 : (ToolbarSaveInData*) GetSaveInData();
3417 :
3418 : OUString aSystemName =
3419 0 : pSaveInData->GetSystemUIName( pEntry->GetCommand() );
3420 :
3421 0 : if ( !pEntry->GetName().equals( aSystemName ) )
3422 : {
3423 0 : pEntry->SetName( aSystemName );
3424 : aContentsListBox->SetEntryText(
3425 0 : pActEntry, stripHotKey( aSystemName ) );
3426 0 : bNeedsApply = sal_True;
3427 : }
3428 :
3429 0 : uno::Sequence< OUString > aURLSeq( 1 );
3430 0 : aURLSeq[ 0 ] = pEntry->GetCommand();
3431 :
3432 : try
3433 : {
3434 0 : GetSaveInData()->GetImageManager()->removeImages(
3435 0 : GetImageType(), aURLSeq );
3436 :
3437 : // reset backup in entry
3438 : pEntry->SetBackupGraphic(
3439 0 : uno::Reference< graphic::XGraphic >() );
3440 :
3441 : GetSaveInData()->PersistChanges(
3442 0 : GetSaveInData()->GetImageManager() );
3443 :
3444 0 : aContentsListBox->GetModel()->Remove( pActEntry );
3445 :
3446 : SvTreeListEntry* pNewLBEntry =
3447 0 : InsertEntryIntoUI( pEntry, nSelectionPos );
3448 :
3449 : aContentsListBox->SetCheckButtonState( pNewLBEntry,
3450 0 : pEntry->IsVisible() ?
3451 0 : SV_BUTTON_CHECKED : SV_BUTTON_UNCHECKED );
3452 :
3453 0 : aContentsListBox->Select( pNewLBEntry );
3454 0 : aContentsListBox->MakeVisible( pNewLBEntry );
3455 :
3456 0 : bNeedsApply = sal_True;
3457 : }
3458 0 : catch ( uno::Exception& )
3459 : {
3460 : OSL_TRACE("Error restoring image");
3461 : }
3462 0 : break;
3463 : }
3464 : case ID_BEGIN_GROUP:
3465 : {
3466 0 : SvxConfigEntry* pNewEntryData = new SvxConfigEntry;
3467 0 : pNewEntryData->SetUserDefined( sal_True );
3468 :
3469 0 : SvTreeListEntry* pNewLBEntry = InsertEntry( pNewEntryData );
3470 :
3471 : aContentsListBox->SetCheckButtonState(
3472 0 : pNewLBEntry, SV_BUTTON_TRISTATE );
3473 :
3474 0 : bNeedsApply = sal_True;
3475 0 : break;
3476 : }
3477 : case ID_DELETE:
3478 : {
3479 0 : DeleteSelectedContent();
3480 0 : break;
3481 : }
3482 : case ID_ICON_ONLY:
3483 : {
3484 0 : break;
3485 : }
3486 : case ID_TEXT_ONLY:
3487 : {
3488 0 : break;
3489 : }
3490 : case ID_ICON_AND_TEXT:
3491 : {
3492 0 : break;
3493 : }
3494 : case ID_CHANGE_SYMBOL:
3495 : {
3496 0 : SvTreeListEntry* pActEntry = aContentsListBox->GetCurEntry();
3497 : SvxConfigEntry* pEntry =
3498 0 : (SvxConfigEntry*) pActEntry->GetUserData();
3499 :
3500 0 : sal_uInt16 nSelectionPos = 0;
3501 :
3502 : // find position of entry within the list
3503 0 : for ( sal_uInt16 i = 0; i < aContentsListBox->GetEntryCount(); ++i )
3504 : {
3505 0 : if ( aContentsListBox->GetEntry( 0, i ) == pActEntry )
3506 : {
3507 0 : nSelectionPos = i;
3508 0 : break;
3509 : }
3510 : }
3511 :
3512 : SvxIconSelectorDialog* pIconDialog =
3513 : new SvxIconSelectorDialog( 0,
3514 : GetSaveInData()->GetImageManager(),
3515 0 : GetSaveInData()->GetParentImageManager() );
3516 :
3517 0 : bool ret = pIconDialog->Execute();
3518 :
3519 0 : if ( ret == RET_OK )
3520 : {
3521 : uno::Reference< graphic::XGraphic > newgraphic =
3522 0 : pIconDialog->GetSelectedIcon();
3523 :
3524 0 : if ( newgraphic.is() )
3525 : {
3526 : uno::Sequence< uno::Reference< graphic::XGraphic > >
3527 0 : aGraphicSeq( 1 );
3528 :
3529 0 : uno::Sequence< OUString > aURLSeq( 1 );
3530 0 : aURLSeq[ 0 ] = pEntry->GetCommand();
3531 :
3532 0 : if ( !pEntry->GetBackupGraphic().is() )
3533 : {
3534 0 : uno::Reference< graphic::XGraphic > backup;
3535 : backup = GetGraphic(
3536 0 : GetSaveInData()->GetImageManager(), aURLSeq[ 0 ] );
3537 :
3538 0 : if ( backup.is() )
3539 : {
3540 0 : pEntry->SetBackupGraphic( backup );
3541 0 : }
3542 : }
3543 :
3544 0 : aGraphicSeq[ 0 ] = newgraphic;
3545 : try
3546 : {
3547 0 : GetSaveInData()->GetImageManager()->replaceImages(
3548 0 : GetImageType(), aURLSeq, aGraphicSeq );
3549 :
3550 0 : Image aImage( newgraphic );
3551 :
3552 0 : aContentsListBox->GetModel()->Remove( pActEntry );
3553 : SvTreeListEntry* pNewLBEntry =
3554 0 : InsertEntryIntoUI( pEntry, nSelectionPos );
3555 :
3556 : aContentsListBox->SetCheckButtonState( pNewLBEntry,
3557 0 : pEntry->IsVisible() ?
3558 0 : SV_BUTTON_CHECKED : SV_BUTTON_UNCHECKED );
3559 :
3560 0 : aContentsListBox->Select( pNewLBEntry );
3561 0 : aContentsListBox->MakeVisible( pNewLBEntry );
3562 :
3563 : GetSaveInData()->PersistChanges(
3564 0 : GetSaveInData()->GetImageManager() );
3565 : }
3566 0 : catch ( uno::Exception& )
3567 : {
3568 : OSL_TRACE("Error replacing image");
3569 0 : }
3570 0 : }
3571 : }
3572 :
3573 0 : delete pIconDialog;
3574 :
3575 0 : break;
3576 : }
3577 : case ID_RESET_SYMBOL:
3578 : {
3579 0 : SvTreeListEntry* pActEntry = aContentsListBox->GetCurEntry();
3580 : SvxConfigEntry* pEntry =
3581 0 : (SvxConfigEntry*) pActEntry->GetUserData();
3582 :
3583 0 : sal_uInt16 nSelectionPos = 0;
3584 :
3585 : // find position of entry within the list
3586 0 : for ( sal_uInt16 i = 0; i < aContentsListBox->GetEntryCount(); ++i )
3587 : {
3588 0 : if ( aContentsListBox->GetEntry( 0, i ) == pActEntry )
3589 : {
3590 0 : nSelectionPos = i;
3591 0 : break;
3592 : }
3593 : }
3594 :
3595 : uno::Reference< graphic::XGraphic > backup =
3596 0 : pEntry->GetBackupGraphic();
3597 :
3598 : uno::Sequence< uno::Reference< graphic::XGraphic > >
3599 0 : aGraphicSeq( 1 );
3600 0 : aGraphicSeq[ 0 ] = backup;
3601 :
3602 0 : uno::Sequence< OUString > aURLSeq( 1 );
3603 0 : aURLSeq[ 0 ] = pEntry->GetCommand();
3604 :
3605 : try
3606 : {
3607 0 : GetSaveInData()->GetImageManager()->replaceImages(
3608 0 : GetImageType(), aURLSeq, aGraphicSeq );
3609 :
3610 0 : Image aImage( backup );
3611 0 : aContentsListBox->GetModel()->Remove( pActEntry );
3612 :
3613 : SvTreeListEntry* pNewLBEntry =
3614 0 : InsertEntryIntoUI( pEntry, nSelectionPos );
3615 :
3616 : aContentsListBox->SetCheckButtonState( pNewLBEntry,
3617 0 : pEntry->IsVisible() ?
3618 0 : SV_BUTTON_CHECKED : SV_BUTTON_UNCHECKED );
3619 :
3620 0 : aContentsListBox->Select( pNewLBEntry );
3621 0 : aContentsListBox->MakeVisible( pNewLBEntry );
3622 :
3623 : // reset backup in entry
3624 : pEntry->SetBackupGraphic(
3625 0 : uno::Reference< graphic::XGraphic >() );
3626 :
3627 : GetSaveInData()->PersistChanges(
3628 0 : GetSaveInData()->GetImageManager() );
3629 : }
3630 0 : catch ( uno::Exception& )
3631 : {
3632 : OSL_TRACE("Error resetting image");
3633 : }
3634 0 : break;
3635 : }
3636 : }
3637 :
3638 0 : if ( bNeedsApply == sal_True )
3639 : {
3640 0 : (( ToolbarSaveInData* ) GetSaveInData())->ApplyToolbar( pToolbar );
3641 0 : UpdateButtonStates();
3642 : }
3643 :
3644 0 : return 1;
3645 : }
3646 :
3647 0 : void SvxToolbarConfigPage::Init()
3648 : {
3649 : // ensure that the UI is cleared before populating it
3650 0 : aTopLevelListBox.Clear();
3651 0 : aContentsListBox->Clear();
3652 :
3653 0 : ReloadTopLevelListBox();
3654 :
3655 0 : sal_uInt16 nPos = 0;
3656 0 : if ( !m_aURLToSelect.isEmpty() )
3657 : {
3658 0 : for ( sal_uInt16 i = 0 ; i < aTopLevelListBox.GetEntryCount(); ++i )
3659 : {
3660 : SvxConfigEntry* pData =
3661 0 : (SvxConfigEntry*) aTopLevelListBox.GetEntryData( i );
3662 :
3663 0 : if ( pData->GetCommand().equals( m_aURLToSelect ) )
3664 : {
3665 0 : nPos = i;
3666 0 : break;
3667 : }
3668 : }
3669 :
3670 : // in future select the default toolbar: Standard
3671 0 : m_aURLToSelect = OUString(ITEM_TOOLBAR_URL );
3672 0 : m_aURLToSelect += OUString("standardbar" );
3673 : }
3674 :
3675 0 : aTopLevelListBox.SelectEntryPos(nPos, sal_True);
3676 0 : aTopLevelListBox.GetSelectHdl().Call(this);
3677 0 : }
3678 :
3679 0 : SaveInData* SvxToolbarConfigPage::CreateSaveInData(
3680 : const uno::Reference< css::ui::XUIConfigurationManager >& xCfgMgr,
3681 : const uno::Reference< css::ui::XUIConfigurationManager >& xParentCfgMgr,
3682 : const OUString& aModuleId,
3683 : bool bDocConfig )
3684 : {
3685 : return static_cast< SaveInData* >(
3686 0 : new ToolbarSaveInData( xCfgMgr, xParentCfgMgr, aModuleId, bDocConfig ));
3687 : }
3688 :
3689 0 : ToolbarSaveInData::ToolbarSaveInData(
3690 : const uno::Reference < css::ui::XUIConfigurationManager >& xCfgMgr,
3691 : const uno::Reference < css::ui::XUIConfigurationManager >& xParentCfgMgr,
3692 : const OUString& aModuleId,
3693 : bool docConfig ) :
3694 :
3695 : SaveInData ( xCfgMgr, xParentCfgMgr, aModuleId, docConfig ),
3696 : pRootEntry ( NULL ),
3697 0 : m_aDescriptorContainer ( ITEM_DESCRIPTOR_CONTAINER )
3698 :
3699 : {
3700 0 : uno::Reference<uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
3701 : // Initialize the m_xPersistentWindowState variable which is used
3702 : // to get the default properties of system toolbars such as name
3703 0 : uno::Reference< container::XNameAccess > xPWSS = css::ui::WindowStateConfiguration::create( xContext );
3704 :
3705 0 : xPWSS->getByName( aModuleId ) >>= m_xPersistentWindowState;
3706 0 : }
3707 :
3708 0 : ToolbarSaveInData::~ToolbarSaveInData()
3709 : {
3710 0 : delete pRootEntry;
3711 0 : }
3712 :
3713 0 : void ToolbarSaveInData::SetSystemStyle(
3714 : uno::Reference< frame::XFrame > xFrame,
3715 : const OUString& rResourceURL,
3716 : sal_Int32 nStyle )
3717 : {
3718 : // change the style using the API
3719 0 : SetSystemStyle( rResourceURL, nStyle );
3720 :
3721 : // this code is a temporary hack as the UI is not updating after
3722 : // changing the toolbar style via the API
3723 0 : uno::Reference< css::frame::XLayoutManager > xLayoutManager;
3724 0 : Window *window = NULL;
3725 :
3726 0 : uno::Reference< beans::XPropertySet > xPropSet( xFrame, uno::UNO_QUERY );
3727 0 : if ( xPropSet.is() )
3728 : {
3729 0 : uno::Any a = xPropSet->getPropertyValue(
3730 0 : OUString( "LayoutManager" ) );
3731 0 : a >>= xLayoutManager;
3732 : }
3733 :
3734 0 : if ( xLayoutManager.is() )
3735 : {
3736 : uno::Reference< css::ui::XUIElement > xUIElement =
3737 0 : xLayoutManager->getElement( rResourceURL );
3738 :
3739 : // check reference before we call getRealInterface. The layout manager
3740 : // can only provide references for elements that have been created
3741 : // before. It's possible that the current element is not available.
3742 0 : uno::Reference< com::sun::star::awt::XWindow > xWindow;
3743 0 : if ( xUIElement.is() )
3744 : xWindow = uno::Reference< com::sun::star::awt::XWindow >(
3745 0 : xUIElement->getRealInterface(), uno::UNO_QUERY );
3746 :
3747 0 : window = VCLUnoHelper::GetWindow( xWindow );
3748 : }
3749 :
3750 0 : if ( window != NULL && window->GetType() == WINDOW_TOOLBOX )
3751 : {
3752 0 : ToolBox* toolbox = (ToolBox*)window;
3753 :
3754 0 : if ( nStyle == 0 )
3755 : {
3756 0 : toolbox->SetButtonType( BUTTON_SYMBOL );
3757 : }
3758 0 : else if ( nStyle == 1 )
3759 : {
3760 0 : toolbox->SetButtonType( BUTTON_TEXT );
3761 : }
3762 0 : if ( nStyle == 2 )
3763 : {
3764 0 : toolbox->SetButtonType( BUTTON_SYMBOLTEXT );
3765 : }
3766 0 : }
3767 0 : }
3768 :
3769 0 : void ToolbarSaveInData::SetSystemStyle(
3770 : const OUString& rResourceURL,
3771 : sal_Int32 nStyle )
3772 : {
3773 0 : if ( rResourceURL.indexOf( "private" ) == 0 &&
3774 0 : m_xPersistentWindowState.is() &&
3775 0 : m_xPersistentWindowState->hasByName( rResourceURL ) )
3776 : {
3777 : try
3778 : {
3779 0 : uno::Sequence< beans::PropertyValue > aProps;
3780 :
3781 0 : uno::Any a( m_xPersistentWindowState->getByName( rResourceURL ) );
3782 :
3783 0 : if ( a >>= aProps )
3784 : {
3785 0 : for ( sal_Int32 i = 0; i < aProps.getLength(); ++i )
3786 : {
3787 0 : if ( aProps[ i ].Name.equalsAscii( ITEM_DESCRIPTOR_STYLE) )
3788 : {
3789 0 : aProps[ i ].Value = uno::makeAny( nStyle );
3790 0 : break;
3791 : }
3792 : }
3793 : }
3794 :
3795 : uno::Reference< container::XNameReplace >
3796 0 : xNameReplace( m_xPersistentWindowState, uno::UNO_QUERY );
3797 :
3798 0 : xNameReplace->replaceByName( rResourceURL, uno::makeAny( aProps ) );
3799 : }
3800 0 : catch ( uno::Exception& )
3801 : {
3802 : // do nothing, a default value is returned
3803 : OSL_TRACE("Exception setting toolbar style");
3804 : }
3805 : }
3806 0 : }
3807 :
3808 0 : sal_Int32 ToolbarSaveInData::GetSystemStyle( const OUString& rResourceURL )
3809 : {
3810 0 : sal_Int32 result = 0;
3811 :
3812 0 : if ( rResourceURL.indexOf( "private" ) == 0 &&
3813 0 : m_xPersistentWindowState.is() &&
3814 0 : m_xPersistentWindowState->hasByName( rResourceURL ) )
3815 : {
3816 : try
3817 : {
3818 0 : uno::Sequence< beans::PropertyValue > aProps;
3819 0 : uno::Any a( m_xPersistentWindowState->getByName( rResourceURL ) );
3820 :
3821 0 : if ( a >>= aProps )
3822 : {
3823 0 : for ( sal_Int32 i = 0; i < aProps.getLength(); ++i )
3824 : {
3825 0 : if ( aProps[ i ].Name.equalsAscii( ITEM_DESCRIPTOR_STYLE) )
3826 : {
3827 0 : aProps[i].Value >>= result;
3828 0 : break;
3829 : }
3830 : }
3831 0 : }
3832 : }
3833 0 : catch ( uno::Exception& )
3834 : {
3835 : // do nothing, a default value is returned
3836 : }
3837 : }
3838 :
3839 0 : return result;
3840 : }
3841 :
3842 0 : OUString ToolbarSaveInData::GetSystemUIName( const OUString& rResourceURL )
3843 : {
3844 0 : OUString result;
3845 :
3846 0 : if ( rResourceURL.indexOf( "private" ) == 0 &&
3847 0 : m_xPersistentWindowState.is() &&
3848 0 : m_xPersistentWindowState->hasByName( rResourceURL ) )
3849 : {
3850 : try
3851 : {
3852 0 : uno::Sequence< beans::PropertyValue > aProps;
3853 0 : uno::Any a( m_xPersistentWindowState->getByName( rResourceURL ) );
3854 :
3855 0 : if ( a >>= aProps )
3856 : {
3857 0 : for ( sal_Int32 i = 0; i < aProps.getLength(); ++i )
3858 : {
3859 0 : if ( aProps[ i ].Name.equalsAscii( ITEM_DESCRIPTOR_UINAME) )
3860 : {
3861 0 : aProps[ i ].Value >>= result;
3862 : }
3863 : }
3864 0 : }
3865 : }
3866 0 : catch ( uno::Exception& )
3867 : {
3868 : // do nothing, an empty UIName will be returned
3869 : }
3870 : }
3871 :
3872 0 : if ( rResourceURL.indexOf( ".uno" ) == 0 &&
3873 0 : m_xCommandToLabelMap.is() &&
3874 0 : m_xCommandToLabelMap->hasByName( rResourceURL ) )
3875 : {
3876 0 : uno::Any a;
3877 : try
3878 : {
3879 0 : a = m_xCommandToLabelMap->getByName( rResourceURL );
3880 :
3881 0 : uno::Sequence< beans::PropertyValue > aPropSeq;
3882 0 : if ( a >>= aPropSeq )
3883 : {
3884 0 : for ( sal_Int32 i = 0; i < aPropSeq.getLength(); ++i )
3885 : {
3886 0 : if ( aPropSeq[i].Name.equalsAscii( ITEM_DESCRIPTOR_LABEL ) )
3887 : {
3888 0 : aPropSeq[i].Value >>= result;
3889 : }
3890 : }
3891 0 : }
3892 : }
3893 0 : catch ( uno::Exception& )
3894 : {
3895 : // not a system command name
3896 0 : }
3897 : }
3898 :
3899 0 : return result;
3900 : }
3901 :
3902 0 : bool EntrySort( SvxConfigEntry* a, SvxConfigEntry* b )
3903 : {
3904 0 : return a->GetName().compareTo( b->GetName() ) < 0;
3905 : }
3906 :
3907 0 : SvxEntries* ToolbarSaveInData::GetEntries()
3908 : {
3909 : typedef ::boost::unordered_map< ::rtl::OUString,
3910 : bool,
3911 : ::rtl::OUStringHash,
3912 : ::std::equal_to< ::rtl::OUString > > ToolbarInfo;
3913 :
3914 0 : ToolbarInfo aToolbarInfo;
3915 :
3916 0 : if ( pRootEntry == NULL )
3917 : {
3918 :
3919 : pRootEntry = new SvxConfigEntry(
3920 : rtl::OUString("MainToolbars"),
3921 0 : rtl::OUString(), sal_True);
3922 :
3923 : uno::Sequence< uno::Sequence < beans::PropertyValue > > info =
3924 0 : GetConfigManager()->getUIElementsInfo(
3925 0 : css::ui::UIElementType::TOOLBAR );
3926 :
3927 0 : for ( sal_Int32 i = 0; i < info.getLength(); ++i )
3928 : {
3929 0 : uno::Sequence< beans::PropertyValue > props = info[ i ];
3930 :
3931 0 : OUString url;
3932 0 : OUString systemname;
3933 0 : OUString uiname;
3934 :
3935 0 : for ( sal_Int32 j = 0; j < props.getLength(); ++j )
3936 : {
3937 0 : if ( props[ j ].Name.equalsAscii( ITEM_DESCRIPTOR_RESOURCEURL) )
3938 : {
3939 0 : props[ j ].Value >>= url;
3940 0 : systemname = url.copy( url.lastIndexOf( '/' ) + 1 );
3941 : }
3942 0 : else if ( props[ j ].Name.equalsAscii( ITEM_DESCRIPTOR_UINAME) )
3943 : {
3944 0 : props[ j ].Value >>= uiname;
3945 : }
3946 : }
3947 :
3948 : try
3949 : {
3950 : uno::Reference< container::XIndexAccess > xToolbarSettings =
3951 0 : GetConfigManager()->getSettings( url, sal_False );
3952 :
3953 0 : if ( uiname.isEmpty() )
3954 : {
3955 : // try to get the name from m_xPersistentWindowState
3956 0 : uiname = GetSystemUIName( url );
3957 :
3958 0 : if ( uiname.isEmpty() )
3959 : {
3960 0 : uiname = systemname;
3961 : }
3962 : }
3963 :
3964 : SvxConfigEntry* pEntry = new SvxConfigEntry(
3965 0 : uiname, url, sal_True );
3966 :
3967 0 : pEntry->SetMain( sal_True );
3968 0 : pEntry->SetStyle( GetSystemStyle( url ) );
3969 :
3970 :
3971 : // insert into boost::unordered_map to filter duplicates from the parent
3972 0 : aToolbarInfo.insert( ToolbarInfo::value_type( systemname, true ));
3973 :
3974 0 : OUString custom(CUSTOM_TOOLBAR_STR);
3975 0 : if ( systemname.indexOf( custom ) == 0 )
3976 : {
3977 0 : pEntry->SetUserDefined( sal_True );
3978 : }
3979 : else
3980 : {
3981 0 : pEntry->SetUserDefined( sal_False );
3982 : }
3983 :
3984 0 : pRootEntry->GetEntries()->push_back( pEntry );
3985 :
3986 0 : LoadToolbar( xToolbarSettings, pEntry );
3987 : }
3988 0 : catch ( container::NoSuchElementException& )
3989 : {
3990 : // TODO, handle resourceURL with no settings
3991 : }
3992 0 : }
3993 :
3994 0 : uno::Reference< css::ui::XUIConfigurationManager > xParentCfgMgr = GetParentConfigManager();
3995 0 : if ( xParentCfgMgr.is() )
3996 : {
3997 : // Retrieve also the parent toolbars to make it possible
3998 : // to configure module toolbars and save them into the document
3999 : // config manager.
4000 : uno::Sequence< uno::Sequence < beans::PropertyValue > > info_ =
4001 0 : xParentCfgMgr->getUIElementsInfo(
4002 0 : css::ui::UIElementType::TOOLBAR );
4003 :
4004 0 : for ( sal_Int32 i = 0; i < info_.getLength(); ++i )
4005 : {
4006 0 : uno::Sequence< beans::PropertyValue > props = info_[ i ];
4007 :
4008 0 : OUString url;
4009 0 : OUString systemname;
4010 0 : OUString uiname;
4011 :
4012 0 : for ( sal_Int32 j = 0; j < props.getLength(); ++j )
4013 : {
4014 0 : if ( props[ j ].Name.equalsAscii( ITEM_DESCRIPTOR_RESOURCEURL) )
4015 : {
4016 0 : props[ j ].Value >>= url;
4017 0 : systemname = url.copy( url.lastIndexOf( '/' ) + 1 );
4018 : }
4019 0 : else if ( props[ j ].Name.equalsAscii( ITEM_DESCRIPTOR_UINAME) )
4020 : {
4021 0 : props[ j ].Value >>= uiname;
4022 : }
4023 : }
4024 :
4025 : // custom toolbars of the parent are not visible in the document layer
4026 0 : OUString custom(CUSTOM_TOOLBAR_STR);
4027 0 : if ( systemname.indexOf( custom ) == 0 )
4028 0 : continue;
4029 :
4030 : // check if toolbar is already in the document layer
4031 0 : ToolbarInfo::const_iterator pIter = aToolbarInfo.find( systemname );
4032 0 : if ( pIter == aToolbarInfo.end() )
4033 : {
4034 0 : aToolbarInfo.insert( ToolbarInfo::value_type( systemname, true ));
4035 :
4036 : try
4037 : {
4038 : uno::Reference< container::XIndexAccess > xToolbarSettings =
4039 0 : xParentCfgMgr->getSettings( url, sal_False );
4040 :
4041 0 : if ( uiname.isEmpty() )
4042 : {
4043 : // try to get the name from m_xPersistentWindowState
4044 0 : uiname = GetSystemUIName( url );
4045 :
4046 0 : if ( uiname.isEmpty() )
4047 : {
4048 0 : uiname = systemname;
4049 : }
4050 : }
4051 :
4052 : SvxConfigEntry* pEntry = new SvxConfigEntry(
4053 0 : uiname, url, sal_True, sal_True );
4054 :
4055 0 : pEntry->SetMain( sal_True );
4056 0 : pEntry->SetStyle( GetSystemStyle( url ) );
4057 :
4058 0 : if ( systemname.indexOf( custom ) == 0 )
4059 : {
4060 0 : pEntry->SetUserDefined( sal_True );
4061 : }
4062 : else
4063 : {
4064 0 : pEntry->SetUserDefined( sal_False );
4065 : }
4066 :
4067 0 : pRootEntry->GetEntries()->push_back( pEntry );
4068 :
4069 0 : LoadToolbar( xToolbarSettings, pEntry );
4070 : }
4071 0 : catch ( container::NoSuchElementException& )
4072 : {
4073 : // TODO, handle resourceURL with no settings
4074 : }
4075 : }
4076 0 : }
4077 : }
4078 :
4079 0 : std::sort( GetEntries()->begin(), GetEntries()->end(), EntrySort );
4080 : }
4081 :
4082 0 : return pRootEntry->GetEntries();
4083 : }
4084 :
4085 : void
4086 0 : ToolbarSaveInData::SetEntries( SvxEntries* pNewEntries )
4087 : {
4088 : // delete old menu hierarchy first
4089 0 : if ( pRootEntry != NULL && pRootEntry->GetEntries() != NULL )
4090 : {
4091 0 : delete pRootEntry->GetEntries();
4092 : }
4093 :
4094 : // now set new menu hierarchy
4095 0 : pRootEntry->SetEntries( pNewEntries );
4096 0 : }
4097 :
4098 : bool
4099 0 : ToolbarSaveInData::HasURL( const OUString& rURL )
4100 : {
4101 0 : SvxEntries::const_iterator iter = GetEntries()->begin();
4102 0 : SvxEntries::const_iterator end = GetEntries()->end();
4103 :
4104 0 : while ( iter != end )
4105 : {
4106 0 : SvxConfigEntry* pEntry = *iter;
4107 :
4108 0 : if ( pEntry->GetCommand().equals( rURL ) )
4109 : {
4110 0 : if ( pEntry->IsParentData() )
4111 0 : return sal_False;
4112 : else
4113 0 : return sal_True;
4114 : }
4115 :
4116 0 : ++iter;
4117 : }
4118 0 : return sal_False;
4119 : }
4120 :
4121 0 : bool ToolbarSaveInData::HasSettings()
4122 : {
4123 : // return true if there is at least one toolbar entry
4124 0 : if ( GetEntries()->size() > 0 )
4125 : {
4126 0 : return sal_True;
4127 : }
4128 0 : return sal_False;
4129 : }
4130 :
4131 0 : void ToolbarSaveInData::Reset()
4132 : {
4133 0 : SvxEntries::const_iterator toolbars = GetEntries()->begin();
4134 0 : SvxEntries::const_iterator end = GetEntries()->end();
4135 :
4136 : // reset each toolbar by calling removeSettings for it's toolbar URL
4137 0 : for ( ; toolbars != end; ++toolbars )
4138 : {
4139 0 : SvxConfigEntry* pToolbar = *toolbars;
4140 :
4141 : try
4142 : {
4143 0 : OUString url = pToolbar->GetCommand();
4144 0 : GetConfigManager()->removeSettings( url );
4145 : }
4146 0 : catch ( uno::Exception& )
4147 : {
4148 : // error occurred removing the settings
4149 : // TODO - add error dialog in future?
4150 : }
4151 : }
4152 :
4153 : // persist changes to toolbar storage
4154 0 : PersistChanges( GetConfigManager() );
4155 :
4156 : // now delete the root SvxConfigEntry the next call to GetEntries()
4157 : // causes it to be reinitialised
4158 0 : delete pRootEntry;
4159 0 : pRootEntry = NULL;
4160 :
4161 : // reset all icons to default
4162 : try
4163 : {
4164 0 : GetImageManager()->reset();
4165 0 : PersistChanges( GetImageManager() );
4166 : }
4167 0 : catch ( uno::Exception& )
4168 : {
4169 : OSL_TRACE("Error resetting all icons when resetting toolbars");
4170 : }
4171 0 : }
4172 :
4173 0 : bool ToolbarSaveInData::Apply()
4174 : {
4175 : // toolbar changes are instantly applied
4176 0 : return sal_False;
4177 : }
4178 :
4179 0 : void ToolbarSaveInData::ApplyToolbar(
4180 : uno::Reference< container::XIndexContainer >& rToolbarBar,
4181 : uno::Reference< lang::XSingleComponentFactory >& rFactory,
4182 : SvxConfigEntry* pToolbarData )
4183 : {
4184 0 : uno::Reference<uno::XComponentContext> xContext = ::comphelper::getProcessComponentContext();
4185 :
4186 0 : SvxEntries::const_iterator iter = pToolbarData->GetEntries()->begin();
4187 0 : SvxEntries::const_iterator end = pToolbarData->GetEntries()->end();
4188 :
4189 0 : for ( ; iter != end; ++iter )
4190 : {
4191 0 : SvxConfigEntry* pEntry = *iter;
4192 :
4193 0 : if ( pEntry->IsPopup() )
4194 : {
4195 : uno::Sequence< beans::PropertyValue > aPropValueSeq =
4196 0 : ConvertToolbarEntry( m_xCommandToLabelMap, pEntry );
4197 :
4198 : uno::Reference< container::XIndexContainer > xSubMenuBar(
4199 0 : rFactory->createInstanceWithContext( xContext ),
4200 0 : uno::UNO_QUERY );
4201 :
4202 0 : sal_Int32 nIndex = aPropValueSeq.getLength();
4203 0 : aPropValueSeq.realloc( nIndex + 1 );
4204 0 : aPropValueSeq[nIndex].Name = m_aDescriptorContainer;
4205 0 : aPropValueSeq[nIndex].Value <<= xSubMenuBar;
4206 0 : rToolbarBar->insertByIndex(
4207 0 : rToolbarBar->getCount(), uno::makeAny( aPropValueSeq ));
4208 :
4209 0 : ApplyToolbar( xSubMenuBar, rFactory, pEntry );
4210 : }
4211 0 : else if ( pEntry->IsSeparator() )
4212 : {
4213 0 : rToolbarBar->insertByIndex(
4214 0 : rToolbarBar->getCount(), uno::makeAny( m_aSeparatorSeq ));
4215 : }
4216 : else
4217 : {
4218 : uno::Sequence< beans::PropertyValue > aPropValueSeq =
4219 0 : ConvertToolbarEntry( m_xCommandToLabelMap, pEntry );
4220 :
4221 0 : rToolbarBar->insertByIndex(
4222 0 : rToolbarBar->getCount(), uno::makeAny( aPropValueSeq ));
4223 : }
4224 0 : }
4225 0 : }
4226 :
4227 0 : void ToolbarSaveInData::ApplyToolbar( SvxConfigEntry* pToolbar )
4228 : {
4229 : // Apply new toolbar structure to our settings container
4230 : uno::Reference< container::XIndexAccess > xSettings(
4231 0 : GetConfigManager()->createSettings(), uno::UNO_QUERY );
4232 :
4233 : uno::Reference< container::XIndexContainer > xIndexContainer (
4234 0 : xSettings, uno::UNO_QUERY );
4235 :
4236 : uno::Reference< lang::XSingleComponentFactory > xFactory (
4237 0 : xSettings, uno::UNO_QUERY );
4238 :
4239 0 : ApplyToolbar( xIndexContainer, xFactory, pToolbar );
4240 :
4241 : uno::Reference< beans::XPropertySet > xProps(
4242 0 : xSettings, uno::UNO_QUERY );
4243 :
4244 0 : if ( pToolbar->IsUserDefined() )
4245 : {
4246 0 : xProps->setPropertyValue(
4247 : OUString(ITEM_DESCRIPTOR_UINAME ),
4248 0 : uno::makeAny( OUString( pToolbar->GetName() ) ) );
4249 : }
4250 :
4251 : try
4252 : {
4253 0 : if ( GetConfigManager()->hasSettings( pToolbar->GetCommand() ) )
4254 : {
4255 0 : GetConfigManager()->replaceSettings(
4256 0 : pToolbar->GetCommand(), xSettings );
4257 : }
4258 : else
4259 : {
4260 0 : GetConfigManager()->insertSettings(
4261 0 : pToolbar->GetCommand(), xSettings );
4262 0 : if ( pToolbar->IsParentData() )
4263 0 : pToolbar->SetParentData( false );
4264 : }
4265 : }
4266 0 : catch ( container::NoSuchElementException& )
4267 : {
4268 : OSL_TRACE("caught container::NoSuchElementException saving settings");
4269 : }
4270 0 : catch ( com::sun::star::io::IOException& )
4271 : {
4272 : OSL_TRACE("caught IOException saving settings");
4273 : }
4274 0 : catch ( com::sun::star::uno::Exception& )
4275 : {
4276 : OSL_TRACE("caught some other exception saving settings");
4277 : }
4278 :
4279 0 : PersistChanges( GetConfigManager() );
4280 0 : }
4281 :
4282 0 : void ToolbarSaveInData::CreateToolbar( SvxConfigEntry* pToolbar )
4283 : {
4284 : // show the new toolbar in the UI also
4285 : uno::Reference< container::XIndexAccess >
4286 0 : xSettings( GetConfigManager()->createSettings(), uno::UNO_QUERY );
4287 :
4288 : uno::Reference< container::XIndexContainer >
4289 0 : xIndexContainer ( xSettings, uno::UNO_QUERY );
4290 :
4291 : uno::Reference< beans::XPropertySet >
4292 0 : xPropertySet( xSettings, uno::UNO_QUERY );
4293 :
4294 0 : xPropertySet->setPropertyValue(
4295 : OUString(ITEM_DESCRIPTOR_UINAME ),
4296 0 : uno::makeAny( pToolbar->GetName() ) );
4297 :
4298 : try
4299 : {
4300 0 : GetConfigManager()->insertSettings( pToolbar->GetCommand(), xSettings );
4301 : }
4302 0 : catch ( container::ElementExistException& )
4303 : {
4304 : OSL_TRACE("caught ElementExistsException saving settings");
4305 : }
4306 0 : catch ( com::sun::star::lang::IllegalArgumentException& )
4307 : {
4308 : OSL_TRACE("caught IOException saving settings");
4309 : }
4310 0 : catch ( com::sun::star::lang::IllegalAccessException& )
4311 : {
4312 : OSL_TRACE("caught IOException saving settings");
4313 : }
4314 0 : catch ( com::sun::star::uno::Exception& )
4315 : {
4316 : OSL_TRACE("caught some other exception saving settings");
4317 : }
4318 :
4319 0 : GetEntries()->push_back( pToolbar );
4320 :
4321 0 : PersistChanges( GetConfigManager() );
4322 0 : }
4323 :
4324 0 : void ToolbarSaveInData::RemoveToolbar( SvxConfigEntry* pToolbar )
4325 : {
4326 : try
4327 : {
4328 0 : OUString url = pToolbar->GetCommand();
4329 0 : GetConfigManager()->removeSettings( url );
4330 0 : RemoveEntry( GetEntries(), pToolbar );
4331 0 : delete pToolbar;
4332 :
4333 0 : PersistChanges( GetConfigManager() );
4334 :
4335 : // remove the persistent window state data
4336 : css::uno::Reference< css::container::XNameContainer > xNameContainer(
4337 0 : m_xPersistentWindowState, css::uno::UNO_QUERY_THROW );
4338 :
4339 0 : xNameContainer->removeByName( url );
4340 : }
4341 0 : catch ( uno::Exception& )
4342 : {
4343 : // error occurred removing the settings
4344 : }
4345 0 : }
4346 :
4347 0 : void ToolbarSaveInData::RestoreToolbar( SvxConfigEntry* pToolbar )
4348 : {
4349 0 : OUString url = pToolbar->GetCommand();
4350 :
4351 : // Restore of toolbar is done by removing it from
4352 : // it's configuration manager and then getting it again
4353 0 : bool bParentToolbar = pToolbar->IsParentData();
4354 :
4355 : // Cannot restore parent toolbar
4356 0 : if ( bParentToolbar )
4357 : return;
4358 :
4359 : try
4360 : {
4361 0 : GetConfigManager()->removeSettings( url );
4362 0 : pToolbar->GetEntries()->clear();
4363 0 : PersistChanges( GetConfigManager() );
4364 : }
4365 0 : catch ( uno::Exception& )
4366 : {
4367 : // if an error occurs removing the settings then just return
4368 : return;
4369 : }
4370 :
4371 : // Now reload the toolbar settings
4372 : try
4373 : {
4374 0 : uno::Reference< container::XIndexAccess > xToolbarSettings;
4375 0 : if ( IsDocConfig() )
4376 : {
4377 0 : xToolbarSettings = GetParentConfigManager()->getSettings( url, sal_False );
4378 0 : pToolbar->SetParentData( true );
4379 : }
4380 : else
4381 0 : xToolbarSettings = GetConfigManager()->getSettings( url, sal_False );
4382 :
4383 0 : LoadToolbar( xToolbarSettings, pToolbar );
4384 :
4385 : // After reloading, ensure that the icon is reset of each entry
4386 : // in the toolbar
4387 0 : SvxEntries::const_iterator iter = pToolbar->GetEntries()->begin();
4388 0 : uno::Sequence< OUString > aURLSeq( 1 );
4389 0 : for ( ; iter != pToolbar->GetEntries()->end(); ++iter )
4390 : {
4391 0 : SvxConfigEntry* pEntry = *iter;
4392 0 : aURLSeq[ 0 ] = pEntry->GetCommand();
4393 :
4394 : try
4395 : {
4396 0 : GetImageManager()->removeImages( GetImageType(), aURLSeq );
4397 : }
4398 0 : catch ( uno::Exception& )
4399 : {
4400 : OSL_TRACE("Error restoring icon when resetting toolbar");
4401 : }
4402 : }
4403 0 : PersistChanges( GetImageManager() );
4404 : }
4405 0 : catch ( container::NoSuchElementException& )
4406 : {
4407 : // cannot find the resource URL after removing it
4408 : // so no entry will appear in the toolbar list
4409 0 : }
4410 : }
4411 :
4412 0 : bool ToolbarSaveInData::LoadToolbar(
4413 : const uno::Reference< container::XIndexAccess >& xToolbarSettings,
4414 : SvxConfigEntry* pParentData )
4415 : {
4416 0 : SvxEntries* pEntries = pParentData->GetEntries();
4417 :
4418 0 : for ( sal_Int32 nIndex = 0; nIndex < xToolbarSettings->getCount(); ++nIndex )
4419 : {
4420 0 : uno::Reference< container::XIndexAccess > xSubMenu;
4421 0 : OUString aCommandURL;
4422 0 : OUString aLabel;
4423 0 : bool bIsUserDefined = sal_True;
4424 : sal_Bool bIsVisible;
4425 : sal_Int32 nStyle;
4426 :
4427 0 : sal_uInt16 nType( css::ui::ItemType::DEFAULT );
4428 :
4429 : bool bItem = GetToolbarItemData( xToolbarSettings, nIndex, aCommandURL,
4430 0 : aLabel, nType, bIsVisible, nStyle, xSubMenu );
4431 :
4432 0 : if ( bItem )
4433 : {
4434 0 : if ( nType == css::ui::ItemType::DEFAULT )
4435 : {
4436 0 : uno::Any a;
4437 : try
4438 : {
4439 0 : a = m_xCommandToLabelMap->getByName( aCommandURL );
4440 0 : bIsUserDefined = sal_False;
4441 : }
4442 0 : catch ( container::NoSuchElementException& )
4443 : {
4444 0 : bIsUserDefined = sal_True;
4445 : }
4446 :
4447 : // If custom label not set retrieve it from the command
4448 : // to info service
4449 0 : if ( aLabel.equals( OUString() ) )
4450 : {
4451 0 : uno::Sequence< beans::PropertyValue > aPropSeq;
4452 0 : if ( a >>= aPropSeq )
4453 : {
4454 0 : for ( sal_Int32 i = 0; i < aPropSeq.getLength(); ++i )
4455 : {
4456 0 : if ( aPropSeq[i].Name.equalsAscii( ITEM_DESCRIPTOR_LABEL ) )
4457 : {
4458 0 : aPropSeq[i].Value >>= aLabel;
4459 0 : break;
4460 : }
4461 : }
4462 0 : }
4463 : }
4464 :
4465 0 : if ( xSubMenu.is() )
4466 : {
4467 : SvxConfigEntry* pEntry = new SvxConfigEntry(
4468 0 : aLabel, aCommandURL, sal_True );
4469 :
4470 0 : pEntry->SetUserDefined( bIsUserDefined );
4471 0 : pEntry->SetVisible( bIsVisible );
4472 :
4473 0 : pEntries->push_back( pEntry );
4474 :
4475 0 : LoadToolbar( xSubMenu, pEntry );
4476 : }
4477 : else
4478 : {
4479 : SvxConfigEntry* pEntry = new SvxConfigEntry(
4480 0 : aLabel, aCommandURL, sal_False );
4481 0 : pEntry->SetUserDefined( bIsUserDefined );
4482 0 : pEntry->SetVisible( bIsVisible );
4483 0 : pEntry->SetStyle( nStyle );
4484 0 : pEntries->push_back( pEntry );
4485 0 : }
4486 : }
4487 : else
4488 : {
4489 0 : SvxConfigEntry* pEntry = new SvxConfigEntry;
4490 0 : pEntry->SetUserDefined( bIsUserDefined );
4491 0 : pEntries->push_back( pEntry );
4492 : }
4493 : }
4494 0 : }
4495 :
4496 0 : return true;
4497 : }
4498 :
4499 0 : IMPL_LINK( SvxToolbarConfigPage, SelectToolbarEntry, Control *, pBox )
4500 : {
4501 : (void)pBox;
4502 0 : UpdateButtonStates();
4503 0 : return 1;
4504 : }
4505 :
4506 0 : void SvxToolbarConfigPage::UpdateButtonStates()
4507 : {
4508 0 : PopupMenu* pPopup = aModifyCommandButton.GetPopupMenu();
4509 0 : pPopup->EnableItem( ID_RENAME, sal_False );
4510 0 : pPopup->EnableItem( ID_DELETE, sal_False );
4511 0 : pPopup->EnableItem( ID_BEGIN_GROUP, sal_False );
4512 0 : pPopup->EnableItem( ID_DEFAULT_COMMAND, sal_False );
4513 0 : pPopup->EnableItem( ID_ICON_ONLY, sal_False );
4514 0 : pPopup->EnableItem( ID_ICON_AND_TEXT, sal_False );
4515 0 : pPopup->EnableItem( ID_TEXT_ONLY, sal_False );
4516 0 : pPopup->EnableItem( ID_CHANGE_SYMBOL, sal_False );
4517 0 : pPopup->EnableItem( ID_RESET_SYMBOL, sal_False );
4518 :
4519 0 : aDescriptionField.Clear();
4520 :
4521 0 : SvTreeListEntry* selection = aContentsListBox->GetCurEntry();
4522 0 : if ( aContentsListBox->GetEntryCount() == 0 || selection == NULL )
4523 : {
4524 0 : return;
4525 : }
4526 :
4527 0 : SvxConfigEntry* pEntryData = (SvxConfigEntry*) selection->GetUserData();
4528 0 : if ( pEntryData->IsSeparator() )
4529 0 : pPopup->EnableItem( ID_DELETE, sal_True );
4530 : else
4531 : {
4532 0 : pPopup->EnableItem( ID_BEGIN_GROUP, sal_True );
4533 0 : pPopup->EnableItem( ID_DELETE, sal_True );
4534 0 : pPopup->EnableItem( ID_RENAME, sal_True );
4535 0 : pPopup->EnableItem( ID_ICON_ONLY, sal_True );
4536 0 : pPopup->EnableItem( ID_ICON_AND_TEXT, sal_True );
4537 0 : pPopup->EnableItem( ID_TEXT_ONLY, sal_True );
4538 0 : pPopup->EnableItem( ID_CHANGE_SYMBOL, sal_True );
4539 :
4540 0 : if ( !pEntryData->IsUserDefined() )
4541 0 : pPopup->EnableItem( ID_DEFAULT_COMMAND, sal_True );
4542 :
4543 0 : if ( pEntryData->IsIconModified() )
4544 0 : pPopup->EnableItem( ID_RESET_SYMBOL, sal_True );
4545 :
4546 0 : aDescriptionField.SetNewText( pEntryData->GetHelpText() );
4547 : }
4548 : }
4549 :
4550 0 : short SvxToolbarConfigPage::QueryReset()
4551 : {
4552 : String msg =
4553 0 : String( CUI_RES( RID_SVXSTR_CONFIRM_TOOLBAR_RESET ) );
4554 :
4555 : String saveInName = aSaveInListBox.GetEntry(
4556 0 : aSaveInListBox.GetSelectEntryPos() );
4557 :
4558 0 : OUString label = replaceSaveInName( msg, saveInName );
4559 :
4560 0 : QueryBox qbox( this, WB_YES_NO, label );
4561 :
4562 0 : return qbox.Execute();
4563 : }
4564 :
4565 0 : IMPL_LINK( SvxToolbarConfigPage, SelectToolbar, ListBox *, pBox )
4566 : {
4567 : (void)pBox;
4568 :
4569 0 : aContentsListBox->Clear();
4570 :
4571 0 : SvxConfigEntry* pToolbar = GetTopLevelSelection();
4572 0 : if ( pToolbar == NULL )
4573 : {
4574 0 : aModifyTopLevelButton.Enable( sal_False );
4575 0 : aModifyCommandButton.Enable( sal_False );
4576 0 : aAddCommandsButton.Enable( sal_False );
4577 :
4578 0 : return 0;
4579 : }
4580 :
4581 0 : aModifyTopLevelButton.Enable( sal_True );
4582 0 : aModifyCommandButton.Enable( sal_True );
4583 0 : aAddCommandsButton.Enable( sal_True );
4584 :
4585 0 : PopupMenu* pPopup = aModifyTopLevelButton.GetPopupMenu();
4586 :
4587 0 : pPopup->EnableItem( ID_DELETE, pToolbar->IsDeletable() );
4588 0 : pPopup->EnableItem( ID_RENAME, pToolbar->IsRenamable() );
4589 0 : pPopup->EnableItem( ID_DEFAULT_STYLE, !pToolbar->IsRenamable() );
4590 :
4591 0 : switch( pToolbar->GetStyle() )
4592 : {
4593 : case 0:
4594 : {
4595 0 : pPopup->CheckItem( ID_ICONS_ONLY );
4596 0 : break;
4597 : }
4598 : case 1:
4599 : {
4600 0 : pPopup->CheckItem( ID_TEXT_ONLY );
4601 0 : break;
4602 : }
4603 : case 2:
4604 : {
4605 0 : pPopup->CheckItem( ID_ICONS_AND_TEXT );
4606 0 : break;
4607 : }
4608 : }
4609 :
4610 0 : SvxEntries* pEntries = pToolbar->GetEntries();
4611 0 : SvxEntries::const_iterator iter = pEntries->begin();
4612 :
4613 0 : for ( ; iter != pEntries->end(); ++iter )
4614 : {
4615 0 : SvxConfigEntry* pEntry = *iter;
4616 :
4617 0 : SvTreeListEntry* pNewLBEntry = InsertEntryIntoUI( pEntry );
4618 :
4619 0 : if (pEntry->IsBinding())
4620 : {
4621 : aContentsListBox->SetCheckButtonState( pNewLBEntry,
4622 0 : pEntry->IsVisible() ? SV_BUTTON_CHECKED : SV_BUTTON_UNCHECKED );
4623 : }
4624 : else
4625 : {
4626 : aContentsListBox->SetCheckButtonState(
4627 0 : pNewLBEntry, SV_BUTTON_TRISTATE );
4628 : }
4629 : }
4630 :
4631 0 : UpdateButtonStates();
4632 :
4633 0 : return 0;
4634 : }
4635 :
4636 0 : IMPL_LINK( SvxToolbarConfigPage, NewToolbarHdl, Button *, pButton )
4637 : {
4638 : (void)pButton;
4639 :
4640 : String prefix =
4641 0 : String( CUI_RES( RID_SVXSTR_NEW_TOOLBAR ) );
4642 :
4643 : OUString aNewName =
4644 0 : generateCustomName( prefix, GetSaveInData()->GetEntries() );
4645 :
4646 : OUString aNewURL =
4647 0 : generateCustomURL( GetSaveInData()->GetEntries() );
4648 :
4649 0 : SvxNewToolbarDialog* pNameDialog = new SvxNewToolbarDialog( 0, aNewName );
4650 :
4651 : sal_uInt16 nInsertPos;
4652 0 : for ( sal_uInt16 i = 0 ; i < aSaveInListBox.GetEntryCount(); ++i )
4653 : {
4654 : SaveInData* pData =
4655 0 : (SaveInData*) aSaveInListBox.GetEntryData( i );
4656 :
4657 : nInsertPos = pNameDialog->aSaveInListBox.InsertEntry(
4658 0 : aSaveInListBox.GetEntry( i ) );
4659 :
4660 0 : pNameDialog->aSaveInListBox.SetEntryData( nInsertPos, pData );
4661 : }
4662 :
4663 : pNameDialog->aSaveInListBox.SelectEntryPos(
4664 0 : aSaveInListBox.GetSelectEntryPos(), sal_True );
4665 :
4666 0 : bool ret = pNameDialog->Execute();
4667 0 : if ( ret == RET_OK )
4668 : {
4669 0 : pNameDialog->GetName( aNewName );
4670 :
4671 0 : nInsertPos = pNameDialog->aSaveInListBox.GetSelectEntryPos();
4672 :
4673 : ToolbarSaveInData* pData = (ToolbarSaveInData*)
4674 0 : pNameDialog->aSaveInListBox.GetEntryData( nInsertPos );
4675 :
4676 0 : if ( GetSaveInData() != pData )
4677 : {
4678 0 : aSaveInListBox.SelectEntryPos( nInsertPos, sal_True );
4679 0 : aSaveInListBox.GetSelectHdl().Call(this);
4680 : }
4681 :
4682 : SvxConfigEntry* pToolbar =
4683 0 : new SvxConfigEntry( aNewName, aNewURL, sal_True );
4684 :
4685 0 : pToolbar->SetUserDefined( sal_True );
4686 0 : pToolbar->SetMain( sal_True );
4687 :
4688 0 : pData->CreateToolbar( pToolbar );
4689 :
4690 0 : nInsertPos = aTopLevelListBox.InsertEntry( pToolbar->GetName() );
4691 0 : aTopLevelListBox.SetEntryData( nInsertPos, pToolbar );
4692 0 : aTopLevelListBox.SelectEntryPos( nInsertPos, sal_True );
4693 0 : aTopLevelListBox.GetSelectHdl().Call(this);
4694 :
4695 0 : pData->SetModified( sal_True );
4696 : }
4697 :
4698 0 : delete pNameDialog;
4699 :
4700 0 : return 0;
4701 : }
4702 :
4703 0 : IMPL_LINK( SvxToolbarConfigPage, AddCommandsHdl, Button *, pButton )
4704 : {
4705 : (void)pButton;
4706 :
4707 0 : if ( pSelectorDlg == NULL )
4708 : {
4709 : // Create Script Selector which shows slot commands
4710 0 : pSelectorDlg = new SvxScriptSelectorDialog( this, sal_True, m_xFrame );
4711 :
4712 : // Position the Script Selector over the Add button so it is
4713 : // beside the menu contents list and does not obscure it
4714 0 : pSelectorDlg->SetPosPixel( aAddCommandsButton.GetPosPixel() );
4715 :
4716 : pSelectorDlg->SetAddHdl(
4717 0 : LINK( this, SvxToolbarConfigPage, AddFunctionHdl ) );
4718 : }
4719 :
4720 : pSelectorDlg->SetImageProvider(
4721 0 : static_cast< ImageProvider* >( GetSaveInData() ) );
4722 :
4723 0 : pSelectorDlg->Show();
4724 0 : return 1;
4725 : }
4726 :
4727 0 : IMPL_LINK( SvxToolbarConfigPage, AddFunctionHdl,
4728 : SvxScriptSelectorDialog *, pDialog )
4729 : {
4730 : (void)pDialog;
4731 :
4732 0 : AddFunction();
4733 :
4734 0 : return 0;
4735 : }
4736 :
4737 0 : SvTreeListEntry* SvxToolbarConfigPage::AddFunction(
4738 : SvTreeListEntry* pTarget, bool bFront, bool bAllowDuplicates )
4739 : {
4740 : SvTreeListEntry* pNewLBEntry =
4741 0 : SvxConfigPage::AddFunction( pTarget, bFront, bAllowDuplicates );
4742 :
4743 0 : SvxConfigEntry* pEntry = (SvxConfigEntry*) pNewLBEntry->GetUserData();
4744 :
4745 0 : if ( pEntry->IsBinding() )
4746 : {
4747 0 : pEntry->SetVisible( sal_True );
4748 : aContentsListBox->SetCheckButtonState(
4749 0 : pNewLBEntry, SV_BUTTON_CHECKED );
4750 : }
4751 : else
4752 : {
4753 : aContentsListBox->SetCheckButtonState(
4754 0 : pNewLBEntry, SV_BUTTON_TRISTATE );
4755 : }
4756 :
4757 : // get currently selected toolbar and apply change
4758 0 : SvxConfigEntry* pToolbar = GetTopLevelSelection();
4759 :
4760 0 : if ( pToolbar != NULL )
4761 : {
4762 0 : ( ( ToolbarSaveInData* ) GetSaveInData() )->ApplyToolbar( pToolbar );
4763 : }
4764 :
4765 0 : return pNewLBEntry;
4766 : }
4767 :
4768 : // -----------------------------------------------------------------------
4769 :
4770 0 : SvxToolbarEntriesListBox::SvxToolbarEntriesListBox(
4771 : Window* pParent, const ResId& aResId )
4772 : :
4773 : SvxMenuEntriesListBox( pParent, aResId ),
4774 0 : pPage( ( SvxToolbarConfigPage* ) pParent )
4775 : {
4776 0 : m_pButtonData = new SvLBoxButtonData( this );
4777 0 : BuildCheckBoxButtonImages( m_pButtonData );
4778 0 : EnableCheckButton( m_pButtonData );
4779 0 : }
4780 :
4781 : // --------------------------------------------------------
4782 :
4783 0 : SvxToolbarEntriesListBox::~SvxToolbarEntriesListBox()
4784 : {
4785 0 : delete m_pButtonData;
4786 0 : }
4787 :
4788 : // --------------------------------------------------------
4789 :
4790 0 : void SvxToolbarEntriesListBox::BuildCheckBoxButtonImages( SvLBoxButtonData* pData )
4791 : {
4792 : // Build checkbox images according to the current application
4793 : // settings. This is necessary to be able to have correct colors
4794 : // in all color modes, like high contrast.
4795 0 : const AllSettings& rSettings = Application::GetSettings();
4796 :
4797 0 : VirtualDevice aDev;
4798 0 : Size aSize( 26, 20 );
4799 :
4800 0 : aDev.SetOutputSizePixel( aSize );
4801 :
4802 : Image aImage = GetSizedImage( aDev, aSize,
4803 0 : CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_DEFAULT ));
4804 :
4805 : // Fill button data struct with new images
4806 0 : pData->aBmps[SV_BMP_UNCHECKED] = aImage;
4807 0 : pData->aBmps[SV_BMP_CHECKED] = GetSizedImage( aDev, aSize, CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_CHECKED ));
4808 0 : pData->aBmps[SV_BMP_HICHECKED] = GetSizedImage( aDev, aSize, CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_CHECKED | BUTTON_DRAW_PRESSED ));
4809 0 : pData->aBmps[SV_BMP_HIUNCHECKED] = GetSizedImage( aDev, aSize, CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_DEFAULT | BUTTON_DRAW_PRESSED));
4810 0 : pData->aBmps[SV_BMP_TRISTATE] = GetSizedImage( aDev, aSize, Image() ); // Use tristate bitmaps to have no checkbox for separator entries
4811 0 : pData->aBmps[SV_BMP_HITRISTATE] = GetSizedImage( aDev, aSize, Image() );
4812 :
4813 : // Get image size
4814 0 : m_aCheckBoxImageSizePixel = aImage.GetSizePixel();
4815 0 : }
4816 :
4817 0 : Image SvxToolbarEntriesListBox::GetSizedImage(
4818 : VirtualDevice& aDev, const Size& aNewSize, const Image& aImage )
4819 : {
4820 : // Create new checkbox images for treelistbox. They must have a
4821 : // decent width to have a clear column for the visibility checkbox.
4822 :
4823 : // Standard transparent color is light magenta as is won't be
4824 : // used for other things
4825 0 : Color aFillColor( COL_LIGHTMAGENTA );
4826 :
4827 : // Position image at the center of (width-2),(height) rectangle.
4828 : // We need 2 pixels to have a bigger border to the next button image
4829 0 : sal_uInt16 nPosX = std::max( (sal_uInt16) (((( aNewSize.Width() - 2 ) - aImage.GetSizePixel().Width() ) / 2 ) - 1), (sal_uInt16) 0 );
4830 0 : sal_uInt16 nPosY = std::max( (sal_uInt16) (((( aNewSize.Height() - 2 ) - aImage.GetSizePixel().Height() ) / 2 ) + 1), (sal_uInt16) 0 );
4831 0 : Point aPos( nPosX > 0 ? nPosX : 0, nPosY > 0 ? nPosY : 0 );
4832 0 : aDev.SetFillColor( aFillColor );
4833 0 : aDev.SetLineColor( aFillColor );
4834 0 : aDev.DrawRect( Rectangle( Point(), aNewSize ));
4835 0 : aDev.DrawImage( aPos, aImage );
4836 :
4837 : // Draw separator line 2 pixels left from the right border
4838 0 : Color aLineColor = GetDisplayBackground().GetColor().IsDark() ? Color( COL_WHITE ) : Color( COL_BLACK );
4839 0 : aDev.SetLineColor( aLineColor );
4840 0 : aDev.DrawLine( Point( aNewSize.Width()-3, 0 ), Point( aNewSize.Width()-3, aNewSize.Height()-1 ));
4841 :
4842 : // Create new image that uses the fillcolor as transparent
4843 0 : return Image( aDev.GetBitmap( Point(), aNewSize ), aFillColor );
4844 : }
4845 :
4846 0 : void SvxToolbarEntriesListBox::DataChanged( const DataChangedEvent& rDCEvt )
4847 : {
4848 0 : SvTreeListBox::DataChanged( rDCEvt );
4849 :
4850 0 : if (( rDCEvt.GetType() == DATACHANGED_SETTINGS ) &&
4851 0 : ( rDCEvt.GetFlags() & SETTINGS_STYLE ))
4852 : {
4853 0 : BuildCheckBoxButtonImages( m_pButtonData );
4854 0 : Invalidate();
4855 : }
4856 0 : }
4857 :
4858 : // --------------------------------------------------------
4859 :
4860 0 : void SvxToolbarEntriesListBox::ChangeVisibility( SvTreeListEntry* pEntry )
4861 : {
4862 0 : if ( pEntry != NULL )
4863 : {
4864 : SvxConfigEntry* pEntryData =
4865 0 : (SvxConfigEntry*) pEntry->GetUserData();
4866 :
4867 0 : if ( pEntryData->IsBinding() )
4868 : {
4869 0 : pEntryData->SetVisible( !pEntryData->IsVisible() );
4870 :
4871 0 : SvxConfigEntry* pToolbar = pPage->GetTopLevelSelection();
4872 :
4873 : ToolbarSaveInData* pToolbarSaveInData = ( ToolbarSaveInData* )
4874 0 : pPage->GetSaveInData();
4875 :
4876 0 : pToolbarSaveInData->ApplyToolbar( pToolbar );
4877 :
4878 0 : SetCheckButtonState( pEntry, pEntryData->IsVisible() ?
4879 0 : SV_BUTTON_CHECKED : SV_BUTTON_UNCHECKED );
4880 : }
4881 : }
4882 0 : }
4883 :
4884 0 : void SvxToolbarEntriesListBox::CheckButtonHdl()
4885 : {
4886 0 : ChangeVisibility( GetHdlEntry() );
4887 0 : }
4888 :
4889 0 : void SvxToolbarEntriesListBox::KeyInput( const KeyEvent& rKeyEvent )
4890 : {
4891 : // space key will change visibility of toolbar items
4892 0 : if ( rKeyEvent.GetKeyCode() == KEY_SPACE )
4893 : {
4894 0 : ChangeVisibility( GetCurEntry() );
4895 : }
4896 : else
4897 : {
4898 : // pass on to superclass
4899 0 : SvxMenuEntriesListBox::KeyInput( rKeyEvent );
4900 : }
4901 0 : }
4902 :
4903 0 : sal_Bool SvxToolbarEntriesListBox::NotifyMoving(
4904 : SvTreeListEntry* pTarget, SvTreeListEntry* pSource,
4905 : SvTreeListEntry*& rpNewParent, sal_uLong& rNewChildPos)
4906 : {
4907 : bool result = SvxMenuEntriesListBox::NotifyMoving(
4908 0 : pTarget, pSource, rpNewParent, rNewChildPos );
4909 :
4910 0 : if ( result == sal_True )
4911 : {
4912 : // Instant Apply changes to UI
4913 0 : SvxConfigEntry* pToolbar = pPage->GetTopLevelSelection();
4914 0 : if ( pToolbar != NULL )
4915 : {
4916 : ToolbarSaveInData* pSaveInData =
4917 0 : ( ToolbarSaveInData*) pPage->GetSaveInData();
4918 0 : pSaveInData->ApplyToolbar( pToolbar );
4919 : }
4920 : }
4921 :
4922 0 : return result;
4923 : }
4924 :
4925 0 : sal_Bool SvxToolbarEntriesListBox::NotifyCopying(
4926 : SvTreeListEntry* pTarget,
4927 : SvTreeListEntry* pSource,
4928 : SvTreeListEntry*& rpNewParent,
4929 : sal_uLong& rNewChildPos)
4930 : {
4931 : (void)pSource;
4932 : (void)rpNewParent;
4933 : (void)rNewChildPos;
4934 :
4935 0 : if ( !m_bIsInternalDrag )
4936 : {
4937 : // if the target is NULL then add function to the start of the list
4938 0 : ((SvxToolbarConfigPage*)pPage)->AddFunction( pTarget, pTarget == NULL );
4939 :
4940 : // Instant Apply changes to UI
4941 0 : SvxConfigEntry* pToolbar = pPage->GetTopLevelSelection();
4942 0 : if ( pToolbar != NULL )
4943 : {
4944 : ToolbarSaveInData* pSaveInData =
4945 0 : ( ToolbarSaveInData*) pPage->GetSaveInData();
4946 0 : pSaveInData->ApplyToolbar( pToolbar );
4947 : }
4948 :
4949 : // AddFunction already adds the listbox entry so return FALSE
4950 : // to stop another listbox entry being added
4951 0 : return sal_False;
4952 : }
4953 :
4954 : // Copying is only allowed from external controls, not within the listbox
4955 0 : return sal_False;
4956 : }
4957 :
4958 0 : SvxNewToolbarDialog::SvxNewToolbarDialog(
4959 : Window* pWindow, const String& rName )
4960 : :
4961 0 : ModalDialog ( pWindow, CUI_RES( MD_NEW_TOOLBAR ) ),
4962 0 : aFtDescription ( this, CUI_RES( FT_NAME ) ),
4963 0 : aEdtName ( this, CUI_RES( EDT_STRING ) ),
4964 0 : aSaveInText ( this, CUI_RES( TXT_SAVEIN ) ),
4965 0 : aBtnOK ( this, CUI_RES( BTN_OK ) ),
4966 0 : aBtnCancel ( this, CUI_RES( BTN_CANCEL ) ),
4967 0 : aBtnHelp ( this, CUI_RES( BTN_HELP ) ),
4968 0 : aSaveInListBox ( this, CUI_RES( LB_SAVEIN ) )
4969 : {
4970 0 : FreeResource();
4971 :
4972 0 : aEdtName.SetText( rName );
4973 0 : aEdtName.SetSelection(Selection(SELECTION_MIN, SELECTION_MAX));
4974 0 : ModifyHdl(&aEdtName);
4975 0 : aEdtName.SetModifyHdl(LINK(this, SvxNewToolbarDialog, ModifyHdl));
4976 0 : }
4977 :
4978 0 : IMPL_LINK(SvxNewToolbarDialog, ModifyHdl, Edit*, pEdit)
4979 : {
4980 : (void)pEdit;
4981 :
4982 0 : if(aCheckNameHdl.IsSet())
4983 0 : aBtnOK.Enable(aCheckNameHdl.Call(this) > 0);
4984 :
4985 0 : return 0;
4986 : }
4987 :
4988 : /*******************************************************************************
4989 : *
4990 : * The SvxIconSelectorDialog class
4991 : *
4992 : *******************************************************************************/
4993 0 : SvxIconSelectorDialog::SvxIconSelectorDialog( Window *pWindow,
4994 : const uno::Reference< css::ui::XImageManager >& rXImageManager,
4995 : const uno::Reference< css::ui::XImageManager >& rXParentImageManager )
4996 : :
4997 0 : ModalDialog ( pWindow, CUI_RES( MD_ICONSELECTOR ) ),
4998 0 : aFtDescription ( this, CUI_RES( FT_SYMBOLS ) ),
4999 0 : aTbSymbol ( this, CUI_RES( TB_SYMBOLS ) ),
5000 0 : aFtNote ( this, CUI_RES( FT_NOTE ) ),
5001 0 : aBtnOK ( this, CUI_RES( BTN_OK ) ),
5002 0 : aBtnCancel ( this, CUI_RES( BTN_CANCEL ) ),
5003 0 : aBtnHelp ( this, CUI_RES( BTN_HELP ) ),
5004 0 : aBtnImport ( this, CUI_RES( BTN_IMPORT ) ),
5005 0 : aBtnDelete ( this, CUI_RES( BTN_DELETE ) ),
5006 0 : aFlSeparator ( this, CUI_RES( FL_SEPARATOR ) ),
5007 : m_nNextId ( 0 ),
5008 : m_xImageManager ( rXImageManager ),
5009 0 : m_xParentImageManager( rXParentImageManager )
5010 : {
5011 0 : FreeResource();
5012 :
5013 : typedef ::boost::unordered_map< ::rtl::OUString,
5014 : bool,
5015 : ::rtl::OUStringHash,
5016 : ::std::equal_to< ::rtl::OUString > > ImageInfo;
5017 :
5018 0 : aTbSymbol.SetPageScroll( sal_True );
5019 :
5020 0 : bool bLargeIcons = GetImageType() & css::ui::ImageType::SIZE_LARGE;
5021 0 : m_nExpectedSize = bLargeIcons ? 26 : 16;
5022 :
5023 0 : if ( m_nExpectedSize != 16 )
5024 : {
5025 0 : aFtNote.SetText( replaceSixteen( aFtNote.GetText(), m_nExpectedSize ) );
5026 : }
5027 :
5028 : uno::Reference< lang::XMultiServiceFactory > xServiceManager =
5029 0 : ::comphelper::getProcessServiceFactory();
5030 : uno::Reference< uno::XComponentContext > xComponentContext =
5031 0 : ::comphelper::getProcessComponentContext();
5032 :
5033 : m_xGraphProvider = uno::Reference< graphic::XGraphicProvider >(
5034 0 : graphic::GraphicProvider::create( xComponentContext ) );
5035 :
5036 : uno::Reference< beans::XPropertySet > xPropSet(
5037 0 : xServiceManager->createInstance( ::rtl::OUString("com.sun.star.util.PathSettings" ) ),
5038 0 : uno::UNO_QUERY );
5039 :
5040 0 : uno::Any aAny = xPropSet->getPropertyValue( ::rtl::OUString( "UserConfig" ) );
5041 :
5042 0 : ::rtl::OUString aDirectory;
5043 :
5044 0 : aAny >>= aDirectory;
5045 :
5046 0 : sal_Int32 aCount = aDirectory.getLength();
5047 :
5048 0 : if ( aCount > 0 )
5049 : {
5050 0 : sal_Unicode aChar = aDirectory[ aCount-1 ];
5051 0 : if ( aChar != '/')
5052 : {
5053 0 : aDirectory += ::rtl::OUString( "/" );
5054 : }
5055 : }
5056 : else
5057 : {
5058 0 : aBtnImport.Enable( sal_False );
5059 : }
5060 :
5061 0 : aDirectory += ::rtl::OUString( "soffice.cfg/import" );
5062 :
5063 : uno::Reference< lang::XSingleServiceFactory > xStorageFactory(
5064 0 : ::com::sun::star::embed::FileSystemStorageFactory::create( xComponentContext ) );
5065 :
5066 0 : uno::Sequence< uno::Any > aArgs( 2 );
5067 0 : aArgs[ 0 ] <<= aDirectory;
5068 0 : aArgs[ 1 ] <<= com::sun::star::embed::ElementModes::READWRITE;
5069 :
5070 : uno::Reference< com::sun::star::embed::XStorage > xStorage(
5071 0 : xStorageFactory->createInstanceWithArguments( aArgs ), uno::UNO_QUERY );
5072 :
5073 0 : uno::Sequence< uno::Any > aProp( 2 );
5074 0 : beans::PropertyValue aPropValue;
5075 :
5076 0 : aPropValue.Name = ::rtl::OUString( "UserConfigStorage" );
5077 0 : aPropValue.Value <<= xStorage;
5078 0 : aProp[ 0 ] <<= aPropValue;
5079 :
5080 0 : aPropValue.Name = ::rtl::OUString( "OpenMode" );
5081 0 : aPropValue.Value <<= com::sun::star::embed::ElementModes::READWRITE;
5082 0 : aProp[ 1 ] <<= aPropValue;
5083 :
5084 : m_xImportedImageManager = uno::Reference< com::sun::star::ui::XImageManager >(
5085 0 : xServiceManager->createInstanceWithArguments(
5086 0 : ::rtl::OUString("com.sun.star.ui.ImageManager" ), aProp ),
5087 0 : uno::UNO_QUERY );
5088 :
5089 0 : ImageInfo mImageInfo;
5090 0 : uno::Sequence< OUString > names;
5091 0 : if ( m_xImportedImageManager.is() )
5092 : {
5093 0 : names = m_xImportedImageManager->getAllImageNames( GetImageType() );
5094 0 : for ( sal_Int32 n = 0; n < names.getLength(); ++n )
5095 0 : mImageInfo.insert( ImageInfo::value_type( names[n], false ));
5096 : }
5097 0 : sal_uInt16 nId = 1;
5098 0 : ImageInfo::const_iterator pConstIter = mImageInfo.begin();
5099 0 : uno::Sequence< OUString > name( 1 );
5100 0 : while ( pConstIter != mImageInfo.end() )
5101 : {
5102 0 : name[ 0 ] = pConstIter->first;
5103 0 : uno::Sequence< uno::Reference< graphic::XGraphic> > graphics = m_xImportedImageManager->getImages( GetImageType(), name );
5104 0 : if ( graphics.getLength() > 0 )
5105 : {
5106 0 : Image img = Image( graphics[ 0 ] );
5107 0 : aTbSymbol.InsertItem( nId, img, pConstIter->first );
5108 :
5109 0 : graphics[ 0 ]->acquire();
5110 :
5111 : aTbSymbol.SetItemData(
5112 0 : nId, static_cast< void * > ( graphics[ 0 ].get() ) );
5113 :
5114 0 : ++nId;
5115 : }
5116 0 : ++pConstIter;
5117 0 : }
5118 :
5119 0 : ImageInfo aImageInfo;
5120 :
5121 0 : if ( m_xParentImageManager.is() )
5122 : {
5123 0 : names = m_xParentImageManager->getAllImageNames( GetImageType() );
5124 0 : for ( sal_Int32 n = 0; n < names.getLength(); ++n )
5125 0 : aImageInfo.insert( ImageInfo::value_type( names[n], false ));
5126 : }
5127 :
5128 0 : names = m_xImageManager->getAllImageNames( GetImageType() );
5129 0 : for ( sal_Int32 n = 0; n < names.getLength(); ++n )
5130 : {
5131 0 : ImageInfo::iterator pIter = aImageInfo.find( names[n] );
5132 0 : if ( pIter != aImageInfo.end() )
5133 0 : pIter->second = true;
5134 : else
5135 0 : aImageInfo.insert( ImageInfo::value_type( names[n], true ));
5136 : }
5137 :
5138 : // large growth factor, expecting many entries
5139 0 : pConstIter = aImageInfo.begin();
5140 0 : while ( pConstIter != aImageInfo.end() )
5141 : {
5142 0 : name[ 0 ] = pConstIter->first;
5143 :
5144 0 : uno::Sequence< uno::Reference< graphic::XGraphic> > graphics;
5145 : try
5146 : {
5147 0 : if ( pConstIter->second )
5148 0 : graphics = m_xImageManager->getImages( GetImageType(), name );
5149 : else
5150 0 : graphics = m_xParentImageManager->getImages( GetImageType(), name );
5151 : }
5152 0 : catch ( uno::Exception& )
5153 : {
5154 : // can't get sequence for this name so it will not be
5155 : // added to the list
5156 : }
5157 :
5158 0 : if ( graphics.getLength() > 0 )
5159 : {
5160 0 : Image img = Image( graphics[ 0 ] );
5161 0 : aTbSymbol.InsertItem( nId, img, pConstIter->first );
5162 :
5163 0 : uno::Reference< graphic::XGraphic > xGraphic = graphics[ 0 ];
5164 :
5165 0 : if ( xGraphic.is() )
5166 0 : xGraphic->acquire();
5167 :
5168 : aTbSymbol.SetItemData(
5169 0 : nId, static_cast< void * > ( xGraphic.get() ) );
5170 :
5171 0 : ++nId;
5172 : }
5173 :
5174 0 : ++pConstIter;
5175 0 : }
5176 :
5177 0 : aBtnDelete.Enable( sal_False );
5178 0 : aTbSymbol.SetSelectHdl( LINK(this, SvxIconSelectorDialog, SelectHdl) );
5179 0 : aBtnImport.SetClickHdl( LINK(this, SvxIconSelectorDialog, ImportHdl) );
5180 0 : aBtnDelete.SetClickHdl( LINK(this, SvxIconSelectorDialog, DeleteHdl) );
5181 :
5182 0 : m_nNextId = aTbSymbol.GetItemCount()+1;
5183 0 : }
5184 :
5185 0 : SvxIconSelectorDialog::~SvxIconSelectorDialog()
5186 : {
5187 0 : sal_uInt16 nCount = aTbSymbol.GetItemCount();
5188 :
5189 0 : for (sal_uInt16 n = 0; n < nCount; ++n )
5190 : {
5191 0 : sal_uInt16 nId = aTbSymbol.GetItemId(n);
5192 :
5193 : uno::XInterface* xi = static_cast< uno::XInterface* >(
5194 0 : aTbSymbol.GetItemData( nId ) );
5195 :
5196 0 : if ( xi != NULL )
5197 : {
5198 0 : xi->release();
5199 : }
5200 : }
5201 0 : }
5202 :
5203 0 : uno::Reference< graphic::XGraphic> SvxIconSelectorDialog::GetSelectedIcon()
5204 : {
5205 0 : uno::Reference< graphic::XGraphic > result;
5206 :
5207 : sal_uInt16 nId;
5208 0 : for ( sal_uInt16 n = 0; n < aTbSymbol.GetItemCount(); ++n )
5209 : {
5210 0 : nId = aTbSymbol.GetItemId( n );
5211 0 : if ( aTbSymbol.IsItemChecked( nId ) )
5212 : {
5213 : result = uno::Reference< graphic::XGraphic >(
5214 : reinterpret_cast< graphic::XGraphic* >(
5215 0 : aTbSymbol.GetItemData( nId ) ) );
5216 : }
5217 : }
5218 :
5219 0 : return result;
5220 : }
5221 :
5222 0 : IMPL_LINK( SvxIconSelectorDialog, SelectHdl, ToolBox *, pToolBox )
5223 : {
5224 : (void)pToolBox;
5225 :
5226 0 : sal_uInt16 nCount = aTbSymbol.GetItemCount();
5227 :
5228 0 : for (sal_uInt16 n = 0; n < nCount; ++n )
5229 : {
5230 0 : sal_uInt16 nId = aTbSymbol.GetItemId( n );
5231 :
5232 0 : if ( aTbSymbol.IsItemChecked( nId ) )
5233 : {
5234 0 : aTbSymbol.CheckItem( nId, sal_False );
5235 : }
5236 : }
5237 :
5238 0 : sal_uInt16 nId = aTbSymbol.GetCurItemId();
5239 0 : aTbSymbol.CheckItem( nId );
5240 :
5241 0 : ::rtl::OUString aSelImageText = aTbSymbol.GetItemText( nId );
5242 0 : if ( m_xImportedImageManager->hasImage( GetImageType(), aSelImageText ) )
5243 : {
5244 0 : aBtnDelete.Enable( sal_True );
5245 : }
5246 : else
5247 : {
5248 0 : aBtnDelete.Enable( sal_False );
5249 : }
5250 :
5251 0 : return 0;
5252 : }
5253 :
5254 0 : IMPL_LINK( SvxIconSelectorDialog, ImportHdl, PushButton *, pButton )
5255 : {
5256 : (void)pButton;
5257 :
5258 : sfx2::FileDialogHelper aImportDialog(
5259 : css::ui::dialogs::TemplateDescription::FILEOPEN_LINK_PREVIEW,
5260 0 : SFXWB_GRAPHIC | SFXWB_MULTISELECTION );
5261 :
5262 : // disable the link checkbox in the dialog
5263 : uno::Reference< css::ui::dialogs::XFilePickerControlAccess >
5264 0 : xController( aImportDialog.GetFilePicker(), uno::UNO_QUERY);
5265 0 : if ( xController.is() )
5266 : {
5267 0 : xController->enableControl(
5268 : css::ui::dialogs::ExtendedFilePickerElementIds::CHECKBOX_LINK,
5269 0 : sal_False);
5270 : }
5271 :
5272 : aImportDialog.SetCurrentFilter(
5273 0 : rtl::OUString("PNG - Portable Network Graphic"));
5274 :
5275 0 : if ( ERRCODE_NONE == aImportDialog.Execute() )
5276 : {
5277 0 : uno::Sequence< OUString > paths = aImportDialog.GetMPath();
5278 0 : ImportGraphics ( paths );
5279 : }
5280 :
5281 0 : return 0;
5282 : }
5283 :
5284 0 : IMPL_LINK( SvxIconSelectorDialog, DeleteHdl, PushButton *, pButton )
5285 : {
5286 : (void)pButton;
5287 :
5288 0 : OUString message = String( CUI_RES( RID_SVXSTR_DELETE_ICON_CONFIRM ) );
5289 0 : bool ret = WarningBox( this, WinBits(WB_OK_CANCEL), message ).Execute();
5290 :
5291 0 : if ( ret == RET_OK )
5292 : {
5293 0 : sal_uInt16 nCount = aTbSymbol.GetItemCount();
5294 :
5295 0 : for (sal_uInt16 n = 0; n < nCount; ++n )
5296 : {
5297 0 : sal_uInt16 nId = aTbSymbol.GetItemId( n );
5298 :
5299 0 : if ( aTbSymbol.IsItemChecked( nId ) )
5300 : {
5301 0 : ::rtl::OUString aSelImageText = aTbSymbol.GetItemText( nId );
5302 0 : uno::Sequence< OUString > URLs(1);
5303 0 : URLs[0] = aSelImageText;
5304 0 : aTbSymbol.RemoveItem( aTbSymbol.GetItemPos( nId ) );
5305 0 : m_xImportedImageManager->removeImages( GetImageType(), URLs );
5306 : uno::Reference< css::ui::XUIConfigurationPersistence >
5307 0 : xConfigPersistence( m_xImportedImageManager, uno::UNO_QUERY );
5308 0 : if ( xConfigPersistence.is() && xConfigPersistence->isModified() )
5309 : {
5310 0 : xConfigPersistence->store();
5311 : }
5312 0 : break;
5313 : }
5314 : }
5315 : }
5316 0 : return 0;
5317 : }
5318 :
5319 0 : bool SvxIconSelectorDialog::ReplaceGraphicItem(
5320 : const ::rtl::OUString& aURL )
5321 : {
5322 0 : uno::Sequence< OUString > URLs(1);
5323 0 : uno::Sequence< uno::Reference<graphic::XGraphic > > aImportGraph( 1 );
5324 : uno::Reference< css::ui::XUIConfigurationPersistence >
5325 0 : xConfigPer( m_xImportedImageManager, uno::UNO_QUERY );
5326 :
5327 0 : uno::Reference< graphic::XGraphic > xGraphic;
5328 0 : uno::Sequence< beans::PropertyValue > aMediaProps( 1 );
5329 0 : aMediaProps[0].Name = ::rtl::OUString("URL" );
5330 0 : aMediaProps[0].Value <<= aURL;
5331 :
5332 0 : com::sun::star::awt::Size aSize;
5333 0 : bool bOK = sal_False;
5334 : try
5335 : {
5336 0 : xGraphic = m_xGraphProvider->queryGraphic( aMediaProps );
5337 :
5338 : uno::Reference< beans::XPropertySet > props =
5339 0 : m_xGraphProvider->queryGraphicDescriptor( aMediaProps );
5340 0 : uno::Any a = props->getPropertyValue(
5341 0 : OUString("SizePixel") );
5342 0 : a >>= aSize;
5343 0 : if (0 == aSize.Width || 0 == aSize.Height)
5344 0 : return sal_False;
5345 : else
5346 0 : bOK = sal_True;
5347 : }
5348 0 : catch ( uno::Exception& )
5349 : {
5350 0 : return false;
5351 : }
5352 :
5353 0 : bool bResult( false );
5354 0 : sal_uInt16 nCount = aTbSymbol.GetItemCount();
5355 0 : for (sal_uInt16 n = 0; n < nCount; ++n )
5356 : {
5357 0 : sal_uInt16 nId = aTbSymbol.GetItemId( n );
5358 :
5359 0 : if ( OUString( aTbSymbol.GetItemText( nId ) ) == aURL )
5360 : {
5361 : try
5362 : {
5363 : // replace/insert image with provided URL
5364 0 : aTbSymbol.RemoveItem( aTbSymbol.GetItemPos( nId ) );
5365 0 : aMediaProps[0].Value <<= aURL;
5366 :
5367 0 : Image aImage( xGraphic );
5368 0 : if ( bOK && ((aSize.Width != m_nExpectedSize) || (aSize.Height != m_nExpectedSize)) )
5369 : {
5370 0 : BitmapEx aBitmap = aImage.GetBitmapEx();
5371 0 : BitmapEx aBitmapex = BitmapEx::AutoScaleBitmap(aBitmap, m_nExpectedSize);
5372 0 : aImage = Image( aBitmapex);
5373 : }
5374 0 : aTbSymbol.InsertItem( nId,aImage, aURL, 0, 0 ); //modify
5375 :
5376 0 : xGraphic = aImage.GetXGraphic();
5377 :
5378 0 : URLs[0] = aURL;
5379 0 : aImportGraph[ 0 ] = xGraphic;
5380 0 : m_xImportedImageManager->replaceImages( GetImageType(), URLs, aImportGraph );
5381 0 : xConfigPer->store();
5382 :
5383 0 : bResult = true;
5384 0 : break;
5385 : }
5386 0 : catch ( ::com::sun::star::uno::Exception& )
5387 : {
5388 : break;
5389 : }
5390 : }
5391 : }
5392 :
5393 0 : return bResult;
5394 : }
5395 :
5396 0 : void SvxIconSelectorDialog::ImportGraphics(
5397 : const uno::Sequence< OUString >& rPaths )
5398 : {
5399 0 : uno::Sequence< OUString > rejected( rPaths.getLength() );
5400 0 : sal_Int32 rejectedCount = 0;
5401 :
5402 0 : sal_uInt16 ret = 0;
5403 : sal_Int32 aIndex;
5404 0 : OUString aIconName;
5405 0 : uno::Sequence< OUString > URLs(1);
5406 0 : uno::Sequence< uno::Reference<graphic::XGraphic > > aImportGraph( 1 );
5407 0 : uno::Sequence< beans::PropertyValue > aMediaProps( 1 );
5408 0 : aMediaProps[0].Name = ::rtl::OUString("URL" );
5409 : uno::Reference< css::ui::XUIConfigurationPersistence >
5410 0 : xConfigPer( m_xImportedImageManager, uno::UNO_QUERY );
5411 :
5412 0 : if ( rPaths.getLength() == 1 )
5413 : {
5414 0 : if ( m_xImportedImageManager->hasImage( GetImageType(), rPaths[0] ) )
5415 : {
5416 0 : aIndex = rPaths[0].lastIndexOf( '/' );
5417 0 : aIconName = rPaths[0].copy( aIndex+1 );
5418 0 : ret = SvxIconReplacementDialog( this, aIconName ).ShowDialog();
5419 0 : if ( ret == 2 )
5420 : {
5421 0 : ReplaceGraphicItem( rPaths[0] );
5422 : }
5423 : }
5424 : else
5425 : {
5426 0 : if ( ImportGraphic( rPaths[0] ) == sal_False )
5427 : {
5428 0 : rejected[0] = rPaths[0];
5429 0 : rejectedCount = 1;
5430 : }
5431 : }
5432 : }
5433 : else
5434 : {
5435 0 : ::rtl::OUString aSourcePath( rPaths[0] );
5436 0 : if ( rPaths[0].lastIndexOf( '/' ) != rPaths[0].getLength() -1 )
5437 0 : aSourcePath = rPaths[0] + ::rtl::OUString("/" );
5438 :
5439 0 : for ( sal_Int32 i = 1; i < rPaths.getLength(); ++i )
5440 : {
5441 0 : ::rtl::OUString aPath = aSourcePath + rPaths[i];
5442 0 : if ( m_xImportedImageManager->hasImage( GetImageType(), aPath ) )
5443 : {
5444 0 : aIndex = rPaths[i].lastIndexOf( '/' );
5445 0 : aIconName = rPaths[i].copy( aIndex+1 );
5446 0 : ret = SvxIconReplacementDialog( this, aIconName, sal_True ).ShowDialog();
5447 0 : if ( ret == 2 )
5448 : {
5449 0 : ReplaceGraphicItem( aPath );
5450 : }
5451 0 : else if ( ret == 5 )
5452 : {
5453 0 : for ( sal_Int32 k = i; k < rPaths.getLength(); ++k )
5454 : {
5455 0 : aPath = aSourcePath + rPaths[k];
5456 0 : bool bHasReplaced = ReplaceGraphicItem( aPath );
5457 :
5458 0 : if ( !bHasReplaced )
5459 : {
5460 0 : bool result = ImportGraphic( aPath );
5461 0 : if ( result == sal_False )
5462 : {
5463 0 : rejected[ rejectedCount ] = rPaths[i];
5464 0 : ++rejectedCount;
5465 : }
5466 : }
5467 : }
5468 : break;
5469 : }
5470 : }
5471 : else
5472 : {
5473 0 : bool result = ImportGraphic( aSourcePath + rPaths[i] );
5474 0 : if ( result == sal_False )
5475 : {
5476 0 : rejected[ rejectedCount ] = rPaths[i];
5477 0 : ++rejectedCount;
5478 : }
5479 : }
5480 0 : }
5481 : }
5482 :
5483 0 : if ( rejectedCount != 0 )
5484 : {
5485 0 : OUString message;
5486 0 : OUString newLine("\n");
5487 0 : OUString fPath;
5488 0 : if (rejectedCount > 1)
5489 0 : fPath = rPaths[0].copy(8) + ::rtl::OUString("/" );
5490 0 : for ( sal_Int32 i = 0; i < rejectedCount; ++i )
5491 : {
5492 0 : message += fPath + rejected[i];
5493 0 : message += newLine;
5494 : }
5495 :
5496 0 : SvxIconChangeDialog aDialog(this, message);
5497 0 : aDialog.Execute();
5498 0 : }
5499 0 : }
5500 :
5501 0 : bool SvxIconSelectorDialog::ImportGraphic( const OUString& aURL )
5502 : {
5503 0 : bool result = sal_False;
5504 :
5505 0 : sal_uInt16 nId = m_nNextId;
5506 0 : ++m_nNextId;
5507 :
5508 0 : uno::Sequence< beans::PropertyValue > aMediaProps( 1 );
5509 0 : aMediaProps[0].Name = ::rtl::OUString("URL" );
5510 :
5511 0 : uno::Reference< graphic::XGraphic > xGraphic;
5512 0 : com::sun::star::awt::Size aSize;
5513 0 : bool bOK = sal_True;
5514 0 : aMediaProps[0].Value <<= aURL;
5515 : try
5516 : {
5517 : uno::Reference< beans::XPropertySet > props =
5518 0 : m_xGraphProvider->queryGraphicDescriptor( aMediaProps );
5519 :
5520 0 : uno::Any a = props->getPropertyValue(
5521 0 : OUString("SizePixel") );
5522 :
5523 0 : xGraphic = m_xGraphProvider->queryGraphic( aMediaProps );
5524 0 : if ( xGraphic.is() )
5525 : {
5526 0 : a >>= aSize;
5527 0 : if ( 0 == aSize.Width || 0 == aSize.Height )
5528 0 : bOK = sal_False;
5529 :
5530 0 : Image aImage( xGraphic );
5531 :
5532 0 : if ( bOK && ((aSize.Width != m_nExpectedSize) || (aSize.Height != m_nExpectedSize)) )
5533 : {
5534 0 : BitmapEx aBitmap = aImage.GetBitmapEx();
5535 0 : BitmapEx aBitmapex = BitmapEx::AutoScaleBitmap(aBitmap, m_nExpectedSize);
5536 0 : aImage = Image( aBitmapex);
5537 : }
5538 0 : if ( bOK && !!aImage )
5539 : {
5540 0 : aTbSymbol.InsertItem( nId, aImage, aURL, 0, 0 );
5541 :
5542 0 : xGraphic = aImage.GetXGraphic();
5543 0 : xGraphic->acquire();
5544 :
5545 : aTbSymbol.SetItemData(
5546 0 : nId, static_cast< void * > ( xGraphic.get() ) );
5547 0 : uno::Sequence< OUString > aImportURL( 1 );
5548 0 : aImportURL[ 0 ] = aURL;
5549 0 : uno::Sequence< uno::Reference<graphic::XGraphic > > aImportGraph( 1 );
5550 0 : aImportGraph[ 0 ] = xGraphic;
5551 0 : m_xImportedImageManager->insertImages( GetImageType(), aImportURL, aImportGraph );
5552 : uno::Reference< css::ui::XUIConfigurationPersistence >
5553 0 : xConfigPersistence( m_xImportedImageManager, uno::UNO_QUERY );
5554 :
5555 0 : if ( xConfigPersistence.is() && xConfigPersistence->isModified() )
5556 : {
5557 0 : xConfigPersistence->store();
5558 : }
5559 :
5560 0 : result = sal_True;
5561 : }
5562 : else
5563 : {
5564 : OSL_TRACE("could not create Image from XGraphic");
5565 0 : }
5566 : }
5567 : else
5568 : {
5569 : OSL_TRACE("could not get query XGraphic");
5570 0 : }
5571 : }
5572 0 : catch( uno::Exception& e )
5573 : {
5574 : OSL_TRACE("Caught exception importing XGraphic: %s", PRTSTR(e.Message));
5575 : }
5576 0 : return result;
5577 : }
5578 :
5579 : /*******************************************************************************
5580 : *
5581 : * The SvxIconReplacementDialog class
5582 : *
5583 : *******************************************************************************/
5584 0 : SvxIconReplacementDialog :: SvxIconReplacementDialog(
5585 : Window *pWindow, const rtl::OUString& aMessage, bool /*bYestoAll*/ )
5586 : :
5587 0 : MessBox( pWindow, WB_DEF_YES, String( CUI_RES( RID_SVXSTR_REPLACE_ICON_CONFIRM ) ), String( CUI_RES( RID_SVXSTR_REPLACE_ICON_WARNING ) ) )
5588 :
5589 : {
5590 0 : SetImage( WarningBox::GetStandardImage() );
5591 0 : SetMessText( ReplaceIconName( aMessage ) );
5592 0 : RemoveButton( 1 );
5593 0 : AddButton( BUTTON_YES, 2, 0 );
5594 0 : AddButton( String( CUI_RES( RID_SVXSTR_YESTOALL ) ), 5, 0 );
5595 0 : AddButton( BUTTON_NO, 3, 0 );
5596 0 : AddButton( BUTTON_CANCEL, 4, 0 );
5597 0 : }
5598 :
5599 0 : SvxIconReplacementDialog :: SvxIconReplacementDialog(
5600 : Window *pWindow, const rtl::OUString& aMessage )
5601 : :
5602 0 : MessBox( pWindow, WB_YES_NO_CANCEL, String( CUI_RES( RID_SVXSTR_REPLACE_ICON_CONFIRM ) ), String( CUI_RES( RID_SVXSTR_REPLACE_ICON_WARNING ) ) )
5603 : {
5604 0 : SetImage( WarningBox::GetStandardImage() );
5605 0 : SetMessText( ReplaceIconName( aMessage ));
5606 0 : }
5607 :
5608 0 : rtl::OUString SvxIconReplacementDialog :: ReplaceIconName( const OUString& rMessage )
5609 : {
5610 0 : rtl::OUString name;
5611 0 : rtl::OUString message = String( CUI_RES( RID_SVXSTR_REPLACE_ICON_WARNING ) );
5612 0 : rtl::OUString placeholder("%ICONNAME" );
5613 0 : sal_Int32 pos = message.indexOf( placeholder );
5614 0 : if ( pos != -1 )
5615 : {
5616 : name = message.replaceAt(
5617 0 : pos, placeholder.getLength(), rMessage );
5618 : }
5619 0 : return name;
5620 : }
5621 :
5622 0 : sal_uInt16 SvxIconReplacementDialog :: ShowDialog()
5623 : {
5624 0 : this->Execute();
5625 0 : return ( this->GetCurButtonId() );
5626 : }
5627 : /*******************************************************************************
5628 : *
5629 : * The SvxIconChangeDialog class added for issue83555
5630 : *
5631 : *******************************************************************************/
5632 0 : SvxIconChangeDialog::SvxIconChangeDialog(
5633 : Window *pWindow, const rtl::OUString& aMessage)
5634 : :
5635 0 : ModalDialog ( pWindow, CUI_RES( MD_ICONCHANGE ) ),
5636 0 : aFImageInfo (this, CUI_RES( FI_INFO ) ),
5637 0 : aBtnOK (this, CUI_RES(MD_BTN_OK)),
5638 0 : aDescriptionLabel (this, CUI_RES(FTCHGE_DESCRIPTION)),
5639 0 : aLineEditDescription (this, CUI_RES(EDT_ADDR))
5640 : {
5641 0 : FreeResource();
5642 0 : aFImageInfo.SetImage(InfoBox::GetStandardImage());
5643 0 : aLineEditDescription.SetControlBackground( GetSettings().GetStyleSettings().GetDialogColor() );
5644 0 : aLineEditDescription.SetAutoScroll( sal_True );
5645 0 : aLineEditDescription.EnableCursor( sal_False );
5646 0 : aLineEditDescription.SetText(aMessage);
5647 3 : }
5648 :
5649 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|