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: textbuff.h,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 ************************************************************************/
31 #ifndef CTLS_TEXTBUFF_H
32 #define CTLS_TEXTBUFF_H
37 typedef struct TextBuffer
46 #define TextBuffer_THIS TextBuffer * pThis
52 typedef enum E_TB_Relation
60 void TextBuffer_CTOR( TextBuffer_THIS
,
62 void TextBuffer_DTOR( TextBuffer_THIS
);
63 void TB_Resize( TextBuffer_THIS
,
66 Bool
TB_oin( TextBuffer_THIS
, /** operator>>(char *) */
68 Bool
TB_oinChar( TextBuffer_THIS
, /** operator>>(char) */
70 Bool
TB_oinFile( TextBuffer_THIS
, /** operator>>(TextFile*) */
72 void TB_opp( TextBuffer_THIS
); /** operator++ */
74 intt
TB_Goto( TextBuffer_THIS
,
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
);