2004-11-26 13:20:03 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 00:07:09 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-11-26 13:20:03 -06:00
|
|
|
*
|
2005-09-09 00:07:09 -05:00
|
|
|
* $RCSfile: showwin.cxx,v $
|
2004-11-26 13:20:03 -06:00
|
|
|
*
|
2007-01-29 07:50:55 -06:00
|
|
|
* $Revision: 1.14 $
|
2004-11-26 13:20:03 -06:00
|
|
|
*
|
2007-01-29 07:50:55 -06:00
|
|
|
* last change: $Author: rt $ $Date: 2007-01-29 14:50:55 $
|
2004-11-26 13:20:03 -06:00
|
|
|
*
|
2005-09-09 00:07:09 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2004-11-26 13:20:03 -06:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 00:07:09 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2004-11-26 13:20:03 -06:00
|
|
|
*
|
2005-09-09 00:07:09 -05:00
|
|
|
* 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.
|
2004-11-26 13:20:03 -06:00
|
|
|
*
|
2005-09-09 00:07:09 -05:00
|
|
|
* 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.
|
2004-11-26 13:20:03 -06:00
|
|
|
*
|
2005-09-09 00:07:09 -05:00
|
|
|
* 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
|
2004-11-26 13:20:03 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 13:02:26 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sd.hxx"
|
|
|
|
|
2007-01-29 07:50:55 -06:00
|
|
|
#include <com/sun/star/awt/Key.hpp>
|
|
|
|
|
2004-11-26 13:20:03 -06:00
|
|
|
#include "ShowWindow.hxx"
|
|
|
|
|
|
|
|
#ifndef INCLUDED_SVTOOLS_SYSLOCALE_HXX
|
|
|
|
#include <svtools/syslocale.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SFXVIEWFRM_HXX //autogen
|
|
|
|
#include <sfx2/viewfrm.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include "res_bmp.hrc"
|
|
|
|
|
2005-03-30 03:30:31 -06:00
|
|
|
#ifndef _SD_SLIDESHOW_HXX
|
|
|
|
#include "slideshow.hxx"
|
|
|
|
#endif
|
|
|
|
|
2004-11-26 13:20:03 -06:00
|
|
|
#ifndef SD_VIEW_SHELL_BASE_HXX
|
|
|
|
#include "ViewShellBase.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef SD_SLIDE_VIEW_SHELL_HXX
|
|
|
|
#include "SlideViewShell.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _SD_SLIDESHOW_HXX
|
|
|
|
#include "slideshow.hxx"
|
|
|
|
#endif
|
|
|
|
#include "sdresid.hxx"
|
|
|
|
#include "helpids.h"
|
|
|
|
#include "strings.hrc"
|
|
|
|
|
2006-11-14 07:34:40 -06:00
|
|
|
#ifndef _SV_VIRDEV_HXX
|
|
|
|
#include <vcl/virdev.hxx>
|
|
|
|
#endif
|
2004-11-26 13:20:03 -06:00
|
|
|
|
2007-01-29 07:50:55 -06:00
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
2004-11-26 13:20:03 -06:00
|
|
|
namespace sd {
|
|
|
|
|
2006-07-10 05:23:06 -05:00
|
|
|
static const ULONG HIDE_MOUSE_TIMEOUT = 10000;
|
|
|
|
static const ULONG SHOW_MOUSE_TIMEOUT = 1000;
|
|
|
|
|
2004-11-26 13:20:03 -06:00
|
|
|
// =============================================================================
|
|
|
|
|
|
|
|
ShowWindow::ShowWindow( ::Window* pParent )
|
|
|
|
: ::sd::Window( pParent ),
|
|
|
|
mnPauseTimeout( SLIDE_NO_TIMEOUT ),
|
2006-12-12 11:05:06 -06:00
|
|
|
mnRestartPageIndex( PAGE_NO_END ),
|
|
|
|
meShowWindowMode(SHOWWINDOWMODE_NORMAL),
|
2005-03-30 03:30:31 -06:00
|
|
|
mbShowNavigatorAfterSpecialMode( FALSE ),
|
2006-12-12 11:05:06 -06:00
|
|
|
mbMouseAutoHide(true),
|
2006-07-10 05:23:06 -05:00
|
|
|
mbMouseCursorHidden(false),
|
2006-12-12 11:05:06 -06:00
|
|
|
mnFirstMouseMove(0),
|
|
|
|
mpSlideshow(0)
|
2004-11-26 13:20:03 -06:00
|
|
|
{
|
2005-10-19 06:25:16 -05:00
|
|
|
SetOutDevViewType( OUTDEV_VIEWTYPE_SLIDESHOW );
|
|
|
|
|
2004-11-26 13:20:03 -06:00
|
|
|
// Do never mirror the preview window. This explicitly includes right
|
|
|
|
// to left writing environments.
|
|
|
|
EnableRTL (FALSE);
|
|
|
|
|
|
|
|
MapMode aMap(GetMapMode());
|
|
|
|
aMap.SetMapUnit(MAP_100TH_MM);
|
|
|
|
SetMapMode(aMap);
|
|
|
|
|
|
|
|
// HelpId setzen
|
|
|
|
SetHelpId( HID_SD_WIN_PRESENTATION );
|
|
|
|
SetUniqueId( HID_SD_WIN_PRESENTATION );
|
|
|
|
|
|
|
|
maPauseTimer.SetTimeoutHdl( LINK( this, ShowWindow, PauseTimeoutHdl ) );
|
|
|
|
maPauseTimer.SetTimeout( 1000 );
|
2006-07-10 05:23:06 -05:00
|
|
|
maMouseTimer.SetTimeoutHdl( LINK( this, ShowWindow, MouseTimeoutHdl ) );
|
|
|
|
maMouseTimer.SetTimeout( HIDE_MOUSE_TIMEOUT );
|
2004-11-26 13:20:03 -06:00
|
|
|
|
|
|
|
maShowBackground = Wallpaper( Color( COL_BLACK ) );
|
|
|
|
// SetBackground( Wallpaper( Color( COL_BLACK ) ) );
|
2005-01-21 09:34:25 -06:00
|
|
|
SetBackground(); // avoids that VCL paints any background!
|
2004-11-26 13:20:03 -06:00
|
|
|
GetParent()->Show();
|
2006-07-10 05:23:06 -05:00
|
|
|
AddEventListener( LINK( this, ShowWindow, EventHdl ) );
|
2004-11-26 13:20:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ShowWindow::~ShowWindow(void)
|
|
|
|
{
|
2006-07-10 05:23:06 -05:00
|
|
|
maPauseTimer.Stop();
|
|
|
|
maMouseTimer.Stop();
|
2004-11-26 13:20:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Keyboard event
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
void ShowWindow::KeyInput(const KeyEvent& rKEvt)
|
|
|
|
{
|
|
|
|
BOOL bReturn = FALSE;
|
|
|
|
|
|
|
|
if( SHOWWINDOWMODE_PREVIEW == meShowWindowMode )
|
|
|
|
{
|
|
|
|
TerminateShow();
|
|
|
|
bReturn = true;
|
|
|
|
}
|
|
|
|
else if( SHOWWINDOWMODE_END == meShowWindowMode )
|
|
|
|
{
|
|
|
|
const int nKeyCode = rKEvt.GetKeyCode().GetCode();
|
|
|
|
switch( nKeyCode )
|
|
|
|
{
|
|
|
|
case KEY_PAGEUP:
|
2007-01-23 01:54:29 -06:00
|
|
|
case KEY_LEFT:
|
2004-11-26 13:20:03 -06:00
|
|
|
case KEY_UP:
|
|
|
|
case KEY_P:
|
|
|
|
case KEY_HOME:
|
|
|
|
case KEY_END:
|
2007-01-29 07:50:55 -06:00
|
|
|
case awt::Key::CONTEXTMENU:
|
2004-11-26 13:20:03 -06:00
|
|
|
// these keys will be handled by the slide show even
|
|
|
|
// while in end mode
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
TerminateShow();
|
|
|
|
bReturn = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( SHOWWINDOWMODE_BLANK == meShowWindowMode )
|
|
|
|
{
|
|
|
|
RestartShow();
|
|
|
|
bReturn = true;
|
|
|
|
}
|
|
|
|
else if( SHOWWINDOWMODE_PAUSE == meShowWindowMode )
|
|
|
|
{
|
|
|
|
const int nKeyCode = rKEvt.GetKeyCode().GetCode();
|
|
|
|
switch( nKeyCode )
|
|
|
|
{
|
|
|
|
case KEY_ESCAPE:
|
|
|
|
TerminateShow();
|
|
|
|
bReturn = true;
|
|
|
|
break;
|
|
|
|
case KEY_PAGEUP:
|
|
|
|
case KEY_RIGHT:
|
|
|
|
case KEY_UP:
|
|
|
|
case KEY_P:
|
|
|
|
case KEY_HOME:
|
|
|
|
case KEY_END:
|
2007-01-29 07:50:55 -06:00
|
|
|
case awt::Key::CONTEXTMENU:
|
2004-11-26 13:20:03 -06:00
|
|
|
// these keys will be handled by the slide show even
|
|
|
|
// while in end mode
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
RestartShow();
|
|
|
|
bReturn = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !bReturn )
|
|
|
|
{
|
|
|
|
if( mpViewShell )
|
|
|
|
bReturn = mpViewShell->KeyInput(rKEvt, this);
|
|
|
|
|
|
|
|
if( !bReturn )
|
|
|
|
Window::KeyInput(rKEvt);
|
|
|
|
}
|
|
|
|
|
|
|
|
if( mpViewShell )
|
|
|
|
mpViewShell->SetActiveWindow( this );
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* MouseButtonDown event
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
void ShowWindow::MouseButtonDown(const MouseEvent& rMEvt)
|
|
|
|
{
|
|
|
|
if( SHOWWINDOWMODE_PREVIEW == meShowWindowMode )
|
|
|
|
{
|
|
|
|
TerminateShow();
|
|
|
|
}
|
|
|
|
else if( SHOWWINDOWMODE_NORMAL == meShowWindowMode )
|
|
|
|
{
|
|
|
|
if( mpViewShell )
|
|
|
|
mpViewShell->MouseButtonDown( rMEvt, this );
|
|
|
|
}
|
|
|
|
else if( mpViewShell )
|
|
|
|
{
|
|
|
|
mpViewShell->SetActiveWindow( this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* MouseMove event
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
void ShowWindow::MouseMove(const MouseEvent& rMEvt)
|
|
|
|
{
|
2006-07-10 05:23:06 -05:00
|
|
|
if( mbMouseAutoHide )
|
|
|
|
{
|
|
|
|
if( mbMouseCursorHidden )
|
|
|
|
{
|
|
|
|
if( mnFirstMouseMove )
|
|
|
|
{
|
|
|
|
// if this is not the first mouse move while hidden, see if
|
|
|
|
// enough time has pasted to show mouse pointer again
|
|
|
|
ULONG nTime = Time::GetSystemTicks();
|
|
|
|
if( (nTime - mnFirstMouseMove) >= SHOW_MOUSE_TIMEOUT )
|
|
|
|
{
|
|
|
|
ShowPointer( TRUE );
|
|
|
|
mnFirstMouseMove = 0;
|
|
|
|
mbMouseCursorHidden = false;
|
|
|
|
maMouseTimer.SetTimeout( HIDE_MOUSE_TIMEOUT );
|
|
|
|
maMouseTimer.Start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// if this is the first mouse move, note current
|
|
|
|
// time and start idle timer to cancel show mouse pointer
|
|
|
|
// again if not enough mouse movement is measured
|
|
|
|
mnFirstMouseMove = Time::GetSystemTicks();
|
|
|
|
maMouseTimer.SetTimeout( 2*SHOW_MOUSE_TIMEOUT );
|
|
|
|
maMouseTimer.Start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// current mousemove restarts the idle timer to hide the mouse
|
|
|
|
maMouseTimer.Start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-26 13:20:03 -06:00
|
|
|
if( mpViewShell )
|
|
|
|
{
|
|
|
|
if( SHOWWINDOWMODE_NORMAL == meShowWindowMode )
|
|
|
|
{
|
|
|
|
mpViewShell->MouseMove( rMEvt, this );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mpViewShell->SetActiveWindow( this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* MouseButtonUp event
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
void ShowWindow::MouseButtonUp(const MouseEvent& rMEvt)
|
|
|
|
{
|
|
|
|
if( SHOWWINDOWMODE_PREVIEW == meShowWindowMode )
|
|
|
|
{
|
|
|
|
TerminateShow();
|
|
|
|
}
|
|
|
|
else if( (SHOWWINDOWMODE_END == meShowWindowMode) && !rMEvt.IsRight() )
|
|
|
|
{
|
|
|
|
TerminateShow();
|
|
|
|
}
|
2005-10-11 02:17:18 -05:00
|
|
|
else if( (( SHOWWINDOWMODE_BLANK == meShowWindowMode ) || ( SHOWWINDOWMODE_PAUSE == meShowWindowMode ))
|
|
|
|
&& !rMEvt.IsRight() )
|
2004-11-26 13:20:03 -06:00
|
|
|
{
|
|
|
|
RestartShow();
|
|
|
|
}
|
|
|
|
else if( mpViewShell )
|
|
|
|
{
|
|
|
|
mpViewShell->MouseButtonUp( rMEvt, this );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Paint-Event: wenn FuSlideShow noch erreichbar ist, weiterleiten
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
void ShowWindow::Paint(const Rectangle& rRect)
|
|
|
|
{
|
|
|
|
if( (meShowWindowMode == SHOWWINDOWMODE_NORMAL) || (meShowWindowMode == SHOWWINDOWMODE_PREVIEW) )
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
Region aOldClipRegion( GetClipRegion() );
|
|
|
|
|
|
|
|
Region aClipRegion( rRect );
|
|
|
|
aClipRegion.Exclude( maPresArea );
|
|
|
|
SetClipRegion( aClipRegion );
|
|
|
|
|
|
|
|
DrawWallpaper( rRect, maShowBackground );
|
|
|
|
|
|
|
|
SetClipRegion( aOldClipRegion );
|
|
|
|
*/
|
2005-03-30 03:30:31 -06:00
|
|
|
if( mpSlideshow )
|
|
|
|
{
|
|
|
|
mpSlideshow->paint(rRect);
|
|
|
|
}
|
|
|
|
else
|
2004-11-26 13:20:03 -06:00
|
|
|
{
|
2005-03-30 03:30:31 -06:00
|
|
|
if(mpViewShell )
|
|
|
|
{
|
|
|
|
Slideshow* pSlideShow = mpViewShell->GetSlideShow();
|
|
|
|
if( pSlideShow )
|
|
|
|
pSlideShow->paint(rRect);
|
|
|
|
else
|
|
|
|
mpViewShell->Paint(rRect, this);
|
|
|
|
}
|
2004-11-26 13:20:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DrawWallpaper( rRect, maShowBackground );
|
|
|
|
|
|
|
|
if( SHOWWINDOWMODE_END == meShowWindowMode )
|
|
|
|
{
|
|
|
|
DrawEndScene();
|
|
|
|
}
|
|
|
|
else if( SHOWWINDOWMODE_PAUSE == meShowWindowMode )
|
|
|
|
{
|
|
|
|
DrawPauseScene( FALSE );
|
|
|
|
}
|
|
|
|
else if( SHOWWINDOWMODE_BLANK == meShowWindowMode )
|
|
|
|
{
|
|
|
|
DrawBlankScene();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Notify
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
long ShowWindow::Notify(NotifyEvent& rNEvt)
|
|
|
|
{
|
|
|
|
long nOK = FALSE;
|
|
|
|
/*
|
|
|
|
if( mpViewShell && rNEvt.GetType() == EVENT_GETFOCUS )
|
|
|
|
{
|
|
|
|
NotifyEvent aNEvt(EVENT_GETFOCUS, this);
|
|
|
|
nOK = mpViewShell->GetViewFrame()->GetWindow().Notify(aNEvt);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
if (!nOK)
|
|
|
|
nOK = Window::Notify(rNEvt);
|
|
|
|
|
|
|
|
return nOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::GetFocus()
|
|
|
|
{
|
|
|
|
// Basisklasse
|
|
|
|
Window::GetFocus();
|
|
|
|
/*
|
|
|
|
if( mpViewShell )
|
|
|
|
{
|
|
|
|
NotifyEvent aNEvt(EVENT_GETFOCUS, this);
|
|
|
|
mpViewShell->GetViewFrame()->GetWindow().Notify(aNEvt);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::LoseFocus()
|
|
|
|
{
|
|
|
|
Window::LoseFocus();
|
|
|
|
|
|
|
|
if( SHOWWINDOWMODE_PREVIEW == meShowWindowMode)
|
|
|
|
TerminateShow();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::Resize()
|
|
|
|
{
|
|
|
|
::sd::Window::Resize();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::Move()
|
|
|
|
{
|
|
|
|
::sd::Window::Move();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL ShowWindow::SetEndMode()
|
|
|
|
{
|
|
|
|
if( ( SHOWWINDOWMODE_NORMAL == meShowWindowMode ) && mpViewShell && mpViewShell->GetView() )
|
|
|
|
{
|
2006-11-14 07:34:40 -06:00
|
|
|
mpViewShell->GetView()->DeleteWindowFromPaintView( this );
|
2004-11-26 13:20:03 -06:00
|
|
|
meShowWindowMode = SHOWWINDOWMODE_END;
|
|
|
|
// maShowBackground = GetBackground();
|
|
|
|
// SetBackground( Wallpaper( Color( COL_BLACK ) ) );
|
|
|
|
maShowBackground = Wallpaper( Color( COL_BLACK ) );
|
|
|
|
|
|
|
|
// hide navigator if it is visible
|
|
|
|
if( mpViewShell->GetViewFrame()->GetChildWindow( SID_NAVIGATOR ) )
|
|
|
|
{
|
|
|
|
mpViewShell->GetViewFrame()->ShowChildWindow( SID_NAVIGATOR, FALSE );
|
|
|
|
mbShowNavigatorAfterSpecialMode = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
|
|
|
|
return( SHOWWINDOWMODE_END == meShowWindowMode );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL ShowWindow::SetPauseMode( sal_Int32 nPageIndexToRestart, sal_Int32 nTimeout, Graphic* pLogo )
|
|
|
|
{
|
|
|
|
if( mpViewShell && mpViewShell->GetSlideShow() && !nTimeout )
|
|
|
|
{
|
|
|
|
mpViewShell->GetSlideShow()->jumpToPageIndex( nPageIndexToRestart );
|
|
|
|
}
|
|
|
|
else if( ( SHOWWINDOWMODE_NORMAL == meShowWindowMode ) && mpViewShell && mpViewShell->GetView() )
|
|
|
|
{
|
2006-11-14 07:34:40 -06:00
|
|
|
mpViewShell->GetView()->DeleteWindowFromPaintView( this );
|
2004-11-26 13:20:03 -06:00
|
|
|
mnPauseTimeout = nTimeout;
|
|
|
|
mnRestartPageIndex = nPageIndexToRestart;
|
|
|
|
meShowWindowMode = SHOWWINDOWMODE_PAUSE;
|
|
|
|
// maShowBackground = GetBackground();
|
|
|
|
// SetBackground( Wallpaper( Color( COL_BLACK ) ) );
|
|
|
|
maShowBackground = Wallpaper( Color( COL_BLACK ) );
|
|
|
|
|
|
|
|
// hide navigator if it is visible
|
|
|
|
if( mpViewShell->GetViewFrame()->GetChildWindow( SID_NAVIGATOR ) )
|
|
|
|
{
|
|
|
|
mpViewShell->GetViewFrame()->ShowChildWindow( SID_NAVIGATOR, FALSE );
|
|
|
|
mbShowNavigatorAfterSpecialMode = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( pLogo )
|
|
|
|
maLogo = *pLogo;
|
|
|
|
|
|
|
|
Invalidate();
|
|
|
|
|
|
|
|
if( SLIDE_NO_TIMEOUT != mnPauseTimeout )
|
|
|
|
maPauseTimer.Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
return( SHOWWINDOWMODE_PAUSE == meShowWindowMode );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL ShowWindow::SetBlankMode( sal_Int32 nPageIndexToRestart, const Color& rBlankColor )
|
|
|
|
{
|
|
|
|
if( ( SHOWWINDOWMODE_NORMAL == meShowWindowMode ) && mpViewShell && mpViewShell->GetView() )
|
|
|
|
{
|
2006-11-14 07:34:40 -06:00
|
|
|
mpViewShell->GetView()->DeleteWindowFromPaintView( this );
|
2004-11-26 13:20:03 -06:00
|
|
|
mnRestartPageIndex = nPageIndexToRestart;
|
|
|
|
meShowWindowMode = SHOWWINDOWMODE_BLANK;
|
|
|
|
// maShowBackground = GetBackground();
|
|
|
|
// SetBackground( Wallpaper( rBlankColor ) );
|
|
|
|
maShowBackground = Wallpaper( rBlankColor );
|
|
|
|
|
|
|
|
// hide navigator if it is visible
|
|
|
|
if( mpViewShell->GetViewFrame()->GetChildWindow( SID_NAVIGATOR ) )
|
|
|
|
{
|
|
|
|
mpViewShell->GetViewFrame()->ShowChildWindow( SID_NAVIGATOR, FALSE );
|
|
|
|
mbShowNavigatorAfterSpecialMode = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
|
|
|
|
return( SHOWWINDOWMODE_BLANK == meShowWindowMode );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::SetPreviewMode()
|
|
|
|
{
|
|
|
|
meShowWindowMode = SHOWWINDOWMODE_PREVIEW;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::TerminateShow()
|
|
|
|
{
|
|
|
|
maLogo.Clear();
|
|
|
|
maPauseTimer.Stop();
|
2006-07-10 05:23:06 -05:00
|
|
|
maMouseTimer.Stop();
|
2004-11-26 13:20:03 -06:00
|
|
|
Erase();
|
|
|
|
// SetBackground( maShowBackground );
|
|
|
|
maShowBackground = Wallpaper( Color( COL_BLACK ) );
|
|
|
|
meShowWindowMode = SHOWWINDOWMODE_NORMAL;
|
|
|
|
mnPauseTimeout = SLIDE_NO_TIMEOUT;
|
|
|
|
|
|
|
|
if( mpViewShell )
|
|
|
|
{
|
|
|
|
// show navigator?
|
|
|
|
if( mbShowNavigatorAfterSpecialMode )
|
|
|
|
{
|
|
|
|
mpViewShell->GetViewFrame()->ShowChildWindow( SID_NAVIGATOR, TRUE );
|
|
|
|
mbShowNavigatorAfterSpecialMode = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mpViewShell->GetViewShellBase().StopPresentation();
|
|
|
|
}
|
|
|
|
|
|
|
|
mnRestartPageIndex = PAGE_NO_END;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::RestartShow()
|
|
|
|
{
|
|
|
|
RestartShow( mnRestartPageIndex );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::RestartShow( sal_Int32 nPageIndexToRestart )
|
|
|
|
|
|
|
|
{
|
|
|
|
ShowWindowMode eOldShowWindowMode = meShowWindowMode;
|
|
|
|
|
|
|
|
maLogo.Clear();
|
|
|
|
maPauseTimer.Stop();
|
|
|
|
Erase();
|
|
|
|
// SetBackground( maShowBackground );
|
|
|
|
maShowBackground = Wallpaper( Color( COL_BLACK ) );
|
|
|
|
meShowWindowMode = SHOWWINDOWMODE_NORMAL;
|
|
|
|
mnPauseTimeout = SLIDE_NO_TIMEOUT;
|
|
|
|
|
|
|
|
if( mpViewShell )
|
|
|
|
{
|
|
|
|
sd::Slideshow* pSlideShow = mpViewShell->GetSlideShow();
|
|
|
|
|
|
|
|
if( pSlideShow )
|
|
|
|
{
|
|
|
|
if( mpViewShell->GetView() )
|
2006-11-14 07:34:40 -06:00
|
|
|
mpViewShell->GetView()->AddWindowToPaintView( this );
|
2004-11-26 13:20:03 -06:00
|
|
|
|
|
|
|
if( SHOWWINDOWMODE_BLANK == eOldShowWindowMode )
|
|
|
|
{
|
|
|
|
pSlideShow->pause(false);
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pSlideShow->jumpToPageIndex( nPageIndexToRestart );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mnRestartPageIndex = PAGE_NO_END;
|
|
|
|
|
|
|
|
// show navigator?
|
|
|
|
if( mbShowNavigatorAfterSpecialMode )
|
|
|
|
{
|
|
|
|
mpViewShell->GetViewFrame()->ShowChildWindow( SID_NAVIGATOR, TRUE );
|
|
|
|
mbShowNavigatorAfterSpecialMode = FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::DrawPauseScene( BOOL bTimeoutOnly )
|
|
|
|
{
|
|
|
|
const MapMode& rMap = GetMapMode();
|
|
|
|
const Point aOutOrg( PixelToLogic( Point() ) );
|
|
|
|
const Size aOutSize( GetOutputSize() );
|
|
|
|
const Size aTextSize( LogicToLogic( Size( 0, 14 ), MAP_POINT, rMap ) );
|
|
|
|
const Size aOffset( LogicToLogic( Size( 1000, 1000 ), MAP_100TH_MM, rMap ) );
|
|
|
|
String aText( SdResId( STR_PRES_PAUSE ) );
|
|
|
|
BOOL bDrawn = FALSE;
|
|
|
|
|
|
|
|
Font aFont( GetSettings().GetStyleSettings().GetMenuFont() );
|
|
|
|
const Font aOldFont( GetFont() );
|
|
|
|
|
|
|
|
aFont.SetSize( aTextSize );
|
|
|
|
aFont.SetColor( COL_WHITE );
|
|
|
|
aFont.SetCharSet( aOldFont.GetCharSet() );
|
|
|
|
aFont.SetLanguage( aOldFont.GetLanguage() );
|
|
|
|
|
|
|
|
if( !bTimeoutOnly && ( maLogo.GetType() != GRAPHIC_NONE ) )
|
|
|
|
{
|
|
|
|
Size aGrfSize;
|
|
|
|
|
|
|
|
if( maLogo.GetPrefMapMode() == MAP_PIXEL )
|
|
|
|
aGrfSize = PixelToLogic( maLogo.GetPrefSize() );
|
|
|
|
else
|
|
|
|
aGrfSize = LogicToLogic( maLogo.GetPrefSize(), maLogo.GetPrefMapMode(), rMap );
|
|
|
|
|
|
|
|
const Point aGrfPos( Max( aOutOrg.X() + aOutSize.Width() - aGrfSize.Width() - aOffset.Width(), aOutOrg.X() ),
|
|
|
|
Max( aOutOrg.Y() + aOutSize.Height() - aGrfSize.Height() - aOffset.Height(), aOutOrg.Y() ) );
|
|
|
|
|
|
|
|
if( maLogo.IsAnimated() )
|
|
|
|
maLogo.StartAnimation( this, aGrfPos, aGrfSize, (long) this );
|
|
|
|
else
|
|
|
|
maLogo.Draw( this, aGrfPos, aGrfSize );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( SLIDE_NO_TIMEOUT != mnPauseTimeout )
|
|
|
|
{
|
|
|
|
MapMode aVMap( rMap );
|
|
|
|
VirtualDevice aVDev( *this );
|
|
|
|
|
|
|
|
aVMap.SetOrigin( Point() );
|
|
|
|
aVDev.SetMapMode( aVMap );
|
|
|
|
aVDev.SetBackground( Wallpaper( Color( COL_BLACK ) ) );
|
|
|
|
|
|
|
|
// set font first, to determine real output height
|
|
|
|
aVDev.SetFont( aFont );
|
|
|
|
|
|
|
|
const Size aVDevSize( aOutSize.Width(), aVDev.GetTextHeight() );
|
|
|
|
|
|
|
|
if( aVDev.SetOutputSize( aVDevSize ) )
|
|
|
|
{
|
|
|
|
// Note: if performance gets an issue here, we can use NumberFormatter directly
|
|
|
|
SvtSysLocale aSysLocale;
|
|
|
|
const LocaleDataWrapper& aLocaleData = aSysLocale.GetLocaleData();
|
|
|
|
|
|
|
|
aText.AppendAscii( RTL_CONSTASCII_STRINGPARAM( " ( " ));
|
|
|
|
aText += aLocaleData.getDuration( Time( 0, 0, mnPauseTimeout ) );
|
|
|
|
aText.AppendAscii( RTL_CONSTASCII_STRINGPARAM( " )" ));
|
|
|
|
aVDev.DrawText( Point( aOffset.Width(), 0 ), aText );
|
|
|
|
DrawOutDev( Point( aOutOrg.X(), aOffset.Height() ), aVDevSize, Point(), aVDevSize, aVDev );
|
|
|
|
bDrawn = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !bDrawn )
|
|
|
|
{
|
|
|
|
SetFont( aFont );
|
|
|
|
DrawText( Point( aOutOrg.X() + aOffset.Width(), aOutOrg.Y() + aOffset.Height() ), aText );
|
|
|
|
SetFont( aOldFont );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::DrawEndScene()
|
|
|
|
{
|
|
|
|
const Font aOldFont( GetFont() );
|
|
|
|
Font aFont( GetSettings().GetStyleSettings().GetMenuFont() );
|
|
|
|
|
|
|
|
const Point aOutOrg( PixelToLogic( Point() ) );
|
|
|
|
const Size aTextSize( LogicToLogic( Size( 0, 14 ), MAP_POINT, GetMapMode() ) );
|
|
|
|
const String aText( SdResId( STR_PRES_SOFTEND ) );
|
|
|
|
|
|
|
|
aFont.SetSize( aTextSize );
|
|
|
|
aFont.SetColor( COL_WHITE );
|
|
|
|
aFont.SetCharSet( aOldFont.GetCharSet() );
|
|
|
|
aFont.SetLanguage( aOldFont.GetLanguage() );
|
|
|
|
SetFont( aFont );
|
|
|
|
DrawText( Point( aOutOrg.X() + aTextSize.Height(), aOutOrg.Y() + aTextSize.Height() ), aText );
|
|
|
|
SetFont( aOldFont );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void ShowWindow::DrawBlankScene()
|
|
|
|
{
|
|
|
|
// just blank through background color => nothing to be done here
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
IMPL_LINK( ShowWindow, PauseTimeoutHdl, Timer*, pTimer )
|
|
|
|
{
|
|
|
|
if( !( --mnPauseTimeout ) )
|
|
|
|
RestartShow();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DrawPauseScene( TRUE );
|
|
|
|
pTimer->Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
2006-12-12 11:05:06 -06:00
|
|
|
IMPL_LINK( ShowWindow, MouseTimeoutHdl, Timer*, EMPTYARG )
|
2006-07-10 05:23:06 -05:00
|
|
|
{
|
|
|
|
if( mbMouseCursorHidden )
|
|
|
|
{
|
|
|
|
// not enough mouse movements since first recording so
|
|
|
|
// cancle show mouse pointer for now
|
|
|
|
mnFirstMouseMove = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// mouse has been idle to long, hide pointer
|
|
|
|
ShowPointer( FALSE );
|
|
|
|
mbMouseCursorHidden = true;
|
|
|
|
}
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( ShowWindow, EventHdl, VclWindowEvent*, pEvent )
|
|
|
|
{
|
|
|
|
if( mbMouseAutoHide )
|
|
|
|
{
|
|
|
|
if (pEvent->GetId() == VCLEVENT_WINDOW_SHOW)
|
|
|
|
{
|
|
|
|
maMouseTimer.SetTimeout( HIDE_MOUSE_TIMEOUT );
|
|
|
|
maMouseTimer.Start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0L;
|
|
|
|
}
|
2004-11-26 13:20:03 -06:00
|
|
|
|
|
|
|
void ShowWindow::SetPresentationArea( const Rectangle& rPresArea )
|
|
|
|
{
|
|
|
|
maPresArea = rPresArea;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end of namespace sd
|