File: tkwidget.h

package info (click to toggle)
mc 4.1.35-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 6,924 kB
  • ctags: 9,665
  • sloc: ansic: 84,273; tcl: 1,779; makefile: 1,266; sh: 864; perl: 262; awk: 148; sed: 93; csh: 1
file content (14 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __TKWIDGET_H
#define __TKWIDGET_H

void tk_update_input (WInput *in);
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 /* __TKWIDGET_H */