2004-01-20 03:38:53 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 13:31:35 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-01-20 03:38:53 -06:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-01-20 03:38:53 -06:00
|
|
|
*
|
2008-04-10 13:31:35 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-01-20 03:38:53 -06:00
|
|
|
*
|
2008-04-10 13:31:35 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-01-20 03:38:53 -06:00
|
|
|
*
|
2008-04-10 13:31:35 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-01-20 03:38:53 -06:00
|
|
|
*
|
2008-04-10 13:31:35 -05:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-01-20 03:38:53 -06:00
|
|
|
*
|
2008-04-10 13:31:35 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-01-20 03:38:53 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 12:33:30 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sd.hxx"
|
|
|
|
|
2004-01-20 03:38:53 -06:00
|
|
|
#include "AnimationChildWindow.hxx"
|
|
|
|
|
|
|
|
#include "app.hrc"
|
|
|
|
#include "animobjs.hxx"
|
|
|
|
#include "animobjs.hrc"
|
|
|
|
#include <sfx2/app.hxx>
|
|
|
|
#include <sfx2/childwin.hxx>
|
|
|
|
#include <sfx2/dockwin.hxx>
|
|
|
|
|
|
|
|
namespace sd {
|
|
|
|
|
|
|
|
SFX_IMPL_DOCKINGWINDOW(AnimationChildWindow, SID_ANIMATION_OBJECTS)
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
|*
|
|
|
|
|* Ableitung vom SfxChildWindow als "Behaelter" fuer Animator
|
|
|
|
|*
|
|
|
|
\************************************************************************/
|
|
|
|
|
|
|
|
AnimationChildWindow::AnimationChildWindow(
|
2006-12-12 09:56:50 -06:00
|
|
|
::Window* _pParent,
|
2004-01-20 03:38:53 -06:00
|
|
|
USHORT nId,
|
|
|
|
SfxBindings* pBindings,
|
|
|
|
SfxChildWinInfo* pInfo )
|
2006-12-12 09:56:50 -06:00
|
|
|
: SfxChildWindow( _pParent, nId )
|
2004-01-20 03:38:53 -06:00
|
|
|
{
|
|
|
|
AnimationWindow* pAnimWin = new AnimationWindow(
|
2006-12-12 09:56:50 -06:00
|
|
|
pBindings, this, _pParent, SdResId( FLT_WIN_ANIMATION ) );
|
2004-01-20 03:38:53 -06:00
|
|
|
pWindow = pAnimWin;
|
|
|
|
|
|
|
|
eChildAlignment = SFX_ALIGN_NOALIGNMENT;
|
|
|
|
|
|
|
|
pAnimWin->Initialize( pInfo );
|
|
|
|
/*
|
|
|
|
if ( pInfo->aSize.Width() != 0 && pInfo->aSize.Height() != 0 )
|
|
|
|
{
|
|
|
|
pWindow->SetPosSizePixel( pInfo->aPos, pInfo->aSize );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pWindow->SetPosPixel(SFX_APPWINDOW->OutputToScreenPixel(
|
|
|
|
SFX_APPWINDOW->GetClientAreaPixel().TopLeft()));
|
|
|
|
|
|
|
|
if ( pInfo->nFlags & SFX_CHILDWIN_ZOOMIN )
|
|
|
|
pAnimWin->ZoomIn();
|
|
|
|
|
|
|
|
pAnimWin->aFltWinSize = pWindow->GetSizePixel();
|
|
|
|
*/
|
|
|
|
SetHideNotDelete( TRUE );
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end of namespace sd
|