tsrc/mocks/phonesrv/mock_dialpadkeyhandler.cpp
changeset 78 baacf668fe89
equal deleted inserted replaced
76:cfea66083b62 78:baacf668fe89
       
     1 /** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 * All rights reserved.
       
     3 * This component and the accompanying materials are made available
       
     4 * under the terms of the License "Eclipse Public License v1.0"
       
     5 * which accompanies this distribution, and is available
       
     6 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 *
       
     8 * Initial Contributors:
       
     9 * Nokia Corporation - initial contribution.
       
    10 *
       
    11 * Contributors:
       
    12 *
       
    13 * Description:
       
    14 *
       
    15 */
       
    16 #include <QDebug>
       
    17 #include <smcmockclassincludes.h>
       
    18 #include "dialpadkeyhandler.h"
       
    19 
       
    20 // ============================ MEMBER FUNCTIONS ===============================
       
    21 class DialpadVoiceMailboxEventFilter {};
       
    22 class DialpadVideoMailboxEventFilter {};
       
    23 class DialpadBluetoothEventFilter {};
       
    24 class DialpadKeySequenceEventFilter {};
       
    25 class DialpadEmergencyCallEventFilter {};
       
    26 class DialpadHashEventFilter {};
       
    27 #ifdef _DEBUG
       
    28 #ifdef __WINSCW__
       
    29 class DialpadInternalEventFilter {};
       
    30 #endif
       
    31 #endif
       
    32 // -----------------------------------------------------------------------------
       
    33 // DialpadKeyHandler::DialpadKeyHandler
       
    34 // -----------------------------------------------------------------------------
       
    35 //
       
    36 DialpadKeyHandler::DialpadKeyHandler( 
       
    37         Dialpad * dialPad,
       
    38         HbMainWindow & mainWindow,
       
    39         QObject * parent )
       
    40     : QObject( parent ), mMainWindow(mainWindow)
       
    41     {
       
    42     
       
    43     }
       
    44 
       
    45 
       
    46 // -----------------------------------------------------------------------------
       
    47 // DialpadKeyHandler::DialpadKeyHandler
       
    48 // -----------------------------------------------------------------------------
       
    49 //
       
    50 DialpadKeyHandler::DialpadKeyHandler( 
       
    51         Dialpad * dialPad,
       
    52         DialpadKeyHandler::DialpadKeyEventFilters filters,
       
    53         QObject * parent )
       
    54     : QObject( parent ), mMainWindow(*(HbMainWindow *)(0))
       
    55     {
       
    56     
       
    57     }
       
    58 
       
    59 
       
    60 // -----------------------------------------------------------------------------
       
    61 // DialpadKeyHandler::~DialpadKeyHandler
       
    62 // -----------------------------------------------------------------------------
       
    63 //
       
    64 DialpadKeyHandler::~DialpadKeyHandler(  )
       
    65     {
       
    66     
       
    67     }
       
    68 
       
    69