qtinternetradio/ui/inc/irstationdetailsview.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 14 May 2010 15:43:29 +0300
changeset 3 ee64f059b8e1
child 5 0930554dc389
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/

#ifndef IRSTATIONDETAILSVIEW_H_
#define IRSTATIONDETAILSVIEW_H_

#include <hbscrollarea.h>
#include "irbaseview.h"
#include "irdocumentloader.h"

class HbLabel;
class HbListWidget;
class IRQPreset;
class IRQSongHistoryInfo;

class IRStationDetailsView : public IRBaseView
{
    Q_OBJECT
    
public:
    ~IRStationDetailsView();
    void setDetails();
    void setDetails(IRQSongHistoryInfo *aCurChannelInfo);
    
protected:
    IRStationDetailsView(IRApplication* aApplication, TIRViewId aViewId);
    
private slots:

    void handleOrientationChanged( Qt::Orientation aOrientation );
    
private:
    void createDetails();
    // Methods to set station information

private:
    HbScrollArea *iScrollArea;
    HbWidget* iContainer;
    // Station information
    HbLabel *iStationName;
    HbLabel *iDescription;
    HbLabel *iGenres;
    HbLabel *iLanguage;
    HbLabel *iCountry;
    HbLabel *iBitRate;
    HbLabel *iNowPlayingUrl;
    friend class IRViewManager;
};

#endif /* IRSTATIONDETAILSVIEW_H_ */