📄 repeaterview.h
字号:
// repeaterView.h : interface of the CRepeaterView class
//
/////////////////////////////////////////////////////////////////////////////
#include "globals.h"
#include "repeaterDoc.h"
#if !defined(AFX_REPEATERVIEW_H__BEEB5EA6_7F3D_11D5_9BC0_0080C8EE2075__INCLUDED_)
#define AFX_REPEATERVIEW_H__BEEB5EA6_7F3D_11D5_9BC0_0080C8EE2075__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
extern GLOBALS_ST stGlobals;
//定义CDMA系统频道号对应的基站发送中心频率(下行链路)
//基站接收中心频率为基站发送中心频率-45MHz(上行链路)
class CRepeaterView : public CView
{
protected: // create from serialization only
CRepeaterView();
DECLARE_DYNCREATE(CRepeaterView)
// Attributes
public:
CRepeaterDoc* GetDocument();
// Operations
public:
void OnRedraw();
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CRepeaterView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
//}}AFX_VIRTUAL
// Implementation
virtual ~CRepeaterView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
private:
CRepeaterDB * m_pRepeaterDB;
CInstruSelDB * m_pInstruSelDB;
CRouteDB * m_pRouteDB;
CTestData * m_pTestData;
CPassword * m_pPassword;
// CChannelSelDB * m_pChannelSelDB;
// Generated message map functions
protected:
//{{AFX_MSG(CRepeaterView)
afx_msg void OnConfigInstrument();
afx_msg void OnConfigRepeater();
afx_msg void OnConfigSpecificationLimit();
afx_msg void OnCalibratePowermeterRoute();
afx_msg void OnCalibratePowermeterSelf();
afx_msg void OnCalibrateSignalRoute();
afx_msg void OnCalibrateSpectrumanalyzerRoute();
afx_msg void OnStart();
afx_msg void OnTestForward();
afx_msg void OnTestReverse();
afx_msg void OnQuerySerialno();
afx_msg void OnQueryModel();
afx_msg void OnConfigFreqSelect();
afx_msg void OnDestroy();
afx_msg void OnCalibrateNoiseanalyzer();
afx_msg void OnCalibrateNetanalyzer();
afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
afx_msg void OnTest();
afx_msg void OnPaint();
afx_msg void OnTs001();
afx_msg void OnUpdateStart(CCmdUI* pCmdUI);
afx_msg void OnHelp();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in repeaterView.cpp
inline CRepeaterDoc* CRepeaterView::GetDocument()
{ return (CRepeaterDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_REPEATERVIEW_H__BEEB5EA6_7F3D_11D5_9BC0_0080C8EE2075__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -