confirmer.h

来自「Gcomm is a serial communications program」· C头文件 代码 · 共 29 行

H
29
字号
/* $Id: confirmer.h,v 1.1.1.1 2001/03/08 00:01:48 efalk Exp $ */#ifndef	CONFIRMER_H#define	CONFIRMER_H/* Functions: * * create_confirmer(char *message, GtkWidget *parent) *	Return a confirmer dialog containing "OK" and "Cancel" button. *	The default behavior of the buttons is to set the dialog's *	"result" property to True or False and to hide the window. *	The "OK" button is cached in the "okButton" property.  The *	"Cancel" button is cached in the "cancelButton" property.  The *	text message GtkLabel is cached in the "label" property. * * gboolean * get_confirmation( GtkWidget *confirmer, gboolean dflt ) * *	Show confirmer box, wait for user to close it.  Return result. *	If user closes the confirmer from the window manager, the default *	result is returned. */extern	GtkWidget	*create_confirmer (char *message, GtkWidget *parent) ;extern	gboolean	get_confirmation(GtkWidget *, gboolean dflt) ;#endif

⌨️ 快捷键说明

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