2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 16:55:11 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 16:55:11 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 16:55:11 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 16:55:11 -05:00
|
|
|
* $RCSfile: unovwcrs.cxx,v $
|
|
|
|
* $Revision: 1.10 $
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 16:55:11 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 16:55:11 -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.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 16:55:11 -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).
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2008-04-10 16:55:11 -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.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 13:29:23 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sd.hxx"
|
2000-09-18 11:07:07 -05:00
|
|
|
#include <com/sun/star/text/XTextViewCursor.hpp>
|
|
|
|
#include <com/sun/star/view/XScreenCursor.hpp>
|
|
|
|
#include <sfx2/request.hxx>
|
|
|
|
#include <vos/mutex.hxx>
|
2004-01-20 05:36:52 -06:00
|
|
|
#include "View.hxx"
|
2001-03-19 02:53:25 -06:00
|
|
|
#ifndef SVX_LIGHT
|
2004-01-20 05:36:52 -06:00
|
|
|
#ifndef SD_DRAW_DOC_SHELL_HXX
|
|
|
|
#include "DrawDocShell.hxx"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#include "ViewShell.hxx"
|
2004-11-26 13:29:42 -06:00
|
|
|
#include "slideshow.hxx"
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
#include <cppuhelper/implbase2.hxx>
|
2006-11-14 07:39:34 -06:00
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
using namespace ::vos;
|
|
|
|
using namespace ::rtl;
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
2004-01-20 05:36:52 -06:00
|
|
|
class SdXTextViewCursor
|
|
|
|
: public ::cppu::WeakImplHelper2<
|
|
|
|
text::XTextViewCursor,
|
|
|
|
view::XScreenCursor >
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
public:
|
2004-01-20 05:36:52 -06:00
|
|
|
SdXTextViewCursor(::sd::View* pVw) throw();
|
2000-09-18 11:07:07 -05:00
|
|
|
virtual ~SdXTextViewCursor() throw();
|
|
|
|
|
|
|
|
//XTextViewCursor
|
|
|
|
virtual sal_Bool SAL_CALL isVisible(void) throw( uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL setVisible(sal_Bool bVisible) throw( uno::RuntimeException );
|
|
|
|
virtual awt::Point SAL_CALL getPosition(void) throw( uno::RuntimeException );
|
|
|
|
|
|
|
|
//XTextCursor
|
|
|
|
virtual void SAL_CALL collapseToStart(void) throw( uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL collapseToEnd(void) throw( uno::RuntimeException );
|
|
|
|
virtual sal_Bool SAL_CALL isCollapsed(void) throw( uno::RuntimeException );
|
|
|
|
virtual sal_Bool SAL_CALL goLeft(sal_Int16 nCount, sal_Bool Expand) throw( uno::RuntimeException );
|
|
|
|
virtual sal_Bool SAL_CALL goRight(sal_Int16 nCount, sal_Bool Expand) throw( uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL gotoStart(sal_Bool Expand) throw( uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL gotoEnd(sal_Bool Expand) throw( uno::RuntimeException );
|
2001-09-13 07:00:14 -05:00
|
|
|
virtual void SAL_CALL gotoRange(const uno::Reference< text::XTextRange > & rRange, sal_Bool bExpand ) throw (::com::sun::star::uno::RuntimeException);
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
//XTextRange
|
|
|
|
virtual uno::Reference< text::XText > SAL_CALL getText(void) throw( uno::RuntimeException );
|
|
|
|
virtual uno::Reference< text::XTextRange > SAL_CALL getStart(void) throw( uno::RuntimeException );
|
|
|
|
virtual uno::Reference< text::XTextRange > SAL_CALL getEnd(void) throw( uno::RuntimeException );
|
|
|
|
virtual OUString SAL_CALL getString(void) throw( uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL setString(const OUString& aString) throw( uno::RuntimeException );
|
|
|
|
|
|
|
|
//XScreenCursor
|
|
|
|
virtual sal_Bool SAL_CALL screenDown(void) throw( uno::RuntimeException );
|
|
|
|
virtual sal_Bool SAL_CALL screenUp(void) throw( uno::RuntimeException );
|
|
|
|
|
|
|
|
void Invalidate() { mpView = 0; }
|
2004-01-20 05:36:52 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
::sd::View* mpView;
|
2000-09-18 11:07:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-01-20 05:36:52 -06:00
|
|
|
text::XTextViewCursor* CreateSdXTextViewCursor(::sd::View* mpView )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
return new SdXTextViewCursor( mpView );
|
|
|
|
}
|
|
|
|
|
2004-01-20 05:36:52 -06:00
|
|
|
SdXTextViewCursor::SdXTextViewCursor(::sd::View* pSdView ) throw()
|
|
|
|
: mpView(pSdView)
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SdXTextViewCursor::~SdXTextViewCursor() throw()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Bool SdXTextViewCursor::isVisible(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
|
2006-12-12 12:03:49 -06:00
|
|
|
void SdXTextViewCursor::setVisible(sal_Bool ) throw( uno::RuntimeException )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
awt::Point SdXTextViewCursor::getPosition(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
return awt::Point();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SdXTextViewCursor::collapseToStart(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
void SdXTextViewCursor::collapseToEnd(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Bool SdXTextViewCursor::isCollapsed(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
return sal_True;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-12-12 12:03:49 -06:00
|
|
|
sal_Bool SdXTextViewCursor::goLeft(sal_Int16 , sal_Bool ) throw( uno::RuntimeException )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
|
2006-12-12 12:03:49 -06:00
|
|
|
sal_Bool SdXTextViewCursor::goRight(sal_Int16, sal_Bool ) throw( uno::RuntimeException )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
|
2006-12-12 12:03:49 -06:00
|
|
|
void SdXTextViewCursor::gotoRange(const uno::Reference< text::XTextRange > &, sal_Bool ) throw (::com::sun::star::uno::RuntimeException)
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
}
|
|
|
|
|
2006-12-12 12:03:49 -06:00
|
|
|
void SdXTextViewCursor::gotoStart(sal_Bool ) throw( uno::RuntimeException )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
}
|
|
|
|
|
2006-12-12 12:03:49 -06:00
|
|
|
void SdXTextViewCursor::gotoEnd(sal_Bool ) throw( uno::RuntimeException )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Bool SdXTextViewCursor::screenDown(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
OGuard aGuard(Application::GetSolarMutex());
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
|
|
|
|
sal_Bool SdXTextViewCursor::screenUp(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
OGuard aGuard(Application::GetSolarMutex());
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Reference< text::XText > SdXTextViewCursor::getText(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
return uno::Reference< text::XText > ();
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Reference< text::XTextRange > SdXTextViewCursor::getStart(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
return uno::Reference< text::XTextRange > ();
|
|
|
|
}
|
|
|
|
|
|
|
|
uno::Reference< text::XTextRange > SdXTextViewCursor::getEnd(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
return uno::Reference< text::XTextRange > ();
|
|
|
|
}
|
|
|
|
|
|
|
|
OUString SdXTextViewCursor::getString(void) throw( uno::RuntimeException )
|
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
return OUString();
|
|
|
|
}
|
|
|
|
|
2006-12-12 12:03:49 -06:00
|
|
|
void SdXTextViewCursor::setString(const OUString& ) throw( uno::RuntimeException )
|
2000-09-18 11:07:07 -05:00
|
|
|
{
|
|
|
|
DBG_WARNING("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
|