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
|
/* -*- 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 <sal/config.h>
#include <cstdlib>
#include "scitems.hxx"
#include <comphelper/string.hxx>
#include <editeng/eeitem.hxx>
#include <sfx2/app.hxx>
#include <editeng/sizeitem.hxx>
#include <svl/srchitem.hxx>
#include <svx/zoomslideritem.hxx>
#include <svx/svdview.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/objface.hxx>
#include <sfx2/request.hxx>
#include <svl/stritem.hxx>
#include <svl/whiter.hxx>
#include <vcl/msgbox.hxx>
#include <vcl/help.hxx>
#include <vcl/settings.hxx>
#include <tools/urlobj.hxx>
#include <sfx2/docfile.hxx>
#include <sfx2/printer.hxx>
#include "prevwsh.hxx"
#include "preview.hxx"
#include "printfun.hxx"
#include "attrib.hxx"
#include "scmod.hxx"
#include "inputhdl.hxx"
#include "docsh.hxx"
#include "tabvwsh.hxx"
#include "stlpool.hxx"
#include "editutil.hxx"
#include "scresid.hxx"
#include "globstr.hrc"
#include "sc.hrc"
#include "ViewSettingsSequenceDefines.hxx"
#include "tpprint.hxx"
#include "printopt.hxx"
#include "viewuno.hxx"
#include <sax/tools/converter.hxx>
#include <rtl/ustrbuf.hxx>
#include <svx/svxdlg.hxx>
#include <svx/dialogs.hrc>
#include <basegfx/tools/zoomtools.hxx>
#include <svx/zoom_def.hxx>
#include <com/sun/star/document/XDocumentProperties.hpp>
#include "scabstdlg.hxx"
// for mouse wheel
#define MINZOOM_SLIDER 10
#define MAXZOOM_SLIDER 400
#define SC_USERDATA_SEP ';'
using namespace com::sun::star;
#define ScPreviewShell
#include "scslots.hxx"
#include <memory>
SFX_IMPL_INTERFACE(ScPreviewShell, SfxViewShell)
void ScPreviewShell::InitInterface_Impl()
{
GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT|SFX_VISIBILITY_STANDARD|SFX_VISIBILITY_SERVER|SFX_VISIBILITY_READONLYDOC,
RID_OBJECTBAR_PREVIEW);
GetStaticInterface()->RegisterPopupMenu("preview");
}
SFX_IMPL_NAMED_VIEWFACTORY( ScPreviewShell, "PrintPreview" )
{
SFX_VIEW_REGISTRATION(ScDocShell);
}
void ScPreviewShell::Construct( vcl::Window* pParent )
{
// Find the top-most window, and set the close window handler to intercept
// the window close event.
vcl::Window* pWin = pParent;
while (!pWin->IsSystemWindow())
{
if (pWin->GetParent())
pWin = pWin->GetParent();
else
break;
}
mpFrameWindow = dynamic_cast<SystemWindow*>(pWin);
if (mpFrameWindow)
mpFrameWindow->SetCloseHdl(LINK(this, ScPreviewShell, CloseHdl));
eZoom = SvxZoomType::WHOLEPAGE;
pCorner = VclPtr<ScrollBarBox>::Create( pParent, WB_SIZEABLE );
pHorScroll = VclPtr<ScrollBar>::Create(pParent, WB_HSCROLL );
pVerScroll = VclPtr<ScrollBar>::Create(pParent, WB_VSCROLL);
// SSA: --- RTL --- no mirroring for horizontal scrollbars
pHorScroll->EnableRTL( false );
pHorScroll->SetEndScrollHdl( LINK( this, ScPreviewShell, ScrollHandler ) );
pVerScroll->SetEndScrollHdl( LINK( this, ScPreviewShell, ScrollHandler ) );
pPreview = VclPtr<ScPreview>::Create( pParent, pDocShell, this );
SetPool( &SC_MOD()->GetPool() );
SetWindow( pPreview );
StartListening(*pDocShell,true);
StartListening(*SfxGetpApp(),true); // #i62045# #i62046# application is needed for Calc's own hints
SfxBroadcaster* pDrawBC = pDocShell->GetDocument().GetDrawBroadcaster();
if (pDrawBC)
StartListening(*pDrawBC);
pHorScroll->Show( false );
pVerScroll->Show( false );
pCorner->Show();
SetHelpId( HID_SCSHELL_PREVWSH );
SetName("Preview");
}
ScPreviewShell::ScPreviewShell( SfxViewFrame* pViewFrame,
SfxViewShell* pOldSh ) :
SfxViewShell( pViewFrame, SfxViewShellFlags::CAN_PRINT | SfxViewShellFlags::HAS_PRINTOPTIONS ),
pDocShell( static_cast<ScDocShell*>(pViewFrame->GetObjectShell()) ),
mpFrameWindow(nullptr),
nSourceDesignMode( TRISTATE_INDET ),
nMaxVertPos(0),
pAccessibilityBroadcaster( nullptr )
{
Construct( &pViewFrame->GetWindow() );
if ( pOldSh && dynamic_cast<const ScTabViewShell*>( pOldSh) != nullptr )
{
// store view settings, show table from TabView
//! store live ScViewData instead, and update on ScTablesHint?
//! or completely forget aSourceData on ScTablesHint?
ScTabViewShell* pTabViewShell = static_cast<ScTabViewShell*>(pOldSh);
const ScViewData& rData = pTabViewShell->GetViewData();
rData.WriteUserDataSequence( aSourceData );
pPreview->SetSelectedTabs(rData.GetMarkData());
InitStartTable( rData.GetTabNo() );
// also have to store the TabView's DesignMode state
// (only if draw view exists)
SdrView* pDrawView = pTabViewShell->GetSdrView();
if ( pDrawView )
nSourceDesignMode
= pDrawView->IsDesignMode() ? TRISTATE_TRUE : TRISTATE_FALSE;
}
new ScPreviewObj(this);
}
ScPreviewShell::~ScPreviewShell()
{
if (mpFrameWindow)
mpFrameWindow->SetCloseHdl(Link<SystemWindow&,void>()); // Remove close handler.
// #108333#; notify Accessibility that Shell is dying and before destroy all
BroadcastAccessibility( SfxSimpleHint( SFX_HINT_DYING ) );
DELETEZ(pAccessibilityBroadcaster);
SfxBroadcaster* pDrawBC = pDocShell->GetDocument().GetDrawBroadcaster();
if (pDrawBC)
EndListening(*pDrawBC);
EndListening(*SfxGetpApp());
EndListening(*pDocShell);
SetWindow(nullptr);
pPreview.disposeAndClear();
pHorScroll.disposeAndClear();
pVerScroll.disposeAndClear();
pCorner.disposeAndClear();
// normal mode of operation is switching back to default view in the same frame,
// so there's no need to activate any other window here anymore
}
void ScPreviewShell::InitStartTable(SCTAB nTab)
{
pPreview->SetPageNo( pPreview->GetFirstPage(nTab) );
}
void ScPreviewShell::AdjustPosSizePixel( const Point &rPos, const Size &rSize )
{
Size aOutSize( rSize );
pPreview->SetPosSizePixel( rPos, aOutSize );
if ( SvxZoomType::WHOLEPAGE == eZoom )
pPreview->SetZoom( pPreview->GetOptimalZoom(false) );
else if ( SvxZoomType::PAGEWIDTH == eZoom )
pPreview->SetZoom( pPreview->GetOptimalZoom(true) );
UpdateNeededScrollBars();
}
void ScPreviewShell::InnerResizePixel( const Point &rOfs, const Size &rSize )
{
AdjustPosSizePixel( rOfs,rSize );
}
void ScPreviewShell::OuterResizePixel( const Point &rOfs, const Size &rSize )
{
AdjustPosSizePixel( rOfs,rSize );
}
bool ScPreviewShell::GetPageSize( Size& aPageSize )
{
ScDocument& rDoc = pDocShell->GetDocument();
SCTAB nTab = pPreview->GetTab();
ScStyleSheetPool* pStylePool = rDoc.GetStyleSheetPool();
SfxStyleSheetBase* pStyleSheet = pStylePool->Find( rDoc.GetPageStyle( nTab ),
SfxStyleFamily::Page );
OSL_ENSURE(pStyleSheet,"No style sheet");
if (!pStyleSheet) return false;
const SfxItemSet* pParamSet = &pStyleSheet->GetItemSet();
aPageSize = static_cast<const SvxSizeItem&>( pParamSet->Get(ATTR_PAGE_SIZE)).GetSize();
aPageSize.Width() = (long) (aPageSize.Width() * HMM_PER_TWIPS );
aPageSize.Height() = (long) (aPageSize.Height() * HMM_PER_TWIPS );
return true;
}
void ScPreviewShell::UpdateNeededScrollBars( bool bFromZoom )
{
Size aPageSize;
OutputDevice* pDevice = Application::GetDefaultDevice();
long nBarW = GetViewFrame()->GetWindow().GetSettings().GetStyleSettings().GetScrollBarSize();
long nBarH = nBarW;
long aHeightOffSet = pDevice ? pDevice->PixelToLogic( Size( nBarW, nBarH ), pPreview->GetMapMode() ).Height() : 0;
long aWidthOffSet = aHeightOffSet;
if (!GetPageSize( aPageSize ))
return;
// for centering, page size without the shadow is used
bool bVert = pVerScroll->IsVisible();
bool bHori = pHorScroll->IsVisible();
Size aWindowSize = pPreview->GetOutputSize();
Point aPos = pPreview->GetPosPixel();
Size aWindowPixelSize = pPreview->GetOutputSizePixel();
// if we are called from Zoom then we need to compensate for whatever
// scrollbars were displayed before the zoom was called
if ( bFromZoom )
{
if ( bVert )
{
aWindowPixelSize.Width() += nBarH;
aWindowSize.Width() += aHeightOffSet;
}
if ( bHori )
{
aWindowPixelSize.Height() += nBarW;
aWindowSize.Height() += aWidthOffSet;
}
}
// recalculate any needed scrollbars
long nMaxWidthPos = aPageSize.Width() - aWindowSize.Width();
if ( nMaxWidthPos<0 )
bHori = false;
else
bHori = true;
long nMaxHeightPos = aPageSize.Height() - aWindowSize.Height();
if ( nMaxHeightPos < 0 )
bVert = false;
else
bVert = true;
// see if having a scroll bar requires the other
if ( bVert != bHori && ( bVert || bHori ) )
{
if ( bVert && ( (nMaxWidthPos + aWidthOffSet ) > 0 ) )
bHori = true;
else if ( (nMaxHeightPos + aHeightOffSet ) > 0 )
bVert = true;
}
pHorScroll->Show( bHori );
pVerScroll->Show( bVert );
// make room for needed scrollbars ( and reduce the size
// of the preview appropriately )
if ( bHori )
aWindowPixelSize.Height() -= nBarW;
if ( bVert )
aWindowPixelSize.Width() -= nBarH;
pPreview->SetSizePixel( aWindowPixelSize );
pHorScroll->SetPosSizePixel( Point( aPos.X(), aPos.Y() + aWindowPixelSize.Height() ),
Size( aWindowPixelSize.Width(), nBarH ) );
pVerScroll->SetPosSizePixel( Point( aPos.X() + aWindowPixelSize.Width(), aPos.Y() ),
Size( nBarW, aWindowPixelSize.Height() ) );
pCorner->SetPosSizePixel( Point( aPos.X() + aWindowPixelSize.Width(), aPos.Y() + aWindowPixelSize.Height() ),
Size( nBarW, nBarH ) );
UpdateScrollBars();
}
void ScPreviewShell::UpdateScrollBars()
{
Size aPageSize;
if ( !GetPageSize( aPageSize ) )
return;
// for centering, page size without the shadow is used
Size aWindowSize = pPreview->GetOutputSize();
Point aOfs = pPreview->GetOffset();
if( pHorScroll )
{
pHorScroll->SetRange( Range( 0, aPageSize.Width() ) );
pHorScroll->SetLineSize( aWindowSize.Width() / 16 );
pHorScroll->SetPageSize( aWindowSize.Width() );
pHorScroll->SetVisibleSize( aWindowSize.Width() );
long nMaxPos = aPageSize.Width() - aWindowSize.Width();
if ( nMaxPos<0 )
{
// page smaller than window -> center (but put scrollbar to 0)
aOfs.X() = 0;
pPreview->SetXOffset( nMaxPos / 2 );
}
else if (aOfs.X() < 0)
{
// page larger than window -> never use negative offset
aOfs.X() = 0;
pPreview->SetXOffset( 0 );
}
else if (aOfs.X() > nMaxPos)
{
// limit offset to align with right edge of window
aOfs.X() = nMaxPos;
pPreview->SetXOffset(nMaxPos);
}
pHorScroll->SetThumbPos( aOfs.X() );
}
if( pVerScroll )
{
long nPageNo = pPreview->GetPageNo();
long nTotalPages = pPreview->GetTotalPages();
nMaxVertPos = aPageSize.Height() - aWindowSize.Height();
pVerScroll->SetLineSize( aWindowSize.Height() / 16 );
pVerScroll->SetPageSize( aWindowSize.Height() );
pVerScroll->SetVisibleSize( aWindowSize.Height() );
if ( nMaxVertPos < 0 )
{
// page smaller than window -> center (but put scrollbar to 0)
aOfs.Y() = 0;
pPreview->SetYOffset( nMaxVertPos / 2 );
pVerScroll->SetThumbPos( nPageNo * aWindowSize.Height() );
pVerScroll->SetRange( Range( 0, aWindowSize.Height() * nTotalPages ));
}
else if (aOfs.Y() < 0)
{
// page larger than window -> never use negative offset
pVerScroll->SetRange( Range( 0, aPageSize.Height() ) );
aOfs.Y() = 0;
pPreview->SetYOffset( 0 );
pVerScroll->SetThumbPos( aOfs.Y() );
}
else if (aOfs.Y() > nMaxVertPos )
{
// limit offset to align with window bottom
pVerScroll->SetRange( Range( 0, aPageSize.Height() ) );
aOfs.Y() = nMaxVertPos;
pPreview->SetYOffset( nMaxVertPos );
pVerScroll->SetThumbPos( aOfs.Y() );
}
}
}
IMPL_LINK_TYPED( ScPreviewShell, ScrollHandler, ScrollBar*, pScroll, void )
{
long nPos = pScroll->GetThumbPos();
long nDelta = pScroll->GetDelta();
long nMaxRange = pScroll->GetRangeMax();
long nTotalPages = pPreview->GetTotalPages();
long nPageNo = 0;
long nPerPageLength = 0;
bool bIsDivide = true;
if( nTotalPages )
nPerPageLength = nMaxRange / nTotalPages;
if( nPerPageLength )
{
nPageNo = nPos / nPerPageLength;
if( nPos % nPerPageLength )
{
bIsDivide = false;
nPageNo ++;
}
}
bool bHoriz = ( pScroll == pHorScroll );
if( bHoriz )
pPreview->SetXOffset( nPos );
else
{
if( nMaxVertPos > 0 )
pPreview->SetYOffset( nPos );
else
{
Point aMousePos = pScroll->OutputToNormalizedScreenPixel( pScroll->GetPointerPosPixel() );
Point aPos = pScroll->GetParent()->OutputToNormalizedScreenPixel( pScroll->GetPosPixel() );
OUString aHelpStr;
Rectangle aRect;
QuickHelpFlags nAlign;
if( nDelta < 0 )
{
if ( nTotalPages && nPageNo > 0 && !bIsDivide )
pPreview->SetPageNo( nPageNo-1 );
if( bIsDivide )
pPreview->SetPageNo( nPageNo );
aHelpStr = ScGlobal::GetRscString( STR_PAGE ) +
" " + OUString::number( nPageNo ) +
" / " + OUString::number( nTotalPages );
}
else if( nDelta > 0 )
{
bool bAllTested = pPreview->AllTested();
if ( nTotalPages && ( nPageNo < nTotalPages || !bAllTested ) )
pPreview->SetPageNo( nPageNo );
aHelpStr = ScGlobal::GetRscString( STR_PAGE ) +
" " + OUString::number( nPageNo+1 ) +
" / " + OUString::number( nTotalPages );
}
aRect.Left() = aPos.X() - 8;
aRect.Top() = aMousePos.Y();
aRect.Right() = aRect.Left();
aRect.Bottom() = aRect.Top();
nAlign = QuickHelpFlags::Bottom|QuickHelpFlags::Center;
Help::ShowQuickHelp( pScroll->GetParent(), aRect, aHelpStr, nAlign );
}
}
}
IMPL_LINK_NOARG_TYPED(ScPreviewShell, CloseHdl, SystemWindow&, void)
{
ExitPreview();
}
bool ScPreviewShell::ScrollCommand( const CommandEvent& rCEvt )
{
bool bDone = false;
const CommandWheelData* pData = rCEvt.GetWheelData();
if ( pData && pData->GetMode() == CommandWheelMode::ZOOM )
{
long nOld = pPreview->GetZoom();
long nNew;
if ( pData->GetDelta() < 0 )
nNew = std::max( (long) MINZOOM, basegfx::zoomtools::zoomOut( nOld ));
else
nNew = std::min( (long) MAXZOOM, basegfx::zoomtools::zoomIn( nOld ));
if ( nNew != nOld )
{
eZoom = SvxZoomType::PERCENT;
pPreview->SetZoom( (sal_uInt16)nNew );
}
bDone = true;
}
else
{
bDone = pPreview->HandleScrollCommand( rCEvt, pHorScroll, pVerScroll );
}
return bDone;
}
SfxPrinter* ScPreviewShell::GetPrinter( bool bCreate )
{
return pDocShell->GetPrinter(bCreate);
}
sal_uInt16 ScPreviewShell::SetPrinter( SfxPrinter *pNewPrinter, SfxPrinterChangeFlags nDiffFlags )
{
return pDocShell->SetPrinter( pNewPrinter, nDiffFlags );
}
bool ScPreviewShell::HasPrintOptionsPage() const
{
return true;
}
VclPtr<SfxTabPage> ScPreviewShell::CreatePrintOptionsPage( vcl::Window *pParent, const SfxItemSet &rOptions )
{
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
OSL_ENSURE(pFact, "ScAbstractFactory create fail!");
::CreateTabPage ScTpPrintOptionsCreate = pFact->GetTabPageCreatorFunc( RID_SCPAGE_PRINT );
if ( ScTpPrintOptionsCreate )
return ScTpPrintOptionsCreate( pParent, &rOptions );
return VclPtr<SfxTabPage>();
}
void ScPreviewShell::Activate(bool bMDI)
{
SfxViewShell::Activate(bMDI);
//! Basic etc. -> outsource to its own file (see tabvwsh4)
if (bMDI)
{
// InputHdl is now mostly Null, no moreasssertion!
ScInputHandler* pInputHdl = SC_MOD()->GetInputHdl();
if ( pInputHdl )
pInputHdl->NotifyChange( nullptr );
}
}
void ScPreviewShell::Deactivate(bool bMDI)
{
SfxViewShell::Deactivate(bMDI);
if (bMDI)
{
}
}
void ScPreviewShell::Execute( SfxRequest& rReq )
{
sal_uInt16 nSlot = rReq.GetSlot();
const SfxItemSet* pReqArgs = rReq.GetArgs();
switch ( nSlot )
{
case SID_FORMATPAGE:
case SID_STATUS_PAGESTYLE:
case SID_HFEDIT:
pDocShell->ExecutePageStyle( *this, rReq, pPreview->GetTab() );
break;
case SID_REPAINT:
pPreview->Invalidate();
rReq.Done();
break;
case SID_PREV_TABLE: // Accelerator
case SID_PREVIEW_PREVIOUS:
{
long nPage = pPreview->GetPageNo();
long nTotal = pPreview->GetTotalPages();
if (nTotal && nPage > 0)
pPreview->SetPageNo( nPage-1 );
}
break;
case SID_NEXT_TABLE: // Accelerator
case SID_PREVIEW_NEXT:
{
bool bAllTested = pPreview->AllTested();
long nPage = pPreview->GetPageNo();
long nTotal = pPreview->GetTotalPages();
if (nTotal && (nPage+1 < nTotal || !bAllTested))
pPreview->SetPageNo( nPage+1 );
}
break;
case SID_CURSORTOPOFFILE: // Accelerator
case SID_PREVIEW_FIRST:
{
long nPage = pPreview->GetPageNo();
long nTotal = pPreview->GetTotalPages();
if (nTotal && nPage != 0)
pPreview->SetPageNo( 0 );
}
break;
case SID_CURSORENDOFFILE: // Accelerator
case SID_PREVIEW_LAST:
{
if (!pPreview->AllTested())
pPreview->CalcAll();
long nPage = pPreview->GetPageNo();
long nTotal = pPreview->GetTotalPages();
if (nTotal && nPage+1 != nTotal)
pPreview->SetPageNo( nTotal-1 );
}
break;
case SID_ATTR_ZOOM:
case FID_SCALE:
{
sal_uInt16 nZoom = 100;
bool bCancel = false;
eZoom = SvxZoomType::PERCENT;
if ( pReqArgs )
{
const SvxZoomItem& rZoomItem = static_cast<const SvxZoomItem&>(
pReqArgs->Get(SID_ATTR_ZOOM));
eZoom = rZoomItem.GetType();
nZoom = rZoomItem.GetValue();
}
else
{
SfxItemSet aSet ( GetPool(), SID_ATTR_ZOOM, SID_ATTR_ZOOM );
SvxZoomItem aZoomItem( SvxZoomType::PERCENT, pPreview->GetZoom(), SID_ATTR_ZOOM );
aSet.Put( aZoomItem );
SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
if(pFact)
{
std::unique_ptr<AbstractSvxZoomDialog> pDlg(pFact->CreateSvxZoomDialog(nullptr, aSet));
OSL_ENSURE(pDlg, "Dialog creation failed!");
pDlg->SetLimits( 20, 400 );
pDlg->HideButton( ZoomButtonId::OPTIMAL );
bCancel = ( RET_CANCEL == pDlg->Execute() );
if ( !bCancel )
{
const SvxZoomItem& rZoomItem = static_cast<const SvxZoomItem&>(
pDlg->GetOutputItemSet()->
Get( SID_ATTR_ZOOM ));
eZoom = rZoomItem.GetType();
nZoom = rZoomItem.GetValue();
}
}
}
if ( !bCancel )
{
switch ( eZoom )
{
case SvxZoomType::OPTIMAL:
case SvxZoomType::WHOLEPAGE:
nZoom = pPreview->GetOptimalZoom(false);
break;
case SvxZoomType::PAGEWIDTH:
nZoom = pPreview->GetOptimalZoom(true);
break;
default:
{
// added to avoid warnings
}
}
pPreview->SetZoom( nZoom );
rReq.Done();
}
}
break;
case SID_PREVIEW_ZOOMIN:
{
sal_uInt16 nNew = pPreview->GetZoom() + 20 ;
nNew -= nNew % 20;
pPreview->SetZoom( nNew );
eZoom = SvxZoomType::PERCENT;
rReq.Done();
}
break;
case SID_PREVIEW_ZOOMOUT:
{
sal_uInt16 nNew = pPreview->GetZoom() - 1;
nNew -= nNew % 20;
pPreview->SetZoom( nNew );
eZoom = SvxZoomType::PERCENT;
rReq.Done();
}
break;
case SID_PREVIEW_MARGIN:
{
bool bMargin = pPreview->GetPageMargins();
pPreview->SetPageMargins( !bMargin );
pPreview->Invalidate();
rReq.Done();
}
break;
case SID_ATTR_ZOOMSLIDER:
{
const SfxPoolItem* pItem;
eZoom = SvxZoomType::PERCENT;
if( pReqArgs && SfxItemState::SET == pReqArgs->GetItemState( SID_ATTR_ZOOMSLIDER, true, &pItem ) )
{
const sal_uInt16 nCurrentZoom = static_cast<const SvxZoomSliderItem*>(pItem)->GetValue();
if( nCurrentZoom )
{
pPreview->SetZoom( nCurrentZoom );
rReq.Done();
}
}
}
break;
case SID_PREVIEW_SCALINGFACTOR:
{
const SfxPoolItem* pItem;
SCTAB nTab = pPreview->GetTab();
OUString aOldName = pDocShell->GetDocument().GetPageStyle( pPreview->GetTab() );
ScStyleSheetPool* pStylePool = pDocShell->GetDocument().GetStyleSheetPool();
SfxStyleSheetBase* pStyleSheet = pStylePool->Find( aOldName, SfxStyleFamily::Page );
OSL_ENSURE( pStyleSheet, "PageStyle not found! :-/" );
if ( pReqArgs && pStyleSheet && SfxItemState::SET == pReqArgs->GetItemState( SID_PREVIEW_SCALINGFACTOR, true, &pItem ) )
{
const sal_uInt16 nCurrentZoom = static_cast<const SvxZoomSliderItem *>(pItem)->GetValue();
SfxItemSet& rSet = pStyleSheet->GetItemSet();
rSet.Put( SfxUInt16Item( ATTR_PAGE_SCALE, nCurrentZoom ) );
ScPrintFunc aPrintFunc( pDocShell, pDocShell->GetPrinter(), nTab );
aPrintFunc.UpdatePages();
rReq.Done();
}
GetViewFrame()->GetBindings().Invalidate( nSlot );
}
break;
case SID_PRINTPREVIEW:
case SID_PREVIEW_CLOSE:
// print preview is now always in the same frame as the tab view
// -> always switch this frame back to normal view
// (ScTabViewShell ctor reads stored view data)
ExitPreview();
break;
case SID_CURSORPAGEUP:
case SID_CURSORPAGEDOWN:
case SID_CURSORHOME:
case SID_CURSOREND:
case SID_CURSORUP:
case SID_CURSORDOWN:
case SID_CURSORLEFT:
case SID_CURSORRIGHT:
DoScroll( nSlot );
break;
case SID_CANCEL:
if( ScViewUtil::IsFullScreen( *this ) )
ScViewUtil::SetFullScreen( *this, false );
break;
default:
break;
}
}
void ScPreviewShell::GetState( SfxItemSet& rSet )
{
pPreview->SetInGetState(true);
SCTAB nTab = pPreview->GetTab();
long nPage = pPreview->GetPageNo();
long nTotal = pPreview->GetTotalPages();
sal_uInt16 nZoom = pPreview->GetZoom();
bool bAllTested = pPreview->AllTested();
SfxWhichIter aIter(rSet);
sal_uInt16 nWhich = aIter.FirstWhich();
while ( nWhich )
{
switch (nWhich)
{
case SID_STATUS_PAGESTYLE:
case SID_HFEDIT:
pDocShell->GetStatePageStyle( *this, rSet, nTab );
break;
case SID_UNDO:
case SID_REDO:
case SID_REPEAT:
case SID_SAVEDOC:
case SID_SAVEASDOC:
case SID_MAIL_SENDDOC:
case SID_VIEW_DATA_SOURCE_BROWSER:
case SID_QUITAPP:
rSet.DisableItem(nWhich);
break;
case SID_PREVIEW_PREVIOUS:
case SID_PREVIEW_FIRST:
if (!nTotal || nPage==0)
rSet.DisableItem(nWhich);
break;
case SID_PREVIEW_NEXT:
case SID_PREVIEW_LAST:
if (bAllTested)
if (!nTotal || nPage==nTotal-1)
rSet.DisableItem(nWhich);
break;
case SID_PREVIEW_ZOOMIN:
if (nZoom >= 400)
rSet.DisableItem(nWhich);
break;
case SID_PREVIEW_ZOOMOUT:
if (nZoom <= 20)
rSet.DisableItem(nWhich);
break;
case SID_ATTR_ZOOM:
{
SvxZoomItem aZoom( eZoom, nZoom, nWhich );
aZoom.SetValueSet( SvxZoomEnableFlags::ALL & ~SvxZoomEnableFlags::OPTIMAL );
rSet.Put( aZoom );
}
break;
case SID_ATTR_ZOOMSLIDER:
{
SvxZoomSliderItem aZoomSliderItem( nZoom, MINZOOM, MAXZOOM, SID_ATTR_ZOOMSLIDER );
aZoomSliderItem.AddSnappingPoint( 100 );
rSet.Put( aZoomSliderItem );
}
break;
case SID_PREVIEW_SCALINGFACTOR:
{
if( pDocShell->IsReadOnly() )
rSet.DisableItem( nWhich );
else
{
OUString aOldName = pDocShell->GetDocument().GetPageStyle( pPreview->GetTab() );
ScStyleSheetPool* pStylePool = pDocShell->GetDocument().GetStyleSheetPool();
SfxStyleSheetBase* pStyleSheet = pStylePool->Find( aOldName, SfxStyleFamily::Page );
OSL_ENSURE( pStyleSheet, "PageStyle not found! :-/" );
if ( pStyleSheet )
{
SfxItemSet& rStyleSet = pStyleSheet->GetItemSet();
sal_uInt16 nCurrentZoom = static_cast<const SfxUInt16Item&>(rStyleSet.Get(ATTR_PAGE_SCALE)).GetValue();
if( nCurrentZoom )
{
SvxZoomSliderItem aZoomSliderItem( nCurrentZoom, MINZOOM_SLIDER, MAXZOOM_SLIDER, SID_PREVIEW_SCALINGFACTOR );
aZoomSliderItem.AddSnappingPoint( 100 );
rSet.Put( aZoomSliderItem );
}
else
rSet.DisableItem( nWhich );
}
}
}
break;
case SID_STATUS_DOCPOS:
rSet.Put( SfxStringItem( nWhich, pPreview->GetPosString() ) );
break;
case SID_PRINTPREVIEW:
rSet.Put( SfxBoolItem( nWhich, true ) );
break;
case SID_FORMATPAGE:
case SID_PREVIEW_MARGIN:
if( pDocShell->IsReadOnly() )
rSet.DisableItem( nWhich );
break;
}
nWhich = aIter.NextWhich();
}
pPreview->SetInGetState(false);
}
void ScPreviewShell::FillFieldData( ScHeaderFieldData& rData )
{
ScDocument& rDoc = pDocShell->GetDocument();
SCTAB nTab = pPreview->GetTab();
OUString aTmp;
rDoc.GetName(nTab, aTmp);
rData.aTabName = aTmp;
if( pDocShell->getDocProperties()->getTitle().getLength() != 0 )
rData.aTitle = pDocShell->getDocProperties()->getTitle();
else
rData.aTitle = pDocShell->GetTitle();
const INetURLObject& rURLObj = pDocShell->GetMedium()->GetURLObject();
rData.aLongDocName = rURLObj.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS );
if ( !rData.aLongDocName.isEmpty() )
rData.aShortDocName = rURLObj.GetName( INetURLObject::DECODE_UNAMBIGUOUS );
else
rData.aShortDocName = rData.aLongDocName = rData.aTitle;
rData.nPageNo = pPreview->GetPageNo() + 1;
bool bAllTested = pPreview->AllTested();
if (bAllTested)
rData.nTotalPages = pPreview->GetTotalPages();
else
rData.nTotalPages = 99;
// the dialog knows eNumType
}
void ScPreviewShell::WriteUserData(OUString& rData, bool /* bBrowse */)
{
// nZoom
// nPageNo
rData = OUString::number(pPreview->GetZoom())
+ OUStringLiteral1<SC_USERDATA_SEP>()
+ OUString::number(pPreview->GetPageNo());
}
void ScPreviewShell::ReadUserData(const OUString& rData, bool /* bBrowse */)
{
if (!rData.isEmpty())
{
sal_Int32 nIndex = 0;
pPreview->SetZoom((sal_uInt16)rData.getToken(0, SC_USERDATA_SEP, nIndex).toInt32());
pPreview->SetPageNo(rData.getToken(0, SC_USERDATA_SEP, nIndex).toInt32());
eZoom = SvxZoomType::PERCENT;
}
}
void ScPreviewShell::WriteUserDataSequence(uno::Sequence < beans::PropertyValue >& rSeq)
{
rSeq.realloc(3);
beans::PropertyValue* pSeq = rSeq.getArray();
if(pSeq)
{
sal_uInt16 nViewID(GetViewFrame()->GetCurViewId());
pSeq[0].Name = SC_VIEWID;
OUStringBuffer sBuffer(SC_VIEW);
::sax::Converter::convertNumber(sBuffer,
static_cast<sal_Int32>(nViewID));
pSeq[0].Value <<= sBuffer.makeStringAndClear();
pSeq[1].Name = SC_ZOOMVALUE;
pSeq[1].Value <<= sal_Int32 (pPreview->GetZoom());
pSeq[2].Name = "PageNumber";
pSeq[2].Value <<= pPreview->GetPageNo();
}
}
void ScPreviewShell::ReadUserDataSequence(const uno::Sequence < beans::PropertyValue >& rSeq)
{
sal_Int32 nCount(rSeq.getLength());
if (nCount)
{
const beans::PropertyValue* pSeq = rSeq.getConstArray();
if(pSeq)
{
for(sal_Int32 i = 0; i < nCount; i++, pSeq++)
{
OUString sName(pSeq->Name);
if(sName == SC_ZOOMVALUE)
{
sal_Int32 nTemp = 0;
if (pSeq->Value >>= nTemp)
pPreview->SetZoom(sal_uInt16(nTemp));
}
else if (sName == "PageNumber")
{
sal_Int32 nTemp = 0;
if (pSeq->Value >>= nTemp)
pPreview->SetPageNo(nTemp);
}
}
}
}
}
void ScPreviewShell::DoScroll( sal_uInt16 nMode )
{
Point aCurPos, aPrevPos;
long nHRange = pHorScroll->GetRange().Max();
long nHLine = pHorScroll->GetLineSize();
long nHPage = pHorScroll->GetPageSize();
long nVRange = pVerScroll->GetRange().Max();
long nVLine = pVerScroll->GetLineSize();
long nVPage = pVerScroll->GetPageSize();
aCurPos.X() = pHorScroll->GetThumbPos();
aCurPos.Y() = pVerScroll->GetThumbPos();
aPrevPos = aCurPos;
long nThumbPos = pVerScroll->GetThumbPos();
long nRangeMax = pVerScroll->GetRangeMax();
switch( nMode )
{
case SID_CURSORUP:
if( nMaxVertPos<0 )
{
long nPage = pPreview->GetPageNo();
if( nPage>0 )
{
SfxViewFrame* pSfxViewFrame = GetViewFrame();
SfxRequest aSfxRequest( pSfxViewFrame, SID_PREVIEW_PREVIOUS );
Execute( aSfxRequest );
}
}
else
aCurPos.Y() -= nVLine;
break;
case SID_CURSORDOWN:
if( nMaxVertPos<0 )
{
long nPage = pPreview->GetPageNo();
long nTotal = pPreview->GetTotalPages();
// before testing for last page, make sure all page counts are calculated
if ( nPage+1 == nTotal && !pPreview->AllTested() )
{
pPreview->CalcAll();
nTotal = pPreview->GetTotalPages();
}
if( nPage<nTotal-1 )
{
SfxViewFrame* pSfxViewFrame = GetViewFrame();
SfxRequest aSfxRequest( pSfxViewFrame, SID_PREVIEW_NEXT );
Execute( aSfxRequest );
}
}
else
aCurPos.Y() += nVLine;
break;
case SID_CURSORLEFT:
aCurPos.X() -= nHLine;
break;
case SID_CURSORRIGHT:
aCurPos.X() += nHLine;
break;
case SID_CURSORPAGEUP:
if( nThumbPos==0 || nMaxVertPos<0 )
{
long nPage = pPreview->GetPageNo();
if( nPage>0 )
{
SfxViewFrame* pSfxViewFrame = GetViewFrame();
SfxRequest aSfxRequest( pSfxViewFrame, SID_PREVIEW_PREVIOUS );
Execute( aSfxRequest );
aCurPos.Y() = nVRange;
}
}
else
aCurPos.Y() -= nVPage;
break;
case SID_CURSORPAGEDOWN:
if( (std::abs(nVPage+nThumbPos-nRangeMax)<10) || nMaxVertPos<0 )
{
long nPage = pPreview->GetPageNo();
long nTotal = pPreview->GetTotalPages();
// before testing for last page, make sure all page counts are calculated
if ( nPage+1 == nTotal && !pPreview->AllTested() )
{
pPreview->CalcAll();
nTotal = pPreview->GetTotalPages();
}
if( nPage<nTotal-1 )
{
SfxViewFrame* pSfxViewFrame = GetViewFrame();
SfxRequest aSfxRequest( pSfxViewFrame, SID_PREVIEW_NEXT );
Execute( aSfxRequest );
aCurPos.Y() = 0;
}
}
else
aCurPos.Y() += nVPage;
break;
case SID_CURSORHOME:
if( nMaxVertPos<0 )
{
long nPage = pPreview->GetPageNo();
long nTotal = pPreview->GetTotalPages();
if( nTotal && nPage != 0 )
{
SfxViewFrame* pSfxViewFrame = GetViewFrame();
SfxRequest aSfxRequest( pSfxViewFrame, SID_PREVIEW_FIRST );
Execute( aSfxRequest );
}
}
else
{
aCurPos.Y() = 0;
aCurPos.X() = 0;
}
break;
case SID_CURSOREND:
if( nMaxVertPos<0 )
{
if( !pPreview->AllTested() )
pPreview->CalcAll();
long nPage = pPreview->GetPageNo();
long nTotal = pPreview->GetTotalPages();
if( nTotal && nPage+1 != nTotal )
{
SfxViewFrame* pSfxViewFrame = GetViewFrame();
SfxRequest aSfxRequest( pSfxViewFrame, SID_PREVIEW_LAST );
Execute( aSfxRequest );
}
}
else
{
aCurPos.Y() = nVRange;
aCurPos.X() = nHRange;
}
break;
}
// nHRange-nHPage might be negative, that's why we check for < 0 afterwards
if( aCurPos.Y() > (nVRange-nVPage) )
aCurPos.Y() = (nVRange-nVPage);
if( aCurPos.Y() < 0 )
aCurPos.Y() = 0;
if( aCurPos.X() > (nHRange-nHPage) )
aCurPos.X() = (nHRange-nHPage);
if( aCurPos.X() < 0 )
aCurPos.X() = 0;
if( nMaxVertPos>=0 )
{
if( aCurPos.Y() != aPrevPos.Y() )
{
pVerScroll->SetThumbPos( aCurPos.Y() );
pPreview->SetYOffset( aCurPos.Y() );
}
}
if( aCurPos.X() != aPrevPos.X() )
{
pHorScroll->SetThumbPos( aCurPos.X() );
pPreview->SetXOffset( aCurPos.X() );
}
}
void ScPreviewShell::ExitPreview()
{
GetViewFrame()->GetDispatcher()->Execute(SID_VIEWSHELL0, SfxCallMode::ASYNCHRON);
}
void ScPreviewShell::AddAccessibilityObject( SfxListener& rObject )
{
if (!pAccessibilityBroadcaster)
pAccessibilityBroadcaster = new SfxBroadcaster;
rObject.StartListening( *pAccessibilityBroadcaster );
}
void ScPreviewShell::RemoveAccessibilityObject( SfxListener& rObject )
{
if (pAccessibilityBroadcaster)
rObject.EndListening( *pAccessibilityBroadcaster );
else
{
OSL_FAIL("no accessibility broadcaster?");
}
}
void ScPreviewShell::BroadcastAccessibility( const SfxHint &rHint )
{
if (pAccessibilityBroadcaster)
pAccessibilityBroadcaster->Broadcast( rHint );
}
bool ScPreviewShell::HasAccessibilityObjects()
{
return pAccessibilityBroadcaster && pAccessibilityBroadcaster->HasListeners();
}
const ScPreviewLocationData& ScPreviewShell::GetLocationData()
{
return pPreview->GetLocationData();
}
ScDocument& ScPreviewShell::GetDocument()
{
return pDocShell->GetDocument();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|