QuakeGod
2023-05-19 418cb35b936f21415807a2bcc21b2d75934bd4d2
提交 | 用户 | age
418cb3 1 
Q 2 // LCDDisplayDlg.h: 头文件
3 //
4
5 #pragma once
6 #include "LCDDisplay1.h"
7
8 // CLCDDisplayTestDlg 对话框
9 class CLCDDisplayTestDlg : public CDialogEx
10 {
11 // 构造
12 public:
13     CLCDDisplayTestDlg(CWnd* pParent = nullptr);    // 标准构造函数
14
15 // 对话框数据
16 #ifdef AFX_DESIGN_TIME
17     enum { IDD = IDD_LCDDISPLAY_DIALOG };
18 #endif
19
20     protected:
21     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
22
23
24 // 实现
25 protected:
26     HICON m_hIcon;
27
28     // 生成的消息映射函数
29     virtual BOOL OnInitDialog();
30     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
31     afx_msg void OnPaint();
32     afx_msg HCURSOR OnQueryDragIcon();
33     DECLARE_MESSAGE_MAP()
34 public:
35     LCDDisplay1 m_lcd_display;
36     afx_msg void OnBnClickedButton1();
37     afx_msg void OnBnClickedButton2();
38     afx_msg void OnBnClickedButton3();
39     afx_msg void OnBnClickedButton4();
40     afx_msg void OnBnClickedButton5();
41     afx_msg void OnBnClickedButton6();
42     afx_msg void OnBnClickedButtonConvert();
43     afx_msg void OnBnClickedButtonClear();
44     afx_msg void OnTimer(UINT_PTR nIDEvent);
45     int DelayInit();
46     int UpdateDisplay();
47     afx_msg void OnBnClickedButton7();
48     afx_msg void OnBnClickedButton8();
49     CMFCColorButton m_color_button1;
50     CMFCColorButton m_color_button2;
51 };