#include "ntw.h"
Go to the source code of this file.
Functions | |
| uint8 | ntw_dialog_get_modal (ntwWidget *widget) |
| Gets dialog's modal status. | |
| char * | ntw_dialog_get_title (ntwWidget *widget) |
| Gets dialog's title. | |
| int | ntw_dialog_set_modal (ntwWidget *widget, uint8 modal) |
| Sets dialog's modal status. | |
| int | ntw_dialog_set_title (ntwWidget *widget, char *text) |
| Sets dialog's title. | |
| ntwWidget * | ntw_dialog_new (ntwWidget *parent, int32 width, int32 height, uint8 modal, char *title) |
| Create dialog widget. | |
A dialog is a child window, usually used for simple yes/no/cancel user interaction. It can be made modal to force user interaction before the program continues. It can contain a single widget.
|
|
Gets dialog's modal status.
|
|
|
Gets dialog's title.
|
|
||||||||||||||||||||||||
|
Create dialog widget. A dialog is usually a modal window that takes the focus from the parent. Use it for simple yes/no/cancel user interaction. The width and height may be specified, but are not guaranteed.
|
|
||||||||||||
|
Sets dialog's modal status.
|
|
||||||||||||
|
Sets dialog's title.
|
1.4.6