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

📄 statusline.h

📁 Unix下的MUD客户端程序
💻 H
字号:
#ifndef __STATUS_H#define __STATUS_Hclass StatusLine : public Window{	char *message;			// Current message	time_t end_time;		// When should this message be turned off?	public:	        bool sticky_status;		StatusLine(Window *parent);	virtual void idle();				// Check if it is time to remove the text	void set(const char *s);			// Set status lien to this message	void setf(const char *fmt ...); 	// As above ,but formatted string		virtual void redraw();};extern StatusLine *status;			// This is the status line#endif

⌨️ 快捷键说明

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