telutils/dialpad/src/dialpadvideomailboxeventfilter.cpp
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
--- a/telutils/dialpad/src/dialpadvideomailboxeventfilter.cpp	Tue Aug 31 15:45:17 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,149 +0,0 @@
-/*
-* Copyright (c) 2010 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: 
-*
-*/
-#include <QTimer>
-#include <QKeyEvent>
-#include <hblineedit.h>
-#include <hbstringutil.h>
-#include "dialpadvideomailboxeventfilter.h"
-#include "dialpadsymbianwrapper.h"
-#include "dialpad.h"
-#include "qtphonesrvlog.h"
-
-#ifdef Q_OS_SYMBIAN
-#include <xqserviceutil.h>
-#endif //Q_OS_SYMBIAN
-
-#include <xqsettingsmanager.h>
-#include <xqsettingskey.h>
-#include <voicemailboxdomaincrkeys.h>
-
-
-const QString VideoVmbxCharacter("2");
-
-DialpadVideoMailboxEventFilter::DialpadVideoMailboxEventFilter(Dialpad* dialpad, QObject* parent) :
-    DialpadMailboxEventFilterBase(dialpad, parent)
-{
-}
-
-DialpadVideoMailboxEventFilter::~DialpadVideoMailboxEventFilter()
-{
-}
-
-bool DialpadVideoMailboxEventFilter::eventFilter(QObject *watched, QEvent *event)
-{
-    Q_UNUSED(watched)
-    bool keyEventEaten(false);
-        
-    if (event->type() == QEvent::KeyPress) {
-        QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
-        if (checkIfSendEventAndConsumeEvent(keyEvent->key(), event->type())) {
-            keyEventEaten = true;
-        } else if ((isLongKeyPressSupported(keyEvent->key())) &&
-                !(mDialpad->editor().text().length() >= 1)) {
-            //Check that there is only one item in dialpad, if there is more than one
-            //do not handle long key press.
-            mLongPressTimer->stop();
-            mLongPressTimer->start(DialpadLongKeyPressTimeOut);
-        }
-    } else if (event->type() == QEvent::KeyRelease) {
-        QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
-        if (checkIfSendEventAndConsumeEvent(keyEvent->key(), event->type())) {
-            keyEventEaten = true;
-        } else if (isLongKeyPressSupported(keyEvent->key())){
-            mLongPressTimer->stop();
-        }
-    }
-
-    return keyEventEaten;
-}
-
-void DialpadVideoMailboxEventFilter::handleLongKeyPress()
-{
-    PHONE_TRACE;
-    switch(mKeyEvent) {
-    case Qt::Key_2:{
-       handleMailboxOperation();
-       break;
-       }
-   default:
-       // Do nothing.
-       break;
-    }
-
-    // Reset key code.
-    mKeyEvent = NULL;
-}
-
-bool DialpadVideoMailboxEventFilter::handleCallButtonPress()
-{
-    PHONE_TRACE;
-    bool callButtonhandled(false);
-    if (!mDialpad->editor().text().isEmpty()) {
-#ifdef Q_OS_SYMBIAN
-        // check if editor has '2' character if does then
-        // get MailboxNumber.
-        QString editorContent = HbStringUtil::convertDigitsTo(
-            mDialpad->editor().text(), WesternDigit);
-        if (VideoVmbxCharacter==editorContent) {
-            handleMailboxOperation();
-            callButtonhandled = true;
-        }
-#endif //Q_OS_SYMBIAN
-    }
-    return callButtonhandled;
-}
-
-void DialpadVideoMailboxEventFilter::handleMailboxOperation()
-{
-    PHONE_TRACE;
-    
-    if (isVideoMbxSupported()) {
-        QString mailboxNumber;
-        int error = mSymbianWrapper->getVideoMailboxNumber(mailboxNumber);
-        // If here is no vmbx number and dialpad must start vmbx number definition procedures.
-        if (DialpadErrorNone != error || mailboxNumber.length() == 0) {
-            mDialpad->closeDialpad();
-            // If define mailbox query was interupted than reopen dialpad.
-            error = mSymbianWrapper->defineVideoMailboxNumber(mailboxNumber);
-            if (DialpadErrorCancel == error) {
-                mDialpad->openDialpad();
-            }
-        }
-    
-        // Valid vmbx number found or defined and there vmbx didnt
-        // return error values then create a call.
-        if ((DialpadErrorNone == error) &&
-            (mailboxNumber.length() != 0)) {
-            createCall(mailboxNumber, true);
-            clearEditor();
-            mDialpad->openDialpad();
-        }
-    }
-}
-
-bool DialpadVideoMailboxEventFilter::isVideoMbxSupported()
-{
-    XQSettingsKey key(XQSettingsKey::TargetCentralRepository,
-        KCRUidVideoMailbox.iUid,
-        KVideoMbxSupport);
-    XQSettingsManager settingsMgr;
-    
-    int ret = settingsMgr.readItemValue(key, XQSettingsManager::TypeInt).toInt();
-    PHONE_TRACE2("Video mbx support:", ret);
-    return ret;
-}
-