// XTPPopupThemeMSN.h: interface of the CXTPPopupThemeMSN class. // // This file is a part of the XTREME CONTROLS MFC class library. // (c)1998-2013 Codejock Software, All Rights Reserved. // // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN // CONSENT OF CODEJOCK SOFTWARE. // // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A // SINGLE COMPUTER. // // CONTACT INFORMATION: // support@codejock.com // http://www.codejock.com // ///////////////////////////////////////////////////////////////////////////// #ifndef XTPPopupThemeMSN_h__ #define XTPPopupThemeMSN_h__ //=========================================================================== // Summary: // CXTPPopupThemeMSN is a class used to perform MSN Messenger // drawing tasks. //=========================================================================== class _XTP_EXT_CLASS CXTPPopupThemeMSN : public CXTPPopupThemeOffice2000 { public: //----------------------------------------------------------------------- // Summary: // Constructs a CXTPPopupThemeMSN object. //----------------------------------------------------------------------- CXTPPopupThemeMSN(); //----------------------------------------------------------------------- // Summary: // Destroys a CXTPPopupThemeMSN object. //----------------------------------------------------------------------- virtual ~CXTPPopupThemeMSN(); public: //----------------------------------------------------------------------- // Summary: // Call this member function to refresh draw metrics. //----------------------------------------------------------------------- void RefreshMetrics(); //----------------------------------------------------------------------- // Summary: // Call this member function will draw the background of popup window. // Parameters: // pDC - Points to the device context. // rcClient - Size of area to fill. // pControl - Popup control to draw //----------------------------------------------------------------------- virtual void DrawBackground(CDC* pDC, CXTPPopupControl* pControl, CRect rcClient); }; #endif // XTPPopupThemeMSN_h__