123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #if !defined(AFX_SHOWSTRING_H__5545DCBF_6884_4B85_BF03_D8DE22F2037A__INCLUDED_)
- #define AFX_SHOWSTRING_H__5545DCBF_6884_4B85_BF03_D8DE22F2037A__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // ShowString.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CShowString dialog
- class CShowString : public CDialog
- {
- // Construction
- public:
- CShowString(CWnd* pParent = NULL); // standard constructor
- LONG m_lServerID;
- int m_nChanNum;
- NET_DVR_SHOWSTRING m_ShowString;
- DWORD dwReturned;
-
- // Dialog Data
- //{{AFX_DATA(CShowString)
- enum { IDD = IDD_DLG_STRING };
- CComboBox m_areaCtrl;
- CString m_string;
- BOOL m_chkshow;
- int m_stringX;
- int m_stringY;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CShowString)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CShowString)
- virtual BOOL OnInitDialog();
- virtual void OnCancel();
- virtual void OnOK();
- afx_msg void OnButok();
- afx_msg void OnButexit();
- afx_msg void OnButok2();
- afx_msg void OnSelchangeComarea();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_SHOWSTRING_H__5545DCBF_6884_4B85_BF03_D8DE22F2037A__INCLUDED_)
|