📄 markupdlg.h
字号:
// MarkupDlg.h : header file
//
// Markup Release 8.2
// Copyright (C) 1999-2006 First Objective Software, Inc. All rights reserved
// Go to www.firstobject.com for the latest CMarkup and EDOM documentation
// Use in commercial applications requires written permission
// This software is provided "as is", with no warranty.
#if !defined(AFX_MARKUPDLG_H__7E553A30_D0C6_11D6_9F49_00500486CAFC__INCLUDED_)
#define AFX_MARKUPDLG_H__7E553A30_D0C6_11D6_9F49_00500486CAFC__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/////////////////////////////////////////////////////////////////////////////
// CMarkupDlg dialog
class CMarkupDlg : public CDialog
{
// Construction
public:
CMarkupDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CMarkupDlg)
enum { IDD = IDD_MARKUP_DIALOG };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMarkupDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
void OutputTestResults( CString csMsg );
int Alert( CString csMsg );
void StartCheckZone( CString csCheckZone );
int Check( BOOL bCorrect );
int RunTest();
void OutputParseResults( CString csMsg );
void TimeStart();
int TimeStop();
int RandInt( int nNumber );
CString m_csTestResults;
CString m_csChecks;
CString m_csCheckZone;
int m_nCheckCount;
int m_nErrorCount;
int m_nTotalZones;
int m_nTotalChecks;
SYSTEMTIME m_stBefore;
// Util
static CString AddNumSeps( int nVal )
{
CString csNum;
csNum.Format(_T("%d"),nVal);
for ( int nOffset = csNum.GetLength()-3; nOffset > 0; nOffset -= 3 )
csNum = csNum.Left(nOffset) + "," + csNum.Mid(nOffset);
return csNum;
};
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CMarkupDlg)
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnButtonBrowse();
afx_msg void OnButtonParse();
afx_msg void OnDestroy();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MARKUPDLG_H__7E553A30_D0C6_11D6_9F49_00500486CAFC__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -