加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
MainFrm.h 3.28 KB
一键复制 编辑 原始数据 按行查看 历史
Chen Jun 提交于 2012-11-13 19:56 . add auto detect device insert or remove
// MainFrm.h : interface of the CMainFrame class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_MAINFRM_H__200B9C8E_073F_419D_945F_56A1CC0460C4__INCLUDED_)
#define AFX_MAINFRM_H__200B9C8E_073F_419D_945F_56A1CC0460C4__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define TIMER_ID_AUTO_SEND 1000
typedef struct CtlTable
{
char ItemName[16];
int ItemId;
}CtlTable_t;
class CMainFrame : public CMDIFrameWnd
{
DECLARE_DYNAMIC(CMainFrame)
public:
CMainFrame();
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMainFrame)
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
virtual BOOL PreTranslateMessage(MSG* pMsg);
virtual BOOL DestroyWindow();
protected:
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
//}}AFX_VIRTUAL
// Implementation
public:
int nCheckId[32];
void SendData(int id);
int nEditId[32];
void InitCtl();
void SetDcb();
DCB m_dcb;
int EnumCommPorts(char (*pListStr)[16]);
virtual ~CMainFrame();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
CDialogBar m_wndDialogBarBottom;
CDialogBar m_wndDialogBarRight;
CStatusBar m_wndStatusBar;
afx_msg void OnOpenPort();
protected: // control bar embedded members
CToolBar m_wndToolBar;
// Generated message map functions
protected:
//{{AFX_MSG(CMainFrame)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnOpenFile();
afx_msg void OnViewHelp();
afx_msg void OnSelchangePortList();
afx_msg void OnExpandWin();
afx_msg void OnInputSend();
afx_msg void OnSendFile();
afx_msg void OnButton3();
afx_msg void OnButton1();
afx_msg void OnButton2();
afx_msg void OnButton4();
afx_msg void OnButton5();
afx_msg void OnButton6();
afx_msg void OnButton7();
afx_msg void OnButton8();
afx_msg void OnButton9();
afx_msg void OnButton10();
afx_msg void OnButton11();
afx_msg void OnButton12();
afx_msg void OnButton13();
afx_msg void OnButton14();
afx_msg void OnButton15();
afx_msg void OnButton16();
afx_msg void OnButton17();
afx_msg void OnButton32();
afx_msg void OnButton20();
afx_msg void OnButton21();
afx_msg void OnButton22();
afx_msg void OnButton23();
afx_msg void OnButton24();
afx_msg void OnButton25();
afx_msg void OnButton26();
afx_msg void OnButton27();
afx_msg void OnButton28();
afx_msg void OnButton29();
afx_msg void OnButton30();
afx_msg void OnButton31();
afx_msg void OnButton18();
afx_msg void OnButton19();
afx_msg void OnInputSetfocus();
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
afx_msg void OnEditCut();
afx_msg void OnItemClear();
afx_msg void OnSelchangeSetBitrate();
afx_msg void OnEnableTimer();
afx_msg void OnTimer(UINT nIDEvent);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MAINFRM_H__200B9C8E_073F_419D_945F_56A1CC0460C4__INCLUDED_)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化