📄 myformview.h
字号:
#if !defined(AFX_MYFORMVIEW_H__291995C3_86EE_11D7_80DF_000021E3C617__INCLUDED_)
#define AFX_MYFORMVIEW_H__291995C3_86EE_11D7_80DF_000021E3C617__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MyFormView.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CMyFormView form view
#ifndef __AFXEXT_H__
#include <afxext.h>
#endif
#include "RyxGpsDoc.h"
class CMyFormView : public CFormView
{
protected:
CMyFormView(); // protected constructor used by dynamic creation
DECLARE_DYNCREATE(CMyFormView)
// Form Data
public:
//{{AFX_DATA(CMyFormView)
enum { IDD = IDD_DIALOG1 };
CBrush m_hBrush;
CBitmap m_bitmap;
CString m_strFYAngle;
CString m_strTimeOrder;
CString m_strHXAngle;
CString m_strGPSTime;
CString m_strGPSCycle;
CString m_strWeiDu;
CString m_strJingDu;
CString m_strGaoDu;
CString m_strGDOP;
CString m_strHDOP;
CString m_strSFMYRN;
CString m_strSpeedX;
CString m_strSpeedY;
CString m_strSpeedZ;
CString m_strPosX;
CString m_strPosY;
CString m_strPosZ;
CString m_strVDOP;
//}}AFX_DATA
// Attributes
public:
CRyxGpsDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMyFormView)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView);
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CMyFormView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
//{{AFX_MSG(CMyFormView)
afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
//}}AFX_MSG
afx_msg void OnMyNotify(WPARAM wParam,LPARAM lParam);
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#ifndef _DEBUG // debug version in RyxGpsView.cpp
inline CRyxGpsDoc* CMyFormView::GetDocument()
{ return (CRyxGpsDoc*)m_pDocument; }
#endif
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MYFORMVIEW_H__291995C3_86EE_11D7_80DF_000021E3C617__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -