comparison dw.h @ 1667:9dbd2984c1e5

Initial implementation of dw_box_remove() and dw_box_remove_at_index() for OS/2, Windows and template. Mac and GTK2/3 versions coming soon.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 26 Apr 2012 20:33:39 +0000
parents a76fb5f1a6c8
children cc3aba44943e
comparison
equal deleted inserted replaced
1666:df25fee81502 1667:9dbd2984c1e5
1461 1461
1462 /* Public function prototypes */ 1462 /* Public function prototypes */
1463 void API dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad); 1463 void API dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad);
1464 void API dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad); 1464 void API dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad);
1465 void API dw_box_pack_at_index(HWND box, HWND item, int index, int width, int height, int hsize, int vsize, int pad); 1465 void API dw_box_pack_at_index(HWND box, HWND item, int index, int width, int height, int hsize, int vsize, int pad);
1466 HWND API dw_box_remove_at_index(HWND box, int index);
1467 int API dw_box_remove(HWND handle);
1466 #if !defined(__OS2__) && !defined(__WIN32__) && !defined(__EMX__) && !defined(__MAC__) 1468 #if !defined(__OS2__) && !defined(__WIN32__) && !defined(__EMX__) && !defined(__MAC__)
1467 int API dw_int_init(DWResources *res, int newthread, int *argc, char **argv[]); 1469 int API dw_int_init(DWResources *res, int newthread, int *argc, char **argv[]);
1468 #define dw_init(a, b, c) dw_int_init(&_resources, a, &b, &c) 1470 #define dw_init(a, b, c) dw_int_init(&_resources, a, &b, &c)
1469 #else 1471 #else
1470 int API dw_init(int newthread, int argc, char *argv[]); 1472 int API dw_init(int newthread, int argc, char *argv[]);