1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "ToolBarManager.hxx"
#include "DrawViewShell.hxx"
#include "EventMultiplexer.hxx"
#include "ViewShellBase.hxx"
#include "ViewShellManager.hxx"
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/frame/XLayoutManager.hpp>
#include <com/sun/star/ui/UIElementType.hpp>
#include <cppuhelper/implbase1.hxx>
#include <osl/mutex.hxx>
#include <rtl/ref.hxx>
#include <sfx2/app.hxx>
#include <sfx2/docfile.hxx>
#include <sfx2/objsh.hxx>
#include <sfx2/request.hxx>
#include <sfx2/viewfrm.hxx>
#include <svl/eitem.hxx>
#include <svx/dialogs.hrc>
#include <svx/extrusionbar.hxx>
#include <svx/fontworkbar.hxx>
#include <toolkit/helper/vclunohelper.hxx>
#include <tools/link.hxx>
#include <map>
#include <vector>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
namespace {
using namespace sd;
class ToolBarRules;
/** Lock of the frame::XLayoutManager.
*/
class LayouterLock
{
public:
LayouterLock (const Reference<frame::XLayoutManager>& rxLayouter);
~LayouterLock (void);
private:
Reference<frame::XLayoutManager> mxLayouter;
};
typedef ::std::vector<OUString> NameList;
/** Store a list of tool bars for each of the tool bar groups. From
this the list of requested tool bars is built.
*/
class ToolBarList
{
public:
ToolBarList (void);
void ClearGroup (sd::ToolBarManager::ToolBarGroup eGroup);
void AddToolBar (sd::ToolBarManager::ToolBarGroup eGroup, const OUString& rsName);
bool RemoveToolBar (sd::ToolBarManager::ToolBarGroup eGroup, const OUString& rsName);
void GetToolBarsToActivate (NameList& rToolBars) const;
void GetToolBarsToDeactivate (NameList& rToolBars) const;
void MarkToolBarAsActive (const OUString& rsName);
void MarkToolBarAsNotActive (const OUString& rsName);
void MarkAllToolBarsAsNotActive (void);
private:
typedef ::std::map<sd::ToolBarManager::ToolBarGroup,NameList> Groups;
Groups maGroups;
NameList maActiveToolBars;
void MakeRequestedToolBarList (NameList& rToolBars) const;
};
/** Manage tool bars that are implemented as sub shells of a view shell.
The typical procedure of updating the sub shells of a view shell is to
rebuild a list of sub shells that the caller would like to have active.
The methods ClearGroup() and AddShellId() allow the caller to do that. A
final call to UpdateShells() activates the requested shells that are not
active and deactivates the active shells that are not requested .
This is done by maintaining two lists. One (the current list)
reflects the current state. The other (the requested list) contains the
currently requested shells. UpdateShells() makes the requested
list the current list and clears the current list.
Each shell belongs to one group. Different groups can be modified
separately.
*/
class ToolBarShellList
{
public:
/** Create a new object with an empty current list and an empty
requested list.
*/
ToolBarShellList (void);
/** Remove all shells from a group. Calling this method should normally
not be necessary because after the construction or after a call to
UpdateShells() the requested list is empty.
@param eGroup
The group to clear. Shells in other groups are not modified.
*/
void ClearGroup (sd::ToolBarManager::ToolBarGroup eGroup);
/** Add a shell. When the specified shell has alreadt been requested
for another group then it is moved to this group.
@param eGroup
The group to which to add the shell.
@param nId
The id of the shell to add.
*/
void AddShellId (sd::ToolBarManager::ToolBarGroup eGroup, sd::ShellId nId);
/** Releasing all shells means that the given ToolBarRules object is
informed that every shell mananged by the called ToolBarShellList is
about to be removed and that the associated framework tool bars can
be removed as well. The caller still has to call UpdateShells().
*/
void ReleaseAllShells (ToolBarRules& rRules);
/** The requested list is made the current list by activating all
shells in the requested list and by deactivating the shells in the
current list that are not in the requested list.
@param pMainViewShell
The shells that are activated or deactivated are sub shells of
this view shell.
@param rManager
This ViewShellManager is used to activate or deactivate shells.
*/
void UpdateShells (
const ::boost::shared_ptr<ViewShell>& rpMainViewShell,
const ::boost::shared_ptr<ViewShellManager>& rpManager);
private:
class ShellDescriptor
{public:
ShellDescriptor (ShellId nId,sd::ToolBarManager::ToolBarGroup eGroup);
ShellId mnId;
sd::ToolBarManager::ToolBarGroup meGroup;
friend bool operator<(const ShellDescriptor& r1, const ShellDescriptor& r2)
{ return r1.mnId < r2.mnId; }
};
/** The requested list of tool bar shells that will be active after the
next call to UpdateShells().
*/
typedef ::std::set<ShellDescriptor> GroupedShellList;
GroupedShellList maNewList;
/** The list of tool bar shells that are currently on the shell stack.
Using a GroupedShellList is not strictly necessary but it makes
things easier and does not waste too much memory.
*/
GroupedShellList maCurrentList;
};
/** This class concentrates the knowledge about when to show what tool bars
in one place.
*/
class ToolBarRules
{
public:
ToolBarRules (
const ::boost::shared_ptr<ToolBarManager>& rpToolBarManager,
const ::boost::shared_ptr<ViewShellManager>& rpViewShellManager);
/** This method calls MainViewShellChanged() and SelectionHasChanged()
for the current main view shell and its view.
*/
void Update (ViewShellBase& rBase);
/** Reset all tool bars in all groups and add tool bars and tool bar
shells to the TBG_PERMANENT group for the specified ViewShell type.
*/
void MainViewShellChanged (ViewShell::ShellType nShellType);
/** Reset all tool bars in all groups and add tool bars and tool bar
shells to the TBG_PERMANENT group for the specified ViewShell.
*/
void MainViewShellChanged (const ViewShell& rMainViewShell);
/** Reset all tool bars in the TBG_FUNCTION group and add tool bars and tool bar
shells to this group for the current selection.
*/
void SelectionHasChanged (
const ::sd::ViewShell& rViewShell,
const SdrView& rView);
/** Add a tool bar for the specified tool bar shell.
*/
void SubShellAdded (
::sd::ToolBarManager::ToolBarGroup eGroup,
sd::ShellId nShellId);
/** Remove a tool bar for the specified tool bar shell.
*/
void SubShellRemoved (
::sd::ToolBarManager::ToolBarGroup eGroup,
sd::ShellId nShellId);
private:
::boost::shared_ptr<ToolBarManager> mpToolBarManager;
::boost::shared_ptr<ViewShellManager> mpViewShellManager;
};
} // end of anonymous namespace
namespace sd {
//===== ToolBarManager::Implementation ========================================
class ToolBarManager::Implementation
{
public:
/** This constructor takes three arguments even though the
ToolBarManager could be taken from the ViewShellBase. This is so to
state explicitly which information has to be present when this
constructor is called. The ViewShellBase may not have been fully
initialized at this point and must not be asked for this values.
*/
Implementation (
ViewShellBase& rBase,
const ::boost::shared_ptr<sd::tools::EventMultiplexer>& rpMultiplexer,
const ::boost::shared_ptr<ViewShellManager>& rpViewShellManager,
const ::boost::shared_ptr<ToolBarManager>& rpToolBarManager);
~Implementation (void);
void SetValid (bool bValid);
void ResetToolBars (ToolBarGroup eGroup);
void ResetAllToolBars (void);
void AddToolBar (ToolBarGroup eGroup, const OUString& rsToolBarName);
void AddToolBarShell (ToolBarGroup eGroup, ShellId nToolBarId);
void RemoveToolBar (ToolBarGroup eGroup, const OUString& rsToolBarName);
/** Release all tool bar shells and the associated framework tool bars.
Typically called when the main view shell is being replaced by
another, all tool bar shells are released. In that process the
shells are destroyed anyway and without calling this method they
would still be referenced.
*/
void ReleaseAllToolBarShells (void);
void ToolBarsDestroyed(void);
void RequestUpdate (void);
void PreUpdate (void);
void PostUpdate (void);
/** Tell the XLayoutManager about the tool bars that we would like to be
shown.
@param rpLayouterLock
This typically is the mpSynchronousLayouterLock that is used in
this method and that is either released at its end or assigned
to mpAsynchronousLock in order to be unlocked later.
*/
SAL_WNODEPRECATED_DECLARATIONS_PUSH
void Update (::std::auto_ptr<LayouterLock> pLayouterLock);
SAL_WNODEPRECATED_DECLARATIONS_POP
class UpdateLockImplementation
{
public:
UpdateLockImplementation (Implementation& rImplementation)
: mrImplementation(rImplementation) { mrImplementation.LockUpdate(); }
~UpdateLockImplementation (void) { mrImplementation.UnlockUpdate(); }
private:
Implementation& mrImplementation;
};
void LockViewShellManager (void);
void LockUpdate (void);
void UnlockUpdate (void);
ToolBarRules& GetToolBarRules (void);
private:
const static OUString msToolBarResourcePrefix;
mutable ::osl::Mutex maMutex;
ViewShellBase& mrBase;
::boost::shared_ptr<sd::tools::EventMultiplexer> mpEventMultiplexer;
bool mbIsValid;
ToolBarList maToolBarList;
ToolBarShellList maToolBarShellList;
Reference<frame::XLayoutManager> mxLayouter;
sal_Int32 mnLockCount;
bool mbPreUpdatePending;
bool mbPostUpdatePending;
/** The layouter locks manage the locking of the XLayoutManager. The
lock() and unlock() functions are not called directly because the
(final) unlocking is usually done asynchronously *after* the
list of requested toolbars is updated.
*/
SAL_WNODEPRECATED_DECLARATIONS_PUSH
::std::auto_ptr<LayouterLock> mpSynchronousLayouterLock;
::std::auto_ptr<LayouterLock> mpAsynchronousLayouterLock;
::std::auto_ptr<ViewShellManager::UpdateLock> mpViewShellManagerLock;
SAL_WNODEPRECATED_DECLARATIONS_POP
ImplSVEvent * mnPendingUpdateCall;
ImplSVEvent * mnPendingSetValidCall;
ToolBarRules maToolBarRules;
OUString GetToolBarResourceName (const OUString& rsBaseName) const;
bool CheckPlugInMode (const OUString& rsName) const;
DECL_LINK(UpdateCallback, void *);
DECL_LINK(EventMultiplexerCallback, sd::tools::EventMultiplexerEvent*);
DECL_LINK(SetValidCallback,void*);
};
//===== ToolBarManager ========================================================
const OUString ToolBarManager::msToolBar("toolbar");
const OUString ToolBarManager::msOptionsToolBar("optionsbar");
const OUString ToolBarManager::msCommonTaskToolBar("commontaskbar");
const OUString ToolBarManager::msViewerToolBar("viewerbar");
const OUString ToolBarManager::msSlideSorterToolBar("slideviewtoolbar");
const OUString ToolBarManager::msSlideSorterObjectBar("slideviewobjectbar");
const OUString ToolBarManager::msOutlineToolBar("outlinetoolbar");
const OUString ToolBarManager::msMasterViewToolBar("masterviewtoolbar");
const OUString ToolBarManager::msDrawingObjectToolBar("drawingobjectbar");
const OUString ToolBarManager::msGluePointsToolBar("gluepointsobjectbar");
const OUString ToolBarManager::msTextObjectBar("textobjectbar");
const OUString ToolBarManager::msBezierObjectBar("bezierobjectbar");
const OUString ToolBarManager::msGraphicObjectBar("graphicobjectbar");
const OUString ToolBarManager::msMediaObjectBar("mediaobjectbar");
const OUString ToolBarManager::msTableObjectBar("tableobjectbar");
::boost::shared_ptr<ToolBarManager> ToolBarManager::Create (
ViewShellBase& rBase,
const ::boost::shared_ptr<sd::tools::EventMultiplexer>& rpMultiplexer,
const ::boost::shared_ptr<ViewShellManager>& rpViewShellManager)
{
::boost::shared_ptr<ToolBarManager> pManager (new ToolBarManager());
pManager->mpImpl.reset(
new Implementation(rBase,rpMultiplexer,rpViewShellManager,pManager));
return pManager;
}
ToolBarManager::ToolBarManager (void)
: mpImpl()
{
}
ToolBarManager::~ToolBarManager (void)
{
}
void ToolBarManager::Shutdown (void)
{
if (mpImpl.get() != NULL)
mpImpl.reset();
}
void ToolBarManager::ResetToolBars (ToolBarGroup eGroup)
{
if (mpImpl.get() != NULL)
{
UpdateLock aLock (shared_from_this());
mpImpl->ResetToolBars(eGroup);
}
}
void ToolBarManager::ResetAllToolBars (void)
{
if (mpImpl.get() != NULL)
{
UpdateLock aLock (shared_from_this());
mpImpl->ResetAllToolBars();
}
}
void ToolBarManager::AddToolBar (
ToolBarGroup eGroup,
const OUString& rsToolBarName)
{
if (mpImpl.get() != NULL)
{
UpdateLock aLock (shared_from_this());
mpImpl->AddToolBar(eGroup,rsToolBarName);
}
}
void ToolBarManager::AddToolBarShell (
ToolBarGroup eGroup,
ShellId nToolBarId)
{
if (mpImpl.get() != NULL)
{
UpdateLock aLock (shared_from_this());
mpImpl->AddToolBarShell(eGroup,nToolBarId);
}
}
void ToolBarManager::RemoveToolBar (
ToolBarGroup eGroup,
const OUString& rsToolBarName)
{
if (mpImpl.get() != NULL)
{
UpdateLock aLock (shared_from_this());
mpImpl->RemoveToolBar(eGroup,rsToolBarName);
}
}
void ToolBarManager::SetToolBar (
ToolBarGroup eGroup,
const OUString& rsToolBarName)
{
if (mpImpl.get() != NULL)
{
UpdateLock aLock (shared_from_this());
mpImpl->ResetToolBars(eGroup);
mpImpl->AddToolBar(eGroup,rsToolBarName);
}
}
void ToolBarManager::SetToolBarShell (
ToolBarGroup eGroup,
ShellId nToolBarId)
{
if (mpImpl.get() != NULL)
{
UpdateLock aLock (shared_from_this());
mpImpl->ResetToolBars(eGroup);
mpImpl->AddToolBarShell(eGroup,nToolBarId);
}
}
void ToolBarManager::PreUpdate (void)
{
if (mpImpl.get()!=NULL)
mpImpl->PreUpdate();
}
void ToolBarManager::RequestUpdate (void)
{
if (mpImpl.get()!=NULL)
mpImpl->RequestUpdate();
}
void ToolBarManager::LockViewShellManager (void)
{
if (mpImpl.get() != NULL)
mpImpl->LockViewShellManager();
}
void ToolBarManager::LockUpdate (void)
{
if (mpImpl.get()!=NULL)
mpImpl->LockUpdate();
}
void ToolBarManager::UnlockUpdate (void)
{
if (mpImpl.get()!=NULL)
mpImpl->UnlockUpdate();
}
void ToolBarManager::MainViewShellChanged (ViewShell::ShellType nShellType)
{
if (mpImpl.get() != NULL)
{
mpImpl->ReleaseAllToolBarShells();
mpImpl->GetToolBarRules().MainViewShellChanged(nShellType);
}
}
void ToolBarManager::MainViewShellChanged (const ViewShell& rMainViewShell)
{
if (mpImpl.get() != NULL)
{
mpImpl->ReleaseAllToolBarShells();
mpImpl->GetToolBarRules().MainViewShellChanged(rMainViewShell);
}
}
void ToolBarManager::SelectionHasChanged (
const ViewShell& rViewShell,
const SdrView& rView)
{
if (mpImpl.get() != NULL)
mpImpl->GetToolBarRules().SelectionHasChanged(rViewShell,rView);
}
void ToolBarManager::ToolBarsDestroyed(void)
{
if (mpImpl.get() != NULL)
mpImpl->ToolBarsDestroyed();
}
//===== ToolBarManager::Implementation =======================================
const OUString ToolBarManager::Implementation::msToolBarResourcePrefix("private:resource/toolbar/");
ToolBarManager::Implementation::Implementation (
ViewShellBase& rBase,
const ::boost::shared_ptr<sd::tools::EventMultiplexer>& rpMultiplexer,
const ::boost::shared_ptr<ViewShellManager>& rpViewShellManager,
const ::boost::shared_ptr<ToolBarManager>& rpToolBarManager)
: maMutex(),
mrBase(rBase),
mpEventMultiplexer(rpMultiplexer),
mbIsValid(false),
maToolBarList(),
maToolBarShellList(),
mxLayouter(NULL),
mnLockCount(0),
mbPreUpdatePending(false),
mbPostUpdatePending(false),
mpSynchronousLayouterLock(),
mpAsynchronousLayouterLock(),
mpViewShellManagerLock(),
mnPendingUpdateCall(0),
mnPendingSetValidCall(0),
maToolBarRules(rpToolBarManager,rpViewShellManager)
{
Link aLink (LINK(this,ToolBarManager::Implementation,EventMultiplexerCallback));
mpEventMultiplexer->AddEventListener(
aLink,
tools::EventMultiplexerEvent::EID_CONTROLLER_ATTACHED
| tools::EventMultiplexerEvent::EID_CONTROLLER_DETACHED
| tools::EventMultiplexerEvent::EID_PANE_MANAGER_DYING);
}
/** The order of statements is important.
First unregister listeners, which may post user events.
Then remove pending user events.
*/
ToolBarManager::Implementation::~Implementation (void)
{
// Unregister at broadcasters.
Link aLink (LINK(this,ToolBarManager::Implementation,EventMultiplexerCallback));
mpEventMultiplexer->RemoveEventListener(aLink);
// Abort pending user calls.
if (mnPendingUpdateCall != 0)
Application::RemoveUserEvent(mnPendingUpdateCall);
if (mnPendingSetValidCall != 0)
Application::RemoveUserEvent(mnPendingSetValidCall);
}
void ToolBarManager::Implementation::ToolBarsDestroyed(void)
{
maToolBarList.MarkAllToolBarsAsNotActive();
}
void ToolBarManager::Implementation::SetValid (bool bValid)
{
::osl::MutexGuard aGuard(maMutex);
if (mbIsValid != bValid)
{
UpdateLockImplementation aUpdateLock (*this);
mbIsValid = bValid;
if (mbIsValid)
{
Reference<frame::XFrame> xFrame;
if (mrBase.GetViewFrame() != NULL)
xFrame = mrBase.GetViewFrame()->GetFrame().GetFrameInterface();
try
{
Reference<beans::XPropertySet> xFrameProperties (xFrame, UNO_QUERY_THROW);
Any aValue (xFrameProperties->getPropertyValue("LayoutManager"));
aValue >>= mxLayouter;
}
catch (const RuntimeException&)
{
}
GetToolBarRules().Update(mrBase);
}
else
{
ResetAllToolBars();
mxLayouter = NULL;
}
}
}
void ToolBarManager::Implementation::ResetToolBars (ToolBarGroup eGroup)
{
::osl::MutexGuard aGuard(maMutex);
maToolBarList.ClearGroup(eGroup);
maToolBarShellList.ClearGroup(eGroup);
mbPreUpdatePending = true;
}
void ToolBarManager::Implementation::ResetAllToolBars (void)
{
SAL_INFO("sd.view", OSL_THIS_FUNC << ": resetting all tool bars");
for (int i=TBG__FIRST; i<=TBG__LAST; ++i)
ResetToolBars((ToolBarGroup)i);
}
void ToolBarManager::Implementation::AddToolBar (
ToolBarGroup eGroup,
const OUString& rsToolBarName)
{
::osl::MutexGuard aGuard(maMutex);
if (CheckPlugInMode(rsToolBarName))
{
maToolBarList.AddToolBar(eGroup,rsToolBarName);
mbPostUpdatePending = true;
if (mnLockCount == 0)
PostUpdate();
}
}
void ToolBarManager::Implementation::RemoveToolBar (
ToolBarGroup eGroup,
const OUString& rsToolBarName)
{
::osl::MutexGuard aGuard(maMutex);
if (maToolBarList.RemoveToolBar(eGroup,rsToolBarName))
{
mbPreUpdatePending = true;
if (mnLockCount == 0)
PreUpdate();
}
}
void ToolBarManager::Implementation::AddToolBarShell (
ToolBarGroup eGroup,
ShellId nToolBarId)
{
ViewShell* pMainViewShell = mrBase.GetMainViewShell().get();
if (pMainViewShell != NULL)
{
maToolBarShellList.AddShellId(eGroup,nToolBarId);
GetToolBarRules().SubShellAdded(eGroup, nToolBarId);
}
}
void ToolBarManager::Implementation::ReleaseAllToolBarShells (void)
{
maToolBarShellList.ReleaseAllShells(GetToolBarRules());
maToolBarShellList.UpdateShells(mrBase.GetMainViewShell(), mrBase.GetViewShellManager());
}
void ToolBarManager::Implementation::RequestUpdate (void)
{
if (mnPendingUpdateCall == 0)
{
mnPendingUpdateCall = Application::PostUserEvent(
LINK(this,ToolBarManager::Implementation,UpdateCallback));
}
}
void ToolBarManager::Implementation::PreUpdate (void)
{
::osl::MutexGuard aGuard(maMutex);
if (mbIsValid
&& mbPreUpdatePending
&& mxLayouter.is())
{
mbPreUpdatePending = false;
SAL_INFO("sd.view", OSL_THIS_FUNC << ": ToolBarManager::PreUpdate [");
// Get the list of tool bars that are not used anymore and are to be
// deactivated.
NameList aToolBars;
maToolBarList.GetToolBarsToDeactivate(aToolBars);
// Turn off the tool bars.
NameList::const_iterator iToolBar;
for (iToolBar=aToolBars.begin(); iToolBar!=aToolBars.end(); ++iToolBar)
{
OUString sFullName (GetToolBarResourceName(*iToolBar));
SAL_INFO("sd.view", OSL_THIS_FUNC << ": turning off tool bar " <<
OUStringToOString(sFullName, RTL_TEXTENCODING_UTF8).getStr());
mxLayouter->destroyElement(sFullName);
maToolBarList.MarkToolBarAsNotActive(*iToolBar);
}
SAL_INFO("sd.view", OSL_THIS_FUNC << ": ToolBarManager::PreUpdate ]");
}
}
void ToolBarManager::Implementation::PostUpdate (void)
{
::osl::MutexGuard aGuard(maMutex);
if (mbIsValid
&& mbPostUpdatePending
&& mxLayouter.is())
{
mbPostUpdatePending = false;
// Create the list of requested tool bars.
NameList aToolBars;
maToolBarList.GetToolBarsToActivate(aToolBars);
SAL_INFO("sd.view", OSL_THIS_FUNC << ": ToolBarManager::PostUpdate [");
// Turn on the tool bars that are visible in the new context.
NameList::const_iterator iToolBar;
for (iToolBar=aToolBars.begin(); iToolBar!=aToolBars.end(); ++iToolBar)
{
OUString sFullName (GetToolBarResourceName(*iToolBar));
SAL_INFO("sd.view", OSL_THIS_FUNC << ": turning on tool bar " <<
OUStringToOString(sFullName, RTL_TEXTENCODING_UTF8).getStr());
mxLayouter->requestElement(sFullName);
maToolBarList.MarkToolBarAsActive(*iToolBar);
}
SAL_INFO("sd.view", OSL_THIS_FUNC << ": ToolBarManager::PostUpdate ]");
}
}
void ToolBarManager::Implementation::LockViewShellManager (void)
{
if (mpViewShellManagerLock.get() == NULL)
mpViewShellManagerLock.reset(
new ViewShellManager::UpdateLock(mrBase.GetViewShellManager()));
}
void ToolBarManager::Implementation::LockUpdate (void)
{
SAL_INFO("sd.view", OSL_THIS_FUNC << ": LockUpdate " << mnLockCount);
::osl::MutexGuard aGuard(maMutex);
DBG_ASSERT(mnLockCount<100, "ToolBarManager lock count unusually high");
if (mnLockCount == 0)
{
OSL_ASSERT(mpSynchronousLayouterLock.get()==NULL);
mpSynchronousLayouterLock.reset(new LayouterLock(mxLayouter));
}
++mnLockCount;
}
void ToolBarManager::Implementation::UnlockUpdate (void)
{
SAL_INFO("sd.view", OSL_THIS_FUNC << ": UnlockUpdate " << mnLockCount);
::osl::MutexGuard aGuard(maMutex);
OSL_ASSERT(mnLockCount>0);
--mnLockCount;
if (mnLockCount == 0)
{
Update(mpSynchronousLayouterLock);
}
}
SAL_WNODEPRECATED_DECLARATIONS_PUSH
void ToolBarManager::Implementation::Update (
::std::auto_ptr<LayouterLock> pLocalLayouterLock)
{
// When the lock is released and there are pending changes to the set of
// tool bars then update this set now.
if (mnLockCount == 0)
{
// During ceation of ViewShellBase we may have the situation that
// the controller has already been created and attached to the frame
// but that the ToolBarManager has not yet completed its
// initialization (by initializing the mxLayouter member.) We do
// this here so that we do not have to wait for the next Update()
// call to show the tool bars.
if (mnPendingSetValidCall != 0)
{
Application::RemoveUserEvent(mnPendingSetValidCall);
mnPendingSetValidCall = 0;
SetValid(true);
}
if (mbIsValid && mxLayouter.is() && (mbPreUpdatePending || mbPostUpdatePending))
{
// 1) Release UNO tool bars that are not longer used. Do this
// now so that they are not updated when the SFX shell stack is
// modified.
if (mbPreUpdatePending)
PreUpdate();
// 2) Update the requested shells that represent tool bar
// functionality. Those that are not used anymore are
// deactivated now. Those that are missing are activated in the
// next step together with the view shells.
if (mpViewShellManagerLock.get() == NULL)
mpViewShellManagerLock.reset(
new ViewShellManager::UpdateLock(mrBase.GetViewShellManager()));
maToolBarShellList.UpdateShells(
mrBase.GetMainViewShell(),
mrBase.GetViewShellManager());
// 3) Unlock the ViewShellManager::UpdateLock. This updates the
// shell stack. We have to be carfull here. The deletion of
// the lock may end in a synchronous call to LockUpdate(). When
// at this time the lock has been deleted but the auto_ptr has
// not yet been reset then the lock is deleted a second time.
ViewShellManager::UpdateLock* pLock = mpViewShellManagerLock.release();
delete pLock;
// 4) Make the UNO tool bars visible. The outstanding call to
// PostUpdate() is done via PostUserEvent() so that it is
// guaranteed to be executed when the SFX shell stack has been
// updated (under the assumption that our lock to the
// ViewShellManager was the only one open. If that is not the
// case then all should still be well but not as fast.)
// Note that the lock count may have been increased since
// entering this method. In that case one of the next
// UnlockUpdate() calls will post the UpdateCallback.
if (mnPendingUpdateCall==0 && mnLockCount==0)
{
mpAsynchronousLayouterLock = pLocalLayouterLock;
mnPendingUpdateCall = Application::PostUserEvent(
LINK(this,ToolBarManager::Implementation,UpdateCallback));
}
}
else
{
//do this in two steps, first clear mpViewShellManagerLock to be NULL
ViewShellManager::UpdateLock* pLock = mpViewShellManagerLock.release();
//now delete the lock so reentry to this method triggered by this
//delete will encounter an empty mpViewShellManagerLock
delete pLock;
pLocalLayouterLock.reset();
}
}
}
SAL_WNODEPRECATED_DECLARATIONS_POP
ToolBarRules& ToolBarManager::Implementation::GetToolBarRules (void)
{
return maToolBarRules;
}
IMPL_LINK_NOARG(ToolBarManager::Implementation, UpdateCallback)
{
mnPendingUpdateCall = 0;
if (mnLockCount == 0)
{
if (mbPreUpdatePending)
PreUpdate();
if (mbPostUpdatePending)
PostUpdate();
if (mbIsValid && mxLayouter.is())
mpAsynchronousLayouterLock.reset();
}
return 0;
}
IMPL_LINK(ToolBarManager::Implementation,EventMultiplexerCallback,
sd::tools::EventMultiplexerEvent*,pEvent)
{
if (pEvent != NULL)
{
switch (pEvent->meEventId)
{
case tools::EventMultiplexerEvent::EID_CONTROLLER_ATTACHED:
if (mnPendingSetValidCall == 0)
mnPendingSetValidCall
= Application::PostUserEvent(LINK(this,Implementation,SetValidCallback));
break;
case tools::EventMultiplexerEvent::EID_CONTROLLER_DETACHED:
SetValid(false);
break;
case tools::EventMultiplexerEvent::EID_PANE_MANAGER_DYING:
SetValid(false);
break;
}
}
return 0;
}
IMPL_LINK_NOARG(ToolBarManager::Implementation, SetValidCallback)
{
mnPendingSetValidCall = 0;
SetValid(true);
return 0;
}
OUString ToolBarManager::Implementation::GetToolBarResourceName (
const OUString& rsBaseName) const
{
OUString sToolBarName (msToolBarResourcePrefix);
sToolBarName += rsBaseName;
return sToolBarName;
}
bool ToolBarManager::Implementation::CheckPlugInMode (const OUString& rsName) const
{
bool bValid (false);
// Determine the plug in mode.
bool bIsPlugInMode (false);
do
{
SfxObjectShell* pObjectShell = mrBase.GetObjectShell();
if (pObjectShell == NULL)
break;
SfxMedium* pMedium = pObjectShell->GetMedium();
if (pMedium == NULL)
break;
SFX_ITEMSET_ARG(pMedium->GetItemSet(),pViewOnlyItem,SfxBoolItem,SID_VIEWONLY,false);
if (pViewOnlyItem == NULL)
break;
bIsPlugInMode = pViewOnlyItem->GetValue();
}
while (false);
if (rsName.equals(msViewerToolBar))
bValid = bIsPlugInMode;
else
bValid = ! bIsPlugInMode;
return bValid;
}
} // end of namespace sd
namespace {
using namespace ::sd;
//===== LayouterLock ==========================================================
LayouterLock::LayouterLock (const Reference<frame::XLayoutManager>& rxLayouter)
: mxLayouter(rxLayouter)
{
SAL_INFO("sd.view", OSL_THIS_FUNC << ": LayouterLock " << (mxLayouter.is() ? 1 :0));
if (mxLayouter.is())
mxLayouter->lock();
}
LayouterLock::~LayouterLock (void)
{
SAL_INFO("sd.view", OSL_THIS_FUNC << ": ~LayouterLock " << (mxLayouter.is() ? 1 :0));
if (mxLayouter.is())
mxLayouter->unlock();
}
//===== ToolBarRules ==========================================================
ToolBarRules::ToolBarRules (
const ::boost::shared_ptr<sd::ToolBarManager>& rpToolBarManager,
const ::boost::shared_ptr<sd::ViewShellManager>& rpViewShellManager)
: mpToolBarManager(rpToolBarManager),
mpViewShellManager(rpViewShellManager)
{
}
void ToolBarRules::Update (ViewShellBase& rBase)
{
ViewShell* pMainViewShell = rBase.GetMainViewShell().get();
if (pMainViewShell != NULL)
{
MainViewShellChanged(pMainViewShell->GetShellType());
if (pMainViewShell->GetView())
SelectionHasChanged (*pMainViewShell, *pMainViewShell->GetView());
}
else
MainViewShellChanged(ViewShell::ST_NONE);
}
void ToolBarRules::MainViewShellChanged (ViewShell::ShellType nShellType)
{
::sd::ToolBarManager::UpdateLock aToolBarManagerLock (mpToolBarManager);
::sd::ViewShellManager::UpdateLock aViewShellManagerLock (mpViewShellManager);
mpToolBarManager->ResetAllToolBars();
switch(nShellType)
{
case ::sd::ViewShell::ST_IMPRESS:
case ::sd::ViewShell::ST_NOTES:
case ::sd::ViewShell::ST_HANDOUT:
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msToolBar);
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msOptionsToolBar);
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msCommonTaskToolBar);
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msViewerToolBar);
break;
case ::sd::ViewShell::ST_DRAW:
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msToolBar);
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msOptionsToolBar);
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msViewerToolBar);
break;
case ViewShell::ST_OUTLINE:
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msOutlineToolBar);
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msViewerToolBar);
mpToolBarManager->AddToolBarShell(
ToolBarManager::TBG_PERMANENT, RID_DRAW_TEXT_TOOLBOX);
break;
case ViewShell::ST_SLIDE_SORTER:
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msViewerToolBar);
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msSlideSorterToolBar);
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_PERMANENT,
ToolBarManager::msSlideSorterObjectBar);
break;
case ViewShell::ST_NONE:
case ViewShell::ST_PRESENTATION:
case ViewShell::ST_SIDEBAR:
default:
break;
}
}
void ToolBarRules::MainViewShellChanged (const ViewShell& rMainViewShell)
{
::sd::ToolBarManager::UpdateLock aToolBarManagerLock (mpToolBarManager);
::sd::ViewShellManager::UpdateLock aViewShellManagerLock (mpViewShellManager);
MainViewShellChanged(rMainViewShell.GetShellType());
switch(rMainViewShell.GetShellType())
{
case ::sd::ViewShell::ST_IMPRESS:
case ::sd::ViewShell::ST_DRAW:
case ::sd::ViewShell::ST_NOTES:
{
const DrawViewShell* pDrawViewShell
= dynamic_cast<const DrawViewShell*>(&rMainViewShell);
if (pDrawViewShell != NULL)
if (pDrawViewShell->GetEditMode() == EM_MASTERPAGE)
mpToolBarManager->AddToolBar(
ToolBarManager::TBG_MASTER_MODE,
ToolBarManager::msMasterViewToolBar);
break;
}
default:
break;
}
}
void ToolBarRules::SelectionHasChanged (
const ::sd::ViewShell& rViewShell,
const SdrView& rView)
{
::sd::ToolBarManager::UpdateLock aLock (mpToolBarManager);
mpToolBarManager->LockViewShellManager();
bool bTextEdit = rView.IsTextEdit();
mpToolBarManager->ResetToolBars(ToolBarManager::TBG_FUNCTION);
switch (rView.GetContext())
{
case SDRCONTEXT_GRAPHIC:
if( !bTextEdit )
mpToolBarManager->SetToolBarShell(ToolBarManager::TBG_FUNCTION, RID_DRAW_GRAF_TOOLBOX);
break;
case SDRCONTEXT_MEDIA:
if( !bTextEdit )
mpToolBarManager->SetToolBarShell(ToolBarManager::TBG_FUNCTION, RID_DRAW_MEDIA_TOOLBOX);
break;
case SDRCONTEXT_TABLE:
mpToolBarManager->SetToolBarShell(ToolBarManager::TBG_FUNCTION, RID_DRAW_TABLE_TOOLBOX);
bTextEdit = true;
break;
case SDRCONTEXT_STANDARD:
default:
if( !bTextEdit )
{
switch(rViewShell.GetShellType())
{
case ::sd::ViewShell::ST_IMPRESS:
case ::sd::ViewShell::ST_DRAW:
case ::sd::ViewShell::ST_NOTES:
case ::sd::ViewShell::ST_HANDOUT:
mpToolBarManager->SetToolBar(
ToolBarManager::TBG_FUNCTION,
ToolBarManager::msDrawingObjectToolBar);
break;
default:
break;
}
break;
}
}
if( bTextEdit )
mpToolBarManager->AddToolBarShell(ToolBarManager::TBG_FUNCTION, RID_DRAW_TEXT_TOOLBOX);
SdrView* pView = &const_cast<SdrView&>(rView);
// Check if the extrusion tool bar and the fontwork tool bar have to
// be activated.
if (svx::checkForSelectedCustomShapes(pView, true /* bOnlyExtruded */ ))
mpToolBarManager->AddToolBarShell(ToolBarManager::TBG_FUNCTION, RID_SVX_EXTRUSION_BAR);
sal_uInt32 nCheckStatus = 0;
if (svx::checkForSelectedFontWork(pView, nCheckStatus))
mpToolBarManager->AddToolBarShell(ToolBarManager::TBG_FUNCTION, RID_SVX_FONTWORK_BAR);
// Switch on additional context-sensitive tool bars.
if (rView.GetContext() == SDRCONTEXT_POINTEDIT)
mpToolBarManager->AddToolBarShell(ToolBarManager::TBG_FUNCTION, RID_BEZIER_TOOLBOX);
}
void ToolBarRules::SubShellAdded (
::sd::ToolBarManager::ToolBarGroup eGroup,
sd::ShellId nShellId)
{
// For some tool bar shells (those defined in sd) we have to add the
// actual tool bar here.
switch (nShellId)
{
case RID_DRAW_GRAF_TOOLBOX:
mpToolBarManager->AddToolBar(eGroup, ToolBarManager::msGraphicObjectBar);
break;
case RID_DRAW_MEDIA_TOOLBOX:
mpToolBarManager->AddToolBar(eGroup, ToolBarManager::msMediaObjectBar);
break;
case RID_DRAW_TEXT_TOOLBOX:
mpToolBarManager->AddToolBar(eGroup, ToolBarManager::msTextObjectBar);
break;
case RID_BEZIER_TOOLBOX:
mpToolBarManager->AddToolBar(eGroup, ToolBarManager::msBezierObjectBar);
break;
case RID_DRAW_TABLE_TOOLBOX:
mpToolBarManager->AddToolBar(eGroup, ToolBarManager::msTableObjectBar);
break;
}
}
void ToolBarRules::SubShellRemoved (
::sd::ToolBarManager::ToolBarGroup eGroup,
sd::ShellId nShellId)
{
// For some tool bar shells (those defined in sd) we have to add the
// actual tool bar here.
switch (nShellId)
{
case RID_DRAW_GRAF_TOOLBOX:
mpToolBarManager->RemoveToolBar(eGroup, ToolBarManager::msGraphicObjectBar);
break;
case RID_DRAW_MEDIA_TOOLBOX:
mpToolBarManager->RemoveToolBar(eGroup, ToolBarManager::msMediaObjectBar);
break;
case RID_DRAW_TEXT_TOOLBOX:
mpToolBarManager->RemoveToolBar(eGroup, ToolBarManager::msTextObjectBar);
break;
case RID_BEZIER_TOOLBOX:
mpToolBarManager->RemoveToolBar(eGroup, ToolBarManager::msBezierObjectBar);
break;
case RID_DRAW_TABLE_TOOLBOX:
mpToolBarManager->RemoveToolBar(eGroup, ToolBarManager::msTableObjectBar);
break;
}
}
//===== ToolBarList ===========================================================
ToolBarList::ToolBarList (void)
: maGroups(),
maActiveToolBars()
{
}
void ToolBarList::ClearGroup (sd::ToolBarManager::ToolBarGroup eGroup)
{
Groups::iterator iGroup (maGroups.find(eGroup));
if (iGroup != maGroups.end())
{
if ( ! iGroup->second.empty())
{
iGroup->second.clear();
}
}
}
void ToolBarList::AddToolBar (
sd::ToolBarManager::ToolBarGroup eGroup,
const OUString& rsName)
{
Groups::iterator iGroup (maGroups.find(eGroup));
if (iGroup == maGroups.end())
iGroup = maGroups.insert(Groups::value_type(eGroup,NameList())).first;
if (iGroup != maGroups.end())
{
NameList::const_iterator iBar (
::std::find(iGroup->second.begin(),iGroup->second.end(),rsName));
if (iBar == iGroup->second.end())
{
iGroup->second.push_back(rsName);
}
}
}
bool ToolBarList::RemoveToolBar (
sd::ToolBarManager::ToolBarGroup eGroup,
const OUString& rsName)
{
Groups::iterator iGroup (maGroups.find(eGroup));
if (iGroup != maGroups.end())
{
NameList::iterator iBar (
::std::find(iGroup->second.begin(),iGroup->second.end(),rsName));
if (iBar != iGroup->second.end())
{
iGroup->second.erase(iBar);
return true;
}
}
return false;
}
void ToolBarList::MakeRequestedToolBarList (NameList& rRequestedToolBars) const
{
for (int i=sd::ToolBarManager::TBG__FIRST; i<=sd::ToolBarManager::TBG__LAST; ++i)
{
::sd::ToolBarManager::ToolBarGroup eGroup = (::sd::ToolBarManager::ToolBarGroup)i;
Groups::const_iterator iGroup (maGroups.find(eGroup));
if (iGroup != maGroups.end())
::std::copy(
iGroup->second.begin(),
iGroup->second.end(),
::std::inserter(rRequestedToolBars,rRequestedToolBars.end()));
}
}
void ToolBarList::GetToolBarsToActivate (NameList& rToolBars) const
{
NameList aRequestedToolBars;
MakeRequestedToolBarList(aRequestedToolBars);
NameList::const_iterator iToolBar;
for (iToolBar=aRequestedToolBars.begin(); iToolBar!=aRequestedToolBars.end(); ++iToolBar)
{
if (::std::find(maActiveToolBars.begin(),maActiveToolBars.end(),*iToolBar)
== maActiveToolBars.end())
{
rToolBars.push_back(*iToolBar);
}
}
}
void ToolBarList::GetToolBarsToDeactivate (NameList& rToolBars) const
{
NameList aRequestedToolBars;
MakeRequestedToolBarList(aRequestedToolBars);
NameList::const_iterator iToolBar;
for (iToolBar=maActiveToolBars.begin(); iToolBar!=maActiveToolBars.end(); ++iToolBar)
{
if (::std::find(aRequestedToolBars.begin(),aRequestedToolBars.end(),*iToolBar)
== aRequestedToolBars.end())
{
rToolBars.push_back(*iToolBar);
}
}
}
void ToolBarList::MarkToolBarAsActive (const OUString& rsName)
{
maActiveToolBars.push_back(rsName);
}
void ToolBarList::MarkToolBarAsNotActive (const OUString& rsName)
{
maActiveToolBars.erase(
::std::find(maActiveToolBars.begin(),maActiveToolBars.end(), rsName));
}
void ToolBarList::MarkAllToolBarsAsNotActive (void)
{
maActiveToolBars.clear();
}
//===== ToolBarShellList ======================================================
ToolBarShellList::ShellDescriptor::ShellDescriptor (
ShellId nId,
sd::ToolBarManager::ToolBarGroup eGroup)
: mnId(nId),
meGroup(eGroup)
{
}
ToolBarShellList::ToolBarShellList (void)
: maNewList()
, maCurrentList()
{
}
void ToolBarShellList::ClearGroup (sd::ToolBarManager::ToolBarGroup eGroup)
{
// In every loop we erase the first member of the specified group.
// Because that invalidates the iterator another loop is started after
// that. The loop is left only when no member of the group is found and
// no element is erased
bool bLoop;
do
{
bLoop = false;
GroupedShellList::iterator iDescriptor;
for (iDescriptor=maNewList.begin(); iDescriptor!=maNewList.end(); ++iDescriptor)
if (iDescriptor->meGroup == eGroup)
{
maNewList.erase(iDescriptor);
// Erasing the descriptor invalidated the iterator so we
// have to exit the for loop and start anew to search for
// further elements of the group.
bLoop = true;
break;
}
}
while (bLoop);
}
void ToolBarShellList::AddShellId (sd::ToolBarManager::ToolBarGroup eGroup, sd::ShellId nId)
{
// Make sure that the shell is not added twice (and possibly in
// different groups.)
ShellDescriptor aDescriptor (nId,eGroup);
GroupedShellList::iterator iDescriptor (maNewList.find(aDescriptor));
if (iDescriptor != maNewList.end())
{
// The shell is already requested.
if (iDescriptor->meGroup != eGroup)
{
// It is now being requested for another group.
// (Is this an error?)
// Move it to that group.
maNewList.erase(iDescriptor);
maNewList.insert(aDescriptor);
}
// else nothing to do.
}
else
maNewList.insert(aDescriptor);
}
void ToolBarShellList::ReleaseAllShells (ToolBarRules& rRules)
{
// Release the currently active tool bars.
GroupedShellList aList (maCurrentList);
GroupedShellList::iterator iDescriptor;
for (iDescriptor=aList.begin(); iDescriptor!=aList.end(); ++iDescriptor)
{
rRules.SubShellRemoved(iDescriptor->meGroup, iDescriptor->mnId);
}
// Clear the list of requested tool bars.
maNewList.clear();
}
void ToolBarShellList::UpdateShells (
const ::boost::shared_ptr<ViewShell>& rpMainViewShell,
const ::boost::shared_ptr<ViewShellManager>& rpManager)
{
if (rpMainViewShell.get() != NULL)
{
GroupedShellList aList;
// Deactivate shells that are in maCurrentList, but not in
// maNewList.
::std::set_difference(maCurrentList.begin(), maCurrentList.end(),
maNewList.begin(), maNewList.end(),
std::insert_iterator<GroupedShellList>(aList,aList.begin()));
for (GroupedShellList::iterator iShell=aList.begin(); iShell!=aList.end(); ++iShell)
{
SAL_INFO("sd.view", OSL_THIS_FUNC << ": deactivating tool bar shell " << iShell->mnId);
rpManager->DeactivateSubShell(*rpMainViewShell, iShell->mnId);
}
// Activate shells that are in maNewList, but not in
// maCurrentList.
aList.clear();
::std::set_difference(maNewList.begin(), maNewList.end(),
maCurrentList.begin(), maCurrentList.end(),
std::insert_iterator<GroupedShellList>(aList,aList.begin()));
for (GroupedShellList::iterator iShell=aList.begin(); iShell!=aList.end(); ++iShell)
{
SAL_INFO("sd.view", OSL_THIS_FUNC << ": activating tool bar shell " << iShell->mnId);
rpManager->ActivateSubShell(*rpMainViewShell, iShell->mnId);
}
// The maNewList now refelects the current state and thus is made
// maCurrentList.
maCurrentList = maNewList;
}
}
} // end of anonymous namespace
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|