144 lines
3.8 KiB
C++
144 lines
3.8 KiB
C++
// ==========================================================================
|
|
// Class Specification : COXCalendarPopup
|
|
// ==========================================================================
|
|
// OXCalendarPopup.h: header file
|
|
|
|
// Version: 9.3
|
|
|
|
// This software along with its related components, documentation and files ("The Libraries")
|
|
// is © 1994-2007 The Code Project (1612916 Ontario Limited) and use of The Libraries is
|
|
// governed by a software license agreement ("Agreement"). Copies of the Agreement are
|
|
// available at The Code Project (www.codeproject.com), as part of the package you downloaded
|
|
// to obtain this file, or directly from our office. For a copy of the license governing
|
|
// this software, you may contact us at legalaffairs@codeproject.com, or by calling 416-849-8900.
|
|
|
|
// //////////////////////////////////////////////////////////////////////////
|
|
|
|
// Properties:
|
|
// NO Abstract class (does not have any objects)
|
|
// YES Derived from CWnd
|
|
|
|
// YES Is a Cwnd.
|
|
// YES Two stage creation (constructor & Create())
|
|
// YES Has a message map
|
|
// NO Needs a resource (template)
|
|
|
|
// NO Persistent objects (saveable on disk)
|
|
// NO Uses exceptions
|
|
|
|
// Descriptions: Internal class for use with COXCalendar class
|
|
// Implement popup calendar window
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#ifndef __DATEPICKER_H
|
|
#define __DATEPICKER_H
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#include "OXDllExt.h"
|
|
#include "OXMainRes.h"
|
|
|
|
#ifndef __AFXDISP_H__
|
|
#include <afxdisp.h>
|
|
#define __AFXDISP_H__
|
|
#endif //__AFXDISP_H__
|
|
|
|
|
|
class COXCalendar;
|
|
|
|
|
|
class OX_CLASS_DECL COXCalendarPopup : public CWnd
|
|
{
|
|
// Construction
|
|
friend class COXCalendar;
|
|
// Data members -------------------------------------------------------------
|
|
protected:
|
|
void InvalidateSelChange(COleDateTime& SelOld,COleDateTime& SelNew);
|
|
void GetDayRect(int offset,CRect& rect);
|
|
|
|
enum {dragNothing=0, dragTodayButton=1, dragNoneButton=2, dragGrid=3};
|
|
int m_nDragMode;
|
|
CButton m_ButtonMonth;
|
|
CString m_sNone;
|
|
CButton m_ButtonNone;
|
|
CRect m_rectGrid;
|
|
CString m_sToday;
|
|
CButton m_ButtonToday;
|
|
CSize m_SizeWnd;
|
|
CSize m_szCell;
|
|
CFont m_font;
|
|
CRect m_rectRightNavBar;
|
|
CRect m_rectLeftNavBar;
|
|
COleDateTime m_DatePicked;
|
|
COleDateTime m_DateToday;
|
|
int m_nFirstDayOfWeek;
|
|
|
|
private:
|
|
COleDateTime m_InitialSelectedDate;
|
|
COleDateTime m_DateEnd;
|
|
COleDateTime m_DateStart;
|
|
COleDateTime m_CurrentMonth;
|
|
int m_nTick;
|
|
|
|
// Member functions ---------------------------------------------------------
|
|
protected:
|
|
BOOL Create(COXCalendar * pBaseCalendar);
|
|
BOOL ButtonTodayHit(CPoint pt);
|
|
BOOL ButtonNoneHit(CPoint pt);
|
|
|
|
COXCalendarPopup();
|
|
|
|
virtual ~COXCalendarPopup();
|
|
|
|
|
|
void SetButtons();
|
|
|
|
int CalcBarWidth();
|
|
|
|
void DecMonth(COleDateTime& month);
|
|
|
|
void IncMonth(COleDateTime& month);
|
|
|
|
void DoNavigationCheck(CPoint pt);
|
|
|
|
BOOL CanShowMonth(COleDateTime& month);
|
|
|
|
int HitTestNavigation(CPoint pt);
|
|
|
|
int GridHitTest(CPoint pt);
|
|
|
|
void GetLastShownDate(COleDateTime& d);
|
|
|
|
void GetFirstShownDate(COleDateTime& d);
|
|
|
|
BOOL Pick(COleDateTime& pickDate,const COleDateTime& startDate,
|
|
const COleDateTime& endDate,CRect rectCalendar);
|
|
void CalcCellSize();
|
|
CSize CalcWindowSize();
|
|
|
|
protected:
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(COXCalendarPopup)
|
|
protected:
|
|
virtual void PostNcDestroy();
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
//{{AFX_MSG(COXCalendarPopup)
|
|
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
|
|
afx_msg void OnPaint();
|
|
afx_msg void OnTimer(UINT nIDEvent);
|
|
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
|
|
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
|
|
//}}AFX_MSG
|
|
afx_msg LRESULT OnSettingChanged(WPARAM wParam, LPARAM lParam);
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#endif
|