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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#include <comphelper/uno3.hxx>
#include <comphelper/stl_types.hxx>
#include <svtools/unoevent.hxx>
#include <svtools/unoimap.hxx>
#include <svx/svdobj.hxx>
#include <vcl/svapp.hxx>
#include <svx/unoshape.hxx>
#include <editeng/unofield.hxx>
#include <svx/shapepropertynotifier.hxx>
#include <toolkit/helper/convert.hxx>
#include <cppuhelper/implbase2.hxx>
#include <com/sun/star/drawing/XShape.hpp>
#include <com/sun/star/beans/PropertyAttribute.hpp>
#include "shapeuno.hxx"
#include "miscuno.hxx"
#include "cellsuno.hxx"
#include "textuno.hxx"
#include "fielduno.hxx"
#include "docsh.hxx"
#include "drwlayer.hxx"
#include "userdat.hxx"
#include "unonames.hxx"
using namespace ::com::sun::star;
//------------------------------------------------------------------------
DECLARE_STL_USTRINGACCESS_MAP( uno::Sequence< sal_Int8 > *, ScShapeImplementationIdMap );
static ScShapeImplementationIdMap aImplementationIdMap;
const SfxItemPropertyMapEntry* lcl_GetShapeMap()
{
static SfxItemPropertyMapEntry aShapeMap_Impl[] =
{
{MAP_CHAR_LEN(SC_UNONAME_ANCHOR), 0, &getCppuType((uno::Reference<uno::XInterface>*)0), 0, 0 },
{MAP_CHAR_LEN(SC_UNONAME_HORIPOS), 0, &getCppuType((sal_Int32*)0), 0, 0 },
{MAP_CHAR_LEN(SC_UNONAME_IMAGEMAP), 0, &getCppuType((uno::Reference<container::XIndexContainer>*)0), 0, 0 },
{MAP_CHAR_LEN(SC_UNONAME_VERTPOS), 0, &getCppuType((sal_Int32*)0), 0, 0 },
{MAP_CHAR_LEN(SC_UNONAME_MOVEPROTECT), 0, &getCppuType((sal_Bool*)0), 0, 0 },
// #i66550 HLINK_FOR_SHAPES
{MAP_CHAR_LEN(SC_UNONAME_HYPERLINK), 0, &getCppuType((rtl::OUString*)0), 0, 0 },
{MAP_CHAR_LEN(SC_UNONAME_URL), 0, &getCppuType((rtl::OUString*)0), 0, 0 },
{0,0,0,0,0,0}
};
return aShapeMap_Impl;
}
const SvEventDescription* ScShapeObj::GetSupportedMacroItems()
{
static const SvEventDescription aMacroDescriptionsImpl[] =
{
{ 0, NULL }
};
return aMacroDescriptionsImpl;
}
// #i66550 HLINK_FOR_SHAPES
ScMacroInfo* lcl_getShapeHyperMacroInfo( ScShapeObj* pShape, sal_Bool bCreate = false )
{
if( pShape )
if( SdrObject* pObj = pShape->GetSdrObject() )
return ScDrawLayer::GetMacroInfo( pObj, bCreate );
return 0;
}
//------------------------------------------------------------------------
namespace
{
void lcl_initializeNotifier( SdrObject& _rSdrObj, ::cppu::OWeakObject& _rShape )
{
::svx::PPropertyValueProvider pProvider( new ::svx::PropertyValueProvider( _rShape, "Anchor" ) );
_rSdrObj.getShapePropertyChangeNotifier().registerProvider( ::svx::eSpreadsheetAnchor, pProvider );
}
}
//------------------------------------------------------------------------
ScShapeObj::ScShapeObj( uno::Reference<drawing::XShape>& xShape ) :
pShapePropertySet(NULL),
pShapePropertyState(NULL),
pImplementationId(NULL),
bIsTextShape(false),
bInitializedNotifier(false)
{
comphelper::increment( m_refCount );
{
mxShapeAgg = uno::Reference<uno::XAggregation>( xShape, uno::UNO_QUERY );
// extra block to force deletion of the temporary before setDelegator
}
if (mxShapeAgg.is())
{
xShape = NULL; // during setDelegator, mxShapeAgg must be the only ref
mxShapeAgg->setDelegator( (cppu::OWeakObject*)this );
xShape.set(uno::Reference<drawing::XShape>( mxShapeAgg, uno::UNO_QUERY ));
bIsTextShape = ( SvxUnoTextBase::getImplementation( mxShapeAgg ) != NULL );
}
{
SdrObject* pObj = GetSdrObject();
if ( pObj )
{
lcl_initializeNotifier( *pObj, *this );
bInitializedNotifier = true;
}
}
comphelper::decrement( m_refCount );
}
ScShapeObj::~ScShapeObj()
{
// if (mxShapeAgg.is())
// mxShapeAgg->setDelegator(uno::Reference<uno::XInterface>());
}
// XInterface
uno::Any SAL_CALL ScShapeObj::queryInterface( const uno::Type& rType )
throw(uno::RuntimeException)
{
uno::Any aRet = ScShapeObj_Base::queryInterface( rType );
if ( !aRet.hasValue() && bIsTextShape )
aRet = ScShapeObj_TextBase::queryInterface( rType );
if ( !aRet.hasValue() && mxShapeAgg.is() )
aRet = mxShapeAgg->queryAggregation( rType );
return aRet;
}
void SAL_CALL ScShapeObj::acquire() throw()
{
OWeakObject::acquire();
}
void SAL_CALL ScShapeObj::release() throw()
{
OWeakObject::release();
}
void ScShapeObj::GetShapePropertySet()
{
// #i61908# Store the result of queryAggregation in a member.
// The reference in mxShapeAgg is kept for this object's lifetime, so the pointer is always valid.
if (!pShapePropertySet)
{
uno::Reference<beans::XPropertySet> xProp;
if ( mxShapeAgg.is() )
mxShapeAgg->queryAggregation( getCppuType((uno::Reference<beans::XPropertySet>*) 0) ) >>= xProp;
pShapePropertySet = xProp.get();
}
}
void ScShapeObj::GetShapePropertyState()
{
// #i61908# Store the result of queryAggregation in a member.
// The reference in mxShapeAgg is kept for this object's lifetime, so the pointer is always valid.
if (!pShapePropertyState)
{
uno::Reference<beans::XPropertyState> xState;
if ( mxShapeAgg.is() )
mxShapeAgg->queryAggregation( getCppuType((uno::Reference<beans::XPropertyState>*) 0) ) >>= xState;
pShapePropertyState = xState.get();
}
}
uno::Reference<lang::XComponent> lcl_GetComponent( const uno::Reference<uno::XAggregation>& xAgg )
{
uno::Reference<lang::XComponent> xRet;
if ( xAgg.is() )
xAgg->queryAggregation( getCppuType((uno::Reference<lang::XComponent>*) 0) ) >>= xRet;
return xRet;
}
uno::Reference<text::XText> lcl_GetText( const uno::Reference<uno::XAggregation>& xAgg )
{
uno::Reference<text::XText> xRet;
if ( xAgg.is() )
xAgg->queryAggregation( getCppuType((uno::Reference<text::XText>*) 0) ) >>= xRet;
return xRet;
}
uno::Reference<text::XSimpleText> lcl_GetSimpleText( const uno::Reference<uno::XAggregation>& xAgg )
{
uno::Reference<text::XSimpleText> xRet;
if ( xAgg.is() )
xAgg->queryAggregation( getCppuType((uno::Reference<text::XSimpleText>*) 0) ) >>= xRet;
return xRet;
}
uno::Reference<text::XTextRange> lcl_GetTextRange( const uno::Reference<uno::XAggregation>& xAgg )
{
uno::Reference<text::XTextRange> xRet;
if ( xAgg.is() )
xAgg->queryAggregation( getCppuType((uno::Reference<text::XTextRange>*) 0) ) >>= xRet;
return xRet;
}
// XPropertySet
uno::Reference<beans::XPropertySetInfo> SAL_CALL ScShapeObj::getPropertySetInfo()
throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
// #i61527# cache property set info for this object
if ( !mxPropSetInfo.is() )
{
// mix own and aggregated properties:
GetShapePropertySet();
if (pShapePropertySet)
{
uno::Reference<beans::XPropertySetInfo> xAggInfo(pShapePropertySet->getPropertySetInfo());
const uno::Sequence<beans::Property> aPropSeq(xAggInfo->getProperties());
mxPropSetInfo.set(new SfxExtItemPropertySetInfo( lcl_GetShapeMap(), aPropSeq ));
}
}
return mxPropSetInfo;
}
sal_Bool lcl_GetPageNum( SdrPage* pPage, SdrModel& rModel, SCTAB& rNum )
{
sal_uInt16 nCount = rModel.GetPageCount();
for (sal_uInt16 i=0; i<nCount; i++)
if ( rModel.GetPage(i) == pPage )
{
rNum = static_cast<SCTAB>(i);
return sal_True;
}
return false;
}
sal_Bool lcl_GetCaptionPoint( uno::Reference< drawing::XShape >& xShape, awt::Point& rCaptionPoint )
{
sal_Bool bReturn = false;
rtl::OUString sType(xShape->getShapeType());
sal_Bool bCaptionShape(sType.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("com.sun.star.drawing.CaptionShape")));
if (bCaptionShape)
{
uno::Reference < beans::XPropertySet > xShapeProp (xShape, uno::UNO_QUERY);
if (xShapeProp.is())
{
xShapeProp->getPropertyValue( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "CaptionPoint" )) ) >>= rCaptionPoint;
bReturn = sal_True;
}
}
return bReturn;
}
ScRange lcl_GetAnchorCell( uno::Reference< drawing::XShape >& xShape, ScDocument* pDoc, SCTAB nTab,
awt::Point& rUnoPoint, awt::Size& rUnoSize, awt::Point& rCaptionPoint )
{
ScRange aReturn;
rUnoPoint = xShape->getPosition();
rtl::OUString sType(xShape->getShapeType());
sal_Bool bCaptionShape(lcl_GetCaptionPoint(xShape, rCaptionPoint));
if (pDoc->IsNegativePage(nTab))
{
rUnoSize = xShape->getSize();
rUnoPoint.X += rUnoSize.Width; // the right top point is base
if (bCaptionShape)
{
if (rCaptionPoint.X > 0 && rCaptionPoint.X > rUnoSize.Width)
rUnoPoint.X += rCaptionPoint.X - rUnoSize.Width;
if (rCaptionPoint.Y < 0)
rUnoPoint.Y += rCaptionPoint.Y;
}
aReturn = pDoc->GetRange( nTab, Rectangle( VCLPoint(rUnoPoint), VCLPoint(rUnoPoint) ));
}
else
{
if (bCaptionShape)
{
if (rCaptionPoint.X < 0)
rUnoPoint.X += rCaptionPoint.X;
if (rCaptionPoint.Y < 0)
rUnoPoint.Y += rCaptionPoint.Y;
}
aReturn = pDoc->GetRange( nTab, Rectangle( VCLPoint(rUnoPoint), VCLPoint(rUnoPoint) ));
}
return aReturn;
}
awt::Point lcl_GetRelativePos( uno::Reference< drawing::XShape >& xShape, ScDocument* pDoc, SCTAB nTab, ScRange& rRange,
awt::Size& rUnoSize, awt::Point& rCaptionPoint)
{
awt::Point aUnoPoint;
rRange = lcl_GetAnchorCell(xShape, pDoc, nTab, aUnoPoint, rUnoSize, rCaptionPoint);
Rectangle aRect(pDoc->GetMMRect( rRange.aStart.Col(), rRange.aStart.Row(), rRange.aEnd.Col(), rRange.aEnd.Row(), rRange.aStart.Tab() ));
Point aPoint = pDoc->IsNegativePage(nTab) ? aRect.TopRight() : aRect.TopLeft();
aUnoPoint.X -= aPoint.X();
aUnoPoint.Y -= aPoint.Y();
return aUnoPoint;
}
void SAL_CALL ScShapeObj::setPropertyValue(
const rtl::OUString& aPropertyName, const uno::Any& aValue )
throw(beans::UnknownPropertyException, beans::PropertyVetoException,
lang::IllegalArgumentException, lang::WrappedTargetException,
uno::RuntimeException)
{
SolarMutexGuard aGuard;
String aNameString(aPropertyName);
if ( aNameString.EqualsAscii( SC_UNONAME_ANCHOR ) )
{
uno::Reference<sheet::XCellRangeAddressable> xRangeAdd(aValue, uno::UNO_QUERY);
if (xRangeAdd.is())
{
SdrObject *pObj = GetSdrObject();
if (pObj)
{
ScDrawLayer* pModel = (ScDrawLayer*)pObj->GetModel();
SdrPage* pPage = pObj->GetPage();
if ( pModel && pPage )
{
ScDocument* pDoc = pModel->GetDocument();
if ( pDoc )
{
SfxObjectShell* pObjSh = pDoc->GetDocumentShell();
if ( pObjSh && pObjSh->ISA(ScDocShell) )
{
ScDocShell* pDocSh = (ScDocShell*)pObjSh;
SCTAB nTab = 0;
if ( lcl_GetPageNum( pPage, *pModel, nTab ) )
{
table::CellRangeAddress aAddress = xRangeAdd->getRangeAddress();
if (nTab == aAddress.Sheet)
{
Rectangle aRect(pDoc->GetMMRect( static_cast<SCCOL>(aAddress.StartColumn), static_cast<SCROW>(aAddress.StartRow),
static_cast<SCCOL>(aAddress.EndColumn), static_cast<SCROW>(aAddress.EndRow), aAddress.Sheet ));
awt::Point aRelPoint;
uno::Reference<drawing::XShape> xShape( mxShapeAgg, uno::UNO_QUERY );
if (xShape.is())
{
Point aPoint;
Point aEndPoint;
if (pDoc->IsNegativePage(nTab))
{
aPoint = aRect.TopRight();
aEndPoint = aRect.BottomLeft();
}
else
{
aPoint = aRect.TopLeft();
aEndPoint = aRect.BottomRight();
}
awt::Size aUnoSize;
awt::Point aCaptionPoint;
ScRange aRange;
aRelPoint = lcl_GetRelativePos( xShape, pDoc, nTab, aRange, aUnoSize, aCaptionPoint );
awt::Point aUnoPoint(aRelPoint);
aUnoPoint.X += aPoint.X();
aUnoPoint.Y += aPoint.Y();
if ( aUnoPoint.Y > aEndPoint.Y() )
aUnoPoint.Y = aEndPoint.Y() - 2;
if (pDoc->IsNegativePage(nTab))
{
if ( aUnoPoint.X < aEndPoint.X() )
aUnoPoint.X = aEndPoint.X() + 2;
aUnoPoint.X -= aUnoSize.Width;
// remove difference to caption point
if (aCaptionPoint.X > 0 && aCaptionPoint.X > aUnoSize.Width)
aUnoPoint.X -= aCaptionPoint.X - aUnoSize.Width;
}
else
{
if ( aUnoPoint.X > aEndPoint.X() )
aUnoPoint.X = aEndPoint.X() - 2;
if (aCaptionPoint.X < 0)
aUnoPoint.X -= aCaptionPoint.X;
}
if (aCaptionPoint.Y < 0)
aUnoPoint.Y -= aCaptionPoint.Y;
xShape->setPosition(aUnoPoint);
pDocSh->SetModified();
}
if (aAddress.StartRow != aAddress.EndRow) //should be a Spreadsheet
{
OSL_ENSURE(aAddress.StartRow == 0 && aAddress.EndRow == MAXROW &&
aAddress.StartColumn == 0 && aAddress.EndColumn == MAXCOL, "here should be a XSpreadsheet");
ScDrawLayer::SetPageAnchored(*pObj);
}
else
{
OSL_ENSURE(aAddress.StartRow == aAddress.EndRow &&
aAddress.StartColumn == aAddress.EndColumn, "here should be a XCell");
ScDrawObjData aAnchor;
aAnchor.maStart = ScAddress(aAddress.StartColumn, aAddress.StartRow, aAddress.Sheet);
aAnchor.maStartOffset = Point(aRelPoint.X, aRelPoint.Y);
ScDrawLayer::SetCellAnchored(*pObj, aAnchor);
//Currently we've only got a start anchor, not an end-anchor, so generate that now
ScDrawLayer::UpdateCellAnchorFromPositionEnd(*pObj, *pDoc, aAddress.Sheet);
}
}
}
}
}
}
}
}
else
throw lang::IllegalArgumentException(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("only XCell or XSpreadsheet objects allowed")), static_cast<cppu::OWeakObject*>(this), 0);
}
else if ( aNameString.EqualsAscii( SC_UNONAME_IMAGEMAP ) )
{
SdrObject* pObj = GetSdrObject();
if ( pObj )
{
ImageMap aImageMap;
uno::Reference< uno::XInterface > xImageMapInt(aValue, uno::UNO_QUERY);
if( !xImageMapInt.is() || !SvUnoImageMap_fillImageMap( xImageMapInt, aImageMap ) )
throw lang::IllegalArgumentException();
ScIMapInfo* pIMapInfo = ScDrawLayer::GetIMapInfo(pObj);
if( pIMapInfo )
{
// replace existing image map
pIMapInfo->SetImageMap( aImageMap );
}
else
{
// insert new user data with image map
pObj->InsertUserData(new ScIMapInfo(aImageMap) );
}
}
}
else if ( aNameString.EqualsAscii( SC_UNONAME_HORIPOS ) )
{
sal_Int32 nPos = 0;
if (aValue >>= nPos)
{
SdrObject *pObj = GetSdrObject();
if (pObj)
{
ScDrawLayer* pModel = (ScDrawLayer*)pObj->GetModel();
SdrPage* pPage = pObj->GetPage();
if ( pModel && pPage )
{
SCTAB nTab = 0;
if ( lcl_GetPageNum( pPage, *pModel, nTab ) )
{
ScDocument* pDoc = pModel->GetDocument();
if ( pDoc )
{
SfxObjectShell* pObjSh = pDoc->GetDocumentShell();
if ( pObjSh && pObjSh->ISA(ScDocShell) )
{
ScDocShell* pDocSh = (ScDocShell*)pObjSh;
uno::Reference<drawing::XShape> xShape( mxShapeAgg, uno::UNO_QUERY );
if (xShape.is())
{
if (ScDrawLayer::GetAnchorType(*pObj) == SCA_PAGE)
{
awt::Point aPoint(xShape->getPosition());
awt::Size aSize(xShape->getSize());
awt::Point aCaptionPoint;
if (pDoc->IsNegativePage(nTab))
{
nPos *= -1;
nPos -= aSize.Width;
}
if (lcl_GetCaptionPoint(xShape, aCaptionPoint))
{
if (pDoc->IsNegativePage(nTab))
{
if (aCaptionPoint.X > 0 && aCaptionPoint.X > aSize.Width)
nPos -= aCaptionPoint.X - aSize.Width;
}
else
{
if (aCaptionPoint.X < 0)
nPos -= aCaptionPoint.X;
}
}
aPoint.X = nPos;
xShape->setPosition(aPoint);
pDocSh->SetModified();
}
else if (ScDrawLayer::GetAnchorType(*pObj) == SCA_CELL)
{
awt::Size aUnoSize;
awt::Point aCaptionPoint;
ScRange aRange;
awt::Point aUnoPoint(lcl_GetRelativePos( xShape, pDoc, nTab, aRange, aUnoSize, aCaptionPoint ));
Rectangle aRect(pDoc->GetMMRect( aRange.aStart.Col(), aRange.aStart.Row(), aRange.aEnd.Col(), aRange.aEnd.Row(), aRange.aStart.Tab() ));
if (pDoc->IsNegativePage(nTab))
{
aUnoPoint.X = -nPos;
Point aPoint(aRect.TopRight());
Point aEndPoint(aRect.BottomLeft());
aUnoPoint.X += aPoint.X();
if (aUnoPoint.X < aEndPoint.X())
aUnoPoint.X = aEndPoint.X() + 2;
aUnoPoint.X -= aUnoSize.Width;
if (aCaptionPoint.X > 0 && aCaptionPoint.X > aUnoSize.Width)
aUnoPoint.X -= aCaptionPoint.X - aUnoSize.Width;
}
else
{
aUnoPoint.X = nPos;
Point aPoint(aRect.TopLeft());
Point aEndPoint(aRect.BottomRight());
aUnoPoint.X += aPoint.X();
if (aUnoPoint.X > aEndPoint.X())
aUnoPoint.X = aEndPoint.X() - 2;
if (aCaptionPoint.X < 0)
aUnoPoint.X -= aCaptionPoint.X;
}
aUnoPoint.Y = xShape->getPosition().Y;
xShape->setPosition(aUnoPoint);
pDocSh->SetModified();
}
else
{
OSL_FAIL("unknown anchor type");
}
}
}
}
}
}
}
}
}
else if ( aNameString.EqualsAscii( SC_UNONAME_VERTPOS ) )
{
sal_Int32 nPos = 0;
if (aValue >>= nPos)
{
SdrObject *pObj = GetSdrObject();
if (pObj)
{
ScDrawLayer* pModel = (ScDrawLayer*)pObj->GetModel();
SdrPage* pPage = pObj->GetPage();
if ( pModel && pPage )
{
SCTAB nTab = 0;
if ( lcl_GetPageNum( pPage, *pModel, nTab ) )
{
ScDocument* pDoc = pModel->GetDocument();
if ( pDoc )
{
SfxObjectShell* pObjSh = pDoc->GetDocumentShell();
if ( pObjSh && pObjSh->ISA(ScDocShell) )
{
ScDocShell* pDocSh = (ScDocShell*)pObjSh;
uno::Reference<drawing::XShape> xShape( mxShapeAgg, uno::UNO_QUERY );
if (xShape.is())
{
if (ScDrawLayer::GetAnchorType(*pObj) == SCA_PAGE)
{
awt::Point aPoint = xShape->getPosition();
awt::Point aCaptionPoint;
if (lcl_GetCaptionPoint(xShape, aCaptionPoint))
{
if (aCaptionPoint.Y < 0)
nPos -= aCaptionPoint.Y;
}
aPoint.Y = nPos;
xShape->setPosition(aPoint);
pDocSh->SetModified();
}
else if (ScDrawLayer::GetAnchorType(*pObj) == SCA_CELL)
{
awt::Size aUnoSize;
awt::Point aCaptionPoint;
ScRange aRange;
awt::Point aUnoPoint(lcl_GetRelativePos( xShape, pDoc, nTab, aRange, aUnoSize, aCaptionPoint ));
Rectangle aRect(pDoc->GetMMRect( aRange.aStart.Col(), aRange.aStart.Row(), aRange.aEnd.Col(), aRange.aEnd.Row(), aRange.aStart.Tab() ));
Point aPoint(aRect.TopRight());
Point aEndPoint(aRect.BottomLeft());
aUnoPoint.Y = nPos;
aUnoPoint.Y += aPoint.Y();
if (aUnoPoint.Y > aEndPoint.Y())
aUnoPoint.Y = aEndPoint.Y() - 2;
if (aCaptionPoint.Y < 0)
aUnoPoint.Y -= aCaptionPoint.Y;
aUnoPoint.X = xShape->getPosition().X;
xShape->setPosition(aUnoPoint);
pDocSh->SetModified();
}
else
{
OSL_FAIL("unknown anchor type");
}
}
}
}
}
}
}
}
}
else if ( aNameString.EqualsAscii( SC_UNONAME_HYPERLINK ) ||
aNameString.EqualsAscii( SC_UNONAME_URL) )
{
rtl::OUString sHlink;
ScMacroInfo* pInfo = lcl_getShapeHyperMacroInfo(this, true);
if ( ( aValue >>= sHlink ) && pInfo )
pInfo->SetHlink( sHlink );
}
else if ( aNameString.EqualsAscii( SC_UNONAME_MOVEPROTECT ) )
{
if( SdrObject* pObj = this->GetSdrObject() )
{
sal_Bool aProt = false;
if( aValue >>= aProt )
pObj->SetMoveProtect( aProt );
}
}
else
{
GetShapePropertySet();
if (pShapePropertySet)
pShapePropertySet->setPropertyValue( aPropertyName, aValue );
}
}
uno::Any SAL_CALL ScShapeObj::getPropertyValue( const rtl::OUString& aPropertyName )
throw(beans::UnknownPropertyException, lang::WrappedTargetException,
uno::RuntimeException)
{
SolarMutexGuard aGuard;
String aNameString = aPropertyName;
uno::Any aAny;
if ( aNameString.EqualsAscii( SC_UNONAME_ANCHOR ) )
{
SdrObject *pObj = GetSdrObject();
if (pObj)
{
ScDrawLayer* pModel = (ScDrawLayer*)pObj->GetModel();
SdrPage* pPage = pObj->GetPage();
if ( pModel && pPage )
{
ScDocument* pDoc = pModel->GetDocument();
if ( pDoc )
{
SCTAB nTab = 0;
if ( lcl_GetPageNum( pPage, *pModel, nTab ) )
{
SfxObjectShell* pObjSh = pDoc->GetDocumentShell();
if ( pObjSh && pObjSh->ISA(ScDocShell) )
{
ScDocShell* pDocSh = (ScDocShell*)pObjSh;
uno::Reference< uno::XInterface > xAnchor;
if (ScDrawObjData *pAnchor = ScDrawLayer::GetObjDataTab(pObj, nTab))
xAnchor.set(static_cast<cppu::OWeakObject*>(new ScCellObj( pDocSh, pAnchor->maStart)));
else
xAnchor.set(static_cast<cppu::OWeakObject*>(new ScTableSheetObj( pDocSh, nTab )));
aAny <<= xAnchor;
}
}
}
}
}
}
else if ( aNameString.EqualsAscii( SC_UNONAME_IMAGEMAP ) )
{
uno::Reference< uno::XInterface > xImageMap;
SdrObject* pObj = GetSdrObject();
if ( pObj )
{
ScIMapInfo* pIMapInfo = ScDrawLayer::GetIMapInfo(GetSdrObject());
if( pIMapInfo )
{
const ImageMap& rIMap = pIMapInfo->GetImageMap();
xImageMap.set(SvUnoImageMap_createInstance( rIMap, GetSupportedMacroItems() ));
}
else
xImageMap = SvUnoImageMap_createInstance( GetSupportedMacroItems() );
}
aAny <<= uno::Reference< container::XIndexContainer >::query( xImageMap );
}
else if ( aNameString.EqualsAscii( SC_UNONAME_HORIPOS ) )
{
SdrObject *pObj = GetSdrObject();
if (pObj)
{
ScDrawLayer* pModel = (ScDrawLayer*)pObj->GetModel();
SdrPage* pPage = pObj->GetPage();
if ( pModel && pPage )
{
ScDocument* pDoc = pModel->GetDocument();
if ( pDoc )
{
SCTAB nTab = 0;
if ( lcl_GetPageNum( pPage, *pModel, nTab ) )
{
uno::Reference<drawing::XShape> xShape( mxShapeAgg, uno::UNO_QUERY );
if (xShape.is())
{
if (ScDrawLayer::GetAnchorType(*pObj) == SCA_CELL)
{
awt::Size aUnoSize;
awt::Point aCaptionPoint;
ScRange aRange;
awt::Point aUnoPoint(lcl_GetRelativePos( xShape, pDoc, nTab, aRange, aUnoSize, aCaptionPoint ));
if (pDoc->IsNegativePage(nTab))
aUnoPoint.X *= -1;
aAny <<= aUnoPoint.X;
}
else
{
awt::Point aCaptionPoint;
awt::Point aUnoPoint(xShape->getPosition());
awt::Size aUnoSize(xShape->getSize());
if (pDoc->IsNegativePage(nTab))
{
aUnoPoint.X *= -1;
aUnoPoint.X -= aUnoSize.Width;
}
if (lcl_GetCaptionPoint(xShape, aCaptionPoint))
{
if (pDoc->IsNegativePage(nTab))
{
if (aCaptionPoint.X > 0 && aCaptionPoint.X > aUnoSize.Width)
aUnoPoint.X -= aCaptionPoint.X - aUnoSize.Width;
}
else
{
if (aCaptionPoint.X < 0)
aUnoPoint.X += aCaptionPoint.X;
}
}
aAny <<= aUnoPoint.X;
}
}
}
}
}
}
}
else if ( aNameString.EqualsAscii( SC_UNONAME_VERTPOS ) )
{
SdrObject *pObj = GetSdrObject();
if (pObj)
{
ScDrawLayer* pModel = (ScDrawLayer*)pObj->GetModel();
SdrPage* pPage = pObj->GetPage();
if ( pModel && pPage )
{
ScDocument* pDoc = pModel->GetDocument();
if ( pDoc )
{
SCTAB nTab = 0;
if ( lcl_GetPageNum( pPage, *pModel, nTab ) )
{
uno::Reference<drawing::XShape> xShape( mxShapeAgg, uno::UNO_QUERY );
if (xShape.is())
{
uno::Reference< uno::XInterface > xAnchor;
if (ScDrawLayer::GetAnchorType(*pObj) == SCA_CELL)
{
awt::Size aUnoSize;
awt::Point aCaptionPoint;
ScRange aRange;
awt::Point aUnoPoint(lcl_GetRelativePos( xShape, pDoc, nTab, aRange, aUnoSize, aCaptionPoint ));
aAny <<= aUnoPoint.Y;
}
else
{
awt::Point aUnoPoint(xShape->getPosition());
awt::Point aCaptionPoint;
if (lcl_GetCaptionPoint(xShape, aCaptionPoint))
{
if (aCaptionPoint.Y < 0)
aUnoPoint.Y += aCaptionPoint.Y;
}
aAny <<= aUnoPoint.Y;
}
}
}
}
}
}
}
else if ( aNameString.EqualsAscii( SC_UNONAME_HYPERLINK ) ||
aNameString.EqualsAscii( SC_UNONAME_URL ) )
{
rtl::OUString sHlink;
if ( ScMacroInfo* pInfo = lcl_getShapeHyperMacroInfo(this) )
sHlink = pInfo->GetHlink();
aAny <<= sHlink;
}
else if ( aNameString.EqualsAscii( SC_UNONAME_MOVEPROTECT ) )
{
sal_Bool aProt = false;
if ( SdrObject* pObj = this->GetSdrObject() )
aProt = pObj->IsMoveProtect();
aAny <<= aProt;
}
else
{
GetShapePropertySet();
if (pShapePropertySet)
aAny = pShapePropertySet->getPropertyValue( aPropertyName );
}
return aAny;
}
void SAL_CALL ScShapeObj::addPropertyChangeListener( const rtl::OUString& aPropertyName,
const uno::Reference<beans::XPropertyChangeListener>& aListener)
throw(beans::UnknownPropertyException,
lang::WrappedTargetException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
GetShapePropertySet();
if (pShapePropertySet)
pShapePropertySet->addPropertyChangeListener( aPropertyName, aListener );
if ( !bInitializedNotifier )
{
// here's the latest chance to initialize the property notification at the SdrObject
// (in the ctor, where we also attempt to do this, we do not necessarily have
// and SdrObject, yet)
SdrObject* pObj = GetSdrObject();
OSL_ENSURE( pObj, "ScShapeObj::addPropertyChangeListener: no SdrObject -> no property change notification!" );
if ( pObj )
lcl_initializeNotifier( *pObj, *this );
bInitializedNotifier = true;
}
}
void SAL_CALL ScShapeObj::removePropertyChangeListener( const rtl::OUString& aPropertyName,
const uno::Reference<beans::XPropertyChangeListener>& aListener)
throw(beans::UnknownPropertyException,
lang::WrappedTargetException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
GetShapePropertySet();
if (pShapePropertySet)
pShapePropertySet->removePropertyChangeListener( aPropertyName, aListener );
}
void SAL_CALL ScShapeObj::addVetoableChangeListener( const rtl::OUString& aPropertyName,
const uno::Reference<beans::XVetoableChangeListener>& aListener)
throw(beans::UnknownPropertyException,
lang::WrappedTargetException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
GetShapePropertySet();
if (pShapePropertySet)
pShapePropertySet->addVetoableChangeListener( aPropertyName, aListener );
}
void SAL_CALL ScShapeObj::removeVetoableChangeListener( const rtl::OUString& aPropertyName,
const uno::Reference<beans::XVetoableChangeListener>& aListener)
throw(beans::UnknownPropertyException,
lang::WrappedTargetException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
GetShapePropertySet();
if (pShapePropertySet)
pShapePropertySet->removeVetoableChangeListener( aPropertyName, aListener );
}
// XPropertyState
beans::PropertyState SAL_CALL ScShapeObj::getPropertyState( const rtl::OUString& aPropertyName )
throw(beans::UnknownPropertyException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
String aNameString(aPropertyName);
beans::PropertyState eRet = beans::PropertyState_DIRECT_VALUE;
if ( aNameString.EqualsAscii( SC_UNONAME_IMAGEMAP ) )
{
// ImageMap is always "direct"
}
else if ( aNameString.EqualsAscii( SC_UNONAME_ANCHOR ) )
{
// Anchor is always "direct"
}
else if ( aNameString.EqualsAscii( SC_UNONAME_HORIPOS ) )
{
// HoriPos is always "direct"
}
else if ( aNameString.EqualsAscii( SC_UNONAME_VERTPOS ) )
{
// VertPos is always "direct"
}
else
{
GetShapePropertyState();
if (pShapePropertyState)
eRet = pShapePropertyState->getPropertyState( aPropertyName );
}
return eRet;
}
uno::Sequence<beans::PropertyState> SAL_CALL ScShapeObj::getPropertyStates(
const uno::Sequence<rtl::OUString>& aPropertyNames )
throw(beans::UnknownPropertyException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
// simple loop to get own and aggregated states
const rtl::OUString* pNames = aPropertyNames.getConstArray();
uno::Sequence<beans::PropertyState> aRet(aPropertyNames.getLength());
beans::PropertyState* pStates = aRet.getArray();
for(sal_Int32 i = 0; i < aPropertyNames.getLength(); i++)
pStates[i] = getPropertyState(pNames[i]);
return aRet;
}
void SAL_CALL ScShapeObj::setPropertyToDefault( const rtl::OUString& aPropertyName )
throw(beans::UnknownPropertyException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
String aNameString(aPropertyName);
if ( aNameString.EqualsAscii( SC_UNONAME_IMAGEMAP ) )
{
SdrObject* pObj = GetSdrObject();
if ( pObj )
{
ScIMapInfo* pIMapInfo = ScDrawLayer::GetIMapInfo(pObj);
if( pIMapInfo )
{
ImageMap aEmpty;
pIMapInfo->SetImageMap( aEmpty ); // replace with empty image map
}
else
{
// nothing to do (no need to insert user data for an empty map)
}
}
}
else
{
GetShapePropertyState();
if (pShapePropertyState)
pShapePropertyState->setPropertyToDefault( aPropertyName );
}
}
uno::Any SAL_CALL ScShapeObj::getPropertyDefault( const rtl::OUString& aPropertyName )
throw(beans::UnknownPropertyException, lang::WrappedTargetException,
uno::RuntimeException)
{
SolarMutexGuard aGuard;
String aNameString = aPropertyName;
uno::Any aAny;
if ( aNameString.EqualsAscii( SC_UNONAME_IMAGEMAP ) )
{
// default: empty ImageMap
uno::Reference< uno::XInterface > xImageMap(SvUnoImageMap_createInstance( GetSupportedMacroItems() ));
aAny <<= uno::Reference< container::XIndexContainer >::query( xImageMap );
}
else
{
GetShapePropertyState();
if (pShapePropertyState)
aAny = pShapePropertyState->getPropertyDefault( aPropertyName );
}
return aAny;
}
// XTextContent
void SAL_CALL ScShapeObj::attach( const uno::Reference<text::XTextRange>& /* xTextRange */ )
throw(lang::IllegalArgumentException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
throw lang::IllegalArgumentException(); // anchor cannot be changed
}
uno::Reference<text::XTextRange> SAL_CALL ScShapeObj::getAnchor() throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<text::XTextRange> xRet;
SdrObject* pObj = GetSdrObject();
if( pObj )
{
ScDrawLayer* pModel = (ScDrawLayer*)pObj->GetModel();
SdrPage* pPage = pObj->GetPage();
if ( pModel )
{
ScDocument* pDoc = pModel->GetDocument();
if ( pDoc )
{
SfxObjectShell* pObjSh = pDoc->GetDocumentShell();
if ( pObjSh && pObjSh->ISA(ScDocShell) )
{
ScDocShell* pDocSh = (ScDocShell*)pObjSh;
SCTAB nTab = 0;
if ( lcl_GetPageNum( pPage, *pModel, nTab ) )
{
Point aPos(pObj->GetCurrentBoundRect().TopLeft());
ScRange aRange(pDoc->GetRange( nTab, Rectangle( aPos, aPos ) ));
// anchor is always the cell
xRet.set(new ScCellObj( pDocSh, aRange.aStart ));
}
}
}
}
}
return xRet;
}
// XComponent
void SAL_CALL ScShapeObj::dispose() throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<lang::XComponent> xAggComp(lcl_GetComponent(mxShapeAgg));
if ( xAggComp.is() )
xAggComp->dispose();
}
void SAL_CALL ScShapeObj::addEventListener(
const uno::Reference<lang::XEventListener>& xListener )
throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<lang::XComponent> xAggComp(lcl_GetComponent(mxShapeAgg));
if ( xAggComp.is() )
xAggComp->addEventListener(xListener);
}
void SAL_CALL ScShapeObj::removeEventListener(
const uno::Reference<lang::XEventListener>& xListener )
throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<lang::XComponent> xAggComp(lcl_GetComponent(mxShapeAgg));
if ( xAggComp.is() )
xAggComp->removeEventListener(xListener);
}
// XText
// (special handling for ScCellFieldObj)
void lcl_CopyOneProperty( beans::XPropertySet& rDest, beans::XPropertySet& rSource, const sal_Char* pName )
{
rtl::OUString aNameStr(rtl::OUString::createFromAscii(pName));
try
{
rDest.setPropertyValue( aNameStr, rSource.getPropertyValue( aNameStr ) );
}
catch (uno::Exception&)
{
OSL_FAIL("Exception in text field");
}
}
void SAL_CALL ScShapeObj::insertTextContent( const uno::Reference<text::XTextRange>& xRange,
const uno::Reference<text::XTextContent>& xContent,
sal_Bool bAbsorb )
throw(lang::IllegalArgumentException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<text::XTextContent> xEffContent;
ScCellFieldObj* pCellField = ScCellFieldObj::getImplementation( xContent );
if ( pCellField )
{
// createInstance("TextField.URL") from the document creates a ScCellFieldObj.
// To insert it into drawing text, a SvxUnoTextField is needed instead.
// The ScCellFieldObj object is left in non-inserted state.
SvxUnoTextField* pDrawField = new SvxUnoTextField( ID_URLFIELD );
xEffContent.set(pDrawField);
lcl_CopyOneProperty( *pDrawField, *pCellField, SC_UNONAME_URL );
lcl_CopyOneProperty( *pDrawField, *pCellField, SC_UNONAME_REPR );
lcl_CopyOneProperty( *pDrawField, *pCellField, SC_UNONAME_TARGET );
}
else
xEffContent.set(xContent);
uno::Reference<text::XText> xAggText(lcl_GetText(mxShapeAgg));
if ( xAggText.is() )
xAggText->insertTextContent( xRange, xEffContent, bAbsorb );
}
void SAL_CALL ScShapeObj::removeTextContent( const uno::Reference<text::XTextContent>& xContent )
throw(container::NoSuchElementException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
// ScCellFieldObj can't be used here.
uno::Reference<text::XText> xAggText(lcl_GetText(mxShapeAgg));
if ( xAggText.is() )
xAggText->removeTextContent( xContent );
}
// XSimpleText (parent of XText)
// Use own SvxUnoTextCursor subclass - everything is just passed to aggregated object
uno::Reference<text::XTextCursor> SAL_CALL ScShapeObj::createTextCursor()
throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
if ( mxShapeAgg.is() )
{
// ScDrawTextCursor must be used to ensure the ScShapeObj is returned by getText
SvxUnoTextBase* pText = SvxUnoTextBase::getImplementation( mxShapeAgg );
if (pText)
return new ScDrawTextCursor( this, *pText );
}
return uno::Reference<text::XTextCursor>();
}
uno::Reference<text::XTextCursor> SAL_CALL ScShapeObj::createTextCursorByRange(
const uno::Reference<text::XTextRange>& aTextPosition )
throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
if ( mxShapeAgg.is() && aTextPosition.is() )
{
// ScDrawTextCursor must be used to ensure the ScShapeObj is returned by getText
SvxUnoTextBase* pText = SvxUnoTextBase::getImplementation( mxShapeAgg );
SvxUnoTextRangeBase* pRange = SvxUnoTextRangeBase::getImplementation( aTextPosition );
if ( pText && pRange )
{
SvxUnoTextCursor* pCursor = new ScDrawTextCursor( this, *pText );
uno::Reference<text::XTextCursor> xCursor( pCursor );
pCursor->SetSelection( pRange->GetSelection() );
return xCursor;
}
}
return uno::Reference<text::XTextCursor>();
}
void SAL_CALL ScShapeObj::insertString( const uno::Reference<text::XTextRange>& xRange,
const rtl::OUString& aString, sal_Bool bAbsorb )
throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<text::XSimpleText> xAggSimpleText(lcl_GetSimpleText(mxShapeAgg));
if ( xAggSimpleText.is() )
xAggSimpleText->insertString( xRange, aString, bAbsorb );
else
throw uno::RuntimeException();
}
void SAL_CALL ScShapeObj::insertControlCharacter( const uno::Reference<text::XTextRange>& xRange,
sal_Int16 nControlCharacter, sal_Bool bAbsorb )
throw(lang::IllegalArgumentException, uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<text::XSimpleText> xAggSimpleText(lcl_GetSimpleText(mxShapeAgg));
if ( xAggSimpleText.is() )
xAggSimpleText->insertControlCharacter( xRange, nControlCharacter, bAbsorb );
else
throw uno::RuntimeException();
}
// XTextRange
// (parent of XSimpleText)
uno::Reference<text::XText> SAL_CALL ScShapeObj::getText() throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
return this;
}
uno::Reference<text::XTextRange> SAL_CALL ScShapeObj::getStart() throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<text::XTextRange> xAggTextRange(lcl_GetTextRange(mxShapeAgg));
if ( xAggTextRange.is() )
return xAggTextRange->getStart();
else
throw uno::RuntimeException();
// return uno::Reference<text::XTextRange>();
}
uno::Reference<text::XTextRange> SAL_CALL ScShapeObj::getEnd() throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<text::XTextRange> xAggTextRange(lcl_GetTextRange(mxShapeAgg));
if ( xAggTextRange.is() )
return xAggTextRange->getEnd();
else
throw uno::RuntimeException();
// return uno::Reference<text::XTextRange>();
}
rtl::OUString SAL_CALL ScShapeObj::getString() throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<text::XTextRange> xAggTextRange(lcl_GetTextRange(mxShapeAgg));
if ( xAggTextRange.is() )
return xAggTextRange->getString();
else
throw uno::RuntimeException();
// return rtl::OUString();
}
void SAL_CALL ScShapeObj::setString( const rtl::OUString& aText ) throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
uno::Reference<text::XTextRange> xAggTextRange(lcl_GetTextRange(mxShapeAgg));
if ( xAggTextRange.is() )
xAggTextRange->setString( aText );
else
throw uno::RuntimeException();
}
// XTypeProvider
uno::Sequence<uno::Type> SAL_CALL ScShapeObj::getTypes() throw(uno::RuntimeException)
{
uno::Sequence< uno::Type > aBaseTypes( ScShapeObj_Base::getTypes() );
uno::Sequence< uno::Type > aTextTypes;
if ( bIsTextShape )
aTextTypes = ScShapeObj_TextBase::getTypes();
uno::Reference<lang::XTypeProvider> xBaseProvider;
if ( mxShapeAgg.is() )
mxShapeAgg->queryAggregation( getCppuType((uno::Reference<lang::XTypeProvider>*) 0) ) >>= xBaseProvider;
OSL_ENSURE( xBaseProvider.is(), "ScShapeObj: No XTypeProvider from aggregated shape!" );
uno::Sequence< uno::Type > aAggTypes;
if( xBaseProvider.is() )
aAggTypes = xBaseProvider->getTypes();
return ::comphelper::concatSequences( aBaseTypes, aTextTypes, aAggTypes );
}
uno::Sequence<sal_Int8> SAL_CALL ScShapeObj::getImplementationId()
throw(uno::RuntimeException)
{
SolarMutexGuard aGuard;
// do we need to compute the implementation id for this instance?
if( !pImplementationId && mxShapeAgg.is())
{
uno::Reference< drawing::XShape > xAggShape;
mxShapeAgg->queryAggregation( ::getCppuType((uno::Reference< drawing::XShape >*)0) ) >>= xAggShape;
if( xAggShape.is() )
{
const rtl::OUString aShapeType( xAggShape->getShapeType() );
// did we already compute an implementation id for the agregated shape type?
ScShapeImplementationIdMap::iterator aIter( aImplementationIdMap.find(aShapeType ) );
if( aIter == aImplementationIdMap.end() )
{
// we need to create a new implementation id for this
// note: this memory is not free'd until application exits
// but since we have a fixed set of shapetypes and the
// memory will be reused this is ok.
pImplementationId = new uno::Sequence< sal_Int8 >( 16 );
rtl_createUuid( (sal_uInt8 *) pImplementationId->getArray(), 0, sal_True );
aImplementationIdMap[ aShapeType ] = pImplementationId;
}
else
{
// use the already computed implementation id
pImplementationId = (*aIter).second;
}
}
}
if( NULL == pImplementationId )
{
OSL_FAIL( "Could not create an implementation id for a ScXShape!" );
return uno::Sequence< sal_Int8 > ();
}
else
{
return *pImplementationId;
}
}
SdrObject* ScShapeObj::GetSdrObject() const throw()
{
if(mxShapeAgg.is())
{
SvxShape* pShape = SvxShape::getImplementation( mxShapeAgg );
if(pShape)
return pShape->GetSdrObject();
}
return NULL;
}
#define SC_EVENTACC_ONCLICK ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "OnClick" ) )
#define SC_EVENTACC_SCRIPT ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Script" ) )
#define SC_EVENTACC_EVENTTYPE ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "EventType" ) )
typedef ::cppu::WeakImplHelper1< container::XNameReplace > ShapeUnoEventAcess_BASE;
class ShapeUnoEventAccessImpl : public ShapeUnoEventAcess_BASE
{
private:
ScShapeObj* mpShape;
ScMacroInfo* getInfo( sal_Bool bCreate = false )
{
return lcl_getShapeHyperMacroInfo( mpShape, bCreate );
}
public:
ShapeUnoEventAccessImpl( ScShapeObj* pShape ): mpShape( pShape )
{
}
// XNameReplace
virtual void SAL_CALL replaceByName( const rtl::OUString& aName, const uno::Any& aElement ) throw(lang::IllegalArgumentException, container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException)
{
if ( !hasByName( aName ) )
throw container::NoSuchElementException();
uno::Sequence< beans::PropertyValue > aProperties;
aElement >>= aProperties;
const beans::PropertyValue* pProperties = aProperties.getConstArray();
const sal_Int32 nCount = aProperties.getLength();
sal_Int32 nIndex;
bool isEventType = false;
for( nIndex = 0; nIndex < nCount; nIndex++, pProperties++ )
{
if ( pProperties->Name.equals( SC_EVENTACC_EVENTTYPE ) )
{
isEventType = true;
continue;
}
if ( isEventType && (pProperties->Name == SC_EVENTACC_SCRIPT) )
{
rtl::OUString sValue;
if ( pProperties->Value >>= sValue )
{
ScMacroInfo* pInfo = getInfo( sal_True );
OSL_ENSURE( pInfo, "shape macro info could not be created!" );
if ( !pInfo )
break;
if ( pProperties->Name == SC_EVENTACC_SCRIPT )
pInfo->SetMacro( sValue );
else
pInfo->SetHlink( sValue );
}
}
}
}
// XNameAccess
virtual uno::Any SAL_CALL getByName( const rtl::OUString& aName ) throw(container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException)
{
uno::Sequence< beans::PropertyValue > aProperties;
ScMacroInfo* pInfo = getInfo();
if ( aName == SC_EVENTACC_ONCLICK )
{
if ( pInfo && (pInfo->GetMacro().getLength() > 0) )
{
aProperties.realloc( 2 );
aProperties[ 0 ].Name = SC_EVENTACC_EVENTTYPE;
aProperties[ 0 ].Value <<= SC_EVENTACC_SCRIPT;
aProperties[ 1 ].Name = SC_EVENTACC_SCRIPT;
aProperties[ 1 ].Value <<= pInfo->GetMacro();
}
}
else
{
throw container::NoSuchElementException();
}
return uno::Any( aProperties );
}
virtual uno::Sequence< rtl::OUString > SAL_CALL getElementNames() throw(uno::RuntimeException)
{
uno::Sequence< rtl::OUString > aSeq( 1 );
aSeq[ 0 ] = SC_EVENTACC_ONCLICK;
return aSeq;
}
virtual sal_Bool SAL_CALL hasByName( const rtl::OUString& aName ) throw(uno::RuntimeException)
{
return aName == SC_EVENTACC_ONCLICK;
}
// XElementAccess
virtual uno::Type SAL_CALL getElementType() throw(uno::RuntimeException)
{
return *SEQTYPE(::getCppuType((const uno::Sequence< beans::PropertyValue >*)0));
}
virtual sal_Bool SAL_CALL hasElements() throw(uno::RuntimeException)
{
// elements are always present (but contained property sequences may be empty)
return sal_True;
}
};
::uno::Reference< container::XNameReplace > SAL_CALL
ScShapeObj::getEvents( ) throw(uno::RuntimeException)
{
return new ShapeUnoEventAccessImpl( this );
}
::rtl::OUString SAL_CALL ScShapeObj::getImplementationName( ) throw (uno::RuntimeException)
{
return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.sc.ScShapeObj" ) );
}
::sal_Bool SAL_CALL ScShapeObj::supportsService( const ::rtl::OUString& _ServiceName ) throw (uno::RuntimeException)
{
uno::Sequence< ::rtl::OUString > aSupported( getSupportedServiceNames() );
for ( const ::rtl::OUString* pSupported = aSupported.getConstArray();
pSupported != aSupported.getConstArray() + aSupported.getLength();
++pSupported
)
if ( _ServiceName == *pSupported )
return sal_True;
return false;
}
uno::Sequence< ::rtl::OUString > SAL_CALL ScShapeObj::getSupportedServiceNames( ) throw (uno::RuntimeException)
{
uno::Reference<lang::XServiceInfo> xSI;
if ( mxShapeAgg.is() )
mxShapeAgg->queryAggregation( lang::XServiceInfo::static_type() ) >>= xSI;
uno::Sequence< ::rtl::OUString > aSupported;
if ( xSI.is() )
aSupported = xSI->getSupportedServiceNames();
aSupported.realloc( aSupported.getLength() + 1 );
aSupported[ aSupported.getLength() - 1 ] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.sheet.Shape" ) );
return aSupported;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|