summaryrefslogtreecommitdiffstats
path: root/libkdepim/qutf7codec.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:57:02 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:57:02 -0600
commit2c2fbd828ca474671bb9e03681b30b115d8d6035 (patch)
tree526a9da418f8d3d7ccf515c37048d3dfc80f2843 /libkdepim/qutf7codec.h
parentf0610eece3676b6fe99f42cf4ef2b19a39a5c4e8 (diff)
downloadtdepim-2c2fbd828ca474671bb9e03681b30b115d8d6035.tar.gz
tdepim-2c2fbd828ca474671bb9e03681b30b115d8d6035.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'libkdepim/qutf7codec.h')
-rw-r--r--libkdepim/qutf7codec.h96
1 files changed, 0 insertions, 96 deletions
diff --git a/libkdepim/qutf7codec.h b/libkdepim/qutf7codec.h
deleted file mode 100644
index 4057d276c..000000000
--- a/libkdepim/qutf7codec.h
+++ /dev/null
@@ -1,96 +0,0 @@
-/*
- 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 tqinvalidate 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