2005-02-17 02:45:40 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 00:44:43 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2005-02-17 02:45:40 -06:00
|
|
|
*
|
2005-09-09 00:44:43 -05:00
|
|
|
* $RCSfile: IdleDetection.cxx,v $
|
2005-02-17 02:45:40 -06:00
|
|
|
*
|
2008-04-03 08:52:30 -05:00
|
|
|
* $Revision: 1.11 $
|
2005-02-17 02:45:40 -06:00
|
|
|
*
|
2008-04-03 08:52:30 -05:00
|
|
|
* last change: $Author: kz $ $Date: 2008-04-03 14:52:30 $
|
2005-02-17 02:45:40 -06:00
|
|
|
*
|
2005-09-09 00:44:43 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2005-02-17 02:45:40 -06:00
|
|
|
*
|
|
|
|
*
|
2005-09-09 00:44:43 -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
|
2005-02-17 02:45:40 -06:00
|
|
|
*
|
2005-09-09 00:44:43 -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.
|
2005-02-17 02:45:40 -06:00
|
|
|
*
|
2005-09-09 00:44:43 -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.
|
2005-02-17 02:45:40 -06:00
|
|
|
*
|
2005-09-09 00:44:43 -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
|
2005-02-17 02:45:40 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 13:21:53 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sd.hxx"
|
|
|
|
|
2005-02-17 02:45:40 -06:00
|
|
|
#include "tools/IdleDetection.hxx"
|
|
|
|
|
|
|
|
#include "ViewShell.hxx"
|
|
|
|
#include "slideshow.hxx"
|
|
|
|
#include "ViewShellBase.hxx"
|
|
|
|
|
2006-01-19 05:56:19 -06:00
|
|
|
#include <vcl/window.hxx>
|
2005-02-17 02:45:40 -06:00
|
|
|
#include <sfx2/viewfrm.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/frame/XFrame.hdl>
|
|
|
|
|
2006-11-14 07:37:27 -06:00
|
|
|
#ifndef _SV_SVAPP_HXX
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#endif
|
|
|
|
|
2005-02-17 02:45:40 -06:00
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
|
|
|
namespace sd { namespace tools {
|
|
|
|
|
|
|
|
|
2006-01-19 05:56:19 -06:00
|
|
|
sal_Int32 IdleDetection::GetIdleState (const ::Window* pWindow)
|
2005-02-17 02:45:40 -06:00
|
|
|
{
|
2006-01-19 05:56:19 -06:00
|
|
|
sal_Int32 nResult (CheckInputPending() | CheckSlideShowRunning());
|
|
|
|
if (pWindow != NULL)
|
|
|
|
nResult |= CheckWindowPainting(*pWindow);
|
|
|
|
return nResult;
|
2005-02-17 02:45:40 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sal_Int32 IdleDetection::CheckInputPending (void)
|
|
|
|
{
|
2005-10-19 06:26:43 -05:00
|
|
|
if (GetpApp()->AnyInput(INPUT_MOUSE | INPUT_KEYBOARD | INPUT_PAINT))
|
2005-02-17 02:45:40 -06:00
|
|
|
return IDET_SYSTEM_EVENT_PENDING;
|
|
|
|
else
|
|
|
|
return IDET_IDLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sal_Int32 IdleDetection::CheckSlideShowRunning (void)
|
|
|
|
{
|
|
|
|
sal_Int32 eResult (IDET_IDLE);
|
|
|
|
|
|
|
|
bool bIsSlideShowShowing = false;
|
|
|
|
|
|
|
|
// Iterate over all view frames.
|
|
|
|
SfxViewFrame* pViewFrame = SfxViewFrame::GetFirst();
|
|
|
|
for (pViewFrame = SfxViewFrame::GetFirst();
|
|
|
|
pViewFrame!=NULL && !bIsSlideShowShowing;
|
|
|
|
pViewFrame = SfxViewFrame::GetNext(*pViewFrame))
|
|
|
|
{
|
2006-02-09 07:06:31 -06:00
|
|
|
// Ignore the current frame when it does not exist, is not valid, or
|
|
|
|
// is not active.
|
|
|
|
bool bIgnoreFrame (true);
|
|
|
|
if (pViewFrame->GetFrame() != NULL)
|
2005-02-17 02:45:40 -06:00
|
|
|
{
|
2006-02-09 07:06:31 -06:00
|
|
|
uno::Reference<frame::XFrame> xFrame (pViewFrame->GetFrame()->GetFrameInterface());
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (xFrame.is() && xFrame->isActive())
|
|
|
|
bIgnoreFrame = false;
|
|
|
|
}
|
|
|
|
catch (uno::RuntimeException e)
|
|
|
|
{
|
|
|
|
(void) e;
|
|
|
|
}
|
2005-02-17 02:45:40 -06:00
|
|
|
}
|
2006-02-09 07:06:31 -06:00
|
|
|
if (bIgnoreFrame)
|
|
|
|
continue;
|
2005-02-17 02:45:40 -06:00
|
|
|
|
|
|
|
// Get sd::ViewShell from active frame.
|
|
|
|
ViewShellBase* pBase = ViewShellBase::GetViewShellBase(pViewFrame);
|
|
|
|
if (pBase != NULL)
|
|
|
|
{
|
2008-04-03 08:52:30 -05:00
|
|
|
rtl::Reference< SlideShow > xSlideShow( SlideShow::GetSlideShow( *pBase ) );
|
|
|
|
if( xSlideShow.is() && xSlideShow->isRunning() )
|
2005-02-17 02:45:40 -06:00
|
|
|
{
|
2008-04-03 08:52:30 -05:00
|
|
|
if (xSlideShow->isFullScreen())
|
|
|
|
eResult |= IDET_FULL_SCREEN_SHOW_ACTIVE;
|
|
|
|
else
|
|
|
|
eResult |= IDET_WINDOW_SHOW_ACTIVE;
|
2005-02-17 02:45:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return eResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-01-19 05:56:19 -06:00
|
|
|
|
|
|
|
|
|
|
|
sal_Int32 IdleDetection::CheckWindowPainting (const ::Window& rWindow)
|
|
|
|
{
|
|
|
|
if (rWindow.IsInPaint())
|
|
|
|
return IDET_WINDOW_PAINTING;
|
|
|
|
else
|
|
|
|
return IDET_IDLE;
|
|
|
|
}
|
|
|
|
|
2005-02-17 02:45:40 -06:00
|
|
|
} } // end of namespace ::sd::tools
|