mpviewplugins/mpmediawallviewplugin/tsrc/unittest_mpmediawallview/stub/src/mpreflectioneffect.cpp
changeset 48 af3740e3753f
equal deleted inserted replaced
42:79c49924ae23 48:af3740e3753f
       
     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: stub for mpreflectioneffects
       
    15 *
       
    16 */
       
    17 
       
    18 #include "mpreflectioneffect.h"
       
    19 
       
    20 /*!
       
    21     Stub
       
    22 */
       
    23 MpReflectionEffect::MpReflectionEffect(QObject *parent)
       
    24     : QGraphicsEffect( parent )
       
    25 {
       
    26 }
       
    27 
       
    28 /*!
       
    29     Stub
       
    30 */
       
    31 MpReflectionEffect::~MpReflectionEffect()
       
    32 {
       
    33 }
       
    34 
       
    35 /*!
       
    36     Stub
       
    37 */
       
    38 QRectF MpReflectionEffect::boundingRectFor(const QRectF &rect) const
       
    39 {
       
    40     Q_UNUSED(rect)
       
    41     return QRectF();
       
    42 }
       
    43 
       
    44 /*!
       
    45     Stub
       
    46 */
       
    47 void MpReflectionEffect::draw(QPainter *painter)
       
    48 {
       
    49     Q_UNUSED(painter)
       
    50 }
       
    51 
       
    52 // EOF