--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/internetradio2.0/uiinc/irstationinfopicture.h Mon Apr 19 14:01:53 2010 +0300
@@ -0,0 +1,45 @@
+/*
+* 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 IRSTATIONINFOPICTURE_H_
+#define IRSTATIONINFOPICTURE_H_
+
+#include <gdi.h>
+
+class CWindowGc;
+class TSize;
+class CFbsBitmap;
+
+
+class CIRStationInfoPicture : public CPicture
+{
+ public:
+
+ CIRStationInfoPicture(CWindowGc& gc,CFbsBitmap& aBitmap,CFbsBitmap& aBitmapMask);
+
+ void Draw( CGraphicsContext& aGc, const TPoint& aTopLeft,
+ const TRect& aClipRect, MGraphicsDeviceMap* aMap ) const;
+ void ExternalizeL( RWriteStream& aStream ) const;
+ void GetOriginalSizeInTwips( TSize& aSize ) const;
+ protected:
+ TSize iSizeInTwips;
+ CFbsBitmap* iBitmap;
+ CFbsBitmap* iBitmapMask;
+};
+
+
+#endif /*IRSTATIONINFOPICTURE_H_*/