--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook/View/inc/CPbkThumbnailPopupControlSlim.h Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,98 @@
+/*
+* Copyright (c) 2002 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:
+* Phonebook thumbnail popup window control class definition.
+*
+*/
+
+
+#ifndef __CPBKTHUMBNAILPOPUPCONTROL_H__
+#define __CPBKTHUMBNAILPOPUPCONTROL_H__
+
+// INCLUDES
+#include <coecntrl.h> // CCoeControl
+#include <calslbs.h> // TAknLayoutRect
+#include <eiklbx.h>
+#include "MPbkThumbnailPopupControl.h"
+
+// FORWARD DECLARATIONS
+class CFbsBitmap;
+
+// CLASS DECLARATION
+
+/**
+ * Control for thumbnail popup window.
+ */
+NONSHARABLE_CLASS(CPbkThumbnailPopupControlSlim)
+ : public CCoeControl,
+ public MPbkThumbnailPopupControl
+ {
+ public: // Constructors and destructor
+ /**
+ * Creates a new instance of this class.
+ */
+ static CPbkThumbnailPopupControlSlim* NewL();
+
+ /**
+ * Destructor.
+ */
+ virtual ~CPbkThumbnailPopupControlSlim();
+
+ public: // From MPbkThumbnailPopupControl
+
+ void ChangeBitmap( CFbsBitmap* aBitmap, CEikListBox* aListBox );
+
+ void SetThumbnailBackg( CFbsBitmap* aThumbBackg, CFbsBitmap* aThumbBackgMask );
+
+ void MakeControlVisible( TBool aVisible );
+ private: // from CCoeControl
+ /**
+ * Draw this control
+ */
+ void Draw(const TRect& aRect) const;
+
+ private: // Implementation
+ /**
+ * Standard C++ constructor.
+ */
+ CPbkThumbnailPopupControlSlim();
+
+ /**
+ * Performs the 2nd phase of the construction.
+ */
+ void ConstructL();
+
+ private: // Data
+ /// Ref: Bitmap in the popup window
+ CFbsBitmap* iBitmap;
+ /// Own: Controls size
+ TSize iControlSize;
+ /// Ref: Thumbnail background
+ CFbsBitmap* iThumbBackg;
+ /// Ref: Thumbnail background mask
+ CFbsBitmap* iThumbBackgMask;
+ /// Own: Shadow width
+ TInt iShadowWidth;
+ /// Own: Shadow height
+ TInt iShadowHeight;
+ /// Own: Is thumbnail drawn in upper right corner previously
+ TBool iThumbnailDown;
+ /// Own: Redraw needed
+ TBool iDrawNeeded;
+
+ };
+
+#endif // __CPBKTHUMBNAILPOPUPCONTROL_H__
+
+// End of File