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
|
/* -*- 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 <svx/svxids.hrc>
#include <com/sun/star/presentation/AnimationEffect.hpp>
#include <com/sun/star/presentation/ClickAction.hpp>
#include <com/sun/star/presentation/AnimationSpeed.hpp>
#include <com/sun/star/embed/VerbDescriptor.hpp>
#include <com/sun/star/embed/EmbedStates.hpp>
#include <com/sun/star/uri/XUriReferenceFactory.hpp>
#include <com/sun/star/uri/XVndSunStarScriptUrl.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/string.hxx>
#include <com/sun/star/embed/VerbAttributes.hpp>
#include <com/sun/star/ui/dialogs/TemplateDescription.hpp>
#include "sdattr.hxx"
#include <sfx2/sfxresid.hxx>
#include <vcl/waitobj.hxx>
#include <osl/file.hxx>
#include <sfx2/app.hxx>
#include <unotools/pathoptions.hxx>
#include <svx/svdpagv.hxx>
#include <unotools/localfilehelper.hxx>
#include <svl/aeitem.hxx>
#include <editeng/colritem.hxx>
#include <svx/svdoole2.hxx>
#include <sfx2/docfile.hxx>
#include <sot/storage.hxx>
#include <basic/sbmeth.hxx>
#include <basic/sbmod.hxx>
#include <basic/sbstar.hxx>
#include <svx/xtable.hxx>
#include <vcl/svapp.hxx>
#include <vcl/mnemonic.hxx>
#include <svl/urihelper.hxx>
#include <sfx2/filedlghelper.hxx>
#include <svx/drawitem.hxx>
#include "View.hxx"
#include "sdresid.hxx"
#include "tpaction.hxx"
#include "strmname.h"
#include "ViewShell.hxx"
#include "drawdoc.hxx"
#include "DrawDocShell.hxx"
#include "strings.hrc"
#include "res_bmp.hrc"
#include "filedlg.hxx"
#include <algorithm>
using namespace ::com::sun::star;
using namespace com::sun::star::uno;
using namespace com::sun::star::lang;
#define DOCUMENT_TOKEN '#'
/**
* Constructor of the Tab dialog: appends the pages to the dialog
*/
SdActionDlg::SdActionDlg (
::Window* pParent, const SfxItemSet* pAttr, ::sd::View* pView )
: SfxSingleTabDialog(pParent, *pAttr, "InteractionDialog",
"modules/simpress/ui/interactiondialog.ui")
, rOutAttrs(*pAttr)
{
// FreeResource();
SfxTabPage* pNewPage = SdTPAction::Create(get_content_area(), rOutAttrs);
assert(pNewPage); //Unable to create page
// formerly in PageCreated
( (SdTPAction*) pNewPage )->SetView( pView );
( (SdTPAction*) pNewPage )->Construct();
SetTabPage( pNewPage );
}
/**
* Action-TabPage
*/
SdTPAction::SdTPAction(Window* pWindow, const SfxItemSet& rInAttrs)
: SfxTabPage(pWindow, "InteractionPage",
"modules/simpress/ui/interactionpage.ui", rInAttrs)
, rOutAttrs(rInAttrs)
, mpView(NULL)
, mpDoc(NULL)
, bTreeUpdated(false)
{
get(m_pLbAction, "listbox");
get(m_pFtTree, "fttree");
get(m_pLbTree, "tree");
get(m_pLbTreeDocument, "treedoc");
get(m_pLbOLEAction, "oleaction");
get(m_pFrame, "frame");
get(m_pEdtSound, "sound");
get(m_pEdtBookmark, "bookmark");
get(m_pEdtDocument, "document");
get(m_pEdtProgram, "program");
get(m_pEdtMacro, "macro");
get(m_pBtnSearch, "browse");
get(m_pBtnSeek, "find");
m_pLbOLEAction->set_width_request(m_pLbOLEAction->approximate_char_width() * 52);
m_pLbOLEAction->set_height_request(m_pLbOLEAction->GetTextHeight() * 12);
m_pBtnSearch->SetClickHdl( LINK( this, SdTPAction, ClickSearchHdl ) );
m_pBtnSeek->SetClickHdl( LINK( this, SdTPAction, ClickSearchHdl ) );
// this page needs ExchangeSupport
SetExchangeSupport();
m_pLbAction->SetSelectHdl( LINK( this, SdTPAction, ClickActionHdl ) );
m_pLbTree->SetSelectHdl( LINK( this, SdTPAction, SelectTreeHdl ) );
m_pEdtDocument->SetLoseFocusHdl( LINK( this, SdTPAction, CheckFileHdl ) );
m_pEdtMacro->SetLoseFocusHdl( LINK( this, SdTPAction, CheckFileHdl ) );
//Lock to initial max size
Size aSize(get_preferred_size());
set_width_request(aSize.Width());
set_height_request(aSize.Height());
ClickActionHdl( this );
}
SdTPAction::~SdTPAction()
{
}
void SdTPAction::SetView( const ::sd::View* pSdView )
{
mpView = pSdView;
// get ColorTable and fill ListBox
::sd::DrawDocShell* pDocSh = static_cast<const ::sd::View*>(mpView)->GetDocSh();
if( pDocSh && pDocSh->GetViewShell() )
{
mpDoc = pDocSh->GetDoc();
SfxViewFrame* pFrame = pDocSh->GetViewShell()->GetViewFrame();
m_pLbTree->SetViewFrame( pFrame );
m_pLbTreeDocument->SetViewFrame( pFrame );
SvxColorListItem aItem( *(const SvxColorListItem*)( pDocSh->GetItem( SID_COLOR_TABLE ) ) );
pColList = aItem.GetColorList();
DBG_ASSERT( pColList.is(), "No color table available!" );
}
else
{
OSL_FAIL("sd::SdTPAction::SetView(), no docshell or viewshell?");
}
}
void SdTPAction::Construct()
{
// fill OLE-Actionlistbox
SdrOle2Obj* pOleObj = NULL;
SdrGrafObj* pGrafObj = NULL;
bool bOLEAction = false;
if ( mpView->AreObjectsMarked() )
{
const SdrMarkList& rMarkList = mpView->GetMarkedObjectList();
SdrObject* pObj;
if (rMarkList.GetMarkCount() == 1)
{
SdrMark* pMark = rMarkList.GetMark(0);
pObj = pMark->GetMarkedSdrObj();
sal_uInt32 nInv = pObj->GetObjInventor();
sal_uInt16 nSdrObjKind = pObj->GetObjIdentifier();
if (nInv == SdrInventor && nSdrObjKind == OBJ_OLE2)
{
pOleObj = (SdrOle2Obj*) pObj;
}
else if (nInv == SdrInventor && nSdrObjKind == OBJ_GRAF)
{
pGrafObj = (SdrGrafObj*) pObj;
}
}
}
if( pGrafObj )
{
bOLEAction = true;
aVerbVector.push_back( 0 );
m_pLbOLEAction->InsertEntry( MnemonicGenerator::EraseAllMnemonicChars( SD_RESSTR( STR_EDIT_OBJ ) ) );
}
else if( pOleObj )
{
uno::Reference < embed::XEmbeddedObject > xObj = pOleObj->GetObjRef();
if ( xObj.is() )
{
bOLEAction = true;
uno::Sequence < embed::VerbDescriptor > aVerbs;
try
{
aVerbs = xObj->getSupportedVerbs();
}
catch ( embed::NeedsRunningStateException& )
{
xObj->changeState( embed::EmbedStates::RUNNING );
aVerbs = xObj->getSupportedVerbs();
}
for( sal_Int32 i=0; i<aVerbs.getLength(); i++ )
{
embed::VerbDescriptor aVerb = aVerbs[i];
if( aVerb.VerbAttributes & embed::VerbAttributes::MS_VERBATTR_ONCONTAINERMENU )
{
OUString aTmp( aVerb.VerbName );
aVerbVector.push_back( aVerb.VerbID );
m_pLbOLEAction->InsertEntry( MnemonicGenerator::EraseAllMnemonicChars( aTmp ) );
}
}
}
}
maCurrentActions.push_back( presentation::ClickAction_NONE );
maCurrentActions.push_back( presentation::ClickAction_PREVPAGE );
maCurrentActions.push_back( presentation::ClickAction_NEXTPAGE );
maCurrentActions.push_back( presentation::ClickAction_FIRSTPAGE );
maCurrentActions.push_back( presentation::ClickAction_LASTPAGE );
maCurrentActions.push_back( presentation::ClickAction_BOOKMARK );
maCurrentActions.push_back( presentation::ClickAction_DOCUMENT );
maCurrentActions.push_back( presentation::ClickAction_SOUND );
if( bOLEAction && m_pLbOLEAction->GetEntryCount() )
maCurrentActions.push_back( presentation::ClickAction_VERB );
maCurrentActions.push_back( presentation::ClickAction_PROGRAM );
maCurrentActions.push_back( presentation::ClickAction_MACRO );
maCurrentActions.push_back( presentation::ClickAction_STOPPRESENTATION );
// fill Action-Listbox
for (size_t nAction = 0, n = maCurrentActions.size(); nAction < n; nAction++)
{
sal_uInt16 nRId = GetClickActionSdResId( maCurrentActions[ nAction ] );
m_pLbAction->InsertEntry( SD_RESSTR( nRId ) );
}
}
bool SdTPAction::FillItemSet( SfxItemSet& rAttrs )
{
bool bModified = false;
presentation::ClickAction eCA = presentation::ClickAction_NONE;
if( m_pLbAction->GetSelectEntryCount() )
eCA = GetActualClickAction();
if( m_pLbAction->IsValueChangedFromSaved() )
{
rAttrs.Put( SfxAllEnumItem( ATTR_ACTION, (sal_uInt16)eCA ) );
bModified = true;
}
else
rAttrs.InvalidateItem( ATTR_ACTION );
OUString aFileName = GetEditText( true );
if( aFileName.isEmpty() )
rAttrs.InvalidateItem( ATTR_ACTION_FILENAME );
else
{
if( mpDoc && mpDoc->GetDocSh() && mpDoc->GetDocSh()->GetMedium() )
{
OUString aBaseURL = mpDoc->GetDocSh()->GetMedium()->GetBaseURL();
if( eCA == presentation::ClickAction_SOUND ||
eCA == presentation::ClickAction_DOCUMENT ||
eCA == presentation::ClickAction_PROGRAM )
aFileName = ::URIHelper::SmartRel2Abs( INetURLObject(aBaseURL), aFileName, URIHelper::GetMaybeFileHdl(), true, false,
INetURLObject::WAS_ENCODED,
INetURLObject::DECODE_UNAMBIGUOUS );
rAttrs.Put( SfxStringItem( ATTR_ACTION_FILENAME, aFileName ) );
bModified = true;
}
else
{
OSL_FAIL("sd::SdTPAction::FillItemSet(), I need a medium!");
}
}
return( bModified );
}
void SdTPAction::Reset( const SfxItemSet& rAttrs )
{
presentation::ClickAction eCA = presentation::ClickAction_NONE;
OUString aFileName;
// m_pLbAction
if( rAttrs.GetItemState( ATTR_ACTION ) != SFX_ITEM_DONTCARE )
{
eCA = (presentation::ClickAction) ( ( const SfxAllEnumItem& ) rAttrs.
Get( ATTR_ACTION ) ).GetValue();
SetActualClickAction( eCA );
}
else
m_pLbAction->SetNoSelection();
// m_pEdtSound
if( rAttrs.GetItemState( ATTR_ACTION_FILENAME ) != SFX_ITEM_DONTCARE )
{
aFileName = ( ( const SfxStringItem& ) rAttrs.Get( ATTR_ACTION_FILENAME ) ).GetValue();
SetEditText( aFileName );
}
switch( eCA )
{
case presentation::ClickAction_BOOKMARK:
{
if( !m_pLbTree->SelectEntry( aFileName ) )
m_pLbTree->SelectAll( false );
}
break;
case presentation::ClickAction_DOCUMENT:
{
if( comphelper::string::getTokenCount(aFileName, DOCUMENT_TOKEN) == 2 )
m_pLbTreeDocument->SelectEntry( aFileName.getToken( 1, DOCUMENT_TOKEN ) );
}
break;
default:
break;
}
ClickActionHdl( this );
m_pLbAction->SaveValue();
m_pEdtSound->SaveValue();
}
void SdTPAction::ActivatePage( const SfxItemSet& )
{
}
int SdTPAction::DeactivatePage( SfxItemSet* pPageSet )
{
if( pPageSet )
FillItemSet( *pPageSet );
return( LEAVE_PAGE );
}
SfxTabPage* SdTPAction::Create( Window* pWindow,
const SfxItemSet& rAttrs )
{
return( new SdTPAction( pWindow, rAttrs ) );
}
void SdTPAction::UpdateTree()
{
if( !bTreeUpdated && mpDoc && mpDoc->GetDocSh() && mpDoc->GetDocSh()->GetMedium() )
{
//m_pLbTree->Clear();
m_pLbTree->Fill( mpDoc, true, mpDoc->GetDocSh()->GetMedium()->GetName() );
bTreeUpdated = true;
}
}
void SdTPAction::OpenFileDialog()
{
// Soundpreview only for interaction with sound
presentation::ClickAction eCA = GetActualClickAction();
bool bSound = ( eCA == presentation::ClickAction_SOUND );
bool bPage = ( eCA == presentation::ClickAction_BOOKMARK );
bool bDocument = ( eCA == presentation::ClickAction_DOCUMENT ||
eCA == presentation::ClickAction_PROGRAM );
bool bMacro = ( eCA == presentation::ClickAction_MACRO );
if( bPage )
{
// search in the TreeLB for the specified object
m_pLbTree->SelectEntry( GetEditText() );
}
else
{
OUString aFile( GetEditText() );
if (bSound)
{
SdOpenSoundFileDialog aFileDialog;
if( aFile.isEmpty() )
aFile = SvtPathOptions().GetGraphicPath();
aFileDialog.SetPath( aFile );
if( aFileDialog.Execute() == ERRCODE_NONE )
{
aFile = aFileDialog.GetPath();
SetEditText( aFile );
}
}
else if (bMacro)
{
Window* pOldWin = Application::GetDefDialogParent();
Application::SetDefDialogParent( this );
// choose macro dialog
OUString aScriptURL = SfxApplication::ChooseScript();
if ( !aScriptURL.isEmpty() )
{
SetEditText( aScriptURL );
}
Application::SetDefDialogParent( pOldWin );
}
else
{
sfx2::FileDialogHelper aFileDialog(
ui::dialogs::TemplateDescription::FILEOPEN_READONLY_VERSION, 0);
if (bDocument && aFile.isEmpty())
aFile = SvtPathOptions().GetWorkPath();
aFileDialog.SetDisplayDirectory( aFile );
// The following is a workaround for #i4306#:
// The addition of the implicitly existing "all files"
// filter makes the (Windows system) open file dialog follow
// links on the desktop to directories.
aFileDialog.AddFilter (
SFX2_RESSTR(STR_SFX_FILTERNAME_ALL),
OUString("*.*"));
if( aFileDialog.Execute() == ERRCODE_NONE )
{
aFile = aFileDialog.GetPath();
SetEditText( aFile );
}
if( bDocument )
CheckFileHdl( NULL );
}
}
}
IMPL_LINK_NOARG(SdTPAction, ClickSearchHdl)
{
OpenFileDialog();
return( 0L );
}
IMPL_LINK_NOARG(SdTPAction, ClickActionHdl)
{
presentation::ClickAction eCA = GetActualClickAction();
// hide controls we don't need
switch( eCA )
{
case presentation::ClickAction_NONE:
case presentation::ClickAction_INVISIBLE:
case presentation::ClickAction_PREVPAGE:
case presentation::ClickAction_NEXTPAGE:
case presentation::ClickAction_FIRSTPAGE:
case presentation::ClickAction_LASTPAGE:
case presentation::ClickAction_STOPPRESENTATION:
default:
m_pFtTree->Hide();
m_pLbTree->Hide();
m_pLbTreeDocument->Hide();
m_pLbOLEAction->Hide();
m_pFrame->Hide();
m_pEdtSound->Hide();
m_pEdtBookmark->Hide();
m_pEdtDocument->Hide();
m_pEdtProgram->Hide();
m_pEdtMacro->Hide();
m_pBtnSearch->Hide();
m_pBtnSeek->Hide();
break;
case presentation::ClickAction_SOUND:
case presentation::ClickAction_PROGRAM:
case presentation::ClickAction_MACRO:
m_pFtTree->Hide();
m_pLbTree->Hide();
m_pLbTreeDocument->Hide();
m_pLbOLEAction->Hide();
m_pEdtDocument->Hide();
if( eCA == presentation::ClickAction_MACRO )
{
m_pEdtSound->Hide();
m_pEdtProgram->Hide();
}
else if( eCA == presentation::ClickAction_PROGRAM )
{
m_pEdtSound->Hide();
m_pEdtMacro->Hide();
}
else if( eCA == presentation::ClickAction_SOUND )
{
m_pEdtProgram->Hide();
m_pEdtMacro->Hide();
}
m_pBtnSeek->Hide();
break;
case presentation::ClickAction_DOCUMENT:
m_pLbTree->Hide();
m_pLbOLEAction->Hide();
m_pEdtSound->Hide();
m_pEdtProgram->Hide();
m_pEdtMacro->Hide();
m_pEdtBookmark->Hide();
m_pBtnSeek->Hide();
break;
case presentation::ClickAction_BOOKMARK:
m_pLbTreeDocument->Hide();
m_pLbOLEAction->Hide();
m_pEdtSound->Hide();
m_pEdtDocument->Hide();
m_pEdtProgram->Hide();
m_pEdtMacro->Hide();
m_pBtnSearch->Hide();
break;
case presentation::ClickAction_VERB:
m_pLbTree->Hide();
m_pEdtDocument->Hide();
m_pEdtProgram->Hide();
m_pEdtBookmark->Hide();
m_pEdtMacro->Hide();
m_pBtnSearch->Hide();
m_pFrame->Hide();
m_pEdtSound->Hide();
m_pBtnSeek->Hide();
break;
}
// show controls we do need
switch( eCA )
{
case presentation::ClickAction_NONE:
case presentation::ClickAction_INVISIBLE:
case presentation::ClickAction_PREVPAGE:
case presentation::ClickAction_NEXTPAGE:
case presentation::ClickAction_FIRSTPAGE:
case presentation::ClickAction_LASTPAGE:
case presentation::ClickAction_STOPPRESENTATION:
// none
break;
case presentation::ClickAction_SOUND:
m_pFrame->Show();
m_pEdtSound->Show();
m_pEdtSound->Enable();
m_pBtnSearch->Show();
m_pBtnSearch->Enable();
m_pFrame->set_label( SD_RESSTR( STR_EFFECTDLG_SOUND ) );
break;
case presentation::ClickAction_PROGRAM:
case presentation::ClickAction_MACRO:
m_pFrame->Show();
m_pBtnSearch->Show();
m_pBtnSearch->Enable();
if( eCA == presentation::ClickAction_MACRO )
{
m_pEdtMacro->Show();
m_pFrame->set_label( SD_RESSTR( STR_EFFECTDLG_MACRO ) );
}
else
{
m_pEdtProgram->Show();
m_pFrame->set_label( SD_RESSTR( STR_EFFECTDLG_PROGRAM ) );
}
break;
case presentation::ClickAction_DOCUMENT:
m_pFtTree->Show();
m_pLbTreeDocument->Show();
m_pFrame->Show();
m_pEdtDocument->Show();
m_pBtnSearch->Show();
m_pBtnSearch->Enable();
m_pFtTree->SetText( SD_RESSTR( STR_EFFECTDLG_JUMP ) );
m_pFrame->set_label( SD_RESSTR( STR_EFFECTDLG_DOCUMENT ) );
CheckFileHdl( NULL );
break;
case presentation::ClickAction_VERB:
m_pFtTree->Show();
m_pLbOLEAction->Show();
m_pFtTree->SetText( SD_RESSTR( STR_EFFECTDLG_ACTION ) );
break;
case presentation::ClickAction_BOOKMARK:
UpdateTree();
m_pFtTree->Show();
m_pLbTree->Show();
m_pFrame->Show();
m_pEdtBookmark->Show();
m_pBtnSeek->Show();
m_pFtTree->SetText( SD_RESSTR( STR_EFFECTDLG_JUMP ) );
m_pFrame->set_label( SD_RESSTR( STR_EFFECTDLG_PAGE_OBJECT ) );
break;
default:
break;
}
return( 0L );
}
IMPL_LINK_NOARG(SdTPAction, SelectTreeHdl)
{
m_pEdtBookmark->SetText( m_pLbTree->GetSelectEntry() );
return( 0L );
}
IMPL_LINK_NOARG(SdTPAction, CheckFileHdl)
{
OUString aFile( GetEditText() );
if( aFile != aLastFile )
{
// check if it is a valid draw file
SfxMedium aMedium( aFile,
STREAM_READ | STREAM_NOCREATE );
if( aMedium.IsStorage() )
{
WaitObject aWait( GetParentDialog() );
// is it a draw file?
// open with READ, otherwise the Storages might write into the file!
uno::Reference < embed::XStorage > xStorage = aMedium.GetStorage();
DBG_ASSERT( xStorage.is(), "No storage!" );
uno::Reference < container::XNameAccess > xAccess( xStorage, uno::UNO_QUERY );
if( xAccess.is() &&
( xAccess->hasByName( pStarDrawXMLContent ) ||
xAccess->hasByName( pStarDrawOldXMLContent ) ) )
{
SdDrawDocument* pBookmarkDoc = mpDoc->OpenBookmarkDoc( aFile );
if( pBookmarkDoc )
{
aLastFile = aFile;
m_pLbTreeDocument->Clear();
m_pLbTreeDocument->Fill( pBookmarkDoc, true, aFile );
mpDoc->CloseBookmarkDoc();
m_pLbTreeDocument->Show();
}
else
m_pLbTreeDocument->Hide();
}
else
m_pLbTreeDocument->Hide();
}
else
m_pLbTreeDocument->Hide();
}
return( 0L );
}
presentation::ClickAction SdTPAction::GetActualClickAction()
{
presentation::ClickAction eCA = presentation::ClickAction_NONE;
sal_Int32 nPos = m_pLbAction->GetSelectEntryPos();
if (nPos != LISTBOX_ENTRY_NOTFOUND && static_cast<size_t>(nPos) < maCurrentActions.size())
eCA = maCurrentActions[ nPos ];
return( eCA );
}
void SdTPAction::SetActualClickAction( presentation::ClickAction eCA )
{
std::vector<com::sun::star::presentation::ClickAction>::const_iterator pIter =
std::find(maCurrentActions.begin(),maCurrentActions.end(),eCA);
if ( pIter != maCurrentActions.end() )
m_pLbAction->SelectEntryPos( pIter-maCurrentActions.begin() );
}
void SdTPAction::SetEditText( OUString const & rStr )
{
presentation::ClickAction eCA = GetActualClickAction();
OUString aText(rStr);
// possibly convert URI back to system path
switch( eCA )
{
case presentation::ClickAction_DOCUMENT:
if( comphelper::string::getTokenCount(rStr, DOCUMENT_TOKEN) == 2 )
aText = rStr.getToken( 0, DOCUMENT_TOKEN );
// fallthrough inteded
case presentation::ClickAction_SOUND:
case presentation::ClickAction_PROGRAM:
{
INetURLObject aURL( aText );
// try to convert to system path
OUString aTmpStr(aURL.getFSysPath(INetURLObject::FSYS_DETECT));
if( !aTmpStr.isEmpty() )
aText = aTmpStr; // was a system path
}
break;
default:
break;
}
// set the string to the corresponding control
switch( eCA )
{
case presentation::ClickAction_SOUND:
m_pEdtSound->SetText(aText );
break;
case presentation::ClickAction_VERB:
{
::std::vector< long >::iterator aFound( ::std::find( aVerbVector.begin(), aVerbVector.end(), rStr.toInt32() ) );
if( aFound != aVerbVector.end() )
m_pLbOLEAction->SelectEntryPos( static_cast< short >( aFound - aVerbVector.begin() ) );
}
break;
case presentation::ClickAction_PROGRAM:
m_pEdtProgram->SetText( aText );
break;
case presentation::ClickAction_MACRO:
{
m_pEdtMacro->SetText( aText );
}
break;
case presentation::ClickAction_DOCUMENT:
m_pEdtDocument->SetText( aText );
break;
case presentation::ClickAction_BOOKMARK:
m_pEdtBookmark->SetText( aText );
break;
default:
break;
}
}
OUString SdTPAction::GetEditText( bool bFullDocDestination )
{
OUString aStr;
presentation::ClickAction eCA = GetActualClickAction();
switch( eCA )
{
case presentation::ClickAction_SOUND:
aStr = m_pEdtSound->GetText();
break;
case presentation::ClickAction_VERB:
{
const sal_Int32 nPos = m_pLbOLEAction->GetSelectEntryPos();
if( static_cast<size_t>(nPos) < aVerbVector.size() )
aStr = OUString::number( aVerbVector[ nPos ] );
return aStr;
}
case presentation::ClickAction_DOCUMENT:
aStr = m_pEdtDocument->GetText();
break;
case presentation::ClickAction_PROGRAM:
aStr = m_pEdtProgram->GetText();
break;
case presentation::ClickAction_MACRO:
{
return m_pEdtMacro->GetText();
}
case presentation::ClickAction_BOOKMARK:
return( m_pEdtBookmark->GetText() );
default:
break;
}
// validate file URI
INetURLObject aURL( aStr );
OUString aBaseURL;
if( mpDoc && mpDoc->GetDocSh() && mpDoc->GetDocSh()->GetMedium() )
aBaseURL = mpDoc->GetDocSh()->GetMedium()->GetBaseURL();
if( !aStr.isEmpty() && aURL.GetProtocol() == INET_PROT_NOT_VALID )
aURL = INetURLObject( ::URIHelper::SmartRel2Abs( INetURLObject(aBaseURL), aStr, URIHelper::GetMaybeFileHdl(), true, false ) );
// get adjusted file name
aStr = aURL.GetMainURL( INetURLObject::NO_DECODE );
if( bFullDocDestination &&
eCA == presentation::ClickAction_DOCUMENT &&
m_pLbTreeDocument->Control::IsVisible() &&
m_pLbTreeDocument->GetSelectionCount() > 0 )
{
OUString aTmpStr( m_pLbTreeDocument->GetSelectEntry() );
if( !aTmpStr.isEmpty() )
{
aStr += OUString(DOCUMENT_TOKEN);
aStr += aTmpStr;
}
}
return( aStr );
}
sal_uInt16 SdTPAction::GetClickActionSdResId( presentation::ClickAction eCA )
{
switch( eCA )
{
case presentation::ClickAction_NONE: return STR_CLICK_ACTION_NONE;
case presentation::ClickAction_PREVPAGE: return STR_CLICK_ACTION_PREVPAGE;
case presentation::ClickAction_NEXTPAGE: return STR_CLICK_ACTION_NEXTPAGE;
case presentation::ClickAction_FIRSTPAGE: return STR_CLICK_ACTION_FIRSTPAGE;
case presentation::ClickAction_LASTPAGE: return STR_CLICK_ACTION_LASTPAGE;
case presentation::ClickAction_BOOKMARK: return STR_CLICK_ACTION_BOOKMARK;
case presentation::ClickAction_DOCUMENT: return STR_CLICK_ACTION_DOCUMENT;
case presentation::ClickAction_PROGRAM: return STR_CLICK_ACTION_PROGRAM;
case presentation::ClickAction_MACRO: return STR_CLICK_ACTION_MACRO;
case presentation::ClickAction_SOUND: return STR_CLICK_ACTION_SOUND;
case presentation::ClickAction_VERB: return STR_CLICK_ACTION_VERB;
case presentation::ClickAction_STOPPRESENTATION: return STR_CLICK_ACTION_STOPPRESENTATION;
default: OSL_FAIL( "No StringResource for ClickAction available!" );
}
return( 0 );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|