-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetRing.cpp
138 lines (114 loc) · 7.7 KB
/
SetRing.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// SetRing.cpp : implementation file
//////////////////////////////////////////////////
//类名:CSetRing
//功能:闹铃设置功能
//作者:徐景周(Johnny Xu, xujingzhou2016@gmail.com)
//组织:未来工作室(Future Studio)
//日期:2001.12.1
//////////////////////////////////////////////////
#include "stdafx.h"
#include "helptip.h"
#include "SetRing.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
// Download by http://www.codefans.net
/////////////////////////////////////////////////////////////////////////////
// CSetRing dialog
CSetRing::CSetRing(CWnd* pParent /*=NULL*/)
: CDialog(CSetRing::IDD, pParent)
{
//{{AFX_DATA_INIT(CSetRing)
m_Time = CTime(2002,4,24,12,00,00);
m_sNowTime = _T("");
//}}AFX_DATA_INIT
}
void CSetRing::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSetRing)
DDX_Control(pDX, IDOK, m_OK);
DDX_Control(pDX, IDCANCEL, m_Cancel);
DDX_DateTimeCtrl(pDX, IDC_DATETIMEPICKER1, m_Time);
DDX_Text(pDX, IDC_STATIC_NOW, m_sNowTime);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSetRing, CDialog)
//{{AFX_MSG_MAP(CSetRing)
ON_NOTIFY(DTN_DATETIMECHANGE, IDC_DATETIMEPICKER1, OnDatetimechangeDatetimepicker1)
ON_WM_TIMER()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSetRing message handlers
//********************************************************************************
//* 名称:OnInitDialog()
//* 作者:徐景周(jingzhou_xu@163.net)
//* 功能:初始化闹铃设置对话框
//********************************************************************************
BOOL CSetRing::OnInitDialog()
{
CDialog::OnInitDialog();
//启动计时器,一秒钟更新一次
SetTimer(0,1000,NULL);
m_bSetRing = FALSE;
//初始更新闹钟显示
CTime nowtime = CTime::GetCurrentTime();
m_sNowTime = nowtime.Format(_T("%Y-%m-%d %H:%M:%S"));
m_Time = CTime(nowtime.GetYear(),nowtime.GetMonth(),nowtime.GetDay(),nowtime.GetHour(),nowtime.GetMinute(),nowtime.GetSecond());
//闹铃设置对话框中,初始化阴影位图按钮
m_OK.SetTextColor(RGB(0,0,0));
m_OK.SetToolTipText("确定");
m_OK.SetShade(SHS_NOISE,33); //(SHS_HARDBUMP,10,20,5,RGB(55,55,255));
m_Cancel.SetTextColor(RGB(0,0,0));
m_Cancel.SetToolTipText("取消");
m_Cancel.SetShade(SHS_NOISE,33);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
//********************************************************************************
//* 名称:OnDatetimechangeDatetimepicker1()
//* 作者:徐景周(jingzhou_xu@163.net)
//* 功能:更新时间控件显示
//********************************************************************************
void CSetRing::OnDatetimechangeDatetimepicker1(NMHDR* pNMHDR, LRESULT* pResult)
{
UpdateData(true); //更新控件显示
*pResult = 0;
}
//********************************************************************************
//* 名称:OnTimer()
//* 作者:徐景周(jingzhou_xu@163.net)
//* 功能:更新当前时间
//********************************************************************************
void CSetRing::OnTimer(UINT nIDEvent)
{
CTime nowtime = CTime::GetCurrentTime();
m_sNowTime = nowtime.Format(_T("%Y-%m-%d %H:%M:%S"));
UpdateData(FALSE);
CDialog::OnTimer(nIDEvent);
}
//********************************************************************************
//* 名称:OnOK()
//* 作者:徐景周(jingzhou_xu@163.net)
//* 功能:选中定时闹铃
//********************************************************************************
void CSetRing::OnOK()
{
m_bSetRing = TRUE;
CDialog::OnOK();
}
//********************************************************************************
//* 名称:GetCurRingTime()
//* 作者:徐景周(jingzhou_xu@163.net)
//* 功能:获取当前闹铃设置时间
//********************************************************************************
CTime CSetRing::GetCurRingTime()
{
if(m_bSetRing)
return m_Time;
else
return NULL;
}