1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XViewCursor.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_view_XViewCursor_idl__
31 #define __com_sun_star_view_XViewCursor_idl__
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include
<com
/sun
/star
/uno
/XInterface.idl
>
38 //=============================================================================
40 module com
{ module sun
{ module star
{ module view
{
42 //=============================================================================
44 /** makes it possible to move a cursor up/down/left/right within laid out text.
46 @see com::sun::star::table::CellCursor
47 @see com::sun::star::text::TextCursor
48 @see com::sun::star::view::XLineCursor
50 published
interface XViewCursor
: com
::sun
::star
::uno
::XInterface
52 //-------------------------------------------------------------------------
53 /** moves the cursor the specified number of lines down.
56 specifies the number of lines to go down.
59 determines whether the text range of the cursor is expanded (<TRUE/>)
60 or the cursor will be just at the new position after the move (<FALSE/>).
63 <TRUE/> if the cursor was moved,
64 or <FALSE/> if it was already in the bottom row.
66 boolean goDown
( [in] short nCount
, [in] boolean bExpand
);
68 //-------------------------------------------------------------------------
69 /** moves the cursor the specified number of lines up.
72 specifies the number of lines to go up.
75 determines whether the text range of the cursor is expanded (<TRUE/>)
78 <TRUE/> if the cursor was moved,
79 or <FALSE/> if it was already in the top row.
81 boolean goUp
( [in] short nCount
, [in] boolean bExpand
);
83 //-------------------------------------------------------------------------
84 /** moves the cursor the specified number of characters to the left.
87 specifies the number of characters to move.
90 determines whether the text range of the cursor is expanded (<TRUE/>)
93 <TRUE/> if the cursor was moved,
94 or <FALSE/> if it was already at the leftmost position.
96 boolean goLeft
( [in] short nCount
, [in] boolean bExpand
);
98 //-------------------------------------------------------------------------
99 /** moves the cursor the specified number of characters to the right.
102 specifies the number of characters to move.
105 determines whether the text range of the cursor is expanded (<TRUE/>)
108 <TRUE/> if the cursor was moved,
109 or <FALSE/> if it was already at the rightmost position.
111 boolean goRight
( [in] short nCount
, [in] boolean bExpand
);
115 //=============================================================================