File: wtabledelegates.h

package info (click to toggle)
wmaker 0.96.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,416 kB
  • sloc: ansic: 99,483; sh: 7,068; perl: 3,423; makefile: 1,647; lisp: 219; python: 34
file content (25 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

#ifndef _TABLEDELEGATES_H_
#define _TABLEDELEGATES_H_

#ifdef __cplusplus
extern "C" {
#endif

WMTableColumnDelegate *WTCreatePixmapDelegate(WMTableView *table);
WMTableColumnDelegate *WTCreateStringDelegate(WMTableView *table);
WMTableColumnDelegate *WTCreatePixmapStringDelegate(WMTableView *parent);

WMTableColumnDelegate *WTCreateStringEditorDelegate(WMTableView *table);

WMTableColumnDelegate *WTCreateEnumSelectorDelegate(WMTableView *table);
void WTSetEnumSelectorOptions(WMTableColumnDelegate *delegate,
                              char **options, int count);

WMTableColumnDelegate *WTCreateBooleanSwitchDelegate(WMTableView *parent);

#ifdef __cplusplus
}
#endif

#endif