📄 confirmer.h
字号:
/* $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -