File: wdmPrefs.h

package info (click to toggle)
wdm 1.28-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,108 kB
  • ctags: 1,140
  • sloc: ansic: 11,448; sh: 1,431; makefile: 441; perl: 29; cpp: 10
file content (21 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _WDMPREFS_H
#define _WDMPREFS_H

typedef struct _Panel
{
	char *description;
	void (*destroy)(struct _Panel *);
	void (*show)(struct _Panel *);
	void (*hide)(struct _Panel *);
	void (*save)(struct _Panel *);
	void (*undo)(struct _Panel *);
	void *data;
} Panel;

void AddSectionButton(Panel *panel, const char *iconfile);

void InitTestPanel(WMWidget *win);
void InitTestPanel2(WMWidget *win);

#endif /* _WDMPREFS_H */