summaryrefslogtreecommitdiff
path: root/src/plain.hpp
blob: 8863c4ec9228d971e64225727280baf7150a45a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#ifndef TEXO_INCLUDED_PLAIN
#define TEXO_INCLUDED_PLAIN

#include "exporter.hpp"
#include "importer.hpp"
#include "producer.hpp"


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Texo Plain Producer
 */
class TexoProducerPlain: public TexoProducer {
public:
    TexoProducerPlain(TexoExporter &exporter);

    bool End();

    bool Put(char c);

    bool Paragraph();
    bool Quote();

    bool PutHorizontalRule();

private:
    bool quoted;
    bool newline;
    bool nospace;
};


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Texo Plain Importer
 */
class TexoImporterPlain: public TexoImporter {
public:
    TexoImporterPlain(TexoProducer &producer);


protected:
    bool TrueEnd();


    bool TruePut(char c);


private:
    enum State {
        text,
        newline,
        paragraph,
        quote_pre,
        quote,
        quote_newline,
        rule,
        paragraph_rule
    } state;

    bool Text(char c);
    bool Newline(char c);
    bool Paragraph(char c);
    bool QuotePre(char c);
    bool Quote(char c);
    bool QuoteNewline(char c);
    bool Rule(char c);
    bool ParagraphRule(char c);

    int dash_count;
};


#endif