mirror of https://github.com/MidnightCommander/mc
14 lines
485 B
C
14 lines
485 B
C
#ifndef __GWIDGET_H
|
|
#define __GWIDGET_H
|
|
|
|
void x_button_set (WButton *b, char *text);
|
|
int x_create_button (Dlg_head *h, widget_data parent, WButton *b);
|
|
void x_listbox_select_nth (WListbox *l, int nth);
|
|
void x_listbox_delete_nth (WListbox *l, int nth);
|
|
void x_label_set_text (WLabel *label, char *text);
|
|
int x_create_gauge (Dlg_head *h, widget_data parent, WGauge *g);
|
|
void x_gauge_show (WGauge *g);
|
|
void x_gauge_set_value (WGauge *g, int max, int current);
|
|
|
|
#endif /* __GWIDGET_H */
|