idlefw/tsrc/framework/mt_aifw/AiFwTestContentPlugin2.cpp
branchRCL_3
changeset 110 2c7f27287390
equal deleted inserted replaced
101:9e077f9a342c 110:2c7f27287390
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // ========== INCLUDE FILES ===================================================
       
    20 
       
    21 #include "AiFwTestContentPlugin2.h"
       
    22 #include "AiFwTestDefines.h"
       
    23 #include "AiFwTestContentModel.h"
       
    24 
       
    25 // ========== EXTERNAL DATA STRUCTURES ========================================
       
    26 
       
    27 // ========== EXTERNAL FUNCTION PROTOTYPES ====================================
       
    28 
       
    29 // ========== CONSTANTS =======================================================
       
    30 
       
    31 // ========== MACROS ==========================================================
       
    32 
       
    33 // ========== LOCAL CONSTANTS AND MACROS ======================================
       
    34 
       
    35 // ========== MODULE DATA STRUCTURES ==========================================
       
    36 
       
    37 // ========== LOCAL FUNCTION PROTOTYPES =======================================
       
    38 
       
    39 // ========== FORWARD DECLARATIONS ============================================
       
    40 
       
    41 // ========== LOCAL FUNCTIONS =================================================
       
    42 
       
    43 // ========== MEMBER FUNCTIONS ================================================
       
    44 
       
    45 // ----------------------------------------------------------------------------
       
    46 //
       
    47 //
       
    48 //
       
    49 // ----------------------------------------------------------------------------
       
    50 //
       
    51 CAiFwTestContentPlugin2::CAiFwTestContentPlugin2()
       
    52 {}
       
    53 
       
    54 // ----------------------------------------------------------------------------
       
    55 //
       
    56 //
       
    57 //
       
    58 // ----------------------------------------------------------------------------
       
    59 //
       
    60 void CAiFwTestContentPlugin2::ConstructL()
       
    61 {
       
    62 }
       
    63 
       
    64 // ----------------------------------------------------------------------------
       
    65 //
       
    66 //
       
    67 //
       
    68 // ----------------------------------------------------------------------------
       
    69 //
       
    70 CAiFwTestContentPlugin2* CAiFwTestContentPlugin2::NewL()
       
    71 {
       
    72     CAiFwTestContentPlugin2* self = new (ELeave) CAiFwTestContentPlugin2;
       
    73 
       
    74     CleanupStack::PushL(self);
       
    75     self->ConstructL();
       
    76     CleanupStack::Pop();
       
    77 
       
    78     return self;
       
    79 }
       
    80 
       
    81 // ----------------------------------------------------------------------------
       
    82 //
       
    83 //
       
    84 //
       
    85 // ----------------------------------------------------------------------------
       
    86 //
       
    87 CAiFwTestContentPlugin2::~CAiFwTestContentPlugin2()
       
    88 {
       
    89 }
       
    90 
       
    91 // ----------------------------------------------------------------------------
       
    92 //
       
    93 //
       
    94 //
       
    95 // ----------------------------------------------------------------------------
       
    96 //
       
    97 TInt CAiFwTestContentPlugin2::Callback(TAny* /*aPtr*/)
       
    98 {
       
    99     return KErrNone;
       
   100 }
       
   101 
       
   102 // ----------------------------------------------------------------------------
       
   103 //
       
   104 //
       
   105 //
       
   106 // ----------------------------------------------------------------------------
       
   107 //
       
   108 void CAiFwTestContentPlugin2::Resume(TAiTransitionReason /*aReason*/)
       
   109 {
       
   110 }
       
   111 
       
   112 // ----------------------------------------------------------------------------
       
   113 //
       
   114 //
       
   115 //
       
   116 // ----------------------------------------------------------------------------
       
   117 //
       
   118 void CAiFwTestContentPlugin2::Suspend(TAiTransitionReason /*aReason*/)
       
   119 {
       
   120 }
       
   121 
       
   122 // ----------------------------------------------------------------------------
       
   123 //
       
   124 //
       
   125 //
       
   126 // ----------------------------------------------------------------------------
       
   127 //
       
   128 void CAiFwTestContentPlugin2::Stop(TAiTransitionReason /*aReason*/)
       
   129 {
       
   130 }
       
   131 
       
   132 // ----------------------------------------------------------------------------
       
   133 //
       
   134 //
       
   135 //
       
   136 // ----------------------------------------------------------------------------
       
   137 //
       
   138 void CAiFwTestContentPlugin2::SubscribeL(MAiContentObserver& /*aObserver*/)
       
   139 {
       
   140    User::Leave(KErrNotSupported);
       
   141 }
       
   142 
       
   143 // ----------------------------------------------------------------------------
       
   144 //
       
   145 //
       
   146 //
       
   147 // ----------------------------------------------------------------------------
       
   148 //
       
   149 void CAiFwTestContentPlugin2::ConfigureL(RAiSettingsItemArray& /*aSettings*/)
       
   150     {
       
   151     User::Leave(KErrNotSupported);
       
   152     }
       
   153 
       
   154 // ----------------------------------------------------------------------------
       
   155 //
       
   156 //
       
   157 //
       
   158 // ----------------------------------------------------------------------------
       
   159 //
       
   160 TAny* CAiFwTestContentPlugin2::Extension(TUid aUid)
       
   161 {
       
   162     if (aUid == KExtensionUidProperty && !iFirstExt)
       
   163         {
       
   164         iFirstExt = ETrue;
       
   165         return static_cast<MAiPropertyExtension*>(this);
       
   166         }
       
   167         User::Leave(KErrNotSupported);
       
   168     return NULL;
       
   169 }
       
   170 
       
   171 // ----------------------------------------------------------------------------
       
   172 //
       
   173 //
       
   174 //
       
   175 // ----------------------------------------------------------------------------
       
   176 //
       
   177 TAny* CAiFwTestContentPlugin2::GetPropertyL(TInt /*aProperty*/)
       
   178 {
       
   179       User::Leave(KErrNotSupported);
       
   180 
       
   181     return NULL;
       
   182 }
       
   183 
       
   184 // ----------------------------------------------------------------------------
       
   185 //
       
   186 //
       
   187 //
       
   188 // ----------------------------------------------------------------------------
       
   189 //
       
   190 void CAiFwTestContentPlugin2::SetPropertyL(TInt aProperty, TAny* aValue)
       
   191     {
       
   192     if( aValue )
       
   193         {
       
   194         switch( aProperty )
       
   195             {
       
   196             case EAiPublisherInfo:
       
   197                 {
       
   198                 return;
       
   199                 }
       
   200             }
       
   201         }
       
   202         User::Leave(KErrNotSupported);
       
   203     }
       
   204 
       
   205 // ----------------------------------------------------------------------------
       
   206 //
       
   207 //
       
   208 //
       
   209 // ----------------------------------------------------------------------------
       
   210 //
       
   211 void CAiFwTestContentPlugin2::HandleEvent(TInt /*aEvent*/, const TDesC& /*aParam*/)
       
   212     {
       
   213     User::Leave(KErrNotFound);
       
   214     }
       
   215 
       
   216 // ========== OTHER EXPORTED FUNCTIONS ========================================
       
   217 
       
   218 // End of File.