setparam.h
来自「高速公路收费系统车道软件. 功能: 1 检测公路过往车辆 2 收费过程控制和数」· C头文件 代码 · 共 65 行
H
65 行
// SetParam.h: interface for the CSetParam class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SETPARAM_H__60458D13_4F6C_4E95_8EC5_F3C7995FE3D6__INCLUDED_)
#define AFX_SETPARAM_H__60458D13_4F6C_4E95_8EC5_F3C7995FE3D6__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Screen.h"
class CSetParam : public CScreen
{
public:
virtual BOOL ProcessKeyboard(UINT nChar);
virtual DrawWorkInfo(UINT nSlaveStatus);
UINT SelectItem();
virtual UpdateParam(char *pStr);
CSetParam();
protected:
BOOL ProcessKeyAtParam1(UINT nChar);
void DrawParam1();
void UpdateParam1(char *pStr);
private:
BOOL ProcessKeyAtMenu(UINT nChar);
BOOL ProcessKeyAtParam2(UINT nChar);
void DrawSetMenu();
void DrawParamValue();
static UINT nSelectItem;
static UINT nLine,nStatus;
static char strParam[128];
};
class CSetIP : public CSetParam
{
public:
virtual BOOL ProcessKeyboard(UINT nChar);
virtual DrawWorkInfo(UINT nSlaveStatus);
CSetIP();
virtual UpdateParam(char *pStr);
};
class CSendFile : public CScreen
{
public:
virtual BOOL ProcessKeyboard(UINT nChar);
virtual DrawWorkInfo(UINT nSlaveStatus);
CSendFile();
private:
void DrawSendMenu();
};
class CReceiveFile : public CScreen
{
public:
virtual DrawWorkInfo(UINT nSlaveStatus);
CReceiveFile();
private:
void DrawFileStatus();
};
#endif // !defined(AFX_SETPARAM_H__60458D13_4F6C_4E95_8EC5_F3C7995FE3D6__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?