logsui/logscntfinder/inc/logspredictivethai12keytranslator.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 27 May 2010 12:51:53 +0300
changeset 4 e52d42f9500c
parent 2 7119b73b84d6
child 21 2f0af9ba7665
permissions -rw-r--r--
Revision: 201019 Kit: 2010121

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/

#ifndef LOGSPREDICTIVETHAI12KEYTRANSLATOR_H
#define LOGSPREDICTIVETHAI12KEYTRANSLATOR_H

#include <QObject>
#include <QChar>
#include <QHash>

#include "logspredictive12keytranslator.h"

class HbKeymap;
class HbInputLanguage;


//Name: TIS-620
//MIBenum: 2259
//Source: Thai Industrial Standards Institute (TISI) [Tantsetthi]
const int MIBenumThai = 2259;



/**
 * translator for Thai ITU-T 12 keys keyboard 
 *
 */
class LogsPredictiveThai12KeyTranslator : public LogsPredictive12KeyTranslator 
{

public: 

    explicit LogsPredictiveThai12KeyTranslator();
    explicit LogsPredictiveThai12KeyTranslator( const HbInputLanguage& lang );
    ~LogsPredictiveThai12KeyTranslator();
    
public: //from LogsPredictiveTranslator
    
    const QChar translateChar( const QChar character, bool& ok ) const;
    QStringList nameTokens( const QString& name ) const;
    inline int mib() const {return MIBenumThai;}
  
private:
    
    bool isIgnored( const QChar character ) const;
    
private:
    
    friend class UT_LogsPredictiveThai12KeyTranslator;
    
};

#endif //LOGSPREDICTIVETHAI12KEYTRANSLATOR_H