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

📄 on_menu.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
#ifndef lintstatic	char	sccsid[] = "@(#)on_menu.c 1.1 92/07/30";#endif/* *	Name:		on_menu.c * *	Description:	Turn on (activate) a menu. * *	Call syntax:	on_menu(menu_p); * *	Parameters:	menu *		menu_p; */#include <curses.h>#include "menu.h"voidon_menu(menu_p)	menu *		menu_p;{	menu_file *	file_p;			/* ptr to file object */	menu_item *	item_p;			/* ptr to menu item */	menu_string *	string_p;		/* ptr to a string */	int		x_coord, y_coord;	/* saved coordinates */	getyx(stdscr, y_coord, x_coord);	/* save where we were */	for (string_p = menu_p->m_mstrings; string_p;	     string_p = string_p->ms_next) {		on_menu_string(string_p);	}	for (file_p = menu_p->m_files; file_p; file_p = file_p->mf_next) {		on_menu_file(file_p);	}	for (item_p = menu_p->m_items; item_p; item_p = item_p->mi_next) {		on_menu_item(item_p);	}	if (menu_p->m_finish)		on_form_yesno(menu_p->m_finish);	display_menu(menu_p);	move(y_coord, x_coord);			/* put cursor back */} /* end on_menu() */

⌨️ 快捷键说明

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