⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 editmode.h

📁 高速公路收费系统车道软件. 功能: 1 检测公路过往车辆 2 收费过程控制和数据采集 3 车辆信息和图片上传服务器.
💻 H
字号:
// EditMode.h: interface for the CEditMode class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_EDITMODE_H__1F9AD321_8487_11D6_86D6_0080C8E77566__INCLUDED_)
#define AFX_EDITMODE_H__1F9AD321_8487_11D6_86D6_0080C8E77566__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Screen.h"

class CEditMode : public CScreen  
{
public:
	CEditMode();
	virtual BOOL ProcessKeyboard(UINT nChar);
	virtual DrawWorkInfo(UINT nSlaveStatus);
    int GetEditInvoiceType();

	long GetInvoiceStart(int InvoiceType);	//票起号
	long GetInvoiceEnd(int InvoiceType);	//票止号
	
	CModeMenu();
private:
	void DrawEditMenu();
	void DrawStartMenu();
	void DrawEndMenu();
	void DrawInvoice();
	void DrawInputNumber();
	BOOL ProcessKeyOfEditMenu(UINT nChar);
	BOOL ProcessKeyOfStartMenu(UINT nChar);
	BOOL ProcessKeyOfEndMenu(UINT nChar);
	BOOL ProcessKeyOfInvoice(UINT nChar);
	void SetInvoice(long nValue);
	static char strBuff[12];
	static long nInvoiceStart[7];
	static long nInvoiceEnd[7];
	static int nChildStatus;
	static int nInvoiceType;
	static UINT nStatus;
};

#endif // !defined(AFX_EDITMODE_H__1F9AD321_8487_11D6_86D6_0080C8E77566__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -