office-gobmx/sd/source/ui/view/drviewsd.cxx
2000-09-21 15:12:50 +00:00

315 lines
10 KiB
C++

/*************************************************************************
*
* $RCSfile: drviewsd.cxx,v $
*
* $Revision: 1.2 $
*
* last change: $Author: ka $ $Date: 2000-09-21 16:12:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef _SVXIDS_HRC
#include <svx/svxids.hrc>
#endif
#ifndef _AEITEM_HXX //autogen
#include <svtools/aeitem.hxx>
#endif
#ifndef _SFXSTRITEM_HXX //autogen
#include <svtools/stritem.hxx>
#endif
#ifndef _SFXDOCFILE_HXX //autogen
#include <sfx2/docfile.hxx>
#endif
#ifndef _SFXINTITEM_HXX //autogen
#include <svtools/intitem.hxx>
#endif
#ifndef _SFX_BINDINGS_HXX //autogen
#include <sfx2/bindings.hxx>
#endif
#ifndef _SFXDISPATCH_HXX //autogen
#include <sfx2/dispatch.hxx>
#endif
#ifndef _SFXREQUEST_HXX //autogen
#include <sfx2/request.hxx>
#endif
#pragma hdrstop
#include "app.hrc"
#include "drviewsh.hxx"
#include "sdpage.hxx"
#include "drawdoc.hxx"
#include "docshell.hxx"
#include "fuslshow.hxx"
#include "pgjump.hxx"
#include "navichld.hxx"
#include "navigatr.hxx"
#include "drawview.hxx"
/*************************************************************************
|*
|* SfxRequests fuer Navigator bearbeiten
|*
\************************************************************************/
void SdDrawViewShell::ExecNavigatorWin( SfxRequest& rReq )
{
CheckLineTo (rReq);
USHORT nSId = rReq.GetSlot();
switch( nSId )
{
case SID_NAVIGATOR_INIT:
{
USHORT nId = SID_NAVIGATOR;
SfxChildWindow* pWindow = GetViewFrame()->GetChildWindow( nId );
if( pWindow )
{
SdNavigatorWin* pNavWin = (SdNavigatorWin*)( pWindow->GetContextWindow( SD_MOD() ) );
if( pNavWin )
pNavWin->InitTreeLB( pDoc );
}
}
break;
case SID_NAVIGATOR_LIVE:
case SID_NAVIGATOR_PEN:
case SID_NAVIGATOR_PAGE:
case SID_NAVIGATOR_OBJECT:
{
if (pFuSlideShow)
{
// Um einem Doppelklick vorzubeugen wird der Request
// nur weitergeleitet, wenn auch sinnvoll, da sonst
// die Show beendet wird.
BOOL bReqPossible = TRUE;
USHORT nCurrentPage = pFuSlideShow->GetCurrentPage();
USHORT nFirstPage = pFuSlideShow->GetFirstPage();
USHORT nLastPage = pFuSlideShow->GetLastPage();
BOOL bEndless = pFuSlideShow->IsEndless();
if( nSId == SID_NAVIGATOR_PAGE )
{
PageJump eJump = (PageJump)((SfxAllEnumItem&) rReq.GetArgs()->
Get(SID_NAVIGATOR_PAGE)).GetValue();
if( !bEndless &&
( ( eJump == PAGE_NEXT && nCurrentPage == nLastPage ) ||
( eJump == PAGE_PREVIOUS && nCurrentPage == nFirstPage ) ) )
bReqPossible = FALSE;
}
if( bReqPossible )
pFuSlideShow->ReceiveRequest( rReq );
}
else if (nSId == SID_NAVIGATOR_PAGE)
{
if ( pDrView->IsTextEdit() )
pDrView->EndTextEdit();
const SfxItemSet* pArgs = rReq.GetArgs();
PageJump eJump = (PageJump)((SfxAllEnumItem&) pArgs->
Get(SID_NAVIGATOR_PAGE)).GetValue();
switch (eJump)
{
case PAGE_FIRST:
{
// Sprung zu erster Seite
SwitchPage(0);
}
break;
case PAGE_LAST:
{
// Sprung zu letzter Seite
SwitchPage(pDoc->GetSdPageCount(pActualPage->GetPageKind()) - 1);
}
break;
case PAGE_NEXT:
{
// Sprung zu naechster Seite
USHORT nSdPage = (pActualPage->GetPageNum() - 1) / 2;
if (nSdPage < pDoc->GetSdPageCount(pActualPage->GetPageKind()) - 1)
{
SwitchPage(nSdPage + 1);
}
}
break;
case PAGE_PREVIOUS:
{
// Sprung zu vorheriger Seite
USHORT nSdPage = (pActualPage->GetPageNum() - 1) / 2;
if (nSdPage > 0)
{
SwitchPage(nSdPage - 1);
}
}
break;
}
}
else if (nSId == SID_NAVIGATOR_OBJECT)
{
String aBookmarkStr;
aBookmarkStr += sal_Unicode( '#' );
const SfxItemSet* pArgs = rReq.GetArgs();
String aTarget = ((SfxStringItem&) pArgs->
Get(SID_NAVIGATOR_OBJECT)).GetValue();
aBookmarkStr += aTarget;
SfxStringItem aStrItem(SID_FILE_NAME, aBookmarkStr);
SfxStringItem aReferer(SID_REFERER, pDocSh->GetMedium()->GetName());
SfxViewFrame* pFrame = GetViewFrame();
SfxFrameItem aFrameItem(SID_DOCFRAME, pFrame);
SfxBoolItem aBrowseItem(SID_BROWSING, TRUE);
pFrame->GetDispatcher()->
Execute(SID_OPENDOC, SFX_CALLMODE_ASYNCHRON | SFX_CALLMODE_RECORD,
&aStrItem, &aFrameItem, &aBrowseItem, &aReferer, 0L);
}
SfxBindings& rBindings = GetViewFrame()->GetBindings();
rBindings.Invalidate( SID_NAVIGATOR_STATE );
rBindings.Invalidate( SID_NAVIGATOR_PAGENAME );
}
break;
default:
break;
}
}
/*************************************************************************
|*
|* Statuswerte fuer Navigator zurueckgeben
|*
\************************************************************************/
void SdDrawViewShell::GetNavigatorWinState( SfxItemSet& rSet )
{
UINT32 nState = NAVSTATE_NONE;
USHORT nCurrentPage;
USHORT nFirstPage = 0;
USHORT nLastPage;
BOOL bEndless = FALSE;
String aPageName;
if( pFuSlideShow )
{
// Live-Modus ?
if( pFuSlideShow->IsLivePresentation() )
nState |= NAVBTN_LIVE_CHECKED | NAVBTN_PEN_DISABLED;
else
nState |= NAVBTN_LIVE_UNCHECKED | NAVBTN_PEN_ENABLED;
// Stift eingeschaltet ?
if( pFuSlideShow->IsDrawingPossible() )
nState |= NAVBTN_PEN_CHECKED | NAVBTN_LIVE_DISABLED;
else
nState |= NAVBTN_PEN_UNCHECKED | NAVBTN_LIVE_ENABLED;
nCurrentPage = pFuSlideShow->GetCurrentPage();
nFirstPage = pFuSlideShow->GetFirstPage();
nLastPage = pFuSlideShow->GetLastPage();
bEndless = FALSE; //pFuSlideShow->IsEndless();
SdPage* pPage = pDoc->GetSdPage( nCurrentPage, ePageKind );
if( pPage )
aPageName = pPage->GetName();
}
else
{
nState |= NAVBTN_LIVE_DISABLED | NAVBTN_PEN_DISABLED |
NAVTLB_UPDATE;
nCurrentPage = ( pActualPage->GetPageNum() - 1 ) / 2;
nLastPage = pDoc->GetSdPageCount( ePageKind ) - 1;
aPageName = pActualPage->GetName();
}
// erste Seite / vorherige Seite
if( nCurrentPage == nFirstPage )
{
nState |= NAVBTN_FIRST_DISABLED;
if( !bEndless )
nState |= NAVBTN_PREV_DISABLED;
else
nState |= NAVBTN_PREV_ENABLED;
}
else
nState |= NAVBTN_FIRST_ENABLED | NAVBTN_PREV_ENABLED;
// letzte Seite / naechste Seite
if( nCurrentPage == nLastPage )
{
nState |= NAVBTN_LAST_DISABLED;
if( !bEndless )
nState |= NAVBTN_NEXT_DISABLED;
else
nState |= NAVBTN_NEXT_ENABLED;
}
else
nState |= NAVBTN_LAST_ENABLED | NAVBTN_NEXT_ENABLED;
rSet.Put( SfxUInt32Item( SID_NAVIGATOR_STATE, nState ) );
rSet.Put( SfxStringItem( SID_NAVIGATOR_PAGENAME, aPageName ) );
}