Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef __TXTWRITER_H__
20 #define __TXTWRITER_H__
24 //////////////////////////////////////////////////////////////////////////////////////////////
25 //////////////////////////////////////////////////////////////////////////////////////////////
26 // MTextWriter interface
29 MTextWriter class is an interface, implemented by TParagraphTextWriter and
30 TLineTextWriter classes. It offers two functions:
31 1) void WriteL(TText aChar) - to output a single character.
32 2) void FlushL() - if the implementations have stored some of the incomming characters
33 for further processing, they will be immediately flushed to the output.
34 They are not supposed to be called directly. MTextWriter class, together with TSLBTransaltor,
35 MOutputChar, TParagraphTextWriter and TLineTextWriter classes builds a framework, used for
36 correct filtering of the 0x0D and 0x0A characters and translating them to line breaks or spaces,
37 depending of the text file organisation.
43 virtual void WriteL(TText aChar) = 0;
49 //////////////////////////////////////////////////////////////////////////////////////////////
50 //////////////////////////////////////////////////////////////////////////////////////////////
51 // MOutputChar interface
54 MOutputChar interface offers "void OutputCharL(TText aChar)" method, which gets as an input
55 character, which may be a line break or something else, but not 0x0D or 0x0A characters, which
56 were filtered earlier.
62 virtual void OutputCharL(TText aChar) = 0;
65 //////////////////////////////////////////////////////////////////////////////////////////////
66 //////////////////////////////////////////////////////////////////////////////////////////////
67 // TSLBTransaltor class
70 TSLBTransaltor class offers functionality for processing a stream of characters, filtering
71 0x0D and 0x0A characters or (0x0D 0x0A) combination, and transating them to single line breaks.
72 It sends translated characters for a further processing using MTextWriter::WriteL() call.
73 The translation rules are:
76 - 0x0D 0x0A - line break;
82 inline TSLBTransaltor(MTextWriter& aTextWriter);
83 void ProcessL(TText aChar);
86 MTextWriter& iTextWriter;
90 //////////////////////////////////////////////////////////////////////////////////////////////
91 //////////////////////////////////////////////////////////////////////////////////////////////
92 // TParagraphTextWriter class
95 TParagraphTextWriter class is a concrete implementation of MTextWriter interface.
96 It is used to translate line breaks in the input sequence to paragraph delimiters.
97 Every line break from the input is replaced with paragraph delimiter in the output.
98 MOutputChar interface is used for the output.
101 NONSHARABLE_CLASS(TParagraphTextWriter) : public MTextWriter
104 inline TParagraphTextWriter(MOutputChar& aOutputChar);
105 virtual void WriteL(TText aChar);
107 MOutputChar& iOutputChar;
110 //////////////////////////////////////////////////////////////////////////////////////////////
111 //////////////////////////////////////////////////////////////////////////////////////////////
112 // TLineTextWriter class
115 TLineTextWriter class is a concrete implementation of MTextWriter interface.
116 It is used to translate line breaks in the input sequence to paragraph delimiters or spaces.
117 The translation rules are:
118 - single line break - space;
119 - double line break - paragraph delimiter;
120 MOutputChar interface is used for the output.
123 NONSHARABLE_CLASS(TLineTextWriter) : public MTextWriter
126 inline TLineTextWriter(MOutputChar& aOutputChar);
127 virtual void WriteL(TText aChar);
128 virtual void FlushL();
130 MOutputChar& iOutputChar;
135 #include "TxtWriter.inl"
137 #endif //__TXTWRITER_H__