Update ooo320-m1
[ooovba.git] / xml2cmp / source / inc / textbuff.h
blob1150cdd395469aa1ddf2bbf069061297f8689a94
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: textbuff.h,v $
10 * $Revision: 1.3 $
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 ************************************************************************/
31 #ifndef CTLS_TEXTBUFF_H
32 #define CTLS_TEXTBUFF_H
34 #include "textfile.h"
37 typedef struct TextBuffer
39 char * dpText;
40 intt nSize;
42 intt nPosition;
44 } TextBuffer;
46 #define TextBuffer_THIS TextBuffer * pThis
49 #define ENDS '\0'
50 #define ENDL '\n'
52 typedef enum E_TB_Relation
54 tb_begin,
55 tb_cur,
56 tb_end
57 } E_TB_Relation;
60 void TextBuffer_CTOR( TextBuffer_THIS,
61 intt i_nSize );
62 void TextBuffer_DTOR( TextBuffer_THIS );
63 void TB_Resize( TextBuffer_THIS,
64 intt i_nNewSize );
66 Bool TB_oin( TextBuffer_THIS, /** operator>>(char *) */
67 char * i_pText );
68 Bool TB_oinChar( TextBuffer_THIS, /** operator>>(char) */
69 char i_cChar );
70 Bool TB_oinFile( TextBuffer_THIS, /** operator>>(TextFile*) */
71 TextFile * i_pFile );
72 void TB_opp( TextBuffer_THIS ); /** operator++ */
74 intt TB_Goto( TextBuffer_THIS,
75 intt i_nPosition,
76 E_TB_Relation i_nRelation ); /** tb_begin, tb_cur, tb_end */
79 char * TB_Text( TextBuffer_THIS );
80 char TB_CurChar( TextBuffer_THIS );
81 char * TB_CurCharPtr( TextBuffer_THIS );
82 intt TB_Size( TextBuffer_THIS );
83 intt TB_Position( TextBuffer_THIS );
84 Bool TB_EndOfBuffer( TextBuffer_THIS );
87 #endif