⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bcgptoolbardatetimectrl.h

📁 远程网络监视程序的源码
💻 H
字号:
//*******************************************************************************
// COPYRIGHT NOTES
// ---------------
// This is a part of the BCGControlBar Library
// Copyright (C) 1998-2000 BCGSoft Ltd.
// All rights reserved.
//
// This source code can be used, distributed or modified
// only under terms and conditions 
// of the accompanying license agreement.
//*******************************************************************************

// BCGPToolbarDateTimeCtrl.h: interface for the CBCGPToolbarDateTimeCtrl class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BCGPTOOLBARDATETIMECTRL_H__D8F4F648_3C75_4884_B7E8_406F3EA73F27__INCLUDED_)
#define AFX_BCGPTOOLBARDATETIMECTRL_H__D8F4F648_3C75_4884_B7E8_406F3EA73F27__INCLUDED_

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

#include <afxdtctl.h>
#include "BCGCBPro.h"
#include "BCGPToolbarButton.h"

class CBCGPDateTimeCtrlWin : public CDateTimeCtrl
{
public:
	CBCGPDateTimeCtrlWin () : m_bMonthCtrlDisplayed(false) {}

	// Generated message map functions
protected:
	//{{AFX_MSG(CBCGPDateTimeCtrlWin)
	afx_msg void OnDateTimeChange (NMHDR* pNotifyStruct, LRESULT* pResult);
	afx_msg void OnDateTimeDropDown (NMHDR* pNotifyStruct, LRESULT* pResult);
	afx_msg void OnDateTimeCloseUp (NMHDR* pNotifyStruct, LRESULT* pResult);
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()

private:
	bool m_bMonthCtrlDisplayed;
};

class BCGCBPRODLLEXPORT CBCGPToolbarDateTimeCtrl : public CBCGPToolbarButton  
{
	friend class CBCGPDateTimeCtrlWin;

	DECLARE_SERIAL (CBCGPToolbarDateTimeCtrl)

public:
	CBCGPToolbarDateTimeCtrl ();
	CBCGPToolbarDateTimeCtrl (UINT uiID, int iImage, DWORD dwStyle = 0, int iWidth = 0);
	virtual ~CBCGPToolbarDateTimeCtrl ();

// Operations:

// Overrides:
	virtual CBCGPDateTimeCtrlWin* CreateDateTimeCtrl (CWnd* pWndParent, const CRect& rect);

	virtual void OnDraw (CDC* pDC, const CRect& rect, CBCGPToolBarImages* pImages,
						BOOL bHorz = TRUE, BOOL bCustomizeMode = FALSE,
						BOOL bHighlight = FALSE,
						BOOL bDrawBorder = TRUE,
						BOOL bGrayDisabledButtons = TRUE);
	virtual void CopyFrom (const CBCGPToolbarButton& src);
	virtual void Serialize (CArchive& ar);
	virtual SIZE OnCalculateSize (CDC* pDC, const CSize& sizeDefault, BOOL bHorz);
	virtual BOOL OnClick (CWnd* pWnd, BOOL bDelay = TRUE);
	virtual void OnChangeParentWnd (CWnd* pWndParent);
	virtual void OnMove ();
	virtual void OnSize (int iSize);
	virtual HWND GetHwnd ()
	{	
		return m_pWndDateTime->GetSafeHwnd ();
	}
	virtual BOOL NotifyCommand (int iNotifyCode);
	
	virtual BOOL CanBeStretched () const
	{	
		return TRUE;	
	}
	virtual void OnAddToCustomizePage ();
	virtual HBRUSH OnCtlColor (CDC* pDC, UINT nCtlColor);
	virtual BOOL HaveHotBorder () const
	{
		return m_pWndDateTime->GetSafeHwnd () == NULL ||
			(m_pWndDateTime->GetStyle () & WS_VISIBLE) == 0;
	}

	virtual int OnDrawOnCustomizeList (
			CDC* pDC, const CRect& rect, BOOL bSelected);

	virtual void DuplicateData () {}
	virtual void OnShow (BOOL bShow);
	virtual BOOL ExportToMenuButton (CBCGPToolbarMenuButton& menuButton) const;

	virtual void SetStyle (UINT nStyle);

	virtual BOOL OnUpdateToolTip (CWnd* pWndParent, int iButtonIndex,
		CToolTipCtrl& wndToolTip, CString& str);

protected:
	void Initialize ();
	void AdjustRect ();

// Attributes:
public:
	CDateTimeCtrl* GetDateTimeCtrl () const
	{
		return m_pWndDateTime;
	}

	BOOL SetTime (LPSYSTEMTIME pTimeNew = NULL);
	BOOL SetTime (const COleDateTime& timeNew);
	BOOL SetTime (const CTime* timeNew);
	DWORD GetTime (LPSYSTEMTIME pTimeDest) const {return m_pWndDateTime->GetTime(pTimeDest);}
	BOOL GetTime (COleDateTime& timeDest) const {return m_pWndDateTime->GetTime(timeDest);}
	DWORD GetTime (CTime& timeDest) const {return m_pWndDateTime->GetTime(timeDest);}

	static CBCGPToolbarDateTimeCtrl* GetByCmd (UINT uiCmd);
	static BOOL SetTimeAll (UINT uiCmd, LPSYSTEMTIME pTimeNew = NULL);
	static BOOL SetTimeAll (UINT uiCmd, const COleDateTime& timeNew);
	static BOOL SetTimeAll (UINT uiCmd, const CTime* pTimeNew);
	static DWORD GetTimeAll (UINT uiCmd, LPSYSTEMTIME pTimeDest);
	static BOOL GetTimeAll (UINT uiCmd, COleDateTime& timeDest);
	static DWORD GetTimeAll (UINT uiCmd, CTime& timeDest);

protected:
	DWORD					m_dwStyle;
	CBCGPDateTimeCtrlWin*	m_pWndDateTime;

	int						m_iWidth;

	BOOL					m_bHorz;

	DWORD					m_dwTimeStatus;
	CTime					m_time;
};

#endif // !defined(AFX_BCGPTOOLBARDATETIMECTRL_H__D8F4F648_3C75_4884_B7E8_406F3EA73F27__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -