mos_ui.h

来自「用VC编写的一个微型操作系统」· C头文件 代码 · 共 28 行

H
28
字号
// Mos_UI.h: interface for the CMos_UI class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MOS_UI_H__CF4D2055_A15E_4E83_AD1E_D576B27D6271__INCLUDED_)
#define AFX_MOS_UI_H__CF4D2055_A15E_4E83_AD1E_D576B27D6271__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "PCB.h"
const CString STR = " %.3d    ";
class CMos_UI  
{
public:
	void UpdateListAll(int ID);
	void UpdateList(int ID,char* oldch=NULL,int n=0,char *newch=NULL);
	void FillList(int n,char *p,int ID);
	void DrawRect(int m,int total,int ID);
	void PrtMsg(char* buff);
	void DealWithUIEx(pcbtype* p,int ID);
	void DealWithUI(CString str,int ID);
	CMos_UI();
	virtual ~CMos_UI();
};

#endif // !defined(AFX_MOS_UI_H__CF4D2055_A15E_4E83_AD1E_D576B27D6271__INCLUDED_)

⌨️ 快捷键说明

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