summaryrefslogtreecommitdiffstats
path: root/libtdepim/qutf7codec.h
blob: ef7000ff4ddce83dc9672902a32a34eb6f6a50ef (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
  qutf7codec.h

  A TQTextCodec for UTF-7 (rfc2152).
  Copyright (c) 2001 Marc Mutz <mutz@kde.org>
  See file COPYING for details

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License, version 2.0,
  as published by the Free Software Foundation.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  02110-1301, US

  As a special exception, permission is granted to use this plugin
  with any version of TQt by TrollTech AS, Norway. In this case, the
  use of this plugin doesn't cause the resulting executable to be
  covered by the GNU General Public License.
  This exception does not however invalidate any other reasons why the
  executable file might be covered by the GNU General Public License.
*/

#ifndef TQUTF7CODEC_H
#define TQUTF7CODEC_H

#include "tqtextcodec.h"

#include <tdepimmacros.h>

#ifndef TQT_NO_TEXTCODEC

/** @short A TQTextCodec for the UTF-7 transformation of Unicode.

    This is a TQTextCodec for the UTF-7 transformation of Unicode,
    described in RFC2152.

    Use it as you would use any other TQTextCodec. Only if you use the
    encoder directly (via makeEncoder), you should bear in mind
    that if your application needs the encoder to return to ASCII mode
    (like it's the case for RFC2047 mail header encoded words), you
    have to tell the encoder by requesting the encoding of a @em null
    TQString.

    @author Marc Mutz <mutz@kde.org> */

class KDE_EXPORT TQUtf7Codec : public TQTextCodec {
    bool encOpt, encLwsp;
public:
    TQUtf7Codec() : TQTextCodec() {}

    int mibEnum() const;
    const char* name() const;
    const char* mimeName() const;

    TQTextDecoder* makeDecoder() const;
    TQTextEncoder* makeEncoder() const;

    bool canEncode( TQChar ) const;
    bool canEncode( const TQString& ) const;

    int heuristicContentMatch( const char* chars, int len ) const;
};

/** This is a version of @ref TQUtf7Codec, which should only be used in
    MIME transfer. It differs from @ref TQUtf7Codec only in that the
    encoder escapes additional characters (the RFC2152 "optional
    direct set"), which might not be allowed in RFC822/RFC2047 header
    fields.

    You should only use this codec for @em encoding, since it's output
    is pure UTF-7 and can equally well be decoded by @ref TQUtf7Codec's
    decoder.

    To distinguish between the two variants, this class has MIB enum
    -1012 (the nagative of UTF-7) and the somewhat awkward name
    "X-QT-UTF-7-STRICT". The MIME preferred charset name is still
    "UTF-7", though.

    @short A variant of @ref TQUtf7Codec, which protectes certain
    characters in MIME transport
    @author Marc Mutz <mutz@kde.org> */
class KDE_EXPORT TQStrictUtf7Codec : public TQUtf7Codec {
public:
  TQStrictUtf7Codec() : TQUtf7Codec() {}

  const char* name() const;
  int mibEnum() const;

  TQTextEncoder* makeEncoder() const;
};

#endif // TQT_NO_TEXTCODEC

#endif // TQUTF7CODEC_H