24 lines
977 B
C++
24 lines
977 B
C++
class _XTP_EXT_CLASS CXTPStatusBarThemeVisualStudio2010 : public CXTPStatusBarPaintManager
|
|
{
|
|
public:
|
|
CXTPStatusBarThemeVisualStudio2010(CXTPPaintManager *pPaintManager);
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// This method is called to fill a status bar.
|
|
// Parameters:
|
|
// pDC - Pointer to a valid device context
|
|
// pBar - Points to a CXTPStatusBar object
|
|
//-----------------------------------------------------------------------
|
|
virtual void FillStatusBar(CDC *pDC, CXTPStatusBar *pBar);
|
|
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// This method is called to draw the status bar's gripper.
|
|
// Parameters:
|
|
// pDC - Pointer to a valid device context
|
|
// rcClient - Client rectangle of the status bar.
|
|
//-----------------------------------------------------------------------
|
|
virtual void DrawStatusBarGripper(CDC *pDC, CRect rcClient);
|
|
};
|