From 5903dffe3c3f4572491c6575d431f066faa03caf Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 16 Aug 2014 21:49:43 -0400 Subject: Implemented ImageList and Table ImageIndex on Mac OS X. --- redo/objc_darwin.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'redo/objc_darwin.h') diff --git a/redo/objc_darwin.h b/redo/objc_darwin.h index 16a1a56..eef1501 100644 --- a/redo/objc_darwin.h +++ b/redo/objc_darwin.h @@ -83,8 +83,12 @@ extern void tabAppend(id, char *, id); extern struct xsize tabPreferredSize(id); /* table_darwin.m */ +enum { + colTypeText, + colTypeImage, +}; extern id newTable(void); -extern void tableAppendColumn(id, intptr_t, char *); +extern void tableAppendColumn(id, intptr_t, char *, int); extern void tableUpdate(id); extern void tableMakeDataSource(id, void *); extern struct xsize tablePreferredSize(id); @@ -118,4 +122,7 @@ extern void areaRepaintAll(id); /* common_darwin.m */ extern void disableAutocorrect(id); +/* imagerep_darwin.m */ +extern id toImageListImage(void *, intptr_t, intptr_t, intptr_t); + #endif -- cgit v1.2.3