[!if RIBBON_TOOLBAR] // This MFC Samples source code demonstrates using MFC Microsoft Office Fluent User Interface // (the "Fluent UI") and is provided only as referential material to supplement the // Microsoft Foundation Classes Reference and related electronic documentation // included with the MFC C++ library software. // License terms to copy, use or distribute the Fluent UI are available separately. // To learn more about our Fluent UI licensing program, please visit // https://go.microsoft.com/fwlink/?LinkId=238214. // // Copyright (C) Microsoft Corporation // All rights reserved. [!endif] #pragma once ///////////////////////////////////////////////////////////////////////////// // CCalendarBar window class CCalendarBar : public CWnd { // Construction public: CCalendarBar(); // Attributes protected: CMonthCalCtrl m_wndCalendar; int m_nMyCalendarsY; CImageList m_Images; // Overrides public: virtual BOOL Create(const RECT& rect, CWnd* pParentWnd, UINT nID = (UINT)-1); virtual BOOL PreTranslateMessage(MSG *pMsg); // Implementation public: virtual ~CCalendarBar(); protected: afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); afx_msg BOOL OnEraseBkgnd(CDC* pDC); afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg void OnPaint(); afx_msg void OnSetFocus(CWnd *pOldWnd); DECLARE_MESSAGE_MAP() };