xref: /AOO41X/main/winaccessibility/source/UAccCOM/AccTextBase.h (revision 5fdc4257b5e43545f8f7841d9e8303d3a99b1714)
1*5fdc4257SSteve Yin /*************************************************************************
2*5fdc4257SSteve Yin  *
3*5fdc4257SSteve Yin  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*5fdc4257SSteve Yin  *
5*5fdc4257SSteve Yin  * Copyright IBM Corporation 2010.
6*5fdc4257SSteve Yin  * Copyright 2000, 2010 Oracle and/or its affiliates.
7*5fdc4257SSteve Yin  *
8*5fdc4257SSteve Yin  * OpenOffice.org - a multi-platform office productivity suite
9*5fdc4257SSteve Yin  *
10*5fdc4257SSteve Yin  * This file is part of OpenOffice.org.
11*5fdc4257SSteve Yin  *
12*5fdc4257SSteve Yin  * OpenOffice.org is free software: you can redistribute it and/or modify
13*5fdc4257SSteve Yin  * it under the terms of the GNU Lesser General Public License version 3
14*5fdc4257SSteve Yin  * only, as published by the Free Software Foundation.
15*5fdc4257SSteve Yin  *
16*5fdc4257SSteve Yin  * OpenOffice.org is distributed in the hope that it will be useful,
17*5fdc4257SSteve Yin  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18*5fdc4257SSteve Yin  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19*5fdc4257SSteve Yin  * GNU Lesser General Public License version 3 for more details
20*5fdc4257SSteve Yin  * (a copy is included in the LICENSE file that accompanied this code).
21*5fdc4257SSteve Yin  *
22*5fdc4257SSteve Yin  * You should have received a copy of the GNU Lesser General Public License
23*5fdc4257SSteve Yin  * version 3 along with OpenOffice.org.  If not, see
24*5fdc4257SSteve Yin  * <http://www.openoffice.org/license.html>
25*5fdc4257SSteve Yin  * for a copy of the LGPLv3 License.
26*5fdc4257SSteve Yin  *
27*5fdc4257SSteve Yin  ************************************************************************/
28*5fdc4257SSteve Yin 
29*5fdc4257SSteve Yin // AccTextBase.h: interface for the CAccTextBase class.
30*5fdc4257SSteve Yin //
31*5fdc4257SSteve Yin //////////////////////////////////////////////////////////////////////
32*5fdc4257SSteve Yin 
33*5fdc4257SSteve Yin #if !defined(AFX_ACCTEXTBASE_H__B9AE05F6_E28B_4CF3_A8F2_EEE5D2E00B82__INCLUDED_)
34*5fdc4257SSteve Yin #define AFX_ACCTEXTBASE_H__B9AE05F6_E28B_4CF3_A8F2_EEE5D2E00B82__INCLUDED_
35*5fdc4257SSteve Yin 
36*5fdc4257SSteve Yin #if _MSC_VER > 1000
37*5fdc4257SSteve Yin #pragma once
38*5fdc4257SSteve Yin #endif // _MSC_VER > 1000
39*5fdc4257SSteve Yin 
40*5fdc4257SSteve Yin #define WNT
41*5fdc4257SSteve Yin 
42*5fdc4257SSteve Yin #include <com/sun/star/uno/reference.hxx>
43*5fdc4257SSteve Yin #include <com/sun/star/accessibility/XAccessibleText.hpp>
44*5fdc4257SSteve Yin #include "UNOXWrapper.h"
45*5fdc4257SSteve Yin 
46*5fdc4257SSteve Yin class ATL_NO_VTABLE CAccTextBase : public CUNOXWrapper
47*5fdc4257SSteve Yin {
48*5fdc4257SSteve Yin public:
49*5fdc4257SSteve Yin     CAccTextBase();
50*5fdc4257SSteve Yin     virtual ~CAccTextBase();
51*5fdc4257SSteve Yin 
52*5fdc4257SSteve Yin     // IAccessibleText
53*5fdc4257SSteve Yin public:
54*5fdc4257SSteve Yin     // IAccessibleText
55*5fdc4257SSteve Yin 
56*5fdc4257SSteve Yin     // Adds a text selection.
57*5fdc4257SSteve Yin     STDMETHOD(get_addSelection)(long startOffset, long endOffset);
58*5fdc4257SSteve Yin 
59*5fdc4257SSteve Yin     // Gets text attributes.
60*5fdc4257SSteve Yin     STDMETHOD(get_attributes)(long offset, long * startOffset, long * endOffset, BSTR * textAttributes);
61*5fdc4257SSteve Yin 
62*5fdc4257SSteve Yin     // Gets caret offset.
63*5fdc4257SSteve Yin     STDMETHOD(get_caretOffset)(long * offset);
64*5fdc4257SSteve Yin 
65*5fdc4257SSteve Yin     // Gets total number of characters.
66*5fdc4257SSteve Yin     STDMETHOD(get_characterCount)(long * nCharacters);
67*5fdc4257SSteve Yin 
68*5fdc4257SSteve Yin     // Gets bounding rect containing the glyph(s) representing the character
69*5fdc4257SSteve Yin     // at the specified text offset
70*5fdc4257SSteve Yin     STDMETHOD(get_characterExtents)(long offset, IA2CoordinateType coordType, long * x, long * y, long * width, long * height);
71*5fdc4257SSteve Yin 
72*5fdc4257SSteve Yin     // Gets number of active non-contiguous selections.
73*5fdc4257SSteve Yin     STDMETHOD(get_nSelections)(long * nSelections);
74*5fdc4257SSteve Yin 
75*5fdc4257SSteve Yin     // Gets bounding rect for the glyph at a certain point.
76*5fdc4257SSteve Yin     STDMETHOD(get_offsetAtPoint)(long x, long y, IA2CoordinateType coordType, long * offset);
77*5fdc4257SSteve Yin 
78*5fdc4257SSteve Yin     // Gets character offsets of N-th active text selection.
79*5fdc4257SSteve Yin     STDMETHOD(get_selection)(long selectionIndex, long * startOffset, long * endOffset);
80*5fdc4257SSteve Yin 
81*5fdc4257SSteve Yin     // Gets a range of text by offset NOTE: returned string may be longer
82*5fdc4257SSteve Yin     // than endOffset-startOffset bytes if text contains multi-byte characters.
83*5fdc4257SSteve Yin     STDMETHOD(get_text)(long startOffset, long endOffset, BSTR * text);
84*5fdc4257SSteve Yin 
85*5fdc4257SSteve Yin     // Gets a specified amount of text that ends before a specified offset.
86*5fdc4257SSteve Yin     STDMETHOD(get_textBeforeOffset)(long offset, IA2TextBoundaryType boundaryType, long * startOffset, long * endOffset, BSTR * text);
87*5fdc4257SSteve Yin 
88*5fdc4257SSteve Yin     // Gets a specified amount of text that spans the specified offset.
89*5fdc4257SSteve Yin     STDMETHOD(get_textAfterOffset)(long offset, IA2TextBoundaryType boundaryType, long * startOffset, long * endOffset, BSTR * text);
90*5fdc4257SSteve Yin 
91*5fdc4257SSteve Yin     // Gets a specified amount of text that starts after a specified offset.
92*5fdc4257SSteve Yin     STDMETHOD(get_textAtOffset)(long offset, IA2TextBoundaryType boundaryType, long * startOffset, long * endOffset, BSTR * text);
93*5fdc4257SSteve Yin 
94*5fdc4257SSteve Yin     // Unselects a range of text.
95*5fdc4257SSteve Yin     STDMETHOD(removeSelection)(long selectionIndex);
96*5fdc4257SSteve Yin 
97*5fdc4257SSteve Yin     // Moves text caret.
98*5fdc4257SSteve Yin     STDMETHOD(setCaretOffset)(long offset);
99*5fdc4257SSteve Yin 
100*5fdc4257SSteve Yin     // Changes the bounds of an existing selection.
101*5fdc4257SSteve Yin     STDMETHOD(setSelection)(long selectionIndex, long startOffset, long endOffset);
102*5fdc4257SSteve Yin 
103*5fdc4257SSteve Yin     // Gets total number of characters.
104*5fdc4257SSteve Yin     // NOTE: this may be different than the total number of bytes required
105*5fdc4257SSteve Yin     // to store the text, if the text contains multi-byte characters.
106*5fdc4257SSteve Yin     STDMETHOD(get_nCharacters)(long * nCharacters);
107*5fdc4257SSteve Yin 
108*5fdc4257SSteve Yin     STDMETHOD(get_newText)( IA2TextSegment *newText);
109*5fdc4257SSteve Yin 
110*5fdc4257SSteve Yin     STDMETHOD(get_oldText)( IA2TextSegment *oldText);
111*5fdc4257SSteve Yin 
112*5fdc4257SSteve Yin     // Makes specific part of string visible on screen.
113*5fdc4257SSteve Yin     STDMETHOD(scrollSubstringTo)(long startIndex, long endIndex,enum IA2ScrollType scrollType);
114*5fdc4257SSteve Yin     STDMETHOD(scrollSubstringToPoint)(long startIndex, long endIndex,enum IA2CoordinateType coordinateType, long x, long y );
115*5fdc4257SSteve Yin 
116*5fdc4257SSteve Yin     // Overide of IUNOXWrapper.
117*5fdc4257SSteve Yin     STDMETHOD(put_XInterface)(long pXInterface);
118*5fdc4257SSteve Yin 
119*5fdc4257SSteve Yin private:
120*5fdc4257SSteve Yin 
121*5fdc4257SSteve Yin     com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessibleText> pRXText;
122*5fdc4257SSteve Yin 
123*5fdc4257SSteve Yin     inline com::sun::star::accessibility::XAccessibleText* GetXInterface()
124*5fdc4257SSteve Yin     {
125*5fdc4257SSteve Yin         return pRXText.get();
126*5fdc4257SSteve Yin     }
127*5fdc4257SSteve Yin };
128*5fdc4257SSteve Yin 
129*5fdc4257SSteve Yin #endif // !defined(AFX_ACCTEXTBASE_H__B9AE05F6_E28B_4CF3_A8F2_EEE5D2E00B82__INCLUDED_)
130