videocollection/tsrc/stubs/src/videolistmenu.cpp
changeset 65 a9d57bd8d7b7
equal deleted inserted replaced
62:0e1e938beb1a 65:a9d57bd8d7b7
       
     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:   Videolist view class source code
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version: 1 %
       
    19 
       
    20 // INCLUDE FILES
       
    21 
       
    22 #include "videolistmenu.h"
       
    23 #include "videolistview.h"
       
    24 #include "videocollectionuiloader.h"
       
    25 #include "videocollectionviewutils.h"
       
    26 
       
    27 // ---------------------------------------------------------------------------
       
    28 // Constructor
       
    29 // ---------------------------------------------------------------------------
       
    30 //
       
    31 VideoListMenu::VideoListMenu(VideoCollectionUiLoader *uiLoader, VideoListView* parent) 
       
    32     : QObject(parent)
       
    33     , mUiUtils(VideoCollectionViewUtils::instance())
       
    34 {
       
    35     Q_UNUSED(uiLoader);
       
    36 }
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // Destructor
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 VideoListMenu::~VideoListMenu()
       
    43 {
       
    44 }
       
    45 
       
    46 // ---------------------------------------------------------------------------
       
    47 // initializeView()
       
    48 // ---------------------------------------------------------------------------
       
    49 //
       
    50 int VideoListMenu::initializeMenu()
       
    51 {
       
    52     return 0;
       
    53 }
       
    54 
       
    55 // ---------------------------------------------------------------------------
       
    56 // showAction()
       
    57 // ---------------------------------------------------------------------------
       
    58 //
       
    59 void VideoListMenu::showAction(bool show, const QString &name)
       
    60 {
       
    61     Q_UNUSED(show);
       
    62     Q_UNUSED(name);
       
    63 }
       
    64 
       
    65 // ---------------------------------------------------------------------------
       
    66 // startSorting()
       
    67 // ---------------------------------------------------------------------------
       
    68 //
       
    69 void VideoListMenu::startSorting()
       
    70 {
       
    71 }
       
    72 
       
    73 // ---------------------------------------------------------------------------
       
    74 // doSorting()
       
    75 // ---------------------------------------------------------------------------
       
    76 //
       
    77 void VideoListMenu::doSorting(int role)
       
    78 {
       
    79     Q_UNUSED(role);
       
    80 }
       
    81 
       
    82 // -------------------------------------------------------------------------------------------------
       
    83 // deleteItemsSlot
       
    84 // -------------------------------------------------------------------------------------------------
       
    85 //
       
    86 void VideoListMenu::deleteItemsSlot()
       
    87 {
       
    88 }
       
    89 
       
    90 // -------------------------------------------------------------------------------------------------
       
    91 // createCollectionSlot
       
    92 // -------------------------------------------------------------------------------------------------
       
    93 //
       
    94 void VideoListMenu::createCollectionSlot()
       
    95 {
       
    96 }
       
    97 
       
    98 // -------------------------------------------------------------------------------------------------
       
    99 // addVideosToCollectionSlot
       
   100 // -------------------------------------------------------------------------------------------------
       
   101 //
       
   102 void VideoListMenu::addVideosToCollectionSlot()
       
   103 {
       
   104 }
       
   105 
       
   106 // -------------------------------------------------------------------------------------------------
       
   107 // aboutToShowMainMenuSlot
       
   108 // -------------------------------------------------------------------------------------------------
       
   109 //
       
   110 void VideoListMenu::aboutToShowMainMenuSlot()
       
   111 {
       
   112 }
       
   113 
       
   114 // -------------------------------------------------------------------------------------------------
       
   115 // prepareBrowseServiceMenu
       
   116 // -------------------------------------------------------------------------------------------------
       
   117 //
       
   118 void VideoListMenu::prepareBrowseServiceMenu()
       
   119 {
       
   120 }
       
   121 
       
   122 // -------------------------------------------------------------------------------------------------
       
   123 // objectReadySlot
       
   124 // -------------------------------------------------------------------------------------------------
       
   125 //
       
   126 void VideoListMenu::objectReadySlot(QObject *object, const QString &name)
       
   127 {
       
   128     Q_UNUSED(object);
       
   129     Q_UNUSED(name);
       
   130 }
       
   131 
       
   132 // End of file