phoneapp/phoneuiqtviewadapter/tsrc/ut_phonemessagecontroller/phoneapplauncher_stub.cpp
changeset 50 377c906a8701
parent 46 bc5a64e5bc3c
child 52 a49bfe5190e4
equal deleted inserted replaced
46:bc5a64e5bc3c 50:377c906a8701
     1 /*
       
     2 * Copyright (c) 2010 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 
       
    18 #include <devicelockaccessapi.h>
       
    19 
       
    20 #include "phoneapplauncher.h"
       
    21 #include "qtphonelog.h"
       
    22 
       
    23 QList<QVariant> gList;
       
    24 
       
    25 /*!
       
    26     PhoneAppLauncher::PhoneAppLauncher.
       
    27  */
       
    28 PhoneAppLauncher::PhoneAppLauncher(QObject *parent)
       
    29     : QObject(parent)
       
    30 {
       
    31     PHONE_TRACE;
       
    32 }
       
    33 
       
    34 
       
    35 /*!
       
    36     PhoneAppLauncher::~PhoneAppLauncher.
       
    37  */
       
    38 PhoneAppLauncher::~PhoneAppLauncher()
       
    39 {
       
    40     PHONE_TRACE;
       
    41 }
       
    42 
       
    43 /*!
       
    44     PhoneAppLauncher::launchMessaging.
       
    45  */
       
    46 void PhoneAppLauncher::launchMessaging(
       
    47         const QString &toField,
       
    48         const QString &name,
       
    49         const QString &messageBody)
       
    50 {
       
    51     gList.append(toField);
       
    52     gList.append(name);
       
    53     gList.append(messageBody);
       
    54 }
       
    55 
       
    56 /*!
       
    57     PhoneAppLauncher::launchContacts.
       
    58  */
       
    59 void PhoneAppLauncher::launchContacts()
       
    60 {
       
    61 
       
    62 }
       
    63 
       
    64 /*!
       
    65     PhoneAppLauncher::launchLogs.
       
    66  */
       
    67 void PhoneAppLauncher::launchLogs(
       
    68         int activatedView,
       
    69         bool showDialpad,
       
    70         const QString &dialpadText)
       
    71 {
       
    72     Q_UNUSED(activatedView);
       
    73     Q_UNUSED(showDialpad);
       
    74     Q_UNUSED(dialpadText);
       
    75 }
       
    76 
       
    77 /*!
       
    78     PhoneAppLauncher::sendServiceRequest.
       
    79  */
       
    80 void PhoneAppLauncher::sendServiceRequest(
       
    81         const QString &service, 
       
    82         const QString &interface,
       
    83         const QString &function,
       
    84         const QList<QVariant> &arguments)
       
    85 {
       
    86     Q_UNUSED(service);
       
    87     Q_UNUSED(interface);
       
    88     Q_UNUSED(function);
       
    89     Q_UNUSED(arguments);
       
    90 }
       
    91 
       
    92 // end of file