Click here to Skip to main content
15,895,746 members
Articles / Desktop Programming / MFC

Calendar Plug-in for .dan.g.'s ToDoList - In 10 Easy Steps™

Rate me:
Please Sign up or sign in to vote.
4.99/5 (63 votes)
10 Jun 2008CC (ASA 2.5)12 min read 1.1M   7.7K   252  
A Calendar UI extension component for the ToDoList, giving you a timeline view of your tasks
/* PERF__FREZ/PUB
 * ====================================================
 * BigCalendarCtrl.h
 * Frederic Rezeau
 * 
 * Perf'Control Personal Edition calendar 
 *
 * If you like it, feel free to use it. 
 *
 * www.performlabs.com 
 * ==================================================== 
 * Original file written by Frederic Rezeau (http://www.codeproject.com/KB/miscctrl/CCalendarCtrl.aspx)
 * Rewritten for the ToDoList (http://www.codeproject.com/KB/applications/todolist2.aspx)
 * Design and latest version - http://www.codeproject.com/KB/applications/TDL_Calendar.aspx
 * by demon.code.monkey@googlemail.com
 */

#ifndef _BIGCALENDARCTRL_H_
#define _BIGCALENDARCTRL_H_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#define CALENDAR_LIGHTGREY		RGB(235,235,235)
#define CALENDAR_LINE_HEIGHT	15
#define CALENDAR_HEADER_HEIGHT	18
#define CALENDAR_ROWS			9
#define CALENDAR_COLUMNS		7

class CBigCalendarTask;
class CCalendarData;
class CCalendarFrameWnd;


/////////////////////////////////////////////////////////////////////////////
// class CBigCalendarCell --   
/////////////////////////////////////////////////////////////////////////////
struct CBigCalendarCell
{
	COleDateTime	date;
	CStringArray	arrTasks;
	CDWordArray		arrTaskIDs;
	CDWordArray		arrIsStartTask;
	CDWordArray		arrIsDueTask;
	CDWordArray		arrIsCompleteTask;
	int				nListboxID;
};

/////////////////////////////////////////////////////////////////////////////
// class CBigCalendarCtrl --   
/////////////////////////////////////////////////////////////////////////////
class CBigCalendarCtrl : public CWnd
{
public:
	CBigCalendarCtrl();
	virtual ~CBigCalendarCtrl();
	void Initialize(CCalendarFrameWnd* _pFrameWnd, CCalendarData* _pCalendarData, HWND _hwndMessageRoutingWindow);

	BOOL Create(DWORD _dwStyle, const CRect& _rect, CWnd* _pParent, UINT _nID);
	void Repopulate();
	void SelectDate(const COleDateTime& _date);
	void TasklistUpdated();

	const CCalendarData* GetCalendarData() const { return m_pCalendarData; }

	//called from CBigCalendarTask
	void ClickedOnTaskInListbox();
	void SelectTask(int _nTaskListboxID, int _nTaskID);

	void GetSelectedDate(COleDateTime& _date) const;
	DWORD GetSelectedTask() const;

	//{{AFX_VIRTUAL(CBigCalendarCtrl)
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	//}}AFX_VIRTUAL

protected:	
	BOOL	GetGridCellFromPoint(CPoint _point, int& _nRow, int& _nCol) const;
	BOOL	GetRectFromCell(int _nRow, int _nCol, CRect& _rect) const;
	void	GetLastSelectedGridCell(int& _nRow, int& _nCol) const;

	CBigCalendarTask*		GetTaskListboxFromTaskListboxID(int _nListboxID) const;
	CBigCalendarTask*		GetTaskListboxFromCell(int _nRow, int _nCol) const;
	CBigCalendarTask*		GetTaskListboxFromDate(const COleDateTime& _date) const;
	const CBigCalendarCell*	GetCell(const COleDateTime& _date) const;

	BOOL	IsDateVisible(const COleDateTime& _date, BOOL* _pbAfter=NULL) const;
	BOOL	IsFirstVisibleDayOfMonth(const COleDateTime& _date) const;

	static COLORREF GetFadedBlue(unsigned char _percent);

	void EnterCell();
	void LeaveCell();

	void GotoMonth(const COleDateTime& _date);
	void Goto(const COleDateTime& _date, BOOL _bSelect=FALSE);

	void DrawHeader(CDC* _pDC);
	void DrawGrid(CDC* _pDC);
	void DrawCells(CDC* _pDC);

	void FireNotifySelectDate();
	void SendSelectDateMessageToParent();

	void ScrollDown(int _nLines);
	void ScrollUp(int _nLines);

	void CreateTasks(BOOL _bRecreate=FALSE);
	void ResizeTasks(BOOL _bRepopulateTasks=FALSE);
	void RepopulateAllCells(const COleDateTime& _dateFirstCell);

	//{{AFX_MSG(CBigCalendarCtrl)
	afx_msg void OnPaint();
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
	public:
	afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

private:
	CCalendarFrameWnd*	m_pFrameWnd;
	CCalendarData*		m_pCalendarData;
	HWND				m_hwndMessageRoutingWindow;

	BOOL				m_bTracking;
	BOOL				m_bMonthIsOdd;
	int					m_nFirstWeekDay; // 1 = sunday
	int					m_nSelectedTaskID;
	int					m_nVscrollMax;
	int					m_nVscrollPos;

	CFont*				m_pFont;
	CFont*				m_pFontBold;
	CBigCalendarCell	m_dayCells[CALENDAR_ROWS][CALENDAR_COLUMNS];
	COleDateTime		m_dateSelected;
	CPtrList			m_listCalendarTasks;
};


#endif//_BIGCALENDARCTRL_H_

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 Creative Commons Attribution-ShareAlike 2.5 License


Written By
Software Developer (Senior)
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions