File: data_entry_bool.h

package info (click to toggle)
mlterm 2.9.4-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 16,728 kB
  • ctags: 5,338
  • sloc: ansic: 74,649; sh: 8,532; cpp: 1,451; makefile: 1,126; perl: 496; sed: 16
file content (13 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
typedef struct {
	int initial;
	int current;
} entry_bool_t;

entry_bool_t *entry_bool_new(const char *key);
int entry_bool_add(section_t *section, const char *name, const char * key);
void entry_bool_free_data(entry_t * entry);
void entry_bool_apply(const entry_t *entry);
void entry_bool_reset(const entry_t *entry);
void entry_bool_display(window_t *window, const entry_t *entry, int x, int y, int state);
int entry_bool_edit(window_t *window, entry_t *entry, int x, int y);