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
|
/* -*- 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 <com/sun/star/presentation/AnimationEffect.hpp>
#include <com/sun/star/presentation/AnimationSpeed.hpp>
#include <svx/xoutbmp.hxx>
#include <time.h>
#include <svl/eitem.hxx>
#include <svx/svdograf.hxx>
#include <svx/svdogrp.hxx>
#include <sfx2/basedlgs.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/progress.hxx>
#include <vcl/msgbox.hxx>
#include <vcl/settings.hxx>
#include "anminfo.hxx"
#include "animobjs.hxx"
#include "animobjs.hrc"
#include "app.hrc"
#include "strings.hrc"
#include "sdresid.hxx"
#include "View.hxx"
#include "drawdoc.hxx"
#include "sdpage.hxx"
#include "res_bmp.hrc"
#include "ViewShell.hxx"
#include <vcl/svapp.hxx>
#include <vcl/settings.hxx>
#include <EffectMigration.hxx>
#include <string>
#include <algorithm>
using namespace ::com::sun::star;
namespace sd {
/**
* SdDisplay - Control
*/
SdDisplay::SdDisplay( Window* pWin, SdResId Id ) :
Control( pWin, Id ),
aScale( 1, 1 )
{
SetMapMode( MAP_PIXEL );
const StyleSettings& rStyles = Application::GetSettings().GetStyleSettings();
SetBackground( Wallpaper( Color( rStyles.GetFieldColor() ) ) );
}
SdDisplay::~SdDisplay()
{
}
void SdDisplay::SetBitmapEx( BitmapEx* pBmpEx )
{
if( pBmpEx )
{
aBitmapEx = *pBmpEx;
}
else
{
const StyleSettings& rStyles = Application::GetSettings().GetStyleSettings();
const Color aFillColor = rStyles.GetFieldColor();
aBitmapEx.Erase(aFillColor);
}
}
void SdDisplay::Paint( const Rectangle& )
{
Point aPt;
Size aSize = GetOutputSize();
Size aBmpSize = aBitmapEx.GetBitmap().GetSizePixel();
aBmpSize.Width() = (long) ( (double) aBmpSize.Width() * (double) aScale );
aBmpSize.Height() = (long) ( (double) aBmpSize.Height() * (double) aScale );
if( aBmpSize.Width() < aSize.Width() )
aPt.X() = ( aSize.Width() - aBmpSize.Width() ) / 2;
if( aBmpSize.Height() < aSize.Height() )
aPt.Y() = ( aSize.Height() - aBmpSize.Height() ) / 2;
aBitmapEx.Draw( this, aPt, aBmpSize );
}
void SdDisplay::SetScale( const Fraction& rFrac )
{
aScale = rFrac;
}
void SdDisplay::DataChanged( const DataChangedEvent& rDCEvt )
{
Control::DataChanged( rDCEvt );
if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) && (rDCEvt.GetFlags() & SETTINGS_STYLE) )
{
const StyleSettings& rStyles = Application::GetSettings().GetStyleSettings();
SetBackground( Wallpaper( Color( rStyles.GetFieldColor() ) ) );
SetDrawMode( GetSettings().GetStyleSettings().GetHighContrastMode()
? ViewShell::OUTPUT_DRAWMODE_CONTRAST
: ViewShell::OUTPUT_DRAWMODE_COLOR );
}
}
/**
* AnimationWindow - FloatingWindow
*/
AnimationWindow::AnimationWindow( SfxBindings* pInBindings,
SfxChildWindow *pCW, Window* pParent, const SdResId& rSdResId ) :
SfxDockingWindow ( pInBindings, pCW, pParent, rSdResId ),
aCtlDisplay ( this, SdResId( CTL_DISPLAY ) ),
aBtnFirst ( this, SdResId( BTN_FIRST ) ),
aBtnReverse ( this, SdResId( BTN_REVERSE ) ),
aBtnStop ( this, SdResId( BTN_STOP ) ),
aBtnPlay ( this, SdResId( BTN_PLAY ) ),
aBtnLast ( this, SdResId( BTN_LAST ) ),
aNumFldBitmap ( this, SdResId( NUM_FLD_BITMAP ) ),
aTimeField ( this, SdResId( TIME_FIELD ) ),
aLbLoopCount ( this, SdResId( LB_LOOP_COUNT ) ),
aGrpBitmap ( this, SdResId( GRP_BITMAP ) ),
aBtnGetOneObject ( this, SdResId( BTN_GET_ONE_OBJECT ) ),
aBtnGetAllObjects ( this, SdResId( BTN_GET_ALL_OBJECTS ) ),
aBtnRemoveBitmap ( this, SdResId( BTN_REMOVE_BITMAP ) ),
aBtnRemoveAll ( this, SdResId( BTN_REMOVE_ALL ) ),
aFtCount ( this, SdResId( FT_COUNT ) ),
aFiCount ( this, SdResId( FI_COUNT ) ),
aGrpAnimation ( this, SdResId( GRP_ANIMATION_GROUP ) ),
aRbtGroup ( this, SdResId( RBT_GROUP ) ),
aRbtBitmap ( this, SdResId( RBT_BITMAP ) ),
aFtAdjustment ( this, SdResId( FT_ADJUSTMENT ) ),
aLbAdjustment ( this, SdResId( LB_ADJUSTMENT ) ),
aBtnCreateGroup ( this, SdResId( BTN_CREATE_GROUP ) ),
aBtnHelp ( this, SdResId( BTN_HELP ) ),
pWin ( pParent ),
m_nCurrentFrame ( EMPTY_FRAMELIST ),
bMovie ( false ),
bAllObjects ( false ),
pBindings ( pInBindings )
{
aCtlDisplay.SetAccessibleName(SD_RESSTR(STR_DISPLAY));
FreeResource();
//undo SfxDockingWindow HelpId clear hack
reverseUniqueHelpIdHack(*this);
// create new document with page
pMyDoc = new SdDrawDocument(DOCUMENT_TYPE_IMPRESS, NULL);
SdPage* pPage = (SdPage*) pMyDoc->AllocPage(false);
pMyDoc->InsertPage(pPage);
pControllerItem = new AnimationControllerItem( SID_ANIMATOR_STATE, this, pBindings );
// as long as not in the resource
aTimeField.SetFormat( TIMEF_SEC_CS );
aBtnFirst.SetClickHdl( LINK( this, AnimationWindow, ClickFirstHdl ) );
aBtnReverse.SetClickHdl( LINK( this, AnimationWindow, ClickPlayHdl ) );
aBtnStop.SetClickHdl( LINK( this, AnimationWindow, ClickStopHdl ) );
aBtnPlay.SetClickHdl( LINK( this, AnimationWindow, ClickPlayHdl ) );
aBtnLast.SetClickHdl( LINK( this, AnimationWindow, ClickLastHdl ) );
aBtnGetOneObject.SetClickHdl( LINK( this, AnimationWindow, ClickGetObjectHdl ) );
aBtnGetAllObjects.SetClickHdl( LINK( this, AnimationWindow, ClickGetObjectHdl ) );
aBtnRemoveBitmap.SetClickHdl( LINK( this, AnimationWindow, ClickRemoveBitmapHdl ) );
aBtnRemoveAll.SetClickHdl( LINK( this, AnimationWindow, ClickRemoveBitmapHdl ) );
aRbtGroup.SetClickHdl( LINK( this, AnimationWindow, ClickRbtHdl ) );
aRbtBitmap.SetClickHdl( LINK( this, AnimationWindow, ClickRbtHdl ) );
aBtnCreateGroup.SetClickHdl( LINK( this, AnimationWindow, ClickCreateGroupHdl ) );
aNumFldBitmap.SetModifyHdl( LINK( this, AnimationWindow, ModifyBitmapHdl ) );
aTimeField.SetModifyHdl( LINK( this, AnimationWindow, ModifyTimeHdl ) );
// disable 3D border
aCtlDisplay.SetBorderStyle(WINDOW_BORDER_MONO);
aDisplaySize = aCtlDisplay.GetOutputSize();
aSize = GetOutputSizePixel();
SetMinOutputSizePixel( aSize );
ResetAttrs();
// the animator is empty; no animation group can be created
aBtnCreateGroup.Disable();
aBtnGetOneObject.SetAccessibleRelationMemberOf( &aGrpBitmap );
aBtnGetAllObjects.SetAccessibleRelationMemberOf( &aGrpBitmap );
aBtnRemoveBitmap.SetAccessibleRelationMemberOf( &aGrpBitmap );
aBtnRemoveAll.SetAccessibleRelationMemberOf( &aGrpBitmap );
}
AnimationWindow::~AnimationWindow()
{
delete pControllerItem;
for (size_t i = 0; i < m_FrameList.size(); ++i)
{
delete m_FrameList[i].first;
delete m_FrameList[i].second;
}
m_FrameList.clear();
m_nCurrentFrame = EMPTY_FRAMELIST;
// delete the clones
delete pMyDoc;
}
IMPL_LINK_NOARG(AnimationWindow, ClickFirstHdl)
{
m_nCurrentFrame = (m_FrameList.empty()) ? EMPTY_FRAMELIST : 0;
UpdateControl();
return( 0L );
}
IMPL_LINK_NOARG(AnimationWindow, ClickStopHdl)
{
bMovie = false;
return( 0L );
}
IMPL_LINK( AnimationWindow, ClickPlayHdl, void *, p )
{
ScopeLockGuard aGuard( maPlayLock );
bMovie = true;
bool bDisableCtrls = false;
size_t const nCount = m_FrameList.size();
bool bReverse = p == &aBtnReverse;
// it is difficult to find it later on
bool bRbtGroupEnabled = aRbtGroup.IsEnabled();
bool bBtnGetAllObjectsEnabled = aBtnGetAllObjects.IsEnabled();
bool bBtnGetOneObjectEnabled = aBtnGetOneObject.IsEnabled();
// calculate overall time
Time aTime( 0 );
long nFullTime;
if( aRbtBitmap.IsChecked() )
{
for (size_t i = 0; i < nCount; ++i)
{
aTime += *m_FrameList[i].second;
}
nFullTime = aTime.GetMSFromTime();
}
else
{
nFullTime = nCount * 100;
aTime.MakeTimeFromMS( nFullTime );
}
// StatusBarManager from 1 second
SfxProgress* pProgress = NULL;
if( nFullTime >= 1000 )
{
bDisableCtrls = true;
aBtnStop.Enable();
aBtnStop.Update();
OUString aStr("Animator:"); // here we should think about something smart
pProgress = new SfxProgress( NULL, aStr, nFullTime );
}
sal_uLong nTmpTime = 0;
size_t i = 0;
bool bCount = i < nCount;
if( bReverse )
{
i = nCount - 1;
}
while( bCount && bMovie )
{
// make list and view consistent
assert(0 < i && i < m_FrameList.size());
m_nCurrentFrame = i;
UpdateControl(bDisableCtrls);
if( aRbtBitmap.IsChecked() )
{
Time *const pTime = m_FrameList[i].second;
assert(pTime);
aTimeField.SetTime( *pTime );
sal_uLong nTime = pTime->GetMSFromTime();
WaitInEffect( nTime, nTmpTime, pProgress );
nTmpTime += nTime;
}
else
{
WaitInEffect( 100, nTmpTime, pProgress );
nTmpTime += 100;
}
if( bReverse )
{
if (i == 0)
{
// Terminate loop.
bCount = false;
}
else
{
--i;
}
}
else
{
i++;
if (i >= nCount)
{
// Terminate loop.
bCount = false;
// Move i back into valid range.
i = nCount - 1;
}
}
}
// to re-enable the controls
bMovie = false;
if (nCount > 0)
{
assert(i == m_nCurrentFrame);
UpdateControl();
}
if( pProgress )
{
delete pProgress;
aBtnStop.Disable();
}
aRbtGroup.Enable( bRbtGroupEnabled );
aBtnGetAllObjects.Enable( bBtnGetAllObjectsEnabled );
aBtnGetOneObject.Enable( bBtnGetOneObjectEnabled );
return( 0L );
}
IMPL_LINK_NOARG(AnimationWindow, ClickLastHdl)
{
m_nCurrentFrame =
(m_FrameList.empty()) ? EMPTY_FRAMELIST : m_FrameList.size() - 1 ;
UpdateControl();
return( 0L );
}
IMPL_LINK( AnimationWindow, ClickRbtHdl, void *, p )
{
if (m_FrameList.empty() || p == &aRbtGroup || aRbtGroup.IsChecked())
{
aTimeField.SetText( OUString() );
aTimeField.Enable( false );
aLbLoopCount.Enable( false );
}
else if( p == &aRbtBitmap || aRbtBitmap.IsChecked() )
{
sal_uLong n = static_cast<sal_uLong>(aNumFldBitmap.GetValue());
if( n > 0 )
{
Time *const pTime = m_FrameList[n - 1].second;
if( pTime )
aTimeField.SetTime( *pTime );
}
aTimeField.Enable();
aLbLoopCount.Enable();
}
return( 0L );
}
IMPL_LINK( AnimationWindow, ClickGetObjectHdl, void *, pBtn )
{
bAllObjects = pBtn == &aBtnGetAllObjects;
// Code now in AddObj()
SfxBoolItem aItem( SID_ANIMATOR_ADD, true );
GetBindings().GetDispatcher()->Execute(
SID_ANIMATOR_ADD, SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD, &aItem, 0L );
return( 0L );
}
IMPL_LINK( AnimationWindow, ClickRemoveBitmapHdl, void *, pBtn )
{
SdPage* pPage = pMyDoc->GetSdPage(0, PK_STANDARD);
SdrObject* pObject;
if( pBtn == &aBtnRemoveBitmap )
{
delete m_FrameList[m_nCurrentFrame].first;
delete m_FrameList[m_nCurrentFrame].second;
m_FrameList.erase(m_FrameList.begin() + m_nCurrentFrame);
pObject = pPage->GetObj(m_nCurrentFrame);
// Through acquisition of the AnimatedGIFs, objects does not need to
// exist.
if( pObject )
{
pObject = pPage->RemoveObject(m_nCurrentFrame);
DBG_ASSERT(pObject, "Clone not found during deletion");
SdrObject::Free( pObject );
pPage->RecalcObjOrdNums();
}
if (m_nCurrentFrame >= m_FrameList.size())
{
assert(m_FrameList.empty());
m_nCurrentFrame = EMPTY_FRAMELIST;
}
}
else // delete everything
{
WarningBox aWarnBox( this, WB_YES_NO, SD_RESSTR( STR_ASK_DELETE_ALL_PICTURES ) );
short nReturn = aWarnBox.Execute();
if( nReturn == RET_YES )
{
// clear frame list
for (size_t i = m_FrameList.size(); i > 0; )
{
--i;
delete m_FrameList[i].first;
pObject = pPage->GetObj( i );
if( pObject )
{
pObject = pPage->RemoveObject( i );
DBG_ASSERT(pObject, "Clone not found during deletion");
SdrObject::Free( pObject );
//pPage->RecalcObjOrdNums();
}
delete m_FrameList[i].second;
}
m_FrameList.clear();
m_nCurrentFrame = EMPTY_FRAMELIST;
}
}
// can we create a animation group
if (m_FrameList.empty())
{
aBtnCreateGroup.Disable();
// if previous disabled by acquisition of AnimatedGIFs:
//aRbtBitmap.Enable();
aRbtGroup.Enable();
}
// calculate and set zoom for DisplayWin
Fraction aFrac( GetScale() );
aCtlDisplay.SetScale( aFrac );
UpdateControl();
return( 0L );
}
IMPL_LINK_NOARG(AnimationWindow, ClickCreateGroupHdl)
{
// Code now in CreatePresObj()
SfxBoolItem aItem( SID_ANIMATOR_CREATE, true );
GetBindings().GetDispatcher()->Execute(
SID_ANIMATOR_CREATE, SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD, &aItem, 0L );
return( 0L );
}
IMPL_LINK_NOARG(AnimationWindow, ModifyBitmapHdl)
{
sal_uLong nBmp = static_cast<sal_uLong>(aNumFldBitmap.GetValue());
if (nBmp > m_FrameList.size())
{
nBmp = m_FrameList.size();
}
m_nCurrentFrame = nBmp - 1;
UpdateControl();
return( 0L );
}
IMPL_LINK_NOARG(AnimationWindow, ModifyTimeHdl)
{
sal_uLong nPos = static_cast<sal_uLong>(aNumFldBitmap.GetValue() - 1);
Time *const pTime = m_FrameList[nPos].second;
*pTime = aTimeField.GetTime();
return( 0L );
}
void AnimationWindow::UpdateControl(bool const bDisableCtrls)
{
if (!m_FrameList.empty())
{
BitmapEx aBmp(*m_FrameList[m_nCurrentFrame].first);
SdPage* pPage = pMyDoc->GetSdPage(0, PK_STANDARD);
SdrObject *const pObject =
static_cast<SdrObject*>(pPage->GetObj(m_nCurrentFrame));
if( pObject )
{
VirtualDevice aVD;
Rectangle aObjRect( pObject->GetCurrentBoundRect() );
Size aObjSize( aObjRect.GetSize() );
Point aOrigin( Point( -aObjRect.Left(), -aObjRect.Top() ) );
MapMode aMap( aVD.GetMapMode() );
aMap.SetMapUnit( MAP_100TH_MM );
aMap.SetOrigin( aOrigin );
aVD.SetMapMode( aMap );
aVD.SetOutputSize( aObjSize );
const StyleSettings& rStyles = Application::GetSettings().GetStyleSettings();
aVD.SetBackground( Wallpaper( rStyles.GetFieldColor() ) );
aVD.SetDrawMode( rStyles.GetHighContrastMode()
? ViewShell::OUTPUT_DRAWMODE_CONTRAST
: ViewShell::OUTPUT_DRAWMODE_COLOR );
aVD.Erase();
pObject->SingleObjectPainter( aVD );
aBmp = BitmapEx( aVD.GetBitmap( aObjRect.TopLeft(), aObjSize ) );
}
aCtlDisplay.SetBitmapEx( &aBmp );
}
else
{
aCtlDisplay.SetBitmapEx(0);
}
aCtlDisplay.Invalidate();
aCtlDisplay.Update();
aFiCount.SetText(OUString::number(
m_FrameList.size()));
if (!m_FrameList.empty() && !bMovie)
{
aNumFldBitmap.SetValue(m_nCurrentFrame + 1);
// if there is at least 1 object in the list
aBtnFirst.Enable();
aBtnReverse.Enable();
aBtnPlay.Enable();
aBtnLast.Enable();
aNumFldBitmap.Enable();
aTimeField.Enable();
aLbLoopCount.Enable();
aBtnRemoveBitmap.Enable();
aBtnRemoveAll.Enable();
}
else
{
// if no object is in the list
aBtnFirst.Enable( false );
aBtnReverse.Enable( false );
aBtnPlay.Enable( false );
aBtnLast.Enable( false );
aNumFldBitmap.Enable( false );
aTimeField.Enable( false );
aLbLoopCount.Enable( false );
aBtnRemoveBitmap.Enable( false );
aBtnRemoveAll.Enable( false );
//aFtAdjustment.Enable();
//aLbAdjustment.Enable();
}
if( bMovie && bDisableCtrls )
{
aBtnGetOneObject.Enable( false );
aBtnGetAllObjects.Enable( false );
aRbtGroup.Enable( false );
aRbtBitmap.Enable( false );
aBtnCreateGroup.Enable( false );
aFtAdjustment.Enable( false );
aLbAdjustment.Enable( false );
}
else
{
// enable 'group object' only if it is not a Animated GIF
if (m_FrameList.empty())
{
aRbtGroup.Enable();
}
aRbtBitmap.Enable();
aBtnCreateGroup.Enable(!m_FrameList.empty());
aFtAdjustment.Enable( true );
aLbAdjustment.Enable( true );
}
ClickRbtHdl( NULL );
}
void AnimationWindow::ResetAttrs()
{
aRbtGroup.Check();
aLbAdjustment.SelectEntryPos( BA_CENTER );
// LoopCount
aLbLoopCount.SelectEntryPos( aLbLoopCount.GetEntryCount() - 1);
UpdateControl();
}
void AnimationWindow::WaitInEffect( sal_uLong nMilliSeconds, sal_uLong nTime,
SfxProgress* pProgress ) const
{
clock_t aEnd = Time::GetSystemTicks() + nMilliSeconds;
clock_t aCurrent = Time::GetSystemTicks();
while (aCurrent < aEnd)
{
aCurrent = Time::GetSystemTicks();
if( pProgress )
pProgress->SetState( nTime + nMilliSeconds + aCurrent - aEnd );
Application::Reschedule();
if( !bMovie )
return;
}
}
Fraction AnimationWindow::GetScale()
{
Fraction aFrac;
size_t const nCount = m_FrameList.size();
if (nCount > 0)
{
aBmpSize.Width() = 0;
aBmpSize.Height() = 0;
for (size_t i = 0; i < nCount; i++)
{
BitmapEx *const pBitmap = m_FrameList[i].first;
Size aTempSize( pBitmap->GetBitmap().GetSizePixel() );
aBmpSize.Width() = std::max( aBmpSize.Width(), aTempSize.Width() );
aBmpSize.Height() = std::max( aBmpSize.Height(), aTempSize.Height() );
}
aBmpSize.Width() += 10;
aBmpSize.Height() += 10;
aFrac = Fraction( std::min( (double)aDisplaySize.Width() / (double)aBmpSize.Width(),
(double)aDisplaySize.Height() / (double)aBmpSize.Height() ) );
}
return( aFrac );
}
void AnimationWindow::Resize()
{
if ( !IsFloatingMode() ||
!GetFloatingWindow()->IsRollUp() )
{
Size aWinSize( GetOutputSizePixel() ); // former rSize in Resizing()
Size aDiffSize;
aDiffSize.Width() = aWinSize.Width() - aSize.Width();
aDiffSize.Height() = aWinSize.Height() - aSize.Height();
// resize display controls
aDisplaySize.Width() += aDiffSize.Width();
aDisplaySize.Height() += aDiffSize.Height();
aCtlDisplay.SetOutputSizePixel( aDisplaySize );
Point aPt;
aPt.Y() = aDiffSize.Height();
// move other controls
aBtnFirst.Hide();
aBtnReverse.Hide();
aBtnStop.Hide();
aBtnPlay.Hide();
aBtnLast.Hide();
aTimeField.Hide();
aLbLoopCount.Hide();
aNumFldBitmap.Hide();
aFtCount.Hide();
aFiCount.Hide();
aBtnGetOneObject.Hide();
aBtnGetAllObjects.Hide();
aBtnRemoveBitmap.Hide();
aBtnRemoveAll.Hide();
aGrpBitmap.Hide();
aRbtGroup.Hide();
aRbtBitmap.Hide();
aFtAdjustment.Hide();
aLbAdjustment.Hide();
aBtnCreateGroup.Hide();
aGrpAnimation.Hide();
aBtnFirst.SetPosPixel( aBtnFirst.GetPosPixel() + aPt );
aBtnReverse.SetPosPixel( aBtnReverse.GetPosPixel() + aPt );
aBtnStop.SetPosPixel( aBtnStop.GetPosPixel() + aPt );
aBtnPlay.SetPosPixel( aBtnPlay.GetPosPixel() + aPt );
aBtnLast.SetPosPixel( aBtnLast.GetPosPixel() + aPt );
aNumFldBitmap.SetPosPixel( aNumFldBitmap.GetPosPixel() + aPt );
aTimeField.SetPosPixel( aTimeField.GetPosPixel() + aPt );
aLbLoopCount.SetPosPixel( aLbLoopCount.GetPosPixel() + aPt );
aFtCount.SetPosPixel( aFtCount.GetPosPixel() + aPt );
aFiCount.SetPosPixel( aFiCount.GetPosPixel() + aPt );
aRbtGroup.SetPosPixel( aRbtGroup.GetPosPixel() + aPt );
aRbtBitmap.SetPosPixel( aRbtBitmap.GetPosPixel() + aPt );
aFtAdjustment.SetPosPixel( aFtAdjustment.GetPosPixel() + aPt );
aLbAdjustment.SetPosPixel( aLbAdjustment.GetPosPixel() + aPt );
aBtnGetOneObject.SetPosPixel( aBtnGetOneObject.GetPosPixel() + aPt );
aBtnGetAllObjects.SetPosPixel( aBtnGetAllObjects.GetPosPixel() + aPt );
aBtnRemoveBitmap.SetPosPixel( aBtnRemoveBitmap.GetPosPixel() + aPt );
aBtnRemoveAll.SetPosPixel( aBtnRemoveAll.GetPosPixel() + aPt );
aBtnCreateGroup.SetPosPixel( aBtnCreateGroup.GetPosPixel() + aPt );
aGrpBitmap.SetPosPixel( aGrpBitmap.GetPosPixel() + aPt );
aGrpAnimation.SetPosPixel( aGrpAnimation.GetPosPixel() + aPt );
// calculate and set zoom for DisplayWin
Fraction aFrac( GetScale() );
aCtlDisplay.SetScale( aFrac );
aBtnFirst.Show();
aBtnReverse.Show();
aBtnStop.Show();
aBtnPlay.Show();
aBtnLast.Show();
aNumFldBitmap.Show();
aTimeField.Show();
aLbLoopCount.Show();
aFtCount.Show();
aFiCount.Show();
aFtAdjustment.Show();
aLbAdjustment.Show();
aBtnGetOneObject.Show();
aBtnGetAllObjects.Show();
aBtnRemoveBitmap.Show();
aBtnRemoveAll.Show();
aGrpBitmap.Show();
aRbtGroup.Show();
aRbtBitmap.Show();
aFtAdjustment.Show();
aLbAdjustment.Show();
aBtnCreateGroup.Show();
aGrpAnimation.Show();
aSize = aWinSize;
}
SfxDockingWindow::Resize();
}
bool AnimationWindow::Close()
{
if( maPlayLock.isLocked() )
{
return false;
}
else
{
SfxBoolItem aItem( SID_ANIMATION_OBJECTS, false );
GetBindings().GetDispatcher()->Execute(
SID_ANIMATION_OBJECTS, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD, &aItem, 0L );
SfxDockingWindow::Close();
return true;
}
}
void AnimationWindow::FillInfo( SfxChildWinInfo& rInfo ) const
{
SfxDockingWindow::FillInfo( rInfo ) ;
}
void AnimationWindow::AddObj (::sd::View& rView )
{
// finish text entry mode to ensure that bitmap is identical with object
if( rView.IsTextEdit() )
rView.SdrEndTextEdit();
// clone object(s) and insert the clone(s) into the list
const SdrMarkList& rMarkList = rView.GetMarkedObjectList();
sal_uLong nMarkCount = rMarkList.GetMarkCount();
SdPage* pPage = pMyDoc->GetSdPage(0, PK_STANDARD);
sal_uLong nCloneCount = pPage->GetObjCount();
if (nMarkCount > 0)
{
// If it is ONE animation object or one group object, which was
// 'individually taken', we insert the objects separately
bool bAnimObj = false;
if( nMarkCount == 1 )
{
SdrMark* pMark = rMarkList.GetMark(0);
SdrObject* pObject = pMark->GetMarkedSdrObj();
SdAnimationInfo* pAnimInfo = rView.GetDoc().GetAnimationInfo( pObject );
sal_uInt32 nInv = pObject->GetObjInventor();
sal_uInt16 nId = pObject->GetObjIdentifier();
// Animated Bitmap (GIF)
if( nInv == SdrInventor && nId == OBJ_GRAF && ( (SdrGrafObj*) pObject )->IsAnimated() )
{
const SdrGrafObj* pGrafObj = (SdrGrafObj*) pObject;
Graphic aGraphic( pGrafObj->GetTransformedGraphic() );
sal_uInt16 nCount = 0;
if( aGraphic.IsAnimated() )
nCount = aGraphic.GetAnimation().Count();
if( nCount > 0 )
{
const Animation aAnimation( aGraphic.GetAnimation() );
for( sal_uInt16 i = 0; i < nCount; i++ )
{
const AnimationBitmap& rAnimBmp = aAnimation.Get( i );
BitmapEx *const pBitmapEx =
new BitmapEx(rAnimBmp.aBmpEx);
// LoopCount
if( i == 0 )
{
long nLoopCount = aAnimation.GetLoopCount();
if( !nLoopCount ) // endless
aLbLoopCount.SelectEntryPos( aLbLoopCount.GetEntryCount() - 1);
else
aLbLoopCount.SelectEntry(OUString::number( nLoopCount ) );
}
long nTime = rAnimBmp.nWait;
Time* pTime = new Time( 0, 0, nTime / 100, nTime % 100 );
m_FrameList.insert(
m_FrameList.begin() + m_nCurrentFrame + 1,
::std::make_pair(pBitmapEx, pTime));
// increment => next one inserted after this one
++m_nCurrentFrame;
}
// if a animated GIF is taken, only such one can be created
aRbtBitmap.Check();
aRbtGroup.Enable( false );
bAnimObj = true;
}
}
else if( bAllObjects || ( pAnimInfo && pAnimInfo->mbIsMovie ) )
{
// several objects
SdrObjList* pObjList = ((SdrObjGroup*)pObject)->GetSubList();
for( sal_uLong nObject = 0; nObject < pObjList->GetObjCount(); nObject++ )
{
SdrObject* pSnapShot = (SdrObject*) pObjList->GetObj( nObject );
BitmapEx *const pBitmapEx = new BitmapEx(
SdrExchangeView::GetObjGraphic(
pSnapShot->GetModel(), pSnapShot).GetBitmapEx() );
Time* pTime = new Time( aTimeField.GetTime() );
m_FrameList.insert(
m_FrameList.begin() + m_nCurrentFrame + 1,
::std::make_pair(pBitmapEx, pTime));
// increment => next one inserted after this one
++m_nCurrentFrame;
// Clone
pPage->InsertObject(pSnapShot->Clone(), m_nCurrentFrame);
}
bAnimObj = true;
}
}
// also one single animated object
if( !bAnimObj && !( bAllObjects && nMarkCount > 1 ) )
{
BitmapEx *const pBitmapEx =
new BitmapEx(rView.GetAllMarkedGraphic().GetBitmapEx());
Time* pTime = new Time( aTimeField.GetTime() );
m_FrameList.insert(
m_FrameList.begin() + m_nCurrentFrame + 1,
::std::make_pair(pBitmapEx, pTime));
}
// one single object
if( nMarkCount == 1 && !bAnimObj )
{
SdrMark* pMark = rMarkList.GetMark(0);
SdrObject* pObject = pMark->GetMarkedSdrObj();
SdrObject* pClone = pObject->Clone();
pPage->InsertObject(pClone, m_nCurrentFrame + 1);
}
// several objects: group the clones
else if (nMarkCount > 1)
{
// take objects separately
if( bAllObjects )
{
for( sal_uLong nObject= 0; nObject < nMarkCount; nObject++ )
{
// Clone
SdrObject* pObject = rMarkList.GetMark( nObject )->GetMarkedSdrObj();
BitmapEx *const pBitmapEx = new BitmapEx(
SdrExchangeView::GetObjGraphic(
pObject->GetModel(), pObject).GetBitmapEx() );
Time* pTime = new Time( aTimeField.GetTime() );
m_FrameList.insert(
m_FrameList.begin() + m_nCurrentFrame + 1,
::std::make_pair(pBitmapEx, pTime));
// increment => next one inserted after this one
++m_nCurrentFrame;
pPage->InsertObject(pObject->Clone(), m_nCurrentFrame);
}
bAnimObj = true; // that we don't change again
}
else
{
SdrObjGroup* pCloneGroup = new SdrObjGroup;
SdrObjList* pObjList = pCloneGroup->GetSubList();
for (sal_uLong nObject= 0; nObject < nMarkCount; nObject++)
pObjList->InsertObject(rMarkList.GetMark(nObject)->GetMarkedSdrObj()->Clone(), CONTAINER_APPEND);
pPage->InsertObject(pCloneGroup, m_nCurrentFrame + 1);
}
}
if( !bAnimObj )
{
++m_nCurrentFrame;
}
// if there was nothing in the animator before but now is something
// there, we can create a animation group
if (nCloneCount == 0 && !m_FrameList.empty())
{
aBtnCreateGroup.Enable();
}
// calculate and set zoom for DisplayWin
Fraction aFrac( GetScale() );
aCtlDisplay.SetScale( aFrac );
UpdateControl();
}
}
void AnimationWindow::CreateAnimObj (::sd::View& rView )
{
::Window* pOutWin = static_cast< ::Window*>(rView.GetFirstOutputDevice()); // GetWin( 0 );
DBG_ASSERT( pOutWin, "Window does not exist!" );
// find window center
const MapMode aMap100( MAP_100TH_MM );
Size aMaxSizeLog;
Size aMaxSizePix;
Size aTemp( pOutWin->GetOutputSizePixel() );
const Point aWindowCenter( pOutWin->PixelToLogic( Point( aTemp.Width() >> 1, aTemp.Height() >> 1 ) ) );
const OutputDevice* pDefDev = Application::GetDefaultDevice();
const size_t nCount = m_FrameList.size();
BitmapAdjustment eBA = (BitmapAdjustment) aLbAdjustment.GetSelectEntryPos();
// find biggest bitmap
for (size_t i = 0; i < nCount; ++i)
{
const BitmapEx& rBmpEx = *m_FrameList[i].first;
const Graphic aGraphic( rBmpEx );
Size aTmpSizeLog;
const Size aTmpSizePix( rBmpEx.GetSizePixel() );
if ( aGraphic.GetPrefMapMode().GetMapUnit() == MAP_PIXEL )
aTmpSizeLog = pDefDev->PixelToLogic( aGraphic.GetPrefSize(), aMap100 );
else
aTmpSizeLog = pDefDev->LogicToLogic( aGraphic.GetPrefSize(), aGraphic.GetPrefMapMode(), aMap100 );
aMaxSizeLog.Width() = std::max( aMaxSizeLog.Width(), aTmpSizeLog.Width() );
aMaxSizeLog.Height() = std::max( aMaxSizeLog.Height(), aTmpSizeLog.Height() );
aMaxSizePix.Width() = std::max( aMaxSizePix.Width(), aTmpSizePix.Width() );
aMaxSizePix.Height() = std::max( aMaxSizePix.Height(), aTmpSizePix.Height() );
}
SdrPageView* pPV = rView.GetSdrPageView();
if( aRbtBitmap.IsChecked() )
{
// create bitmap group (Animated GIF)
Animation aAnimation;
Point aPt;
for (size_t i = 0; i < nCount; ++i)
{
Time *const pTime = m_FrameList[i].second;
long nTime = pTime->GetNanoSec();
nTime += pTime->GetSec() * 100;
BitmapEx const*const pBitmapEx = m_FrameList[i].first;
// calculate offset for the specified direction
const Size aBitmapSize( pBitmapEx->GetSizePixel() );
switch( eBA )
{
case BA_LEFT_UP:
break;
case BA_LEFT:
aPt.Y() = (aMaxSizePix.Height() - aBitmapSize.Height()) >> 1;
break;
case BA_LEFT_DOWN:
aPt.Y() = aMaxSizePix.Height() - aBitmapSize.Height();
break;
case BA_UP:
aPt.X() = (aMaxSizePix.Width() - aBitmapSize.Width()) >> 1;
break;
case BA_CENTER:
aPt.X() = (aMaxSizePix.Width() - aBitmapSize.Width()) >> 1;
aPt.Y() = (aMaxSizePix.Height() - aBitmapSize.Height()) >> 1;
break;
case BA_DOWN:
aPt.X() = (aMaxSizePix.Width() - aBitmapSize.Width()) >> 1;
aPt.Y() = aMaxSizePix.Height() - aBitmapSize.Height();
break;
case BA_RIGHT_UP:
aPt.X() = aMaxSizePix.Width() - aBitmapSize.Width();
break;
case BA_RIGHT:
aPt.X() = aMaxSizePix.Width() - aBitmapSize.Width();
aPt.Y() = (aMaxSizePix.Height() - aBitmapSize.Height()) >> 1;
break;
case BA_RIGHT_DOWN:
aPt.X() = aMaxSizePix.Width() - aBitmapSize.Width();
aPt.Y() = aMaxSizePix.Height() - aBitmapSize.Height();
break;
}
// find LoopCount (number of passes)
AnimationBitmap aAnimBmp;
long nLoopCount = 0L;
sal_Int32 nPos = aLbLoopCount.GetSelectEntryPos();
if( nPos != LISTBOX_ENTRY_NOTFOUND && nPos != aLbLoopCount.GetEntryCount() - 1 ) // endless
nLoopCount = (long) aLbLoopCount.GetSelectEntry().toInt32();
aAnimBmp.aBmpEx = *pBitmapEx;
aAnimBmp.aPosPix = aPt;
aAnimBmp.aSizePix = aBitmapSize;
aAnimBmp.nWait = nTime;
aAnimBmp.eDisposal = DISPOSE_BACK;
aAnimBmp.bUserInput = false;
aAnimation.Insert( aAnimBmp );
aAnimation.SetDisplaySizePixel( aMaxSizePix );
aAnimation.SetLoopCount( nLoopCount );
}
SdrGrafObj* pGrafObj = new SdrGrafObj( Graphic( aAnimation ) );
const Point aOrg( aWindowCenter.X() - ( aMaxSizeLog.Width() >> 1 ), aWindowCenter.Y() - ( aMaxSizeLog.Height() >> 1 ) );
pGrafObj->SetLogicRect( Rectangle( aOrg, aMaxSizeLog ) );
rView.InsertObjectAtView( pGrafObj, *pPV, SDRINSERT_SETDEFLAYER);
}
else
{
// calculate offset for the specified direction
Size aOffset;
SdrObject * pClone = NULL;
SdPage* pPage = pMyDoc->GetSdPage(0, PK_STANDARD);
for (size_t i = 0; i < nCount; ++i)
{
pClone = pPage->GetObj(i);
Rectangle aRect( pClone->GetSnapRect() );
switch( eBA )
{
case BA_LEFT_UP:
break;
case BA_LEFT:
aOffset.Height() = (aMaxSizeLog.Height() - aRect.GetHeight()) / 2;
break;
case BA_LEFT_DOWN:
aOffset.Height() = aMaxSizeLog.Height() - aRect.GetHeight();
break;
case BA_UP:
aOffset.Width() = (aMaxSizeLog.Width() - aRect.GetWidth()) / 2;
break;
case BA_CENTER:
aOffset.Width() = (aMaxSizeLog.Width() - aRect.GetWidth()) / 2;
aOffset.Height() = (aMaxSizeLog.Height() - aRect.GetHeight()) / 2;
break;
case BA_DOWN:
aOffset.Width() = (aMaxSizeLog.Width() - aRect.GetWidth()) / 2;
aOffset.Height() = aMaxSizeLog.Height() - aRect.GetHeight();
break;
case BA_RIGHT_UP:
aOffset.Width() = aMaxSizeLog.Width() - aRect.GetWidth();
break;
case BA_RIGHT:
aOffset.Width() = aMaxSizeLog.Width() - aRect.GetWidth();
aOffset.Height() = (aMaxSizeLog.Height() - aRect.GetHeight()) / 2;
break;
case BA_RIGHT_DOWN:
aOffset.Width() = aMaxSizeLog.Width() - aRect.GetWidth();
aOffset.Height() = aMaxSizeLog.Height() - aRect.GetHeight();
break;
}
// Unfortunately, SetSnapRect is not implemented for ellipses !!!
Point aMovePt( aWindowCenter + Point( aOffset.Width(), aOffset.Height() ) - aRect.TopLeft() );
Size aMoveSize( aMovePt.X(), aMovePt.Y() );
pClone->NbcMove( aMoveSize );
}
// #i42894# Caution(!) variable pPage looks right, but it is a page from the local
// document the dialog is using (!), so get the target page from the target view
SdPage* pTargetSdPage = dynamic_cast< SdPage* >(rView.GetSdrPageView() ? rView.GetSdrPageView()->GetPage() : 0);
if(pTargetSdPage)
{
// create animation group
SdrObjGroup* pGroup = new SdrObjGroup;
SdrObjList* pObjList = pGroup->GetSubList();
for (size_t i = 0; i < nCount; i++)
{
// the clone remains in the animatior; we insert a clone of the
// clone into the group
pClone = pPage->GetObj(i);
SdrObject* pCloneOfClone = pClone->Clone();
//SdrObject* pCloneOfClone = pPage->GetObj(i)->Clone();
pObjList->InsertObject(pCloneOfClone, CONTAINER_APPEND);
}
// until now the top left corner of the group is in the window center;
// correct the position by half of the size of the group
aTemp = aMaxSizeLog;
aTemp.Height() = - aTemp.Height() / 2;
aTemp.Width() = - aTemp.Width() / 2;
pGroup->NbcMove(aTemp);
// #i42894# create needed SMIL stuff and move child objects to page directly (see
// comments at EffectMigration::CreateAnimatedGroup why this has to be done).
EffectMigration::CreateAnimatedGroup(*pGroup, *pTargetSdPage);
// #i42894# if that worked, delete the group again
if(!pGroup->GetSubList()->GetObjCount())
{
delete pGroup;
}
}
}
ClickFirstHdl( this );
}
void AnimationWindow::DataChanged( const DataChangedEvent& rDCEvt )
{
SfxDockingWindow::DataChanged( rDCEvt );
if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) && (rDCEvt.GetFlags() & SETTINGS_STYLE) )
{
UpdateControl();
}
}
/**
* ControllerItem for Animator
*/
AnimationControllerItem::AnimationControllerItem(
sal_uInt16 _nId,
AnimationWindow* pAnimWin,
SfxBindings* _pBindings)
: SfxControllerItem( _nId, *_pBindings ),
pAnimationWin( pAnimWin )
{
}
void AnimationControllerItem::StateChanged( sal_uInt16 nSId,
SfxItemState eState, const SfxPoolItem* pItem )
{
if( eState >= SFX_ITEM_AVAILABLE && nSId == SID_ANIMATOR_STATE )
{
const SfxUInt16Item* pStateItem = PTR_CAST( SfxUInt16Item, pItem );
assert(pStateItem); //SfxUInt16Item expected
if (pStateItem)
{
sal_uInt16 nState = pStateItem->GetValue();
pAnimationWin->aBtnGetOneObject.Enable( nState & 1 );
pAnimationWin->aBtnGetAllObjects.Enable( nState & 2 );
}
}
}
} // end of namespace sd
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|