本文整理汇总了C++中MEvent::GetAccepted方法的典型用法代码示例。如果您正苦于以下问题:C++ MEvent::GetAccepted方法的具体用法?C++ MEvent::GetAccepted怎么用?C++ MEvent::GetAccepted使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MEvent
的用法示例。
在下文中一共展示了MEvent::GetAccepted方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SetOKButtonIfValidContent
void EventDlg::SetOKButtonIfValidContent(bool bAcceptanceCheck)
{
int good = 0;
for (int nItem = 0; nItem < m_List.GetItemCount(); nItem++)
{
if (!m_List.GetCheckbox(nItem,ImpEditCol::eCheck))
continue;
MEvent* pm = (MEvent*)m_List.GetItemData(nItem);
if (!pm)
continue;
if (pm->m_vr.ValidContent())
{
if ((!bAcceptanceCheck) || // don't care or
(bAcceptanceCheck && (!pm->GetAccepted()))) // catch those worth accepting
good++;
}
}
if (good < 1)
{
m_WaitingForFit = false;
GetDlgItem(IDOK)->EnableWindow(false);
SetDlgItemText(IDCANCEL, TEXT("Save Results"));
}
else
{
CString s;
s = "Fit Selected Measurement";
if (good > 1)
s.Append("s");
SetDlgItemText(IDOK, s);
GetDlgItem(IDOK)->EnableWindow(true);
SetDlgItemText(IDCANCEL, TEXT("Cancel"));
m_WaitingForFit = true;
}
}