63 lines
2.3 KiB
C++
63 lines
2.3 KiB
C++
// XTPReportThemeOfficeXP.h: interface for the CXTPReportPaintManager class.
|
|
//
|
|
// This file is a part of the XTREME REPORTCONTROL 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
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_CODEJOCK_PRIVATE
|
|
#if !defined(__XTPReportThemeOfficeXP_H__)
|
|
#define __XTPReportThemeOfficeXP_H__
|
|
//}}AFX_CODEJOCK_PRIVATE
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
//===========================================================================
|
|
// Summary:
|
|
// CXTPReportThemeOfficeXP is a CXTPReportPaintManager derived
|
|
// class. This represents an Office XP style theme.
|
|
//===========================================================================
|
|
class _XTP_EXT_CLASS CXTPReportThemeOfficeXP : public CXTPReportPaintManager
|
|
{
|
|
public:
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Default paint manager constructor, handles properties initialization.
|
|
//-----------------------------------------------------------------------
|
|
CXTPReportThemeOfficeXP();
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// This method is called to draw background of the column using current column style
|
|
// Parameters:
|
|
// pDC - Point to used Device Context
|
|
// pColumn - Column needs to draw
|
|
// rcColumn - Bounding rectangle of the column
|
|
// bColumnPressed - TRUE if column is pressed by user.
|
|
// pHeader - Pointer to a header the column belongs to.
|
|
//-----------------------------------------------------------------------
|
|
virtual void DrawColumnBackground(CDC* pDC,
|
|
CXTPReportColumn* pColumn,
|
|
CRect rcColumn,
|
|
BOOL& bColumnPressed,
|
|
BOOL& bDraggingFromHeader,
|
|
CXTPReportHeader* pHeader = NULL);
|
|
};
|
|
|
|
#endif //#if !defined(__XTPReportThemeOfficeXP_H__)
|