1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27#ifndef __ooo_vba_word_XSelection_idl__ 28#define __ooo_vba_word_XSelection_idl__ 29 30#ifndef __com_sun_star_uno_XInterface_idl__ 31#include <com/sun/star/uno/XInterface.idl> 32#endif 33 34#ifndef __ooo_vba_XHelperInterface_idl__ 35#include <ooo/vba/XHelperInterface.idl> 36#endif 37 38 39module ooo { module vba { module word { 40 41interface XRange; 42interface XParagraphFormat; 43interface XFind; 44interface XFont; 45interface XStyle; 46interface XHeaderFooter; 47interface XSelection 48{ 49 interface ooo::vba::XHelperInterface; 50 51 [attribute] string Text; 52 [attribute, readonly] XRange Range; 53 [attribute] XParagraphFormat ParagraphFormat; 54 [attribute, readonly] XFind Find; 55 [attribute] XStyle Style; 56 [attribute, readonly] XFont Font; 57 [attribute, readonly] XHeaderFooter HeaderFooter; 58 [attribute] long LanguageID; 59 [attribute] long Start; 60 [attribute] long End; 61 62 any Tables( [in] any Index ); 63 any Fields( [in] any Index ); 64 void TypeText( [in] string Text ); 65 void HomeKey( [in] any Unit, [in] any Extend ); 66 void EndKey( [in] any Unit, [in] any Extend ); 67 void Delete( [in] any Unit, [in] any Count ); 68 void MoveRight( [in] any Unit, [in] any Count, [in] any Extend ); 69 void MoveLeft( [in] any Unit, [in] any Count, [in] any Extend ); 70 void MoveDown( [in] any Unit, [in] any Count, [in] any Extend ); 71 void TypeParagraph(); 72 void InsertParagraph(); 73 void InsertParagraphBefore(); 74 void InsertParagraphAfter(); 75 void TypeBackspace(); 76 XRange GoTo( [in] any What, [in] any Which, [in] any Count, [in] any Name ); 77 any Information( [in] long Type ); 78 void InsertBreak( [in] any Type ); 79 any ShapeRange(); 80}; 81 82}; }; }; 83 84#endif 85 86 87