tsrc/mocks/orbit/mock_hbtapgesture.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 
       
    19 #include "hbtapgesture.h"
       
    20 
       
    21 
       
    22 // ============================ MEMBER FUNCTIONS ===============================
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // HbTapGesture::HbTapGesture
       
    26 // -----------------------------------------------------------------------------
       
    27 //
       
    28 HbTapGesture::HbTapGesture( 
       
    29         QObject * /*parent*/ )
       
    30     :d_ptr(0)
       
    31     //QTapGesture( /*parent*/ )
       
    32     {
       
    33     
       
    34     }
       
    35 
       
    36 
       
    37 // -----------------------------------------------------------------------------
       
    38 // HbTapGesture::~HbTapGesture
       
    39 // -----------------------------------------------------------------------------
       
    40 //
       
    41 HbTapGesture::~HbTapGesture(  )
       
    42     {
       
    43     
       
    44     }
       
    45 
       
    46 
       
    47 // -----------------------------------------------------------------------------
       
    48 // HbTapGesture::startPos
       
    49 // -----------------------------------------------------------------------------
       
    50 //
       
    51 QPointF HbTapGesture::startPos(  ) const
       
    52     {
       
    53     SMC_MOCK_METHOD0( QPointF )
       
    54     }
       
    55 
       
    56 
       
    57 // -----------------------------------------------------------------------------
       
    58 // HbTapGesture::setStartPos
       
    59 // -----------------------------------------------------------------------------
       
    60 //
       
    61 void HbTapGesture::setStartPos( 
       
    62         const QPointF & startPos )
       
    63     {
       
    64     SMC_MOCK_METHOD1( void, const QPointF &, startPos )
       
    65     }
       
    66 
       
    67 
       
    68 // -----------------------------------------------------------------------------
       
    69 // HbTapGesture::sceneStartPos
       
    70 // -----------------------------------------------------------------------------
       
    71 //
       
    72 QPointF HbTapGesture::sceneStartPos(  ) const
       
    73     {
       
    74     SMC_MOCK_METHOD0( QPointF )
       
    75     }
       
    76 
       
    77 
       
    78 // -----------------------------------------------------------------------------
       
    79 // HbTapGesture::setSceneStartPos
       
    80 // -----------------------------------------------------------------------------
       
    81 //
       
    82 void HbTapGesture::setSceneStartPos( 
       
    83         const QPointF & startPos )
       
    84     {
       
    85     SMC_MOCK_METHOD1( void, const QPointF &, startPos )
       
    86     }
       
    87 
       
    88 
       
    89 // -----------------------------------------------------------------------------
       
    90 // HbTapGesture::scenePosition
       
    91 // -----------------------------------------------------------------------------
       
    92 //
       
    93 QPointF HbTapGesture::scenePosition(  ) const
       
    94     {
       
    95     SMC_MOCK_METHOD0( QPointF )
       
    96     }
       
    97 
       
    98 
       
    99 // -----------------------------------------------------------------------------
       
   100 // HbTapGesture::setScenePosition
       
   101 // -----------------------------------------------------------------------------
       
   102 //
       
   103 void HbTapGesture::setScenePosition( 
       
   104         const QPointF & pos )
       
   105     {
       
   106     SMC_MOCK_METHOD1( void, const QPointF &, pos )
       
   107     }
       
   108 
       
   109 
       
   110 // -----------------------------------------------------------------------------
       
   111 // HbTapGesture::tapStyleHint
       
   112 // -----------------------------------------------------------------------------
       
   113 //
       
   114 HbTapGesture::TapStyleHint HbTapGesture::tapStyleHint(  ) const
       
   115     {
       
   116     SMC_MOCK_METHOD0( HbTapGesture::TapStyleHint )
       
   117     }
       
   118 
       
   119 
       
   120 // -----------------------------------------------------------------------------
       
   121 // HbTapGesture::HbTapGesture
       
   122 // -----------------------------------------------------------------------------
       
   123 //
       
   124 HbTapGesture::HbTapGesture( 
       
   125         HbTapGesturePrivate & /*dd*/,
       
   126         QObject * /*parent*/ )
       
   127     :d_ptr(0)
       
   128     //QTapGesture( /*dd, parent*/ )
       
   129     {
       
   130     
       
   131     }
       
   132