logsui/logscntfinder/inc/logspredictivetranslator.h
changeset 0 4a5361db8937
child 2 7119b73b84d6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/logsui/logscntfinder/inc/logspredictivetranslator.h	Tue May 04 12:39:37 2010 +0300
@@ -0,0 +1,61 @@
+/*
+* 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 LOGSPREDICTIVETRANSLATOR_H
+#define LOGSPREDICTIVETRANSLATOR_H
+
+#include <QObject>
+#include <QChar>
+
+class HbKeymap;
+
+/**
+ * predictive translator. Singelton
+ *
+ */
+class LogsPredictiveTranslator : public QObject 
+{
+
+    Q_OBJECT
+
+public: 
+
+    static LogsPredictiveTranslator* instance();
+    static void deleteInstance();
+    
+    ~LogsPredictiveTranslator();
+    
+    const QString translate( const QString& name, int count = -1 ) const;
+    int startsWith( const QString& text, const QString& pattern, bool optimize = true ) const;
+    
+    
+private:
+
+    explicit LogsPredictiveTranslator();
+    const QChar translate( const QChar character ) const;
+    
+
+private:
+    
+    static LogsPredictiveTranslator* mInstance;
+    const HbKeymap* mKeyMap;
+    
+    friend class UT_LogsPredictiveTranslator;
+    
+};
+
+#endif //LOGSPREDICTIVETRANSLATOR_H