Click here to Skip to main content
15,886,067 members
Articles / Desktop Programming / MFC

The Ultimate Toolbox - Updates and User Contributions

Rate me:
Please Sign up or sign in to vote.
4.79/5 (26 votes)
12 Feb 2013CPOL8 min read 254.8K   23.7K   170  
Updates and User Contributions for the Ultimate Toolbox Libraries
// ==========================================================================
// 					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"

// v9.3 - update 03 - 64bit - included for OXTPARAM
#include "UTB64Bit.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();
	// v9.3 - update 03 - 64-bit - using OXTPARAM here - see UTB64Bit.h
	afx_msg void OnTimer(OXTPARAM 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

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
In January 2005, David Cunningham and Chris Maunder created TheUltimateToolbox.com, a new group dedicated to the continued development, support and growth of Dundas Software’s award winning line of MFC, C++ and ActiveX control products.

Ultimate Grid for MFC, Ultimate Toolbox for MFC, and Ultimate TCP/IP have been stalwarts of C++/MFC development for a decade. Thousands of developers have used these products to speed their time to market, improve the quality of their finished products, and enhance the reliability and flexibility of their software.
This is a Organisation

476 members

Comments and Discussions