File: data_entry_color.h

package info (click to toggle)
mlterm 3.1.2-1.3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 23,168 kB
  • sloc: ansic: 102,795; sh: 9,676; java: 2,018; perl: 1,601; makefile: 1,595; cpp: 771; sed: 16
file content (13 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
typedef struct {
	char * initial;
	char * current;
} entry_color_t;

entry_color_t *entry_color_new(const char *key);
int entry_color_add(section_t *section, const char *name, const char * key);
void entry_color_free_data(entry_t * entry);
void entry_color_apply(entry_t *entry);
void entry_color_reset(entry_t *entry);
void entry_color_display(window_t *window, entry_t *entry, int x, int y, int state);
int entry_color_edit(window_t *window, entry_t *entry, int x, int y);