diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-04-11 19:25:05 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-04-11 19:25:05 +0000 |
commit | fec87b550340e919fa6b5450b9ef20277b38a0fd (patch) | |
tree | f56aaf476a7eb27cbf914873448fb5cca4d86113 /avmedia/inc | |
parent | 23f9d7620d600ec31025da4f810ffc998af09245 (diff) |
INTEGRATION: CWS hedaburemove01 (1.1.2); FILE ADDED
2006/12/13 16:25:32 vg 1.1.2.1: #i72503# gathered global includes in one place
Diffstat (limited to 'avmedia/inc')
-rw-r--r-- | avmedia/inc/avmedia/mediaplayer.hxx | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/avmedia/inc/avmedia/mediaplayer.hxx b/avmedia/inc/avmedia/mediaplayer.hxx new file mode 100644 index 000000000000..7ea3d75de5ce --- /dev/null +++ b/avmedia/inc/avmedia/mediaplayer.hxx @@ -0,0 +1,110 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: mediaplayer.hxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: vg $ $Date: 2007-04-11 20:25:05 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 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 + * + ************************************************************************/ + +#ifndef _AVMEDIA_MEDIACHILD_HXX +#define _AVMEDIA_MEDIACHILD_HXX + +#ifndef _SFXCTRLITEM_HXX +#include <sfx2/ctrlitem.hxx> +#endif +#ifndef _SFXDOCKWIN_HXX +#include <sfx2/dockwin.hxx> +#endif +#ifndef _URLOBJ_HXX +#include <tools/urlobj.hxx> +#endif + +// ----------- +// - Defines - +// ----------- + +#define AVMEDIA_MEDIAWINDOW() \ +(static_cast< ::avmedia::MediaFloater* >( ( \ +SfxViewFrame::Current() && SfxViewFrame::Current()->GetChildWindow(::avmedia::MediaPlayer::GetChildWindowId())) ? \ +SfxViewFrame::Current()->GetChildWindow(::avmedia::MediaPlayer::GetChildWindowId())->GetWindow() : \ +NULL)) + +namespace avmedia +{ + +// --------------- +// - MediaPlayer - +// --------------- + +class MediaPlayer : public SfxChildWindow +{ +public: + MediaPlayer( Window*, USHORT, SfxBindings*, SfxChildWinInfo* ); + ~MediaPlayer(); + + SFX_DECL_CHILDWINDOW( MediaPlayer ); +}; + +// ---------------- +// - MediaFloater - +// ---------------- + +class MediaWindow; + +class MediaFloater : public SfxDockingWindow +{ +public: + + MediaFloater( SfxBindings* pBindings, SfxChildWindow* pCW, Window* pParent ); + ~MediaFloater(); + + void setURL( const ::rtl::OUString& rURL, bool bPlayImmediately ); + const ::rtl::OUString& getURL() const; + + void dispatchCurrentURL(); + +protected: + + virtual void Resize(); + virtual void ToggleFloatingMode(); + +private: + + MediaWindow* mpMediaWindow; + Size maLastSize; + long mnDummy1; + long mnDummy2; + + void implInit(); +}; + +} + +#endif |