videocollection/tsrc/stubs/src/videohintwidget.cpp
changeset 15 cf5481c2bc0b
child 17 69946d1824c4
equal deleted inserted replaced
2:dec420019252 15:cf5481c2bc0b
       
     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:   Videolist content widget implementation
       
    15 *
       
    16 */
       
    17 
       
    18 #include "videohintwidget.h"
       
    19 
       
    20 VideoHintWidget::VideoHintWidget(VideoCollectionUiLoader *uiLoader,
       
    21     QGraphicsItem *parent):
       
    22     HbWidget(parent),
       
    23     mUiLoader(uiLoader),
       
    24     mServiceIcon(0),
       
    25     mAddVideosIcon(0),
       
    26     mCurrentLevel(AllVideos)
       
    27 {
       
    28     // NOP
       
    29 }
       
    30 
       
    31 VideoHintWidget::~VideoHintWidget()
       
    32 {
       
    33     // nop
       
    34 }
       
    35 
       
    36 int VideoHintWidget::initialize()
       
    37 {
       
    38     // not stubbed
       
    39     return 0;
       
    40 }
       
    41 
       
    42 void VideoHintWidget::setLevel(HintLevel level)
       
    43 {
       
    44     Q_UNUSED(level);
       
    45     // not stubbed
       
    46 }
       
    47 
       
    48 void VideoHintWidget::setButtonShown(bool shown)
       
    49 {
       
    50     Q_UNUSED(shown);
       
    51     // not stubbed
       
    52 }
       
    53 
       
    54 void VideoHintWidget::orientationChangedSlot(Qt::Orientation targetOrientation)
       
    55 {
       
    56     Q_UNUSED(targetOrientation);
       
    57     // not stubbed
       
    58 }
       
    59 
       
    60 void VideoHintWidget::activate()
       
    61 {
       
    62     // not stubbed
       
    63 }
       
    64 
       
    65 void VideoHintWidget::deactivate()
       
    66 {
       
    67     // not stubbed
       
    68 }
       
    69 
       
    70 void VideoHintWidget::updateUiComponents()
       
    71 {
       
    72     // not stubbed
       
    73 }
       
    74 
       
    75 // end of file