phonesettings/cpphonesettingsplugins/tsrc/mocks/mock_cpcallsplugingroup.cpp
changeset 21 92ab7f8d0eab
child 30 ebdbd102c78a
equal deleted inserted replaced
4:c84cf270c54f 21:92ab7f8d0eab
       
     1 /* 
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 #include <QDebug>
       
    18 #include "cpcallsplugingroup.h"
       
    19 
       
    20 // ============================ MEMBER FUNCTIONS ===============================
       
    21 
       
    22 // -----------------------------------------------------------------------------
       
    23 // CpCallsPluginGroup::CpCallsPluginGroup
       
    24 // -----------------------------------------------------------------------------
       
    25 //
       
    26 CpCallsPluginGroup::CpCallsPluginGroup( 
       
    27         CpItemDataHelper &helper )
       
    28     :CpSettingFormItemData(HbDataFormModelItem::GroupItem, hbTrId("Calls"),0),
       
    29     m_helper(helper)
       
    30     {
       
    31     
       
    32     }
       
    33 
       
    34 
       
    35 // -----------------------------------------------------------------------------
       
    36 // CpCallsPluginGroup::~CpCallsPluginGroup
       
    37 // -----------------------------------------------------------------------------
       
    38 //
       
    39 CpCallsPluginGroup::~CpCallsPluginGroup(  )
       
    40     {
       
    41     
       
    42     }
       
    43 
       
    44 
       
    45 // -----------------------------------------------------------------------------
       
    46 // CpCallsPluginGroup::showCallDurationStateChanged
       
    47 // -----------------------------------------------------------------------------
       
    48 //
       
    49 void CpCallsPluginGroup::showCallDurationStateChanged( int state )
       
    50     {
       
    51     Q_UNUSED( state )
       
    52     }
       
    53 
       
    54 
       
    55 // -----------------------------------------------------------------------------
       
    56 // CpCallsPluginGroup::softRejectTextChanged
       
    57 // -----------------------------------------------------------------------------
       
    58 //
       
    59 void CpCallsPluginGroup::softRejectTextChanged(  )
       
    60     {
       
    61     
       
    62     }
       
    63 
       
    64 
       
    65 // -----------------------------------------------------------------------------
       
    66 // CpCallsPluginGroup::callWaitingCurrentIndexChanged
       
    67 // -----------------------------------------------------------------------------
       
    68 //
       
    69 void CpCallsPluginGroup::callWaitingCurrentIndexChanged( int index )
       
    70     {
       
    71     Q_UNUSED( index )
       
    72     }
       
    73 
       
    74 
       
    75 // -----------------------------------------------------------------------------
       
    76 // CpCallsPluginGroup::cliCurrentIndexChanged
       
    77 // -----------------------------------------------------------------------------
       
    78 //
       
    79 void CpCallsPluginGroup::cliCurrentIndexChanged( int index )
       
    80     {
       
    81     Q_UNUSED( index )
       
    82     }
       
    83 
       
    84 
       
    85 // -----------------------------------------------------------------------------
       
    86 // CpCallsPluginGroup::handleCallWaitingGetStatus
       
    87 // -----------------------------------------------------------------------------
       
    88 //
       
    89 void CpCallsPluginGroup::handleCallWaitingGetStatus( 
       
    90         const PSetCallWaitingWrapper::PsCallWaitingStatus status,
       
    91         const QList<unsigned char> &basicServiceGroupIds )
       
    92     {
       
    93     Q_UNUSED( status )
       
    94     Q_UNUSED( basicServiceGroupIds )
       
    95     }
       
    96 
       
    97 
       
    98 // -----------------------------------------------------------------------------
       
    99 // CpCallsPluginGroup::handleCallWaitingChanged
       
   100 // -----------------------------------------------------------------------------
       
   101 //
       
   102 void CpCallsPluginGroup::handleCallWaitingChanged( 
       
   103         const PSetCallWaitingWrapper::PsCallWaitingCommand setting,
       
   104         const int aResult )
       
   105     {
       
   106     Q_UNUSED( setting )
       
   107     Q_UNUSED( aResult )
       
   108     }
       
   109 
       
   110 
       
   111 // -----------------------------------------------------------------------------
       
   112 // CpCallsPluginGroup::handleCallWaitingRequesting
       
   113 // -----------------------------------------------------------------------------
       
   114 //
       
   115 void CpCallsPluginGroup::handleCallWaitingRequesting( 
       
   116         bool ongoing,
       
   117         bool interrupted )
       
   118     {
       
   119     Q_UNUSED( ongoing )
       
   120     Q_UNUSED( interrupted )
       
   121     }
       
   122 
       
   123 
       
   124 // -----------------------------------------------------------------------------
       
   125 // CpCallsPluginGroup::handleCallWaitingError
       
   126 // -----------------------------------------------------------------------------
       
   127 //
       
   128 void CpCallsPluginGroup::handleCallWaitingError( int aError )
       
   129     {
       
   130     Q_UNUSED( aError )
       
   131     }
       
   132