1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/bfu/group.h
Pavol Babincak 38db20b776 Added format_only parameter for distinguish between formating.
Preparation for using struct terminal in formating functions.

By now distinguish between formating widgets and formating widgets with
displaying was done with term == NULL and term != NULL. I hope I'am
not wrong.
2006-03-06 06:01:12 +01:00

15 lines
299 B
C

#ifndef EL__BFU_GROUP_H
#define EL__BFU_GROUP_H
struct dialog_data;
struct terminal;
struct widget_data;
void dlg_format_group(struct terminal *term,
struct widget_data *widget_data,
int n, int x, int *y, int w, int *rw, int format_only);
void group_layouter(struct dialog_data *);
#endif