Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

QGsmCodec Class Reference
[QtBaseModule]

The QGsmCodec class represents the text codec for the GSM 7-bit encoding of Latin-1 More...

    #include <QGsmCodec>

Inherits QTextCodec.

Public Functions

Static Public Members

  • 13 static public members inherited from QTextCodec

Protected Functions

  • virtual QByteArray convertFromUnicode ( const QChar * in, int length, ConverterState * state ) const
  • virtual QString convertToUnicode ( const char * in, int length, ConverterState * state ) const

Detailed Description

The QGsmCodec class represents the text codec for the GSM 7-bit encoding of Latin-1

The GSM specifications for SMS use a compact 7-bit encoding to represent Latin-1 characters, compared to the more usual 8-bit ISO-8859-1 encoding used on many computer systems.

The QGsmCodec class enables conversion back and forth between the GSM encoding and the normal Unicode encoding used by Qtopia.

Application programs will rarely need to use this class, because the QSMSMessage class automatically converts between 7-bit and Unicode encodings as necessary.

If an application program does need to use this class, it should call QAtUtils::codec() to obtain an instance of the codec. Constructing QGsmCodec objects directly is not recommended, due to how QTextCodec registers and deregisters codec implementations.

The following example converts the input string into the compact 7-bit encoding within output.

    QString input = "...";
    QByteArray output = QAtUtils::codec("gsm")->fromUnicode(input);

This codec implementation conforms to 3GPP TS 03.38 and 3GPP TS 07.05, including the extension tables from 3GPP TS 03.38.

See also QSMSMessage and QAtUtils::codec().


Member Function Documentation

QGsmCodec::QGsmCodec ( bool noLoss = false )

Construct a new GSM text codec. If noLoss is true, then the codec should not encode characters that may result in an ambiguous decoding.

This constructor should not be used directly. Instead, call QAtUtils::codec() to obtain an instance of this codec implementation. This is due to how QTextCodec registers and deregisters codec implementations. The codec names to use with QAtUtils::codec() are gsm and gsm-noloss, for the regular and no-loss versions of the codec.

See also QAtUtils::codec().

QGsmCodec::~QGsmCodec ()

Destruct a GSM text codec. This should not be used directly by application programs.

QByteArray QGsmCodec::convertFromUnicode ( const QChar * in, int length, ConverterState * state ) const   [virtual protected]

Convert the length characters at in into 7-bit GSM. The invalidChars field of state will be incremented if there are invalid characters within in.

Reimplemented from QTextCodec.

See also convertToUnicode().

QString QGsmCodec::convertToUnicode ( const char * in, int length, ConverterState * state ) const   [virtual protected]

Convert the length bytes at in into Unicode. The invalidChars field of state will be incremented if there are invalid characters within in.

Reimplemented from QTextCodec.

See also convertFromUnicode().

int QGsmCodec::mibEnum () const   [virtual]

Returns the MIB value associated with this codec.

Reimplemented from QTextCodec.

QByteArray QGsmCodec::name () const   [virtual]

Returns the name of this codec.

Reimplemented from QTextCodec.

char QGsmCodec::singleFromUnicode ( QChar c )   [static]

Convert a single Unicode character c into GSM 7-bit. Returns 0x10 if the character cannot be mapped. Use of this function is discouraged.

Note: this will not work for two-byte GSM encodings. Use twoByteFromUnicode() instead.

See also singleToUnicode() and twoByteFromUnicode().

QChar QGsmCodec::singleToUnicode ( char ch )   [static]

Convert a single GSM 7-bit character ch into Unicode. Use of this function is discouraged.

Note: this will not work for two-byte GSM encodings. Use twoByteToUnicode() instead.

See also singleFromUnicode() and twoByteToUnicode().

unsigned short QGsmCodec::twoByteFromUnicode ( QChar ch )   [static]

Convert a Unicode character ch into its GSM-encoded counterpart. The return value will be greater than 256 if the Unicode character should be encoded as two bytes.

See also twoByteToUnicode().

QChar QGsmCodec::twoByteToUnicode ( unsigned short ch )   [static]

Convert a single GSM-encoded character into its Unicode counterpart. If ch is greater than 256, then it represents a two-byte sequence.

See also twoByteFromUnicode().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 85
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 19
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le blog Digia au hasard

Logo

Créer des applications avec un style Metro avec Qt, exemples en QML et C++, un article de Digia Qt traduit par Thibaut Cuvelier

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt qtextended4.4
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web