qtinternetradio/irqisdsclient/inc/irqabstractisdsclientimpl.h
changeset 14 896e9dbc5f19
equal deleted inserted replaced
12:608f67c22514 14:896e9dbc5f19
       
     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:
       
    15 *
       
    16 */
       
    17 #ifndef IRQABSTRACTISDSCLIENTIMPL_H_
       
    18 #define IRQABSTRACTISDSCLIENTIMPL_H_
       
    19 
       
    20 class IRQAbstractIsdsClientImpl
       
    21 {
       
    22 
       
    23 public:
       
    24 	virtual ~IRQAbstractIsdsClientImpl(){};
       
    25       
       
    26     virtual void isdsSearchRequestImpl(const QString& aIsdsSearchString) = 0;
       
    27     
       
    28     virtual void isdsCategoryRequestImpl(
       
    29             IRQIsdsClient::IRQIsdsClientInterfaceIDs aIDType, bool& aCache) = 0;
       
    30 
       
    31     virtual bool isdsIsCategoryCachedImpl(IRQIsdsClient::IRQIsdsClientInterfaceIDs aIDType) = 0;
       
    32     
       
    33     virtual bool isdsIsChannelCachedImpl(int aIndex) = 0;
       
    34     
       
    35     virtual void isdsChannelRequestImpl(int aIndex, bool& aCache) = 0;
       
    36 
       
    37      
       
    38     virtual void isdsListenRequestImpl(int aCurrentIndex, bool aHistoryBool =
       
    39             false) = 0;
       
    40 
       
    41     virtual int isdsSyncPresetImpl(int aPresetId, const QString& aIfModifySince, IRQFavoritesDB *aFavPresets) = 0;   
       
    42      
       
    43     virtual void isdsCancelRequestImpl() = 0;    
       
    44     
       
    45     virtual bool isdsIsCategoryBannerImpl() = 0;
       
    46      
       
    47     virtual bool isdsIsChannelBannerImpl() = 0;
       
    48      
       
    49     virtual void isdsLogoDownSendRequestImpl(IRQPreset* aPreset, int aNPVReq = 1,
       
    50             int aXValue = 0, int aYValue = 0) = 0;
       
    51     
       
    52     virtual bool isdsIsLogoCachedImpl(IRQPreset* aPreset, int aXValue = 0, int aYValue = 0) = 0;
       
    53     
       
    54     virtual void isdsLogoDownCancelTransactionImpl() = 0;
       
    55      
       
    56     virtual bool isdsLogoDownIsRunningImpl() const = 0;
       
    57      
       
    58     virtual void isdsLogoDownCheckCacheLogoImpl(const QString& aURL, int& aStatus) = 0;
       
    59      
       
    60     virtual TDesC8& isdsLogoDownSendCacheLogoImpl() = 0;
       
    61     
       
    62     virtual void isdsPostLogImpl(const QString &aFileName) = 0;
       
    63     
       
    64     virtual void isdsGetIRIDImpl() = 0;
       
    65 
       
    66     virtual void isdsGetBrowseBannerImpl(QString& aBannerUrl, QString& aClickThroughUrl) = 0;
       
    67     
       
    68     virtual void isdsMultSearchImpl(QString aGenreID, QString aCountryID, QString aLanguageID, QString aSearchText) = 0;
       
    69         
       
    70     virtual bool isdsIsConstructSucceed() const = 0;
       
    71 
       
    72 };
       
    73 
       
    74 #endif