annotate template/dw.c @ 1679:e19b93a8229b

More comment cleanups.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 27 Apr 2012 16:02:32 +0000
parents 36a090da4cb1
children 535e8c19a13d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2 * Dynamic Windows:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3 * A GTK like GUI implementation template.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
4 *
1556
4a9c574d5c17 Fixed on Windows showing themed static text on colored boxes when the window is glass.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1475
diff changeset
5 * (C) 2011-2012 Brian Smith <brian@dbsoft.org>
4a9c574d5c17 Fixed on Windows showing themed static text on colored boxes when the window is glass.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1475
diff changeset
6 * (C) 2011-2012 Mark Hessling <mark@rexx.org>
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
7 *
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
8 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
9
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
10 #include "dw.h"
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
11 #include <stdlib.h>
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
12 #include <string.h>
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
13
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
14 /* Implement these to get and set the Box* pointer on the widget handle */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
15 void *_dw_get_window_pointer(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
16 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
17 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
18 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
19
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
20 void _dw_set_window_pointer(HWND handle, Box *box)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
21 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
22 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
23
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
24 /* This function calculates how much space the widgets and boxes require
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
25 * and does expansion as necessary.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
26 */
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
27 static void _resize_box(Box *thisbox, int *depth, int x, int y, int pass)
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
28 {
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
29 /* Current item position */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
30 int z, currentx = thisbox->pad, currenty = thisbox->pad;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
31 /* Used x, y and padding maximum values...
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
32 * These will be used to find the widest or
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
33 * tallest items in a box.
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
34 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
35 int uymax = 0, uxmax = 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
36 int upymax = 0, upxmax = 0;
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
37
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
38 /* Reset the box sizes */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
39 thisbox->minwidth = thisbox->minheight = thisbox->usedpadx = thisbox->usedpady = thisbox->pad * 2;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
40
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
41 #if 0
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
42 /* If there are containers which have built-in padding like
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
43 * groupboxes.. calculate the padding size and add it to the layout.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
44 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
45 if(thisbox->grouphwnd)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
46 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
47 char *text = dw_window_get_text(thisbox->grouphwnd);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
48
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
49 thisbox->grouppady = 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
50
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
51 if(text)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
52 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
53 dw_font_text_extents_get(thisbox->grouphwnd, 0, text, NULL, &thisbox->grouppady);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
54 dw_free(text);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
55 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
56
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
57 if(thisbox->grouppady)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
58 thisbox->grouppady += 3;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
59 else
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
60 thisbox->grouppady = 6;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
61
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
62 thisbox->grouppadx = 6;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
63
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
64 thisbox->minwidth += thisbox->grouppadx;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
65 thisbox->usedpadx += thisbox->grouppadx;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
66 thisbox->minheight += thisbox->grouppady;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
67 thisbox->usedpady += thisbox->grouppady;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
68 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
69 #endif
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
70
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
71 /* Count up all the space for all items in the box */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
72 for(z=0;z<thisbox->count;z++)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
73 {
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
74 int itempad, itemwidth, itemheight;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
75
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
76 if(thisbox->items[z].type == TYPEBOX)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
77 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
78 Box *tmp = (Box *)_dw_get_window_pointer(thisbox->items[z].hwnd);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
79
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
80 if(tmp)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
81 {
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
82 /* On the first pass calculate the box contents */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
83 if(pass == 1)
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
84 {
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
85 (*depth)++;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
86
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
87 /* Save the newly calculated values on the box */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
88 _resize_box(tmp, depth, x, y, pass);
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
89
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
90 /* Duplicate the values in the item list for use below */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
91 thisbox->items[z].width = tmp->minwidth;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
92 thisbox->items[z].height = tmp->minheight;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
93
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
94 (*depth)--;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
95 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
96 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
97 }
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
98
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
99 /* Precalculate these values, since they will
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
100 * be used used repeatedly in the next section.
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
101 */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
102 itempad = thisbox->items[z].pad * 2;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
103 itemwidth = thisbox->items[z].width + itempad;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
104 itemheight = thisbox->items[z].height + itempad;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
105
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
106 /* Calculate the totals and maximums */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
107 if(thisbox->type == DW_VERT)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
108 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
109 if(itemwidth > uxmax)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
110 uxmax = itemwidth;
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
111
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
112 if(thisbox->items[z].hsize != SIZEEXPAND)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
113 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
114 if(itemwidth > upxmax)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
115 upxmax = itemwidth;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
116 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
117 else
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
118 {
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
119 if(itempad > upxmax)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
120 upxmax = itempad;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
121 }
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
122 thisbox->minheight += itemheight;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
123 if(thisbox->items[z].vsize != SIZEEXPAND)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
124 thisbox->usedpady += itemheight;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
125 else
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
126 thisbox->usedpady += itempad;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
127 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
128 else
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
129 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
130 if(itemheight > uymax)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
131 uymax = itemheight;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
132 if(thisbox->items[z].vsize != SIZEEXPAND)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
133 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
134 if(itemheight > upymax)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
135 upymax = itemheight;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
136 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
137 else
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
138 {
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
139 if(itempad > upymax)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
140 upymax = itempad;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
141 }
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
142 thisbox->minwidth += itemwidth;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
143 if(thisbox->items[z].hsize != SIZEEXPAND)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
144 thisbox->usedpadx += itemwidth;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
145 else
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
146 thisbox->usedpadx += itempad;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
147 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
148 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
149
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
150 /* Add the maximums which were calculated in the previous loop */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
151 thisbox->minwidth += uxmax;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
152 thisbox->minheight += uymax;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
153 thisbox->usedpadx += upxmax;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
154 thisbox->usedpady += upymax;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
155
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
156 /* Move the groupbox start past the group border */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
157 if(thisbox->grouphwnd)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
158 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
159 currentx += 3;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
160 currenty += thisbox->grouppady - 3;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
161 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
162
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
163 /* The second pass is for actual placement. */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
164 if(pass > 1)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
165 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
166 for(z=0;z<(thisbox->count);z++)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
167 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
168 int height = thisbox->items[z].height;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
169 int width = thisbox->items[z].width;
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
170 int itempad = thisbox->items[z].pad * 2;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
171 int thispad = thisbox->pad * 2;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
172
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
173 /* Calculate the new sizes */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
174 if(thisbox->items[z].hsize == SIZEEXPAND)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
175 {
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
176 if(thisbox->type == DW_HORZ)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
177 {
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
178 int expandablex = thisbox->minwidth - thisbox->usedpadx;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
179
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
180 if(expandablex)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
181 width = (int)(((float)width / (float)expandablex) * (float)(x - thisbox->usedpadx));
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
182 }
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
183 else
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
184 width = x - (itempad + thispad + thisbox->grouppadx);
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
185 }
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
186 if(thisbox->items[z].vsize == SIZEEXPAND)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
187 {
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
188 if(thisbox->type == DW_VERT)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
189 {
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
190 int expandabley = thisbox->minheight - thisbox->usedpady;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
191
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
192 if(expandabley)
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
193 height = (int)(((float)height / (float)expandabley) * (float)(y - thisbox->usedpady));
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
194 }
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
195 else
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
196 height = y - (itempad + thispad + thisbox->grouppady);
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
197 }
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
198
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
199 /* If the calculated size is valid... */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
200 if(width > 0 && height > 0)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
201 {
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
202 int pad = thisbox->items[z].pad;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
203 HWND handle = thisbox->items[z].hwnd;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
204
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
205 #if 0
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
206 /* Here you put your platform specific placement widget placement code */
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
207 PlaceWidget(handle, currentx + pad, currenty + pad, width, height);
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
208
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
209 /* If any special handling needs to be done... like diving into
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
210 * controls that have sub-layouts... like notebooks or splitbars...
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
211 * do that here. Figure out the sub-layout size and call _do_resize().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
212 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
213 #endif
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
214
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
215 /* Advance the current position in the box */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
216 if(thisbox->type == DW_HORZ)
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
217 currentx += width + (pad * 2);
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
218 if(thisbox->type == DW_VERT)
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
219 currenty += height + (pad * 2);
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
220 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
221 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
222 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
223 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
224
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
225 /* This is a convenience function used in the window's resize event
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
226 * to relayout the controls in the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
227 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
228 void _do_resize(Box *thisbox, int x, int y)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
229 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
230 if(x != 0 && y != 0)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
231 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
232 if(thisbox)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
233 {
1441
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
234 int depth = 0;
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
235
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
236 /* Calculate space requirements */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
237 _resize_box(thisbox, &depth, x, y, 1);
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
238
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
239 /* Finally place all the boxes and controls */
b9577d1f0411 Removed some debug code on Windows and updated the layout code in the template.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1429
diff changeset
240 _resize_box(thisbox, &depth, x, y, 2);
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
241 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
242 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
243 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
244
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
245 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
246 * Runs a message loop for Dynamic Windows.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
247 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
248 void API dw_main(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
249 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
250 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
251
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
252 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
253 * Runs a message loop for Dynamic Windows, for a period of milliseconds.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
254 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
255 * milliseconds: Number of milliseconds to run the loop for.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
256 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
257 void API dw_main_sleep(int milliseconds)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
258 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
259 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
260
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
261 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
262 * Processes a single message iteration and returns.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
263 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
264 void API dw_main_iteration(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
265 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
266 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
267
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
268 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
269 * Cleanly terminates a DW session, should be signal handler safe.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
270 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
271 * exitcode: Exit code reported to the operating system.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
272 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
273 void API dw_exit(int exitcode)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
274 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
275 exit(exitcode);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
276 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
277
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
278 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
279 * Free's memory allocated by dynamic windows.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
280 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
281 * ptr: Pointer to dynamic windows allocated
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
282 * memory to be free()'d.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
283 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
284 void API dw_free(void *ptr)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
285 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
286 free(ptr);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
287 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
288
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
289 /*
1007
870a95961b4a Fix some of the documentation comments.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 988
diff changeset
290 * Returns a pointer to a static buffer which contains the
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
291 * current user directory. Or the root directory if it could
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
292 * not be determined.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
293 */
1384
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
294 char * API dw_app_dir(void)
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
295 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
296 static char _user_dir[1024] = "";
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
297
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
298 if(!_user_dir[0])
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
299 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
300 char *home = getenv("HOME");
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
301
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
302 if(home)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
303 strcpy(_user_dir, home);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
304 else
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
305 strcpy(_user_dir, "/");
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
306 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
307 return _user_dir;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
308 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
309
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
310 /*
1384
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
311 * Returns a pointer to a static buffer which containes the
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
312 * private application data directory.
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
313 */
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
314 char *dw_app_dir(void)
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
315 {
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
316 static _dw_app_dir[MAX_PATH+1] = "/";
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
317 return _dw_app_dir;
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
318 }
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
319
156e32814c83 Cleanup of the previous commits and added Unix support.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1371
diff changeset
320 /*
1306
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
321 * Displays a debug message on the console...
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
322 * Parameters:
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
323 * format: printf style format string.
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
324 * ...: Additional variables for use in the format.
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
325 */
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
326 void API dw_debug(char *format, ...)
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
327 {
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
328 va_list args;
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
329 char outbuf[1025] = {0};
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
330
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
331 va_start(args, format);
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
332 vsnprintf(outbuf, 1024, format, args);
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
333 va_end(args);
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
334
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
335 fprintf(stderr, "%s", outbuf);
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
336 }
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
337
dbd507f42947 Added dw_debug() logging function which will output a message to the debugging console.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1291
diff changeset
338 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
339 * Displays a Message Box with given text and title..
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
340 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
341 * title: The title of the message box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
342 * flags: flags to indicate buttons and icon
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
343 * format: printf style format string.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
344 * ...: Additional variables for use in the format.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
345 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
346 * DW_MB_RETURN_YES, DW_MB_RETURN_NO, DW_MB_RETURN_OK,
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
347 * or DW_MB_RETURN_CANCEL based on flags and user response.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
348 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
349 int API dw_messagebox(char *title, int flags, char *format, ...)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
350 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
351 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
352 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
353
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
354 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
355 * Opens a file dialog and queries user selection.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
356 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
357 * title: Title bar text for dialog.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
358 * defpath: The default path of the open dialog.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
359 * ext: Default file extention.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
360 * flags: DW_FILE_OPEN or DW_FILE_SAVE.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
361 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
362 * NULL on error. A malloced buffer containing
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
363 * the file path on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
364 *
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
365 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
366 char * API dw_file_browse(char *title, char *defpath, char *ext, int flags)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
367 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
368 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
369 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
370
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
371 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
372 * Gets the contents of the default clipboard as text.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
373 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
374 * None.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
375 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
376 * Pointer to an allocated string of text or NULL if clipboard empty or contents could not
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
377 * be converted to text.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
378 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
379 char *dw_clipboard_get_text()
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
380 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
381 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
382 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
383
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
384 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
385 * Sets the contents of the default clipboard to the supplied text.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
386 * Parameters:
1007
870a95961b4a Fix some of the documentation comments.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 988
diff changeset
387 * str: Text to put on the clipboard.
870a95961b4a Fix some of the documentation comments.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 988
diff changeset
388 * len: Length of the text.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
389 */
1007
870a95961b4a Fix some of the documentation comments.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 988
diff changeset
390 void dw_clipboard_set_text(char *str, int len)
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
391 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
392 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
393
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
394
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
395 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
396 * Allocates and initializes a dialog struct.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
397 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
398 * data: User defined data to be passed to functions.
1007
870a95961b4a Fix some of the documentation comments.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 988
diff changeset
399 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
400 * A handle to a dialog or NULL on failure.
1007
870a95961b4a Fix some of the documentation comments.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 988
diff changeset
401 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
402 DWDialog * API dw_dialog_new(void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
403 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
404 #if 0
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
405 DWDialog *tmp = malloc(sizeof(DWDialog));
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
406
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
407 if(tmp)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
408 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
409 tmp->eve = dw_event_new();
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
410 dw_event_reset(tmp->eve);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
411 tmp->data = data;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
412 tmp->done = FALSE;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
413 tmp->result = NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
414 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
415 return tmp;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
416 #endif
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
417 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
418 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
419
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
420 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
421 * Accepts a dialog struct and returns the given data to the
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
422 * initial called of dw_dialog_wait().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
423 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
424 * dialog: Pointer to a dialog struct aquired by dw_dialog_new).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
425 * result: Data to be returned by dw_dialog_wait().
1007
870a95961b4a Fix some of the documentation comments.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 988
diff changeset
426 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
427 * DW_ERROR_NONE (0) on success.
1007
870a95961b4a Fix some of the documentation comments.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 988
diff changeset
428 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
429 int API dw_dialog_dismiss(DWDialog *dialog, void *result)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
430 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
431 #if 0
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
432 dialog->result = result;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
433 dw_event_post(dialog->eve);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
434 dialog->done = TRUE;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
435 #endif
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
436 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
437 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
438
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
439 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
440 * Accepts a dialog struct waits for dw_dialog_dismiss() to be
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
441 * called by a signal handler with the given dialog struct.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
442 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
443 * dialog: Pointer to a dialog struct aquired by dw_dialog_new).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
444 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
445 * The data passed to dw_dialog_dismiss().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
446 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
447 void * API dw_dialog_wait(DWDialog *dialog)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
448 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
449 void *tmp = NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
450
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
451 #if 0
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
452 while(!dialog->done)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
453 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
454 dw_main_iteration();
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
455 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
456 dw_event_close(&dialog->eve);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
457 tmp = dialog->result;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
458 free(dialog);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
459 #endif
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
460 return tmp;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
461 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
462
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
463 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
464 * Create a new Box to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
465 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
466 * type: Either DW_VERT (vertical) or DW_HORZ (horizontal).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
467 * pad: Number of pixels to pad around the box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
468 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
469 * A handle to a box or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
470 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
471 HWND API dw_box_new(int type, int pad)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
472 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
473 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
474 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
475
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
476 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
477 * Create a new Group Box to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
478 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
479 * type: Either DW_VERT (vertical) or DW_HORZ (horizontal).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
480 * pad: Number of pixels to pad around the box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
481 * title: Text to be displayined in the group outline.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
482 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
483 * A handle to a groupbox window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
484 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
485 HWND API dw_groupbox_new(int type, int pad, char *title)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
486 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
487 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
488 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
489
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
490 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
491 * Create a new scrollable Box to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
492 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
493 * type: Either DW_VERT (vertical) or DW_HORZ (horizontal).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
494 * pad: Number of pixels to pad around the box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
495 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
496 * A handle to a scrollbox or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
497 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
498 HWND API dw_scrollbox_new( int type, int pad )
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
499 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
500 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
501 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
502
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
503 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
504 * Returns the position of the scrollbar in the scrollbox.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
505 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
506 * handle: Handle to the scrollbox to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
507 * orient: The vertical or horizontal scrollbar.
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
508 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
509 * The vertical or horizontal position in the scrollbox.
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
510 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
511 int API dw_scrollbox_get_pos(HWND handle, int orient)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
512 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
513 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
514 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
515
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
516 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
517 * Gets the range for the scrollbar in the scrollbox.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
518 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
519 * handle: Handle to the scrollbox to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
520 * orient: The vertical or horizontal scrollbar.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
521 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
522 * The vertical or horizontal range of the scrollbox.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
523 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
524 int API dw_scrollbox_get_range(HWND handle, int orient)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
525 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
526 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
527 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
528
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
529 /* Internal box packing function called by the other 3 functions */
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
530 void _dw_box_pack(HWND box, HWND item, int index, int width, int height, int hsize, int vsize, int pad, char *funcname)
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
531 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
532 Box *thisbox;
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
533 int z, x = 0;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
534 Item *tmpitem, *thisitem;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
535
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
536 thisbox = _dw_get_window_pointer(box);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
537 thisitem = thisbox->items;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
538
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
539 /* Do some sanity bounds checking */
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
540 if(index < 0)
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
541 index = 0;
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
542 if(index > thisbox->count)
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
543 index = thisbox->count;
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
544
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
545 /* Duplicate the existing data */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
546 tmpitem = malloc(sizeof(Item)*(thisbox->count+1));
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
547
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
548 for(z=0;z<thisbox->count;z++)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
549 {
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
550 if(z == index)
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
551 x++;
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
552 tmpitem[x] = thisitem[z];
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
553 x++;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
554 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
555
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
556 /* Sanity checks */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
557 if(vsize && !height)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
558 height = 1;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
559 if(hsize && !width)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
560 width = 1;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
561
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
562 /* Fill in the item data appropriately */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
563 if(0 /* Test to see if "item" is a box */)
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
564 tmpitem[index].type = TYPEBOX;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
565 else
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
566 tmpitem[index].type = TYPEITEM;
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
567
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
568 tmpitem[index].hwnd = item;
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
569 tmpitem[index].origwidth = tmpitem[index].width = width;
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
570 tmpitem[index].origheight = tmpitem[index].height = height;
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
571 tmpitem[index].pad = pad;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
572 if(hsize)
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
573 tmpitem[index].hsize = SIZEEXPAND;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
574 else
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
575 tmpitem[index].hsize = SIZESTATIC;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
576
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
577 if(vsize)
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
578 tmpitem[index].vsize = SIZEEXPAND;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
579 else
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
580 tmpitem[index].vsize = SIZESTATIC;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
581
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
582 thisbox->items = tmpitem;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
583
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
584 /* Update the item count */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
585 thisbox->count++;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
586
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
587 /* Add the item to the box */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
588 #if 0
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
589 /* Platform specific code to add item to box */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
590 BoxAdd(box, item);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
591 #endif
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
592
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
593 /* Free the old data */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
594 if(thisbox->count)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
595 free(thisitem);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
596 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
597
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
598 /*
1667
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
599 * Remove windows (widgets) from the box they are packed into.
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
600 * Parameters:
1679
e19b93a8229b More comment cleanups.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1669
diff changeset
601 * handle: Window handle of the packed item to be removed.
1667
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
602 * Returns:
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
603 * DW_ERROR_NONE on success and DW_ERROR_GENERAL on failure.
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
604 */
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
605 int API dw_box_remove(HWND handle)
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
606 {
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
607 return DW_ERROR_GENERAL;
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
608 }
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
609
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
610 /*
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
611 * Remove windows (widgets) from a box at an arbitrary location.
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
612 * Parameters:
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
613 * box: Window handle of the box to be removed from.
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
614 * index: 0 based index of packed items.
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
615 * Returns:
1679
e19b93a8229b More comment cleanups.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1669
diff changeset
616 * Handle to the removed item on success, 0 on failure or padding.
1667
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
617 */
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
618 HWND API dw_box_remove_at_index(HWND box, int index)
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
619 {
1669
36a090da4cb1 Initial implementation of dw_box_remove() for GTK2/3 and stub for dw_box_remove_at_index().
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1667
diff changeset
620 return 0;
1667
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
621 }
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
622
9dbd2984c1e5 Initial implementation of dw_box_remove() and dw_box_remove_at_index()
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1556
diff changeset
623 /*
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
624 * Pack windows (widgets) into a box at an arbitrary location.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
625 * Parameters:
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
626 * box: Window handle of the box to be packed into.
1679
e19b93a8229b More comment cleanups.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1669
diff changeset
627 * item: Window handle of the item to pack.
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
628 * index: 0 based index of packed items.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
629 * width: Width in pixels of the item or -1 to be self determined.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
630 * height: Height in pixels of the item or -1 to be self determined.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
631 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
632 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
633 * pad: Number of pixels of padding around the item.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
634 */
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
635 void API dw_box_pack_at_index(HWND box, HWND item, int index, int width, int height, int hsize, int vsize, int pad)
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
636 {
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
637 _dw_box_pack(box, item, index, width, height, hsize, vsize, pad, "dw_box_pack_at_index()");
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
638 }
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
639
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
640 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
641 * Pack windows (widgets) into a box from the start (or top).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
642 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
643 * box: Window handle of the box to be packed into.
1679
e19b93a8229b More comment cleanups.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1669
diff changeset
644 * item: Window handle of the item to pack.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
645 * width: Width in pixels of the item or -1 to be self determined.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
646 * height: Height in pixels of the item or -1 to be self determined.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
647 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
648 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
649 * pad: Number of pixels of padding around the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
650 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
651 void API dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
652 {
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
653 /* 65536 is the table limit on GTK...
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
654 * seems like a high enough value we will never hit it here either.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
655 */
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
656 _dw_box_pack(box, item, 65536, width, height, hsize, vsize, pad, "dw_box_pack_start()");
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
657 }
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
658
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
659 /*
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
660 * Pack windows (widgets) into a box from the end (or bottom).
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
661 * Parameters:
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
662 * box: Window handle of the box to be packed into.
1679
e19b93a8229b More comment cleanups.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1669
diff changeset
663 * item: Window handle of the item to pack.
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
664 * width: Width in pixels of the item or -1 to be self determined.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
665 * height: Height in pixels of the item or -1 to be self determined.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
666 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
667 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
668 * pad: Number of pixels of padding around the item.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
669 */
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
670 void API dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad)
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
671 {
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
672 _dw_box_pack(box, item, 0, width, height, hsize, vsize, pad, "dw_box_pack_end()");
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
673 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
674
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
675 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
676 * Create a new button window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
677 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
678 * text: The text to be display by the static text widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
679 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
680 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
681 * A handle to a button window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
682 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
683 HWND API dw_button_new(char *text, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
684 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
685 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
686 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
687
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
688 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
689 * Create a new Entryfield window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
690 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
691 * text: The default text to be in the entryfield widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
692 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
693 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
694 * A handle to an entryfield window or NULL on failure.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
695 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
696 HWND API dw_entryfield_new(char *text, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
697 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
698 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
699 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
700
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
701 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
702 * Create a new Entryfield (password) window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
703 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
704 * text: The default text to be in the entryfield widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
705 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
706 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
707 * A handle to an entryfield password window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
708 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
709 HWND API dw_entryfield_password_new(char *text, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
710 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
711 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
712 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
713
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
714 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
715 * Sets the entryfield character limit.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
716 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
717 * handle: Handle to the spinbutton to be set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
718 * limit: Number of characters the entryfield will take.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
719 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
720 void API dw_entryfield_set_limit(HWND handle, ULONG limit)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
721 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
722 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
723
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
724 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
725 * Create a new bitmap button window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
726 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
727 * text: Bubble help text to be displayed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
728 * id: An ID of a bitmap in the resource file.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
729 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
730 * A handle to a bitmap button window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
731 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
732 HWND API dw_bitmapbutton_new(char *text, ULONG resid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
733 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
734 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
735 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
736
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
737 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
738 * Create a new bitmap button window (widget) to be packed from a file.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
739 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
740 * text: Bubble help text to be displayed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
741 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
742 * filename: Name of the file, omit extention to have
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
743 * DW pick the appropriate file extension.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
744 * (BMP on OS/2 or Windows, XPM on Unix)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
745 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
746 * A handle to a bitmap button window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
747 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
748 HWND API dw_bitmapbutton_new_from_file(char *text, unsigned long cid, char *filename)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
749 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
750 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
751 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
752
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
753 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
754 * Create a new bitmap button window (widget) to be packed from data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
755 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
756 * text: Bubble help text to be displayed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
757 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
758 * data: The contents of the image
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
759 * (BMP or ICO on OS/2 or Windows, XPM on Unix)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
760 * len: length of str
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
761 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
762 * A handle to a bitmap button window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
763 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
764 HWND API dw_bitmapbutton_new_from_data(char *text, unsigned long cid, char *data, int len)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
765 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
766 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
767 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
768
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
769 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
770 * Create a new spinbutton window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
771 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
772 * text: The text to be display by the static text widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
773 * id: An ID to be used with dw_window_from_id() or 0L.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
774 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
775 * A handle to a spinbutton window or NULL on failure.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
776 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
777 HWND API dw_spinbutton_new(char *text, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
778 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
779 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
780 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
781
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
782 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
783 * Sets the spinbutton value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
784 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
785 * handle: Handle to the spinbutton to be set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
786 * position: Current value of the spinbutton.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
787 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
788 void API dw_spinbutton_set_pos(HWND handle, long position)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
789 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
790 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
791
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
792 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
793 * Sets the spinbutton limits.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
794 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
795 * handle: Handle to the spinbutton to be set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
796 * upper: Upper limit.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
797 * lower: Lower limit.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
798 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
799 void API dw_spinbutton_set_limits(HWND handle, long upper, long lower)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
800 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
801 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
802
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
803 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
804 * Returns the current value of the spinbutton.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
805 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
806 * handle: Handle to the spinbutton to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
807 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
808 * Number value displayed in the spinbutton.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
809 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
810 long API dw_spinbutton_get_pos(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
811 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
812 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
813 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
814
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
815 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
816 * Create a new radiobutton window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
817 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
818 * text: The text to be display by the static text widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
819 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
820 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
821 * A handle to a radio button window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
822 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
823 HWND API dw_radiobutton_new(char *text, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
824 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
825 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
826 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
827
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
828 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
829 * Create a new slider window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
830 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
831 * vertical: TRUE or FALSE if slider is vertical.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
832 * increments: Number of increments available.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
833 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
834 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
835 * A handle to a slider window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
836 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
837 HWND API dw_slider_new(int vertical, int increments, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
838 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
839 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
840 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
841
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
842 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
843 * Returns the position of the slider.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
844 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
845 * handle: Handle to the slider to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
846 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
847 * Position of the slider in the set range.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
848 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
849 unsigned int API dw_slider_get_pos(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
850 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
851 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
852 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
853
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
854 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
855 * Sets the slider position.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
856 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
857 * handle: Handle to the slider to be set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
858 * position: Position of the slider withing the range.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
859 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
860 void API dw_slider_set_pos(HWND handle, unsigned int position)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
861 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
862 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
863
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
864 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
865 * Create a new scrollbar window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
866 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
867 * vertical: TRUE or FALSE if scrollbar is vertical.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
868 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
869 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
870 * A handle to a scrollbar window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
871 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
872 HWND API dw_scrollbar_new(int vertical, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
873 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
874 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
875 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
876
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
877 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
878 * Returns the position of the scrollbar.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
879 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
880 * handle: Handle to the scrollbar to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
881 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
882 * Position of the scrollbar in the set range.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
883 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
884 unsigned int API dw_scrollbar_get_pos(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
885 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
886 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
887 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
888
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
889 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
890 * Sets the scrollbar position.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
891 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
892 * handle: Handle to the scrollbar to be set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
893 * position: Position of the scrollbar withing the range.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
894 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
895 void API dw_scrollbar_set_pos(HWND handle, unsigned int position)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
896 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
897 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
898
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
899 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
900 * Sets the scrollbar range.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
901 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
902 * handle: Handle to the scrollbar to be set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
903 * range: Maximum range value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
904 * visible: Visible area relative to the range.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
905 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
906 void API dw_scrollbar_set_range(HWND handle, unsigned int range, unsigned int visible)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
907 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
908 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
909
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
910 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
911 * Create a new percent bar window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
912 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
913 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
914 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
915 * A handle to a percent bar window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
916 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
917 HWND API dw_percent_new(ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
918 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
919 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
920 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
921
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
922 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
923 * Sets the percent bar position.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
924 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
925 * handle: Handle to the percent bar to be set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
926 * position: Position of the percent bar withing the range.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
927 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
928 void API dw_percent_set_pos(HWND handle, unsigned int position)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
929 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
930 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
931
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
932 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
933 * Create a new checkbox window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
934 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
935 * text: The text to be display by the static text widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
936 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
937 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
938 * A handle to a checkbox window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
939 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
940 HWND API dw_checkbox_new(char *text, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
941 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
942 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
943 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
944
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
945 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
946 * Returns the state of the checkbox.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
947 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
948 * handle: Handle to the checkbox to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
949 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
950 * State of checkbox (TRUE or FALSE).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
951 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
952 int API dw_checkbox_get(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
953 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
954 return FALSE;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
955 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
956
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
957 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
958 * Sets the state of the checkbox.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
959 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
960 * handle: Handle to the checkbox to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
961 * value: TRUE for checked, FALSE for unchecked.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
962 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
963 void API dw_checkbox_set(HWND handle, int value)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
964 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
965 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
966
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
967 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
968 * Create a new listbox window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
969 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
970 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
971 * multi: Multiple select TRUE or FALSE.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
972 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
973 * A handle to a listbox window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
974 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
975 HWND API dw_listbox_new(ULONG cid, int multi)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
976 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
977 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
978 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
979
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
980 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
981 * Appends the specified text to the listbox's (or combobox) entry list.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
982 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
983 * handle: Handle to the listbox to be appended to.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
984 * text: Text to append into listbox.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
985 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
986 void API dw_listbox_append(HWND handle, char *text)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
987 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
988 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
989
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
990 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
991 * Inserts the specified text into the listbox's (or combobox) entry list.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
992 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
993 * handle: Handle to the listbox to be inserted into.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
994 * text: Text to insert into listbox.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
995 * pos: 0-based position to insert text
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
996 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
997 void API dw_listbox_insert(HWND handle, char *text, int pos)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
998 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
999 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1000
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1001 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1002 * Appends the specified text items to the listbox's (or combobox) entry list.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1003 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1004 * handle: Handle to the listbox to be appended to.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1005 * text: Text strings to append into listbox.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1006 * count: Number of text strings to append
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1007 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1008 void API dw_listbox_list_append(HWND handle, char **text, int count)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1009 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1010 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1011
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1012 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1013 * Clears the listbox's (or combobox) list of all entries.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1014 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1015 * handle: Handle to the listbox to be cleared.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1016 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1017 void API dw_listbox_clear(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1018 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1019 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1020
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1021 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1022 * Returns the listbox's item count.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1023 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1024 * handle: Handle to the listbox to be counted.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1025 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1026 * The number of items in the listbox.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1027 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1028 int API dw_listbox_count(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1029 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1030 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1031 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1032
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1033 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1034 * Sets the topmost item in the viewport.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1035 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1036 * handle: Handle to the listbox to be cleared.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1037 * top: Index to the top item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1038 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1039 void API dw_listbox_set_top(HWND handle, int top)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1040 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1041 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1042
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1043 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1044 * Copies the given index item's text into buffer.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1045 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1046 * handle: Handle to the listbox to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1047 * index: Index into the list to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1048 * buffer: Buffer where text will be copied.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1049 * length: Length of the buffer (including NULL).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1050 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1051 void API dw_listbox_get_text(HWND handle, unsigned int index, char *buffer, unsigned int length)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1052 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1053 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1054
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1055 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1056 * Sets the text of a given listbox entry.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1057 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1058 * handle: Handle to the listbox to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1059 * index: Index into the list to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1060 * buffer: Buffer where text will be copied.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1061 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1062 void API dw_listbox_set_text(HWND handle, unsigned int index, char *buffer)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1063 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1064 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1065
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1066 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1067 * Returns the index to the item in the list currently selected.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1068 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1069 * handle: Handle to the listbox to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1070 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1071 * The selected item index or DW_ERROR_UNKNOWN (-1) on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1072 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1073 int API dw_listbox_selected(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1074 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1075 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1076 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1077
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1078 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1079 * Returns the index to the current selected item or -1 when done.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1080 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1081 * handle: Handle to the listbox to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1082 * where: Either the previous return or -1 to restart.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1083 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1084 * The next selected item or DW_ERROR_UNKNOWN (-1) on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1085 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1086 int API dw_listbox_selected_multi(HWND handle, int where)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1087 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1088 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1089 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1090
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1091 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1092 * Sets the selection state of a given index.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1093 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1094 * handle: Handle to the listbox to be set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1095 * index: Item index.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1096 * state: TRUE if selected FALSE if unselected.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1097 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1098 void API dw_listbox_select(HWND handle, int index, int state)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1099 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1100 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1101
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1102 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1103 * Deletes the item with given index from the list.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1104 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1105 * handle: Handle to the listbox to be set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1106 * index: Item index.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1107 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1108 void API dw_listbox_delete(HWND handle, int index)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1109 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1110 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1111
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1112 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1113 * Create a new Combobox window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1114 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1115 * text: The default text to be in the combpbox widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1116 * id: An ID to be used with dw_window_from_id() or 0L.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1117 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1118 * A handle to a combobox window or NULL on failure.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1119 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1120 HWND API dw_combobox_new(char *text, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1121 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1122 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1123 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1124
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1125 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1126 * Create a new Multiline Editbox window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1127 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1128 * id: An ID to be used with dw_window_from_id() or 0L.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1129 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1130 * A handle to a MLE window or NULL on failure.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1131 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1132 HWND API dw_mle_new(ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1133 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1134 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1135 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1136
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1137 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1138 * Adds text to an MLE box and returns the current point.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1139 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1140 * handle: Handle to the MLE to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1141 * buffer: Text buffer to be imported.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1142 * startpoint: Point to start entering text.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1143 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1144 * Current position in the buffer.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1145 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1146 unsigned int API dw_mle_import(HWND handle, char *buffer, int startpoint)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1147 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1148 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1149 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1150
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1151 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1152 * Grabs text from an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1153 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1154 * handle: Handle to the MLE to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1155 * buffer: Text buffer to be exported.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1156 * startpoint: Point to start grabbing text.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1157 * length: Amount of text to be grabbed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1158 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1159 void API dw_mle_export(HWND handle, char *buffer, int startpoint, int length)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1160 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1161 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1162
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1163 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1164 * Obtains information about an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1165 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1166 * handle: Handle to the MLE to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1167 * bytes: A pointer to a variable to return the total bytes.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1168 * lines: A pointer to a variable to return the number of lines.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1169 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1170 void API dw_mle_get_size(HWND handle, unsigned long *bytes, unsigned long *lines)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1171 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1172 *bytes = 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1173 *lines = 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1174 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1175
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1176 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1177 * Deletes text from an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1178 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1179 * handle: Handle to the MLE to be deleted from.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1180 * startpoint: Point to start deleting text.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1181 * length: Amount of text to be deleted.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1182 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1183 void API dw_mle_delete(HWND handle, int startpoint, int length)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1184 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1185 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1186
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1187 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1188 * Clears all text from an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1189 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1190 * handle: Handle to the MLE to be cleared.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1191 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1192 void API dw_mle_clear(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1193 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1194 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1195
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1196 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1197 * Sets the visible line of an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1198 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1199 * handle: Handle to the MLE to be positioned.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1200 * line: Line to be visible.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1201 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1202 void API dw_mle_set_visible(HWND handle, int line)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1203 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1204 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1205
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1206 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1207 * Sets the editablity of an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1208 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1209 * handle: Handle to the MLE.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1210 * state: TRUE if it can be edited, FALSE for readonly.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1211 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1212 void API dw_mle_set_editable(HWND handle, int state)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1213 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1214 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1215
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1216 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1217 * Sets the word wrap state of an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1218 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1219 * handle: Handle to the MLE.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1220 * state: TRUE if it wraps, FALSE if it doesn't.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1221 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1222 void API dw_mle_set_word_wrap(HWND handle, int state)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1223 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1224 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1225
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1226 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1227 * Sets the current cursor position of an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1228 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1229 * handle: Handle to the MLE to be positioned.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1230 * point: Point to position cursor.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1231 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1232 void API dw_mle_set_cursor(HWND handle, int point)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1233 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1234 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1235
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1236 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1237 * Finds text in an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1238 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1239 * handle: Handle to the MLE to be cleared.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1240 * text: Text to search for.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1241 * point: Start point of search.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1242 * flags: Search specific flags.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1243 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1244 * Position in buffer or DW_ERROR_UNKNOWN (-1) on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1245 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1246 int API dw_mle_search(HWND handle, char *text, int point, unsigned long flags)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1247 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1248 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1249 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1250
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1251 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1252 * Stops redrawing of an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1253 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1254 * handle: Handle to the MLE to freeze.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1255 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1256 void API dw_mle_freeze(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1257 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1258 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1259
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1260 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1261 * Resumes redrawing of an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1262 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1263 * handle: Handle to the MLE to thaw.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1264 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1265 void API dw_mle_thaw(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1266 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1267 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1268
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1269 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1270 * Create a new status text window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1271 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1272 * text: The text to be display by the static text widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1273 * id: An ID to be used with dw_window_from_id() or 0L.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1274 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1275 * A handle to a status text window or NULL on failure.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1276 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1277 HWND API dw_status_text_new(char *text, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1278 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1279 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1280 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1281
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1282 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1283 * Create a new static text window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1284 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1285 * text: The text to be display by the static text widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1286 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1287 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1288 * A handle to a text window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1289 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1290 HWND API dw_text_new(char *text, ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1291 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1292 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1293 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1294
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1295 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1296 * Creates a rendering context widget (window) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1297 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1298 * id: An id to be used with dw_window_from_id.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1299 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1300 * A handle to the widget or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1301 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1302 HWND API dw_render_new(unsigned long cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1303 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1304 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1305 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1306
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1307 /* Sets the current foreground drawing color.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1308 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1309 * red: red value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1310 * green: green value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1311 * blue: blue value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1312 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1313 void API dw_color_foreground_set(unsigned long value)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1314 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1315 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1316
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1317 /* Sets the current background drawing color.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1318 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1319 * red: red value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1320 * green: green value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1321 * blue: blue value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1322 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1323 void API dw_color_background_set(unsigned long value)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1324 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1325 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1326
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1327 /* Allows the user to choose a color using the system's color chooser dialog.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1328 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1329 * value: current color
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1330 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1331 * The selected color or the current color if cancelled.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1332 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1333 unsigned long API dw_color_choose(unsigned long value)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1334 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1335 return value;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1336 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1337
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1338 /* Draw a point on a window (preferably a render window).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1339 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1340 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1341 * pixmap: Handle to the pixmap. (choose only one of these)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1342 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1343 * y: Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1344 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1345 void API dw_draw_point(HWND handle, HPIXMAP pixmap, int x, int y)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1346 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1347 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1348
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1349 /* Draw a line on a window (preferably a render window).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1350 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1351 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1352 * pixmap: Handle to the pixmap. (choose only one of these)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1353 * x1: First X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1354 * y1: First Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1355 * x2: Second X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1356 * y2: Second Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1357 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1358 void API dw_draw_line(HWND handle, HPIXMAP pixmap, int x1, int y1, int x2, int y2)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1359 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1360 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1361
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1362 /* Draw text on a window (preferably a render window).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1363 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1364 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1365 * pixmap: Handle to the pixmap. (choose only one of these)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1366 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1367 * y: Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1368 * text: Text to be displayed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1369 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1370 void API dw_draw_text(HWND handle, HPIXMAP pixmap, int x, int y, char *text)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1371 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1372 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1373
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1374 /* Query the width and height of a text string.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1375 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1376 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1377 * pixmap: Handle to the pixmap. (choose only one of these)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1378 * text: Text to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1379 * width: Pointer to a variable to be filled in with the width.
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1380 * height: Pointer to a variable to be filled in with the height.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1381 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1382 void API dw_font_text_extents_get(HWND handle, HPIXMAP pixmap, char *text, int *width, int *height)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1383 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1384 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1385
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1386 /* Draw a polygon on a window (preferably a render window).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1387 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1388 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1389 * pixmap: Handle to the pixmap. (choose only one of these)
1275
0b34e2cf0706 Updated dw_draw_rect and dw_draw_polygon to accept flags the same way as dw_draw_arc.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1261
diff changeset
1390 * flags: DW_DRAW_FILL (1) to fill the polygon or DW_DRAW_DEFAULT (0).
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1391 * npoints: Number of points passed in.
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1392 * x: Pointer to array of X coordinates.
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1393 * y: Pointer to array of Y coordinates.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1394 */
1275
0b34e2cf0706 Updated dw_draw_rect and dw_draw_polygon to accept flags the same way as dw_draw_arc.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1261
diff changeset
1395 void API dw_draw_polygon( HWND handle, HPIXMAP pixmap, int flags, int npoints, int *x, int *y )
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1396 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1397 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1398
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1399 /* Draw a rectangle on a window (preferably a render window).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1400 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1401 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1402 * pixmap: Handle to the pixmap. (choose only one of these)
1275
0b34e2cf0706 Updated dw_draw_rect and dw_draw_polygon to accept flags the same way as dw_draw_arc.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1261
diff changeset
1403 * flags: DW_DRAW_FILL (1) to fill the box or DW_DRAW_DEFAULT (0).
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1404 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1405 * y: Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1406 * width: Width of rectangle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1407 * height: Height of rectangle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1408 */
1275
0b34e2cf0706 Updated dw_draw_rect and dw_draw_polygon to accept flags the same way as dw_draw_arc.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1261
diff changeset
1409 void API dw_draw_rect(HWND handle, HPIXMAP pixmap, int flags, int x, int y, int width, int height)
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1410 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1411 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1412
1261
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1413 /* Draw an arc on a window (preferably a render window).
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1414 * Parameters:
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1415 * handle: Handle to the window.
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1416 * pixmap: Handle to the pixmap. (choose only one of these)
1275
0b34e2cf0706 Updated dw_draw_rect and dw_draw_polygon to accept flags the same way as dw_draw_arc.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1261
diff changeset
1417 * flags: DW_DRAW_FILL (1) to fill the arc or DW_DRAW_DEFAULT (0).
0b34e2cf0706 Updated dw_draw_rect and dw_draw_polygon to accept flags the same way as dw_draw_arc.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1261
diff changeset
1418 * DW_DRAW_FULL will draw a complete circle/elipse.
1261
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1419 * xorigin: X coordinate of center of arc.
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1420 * yorigin: Y coordinate of center of arc.
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1421 * x1: X coordinate of first segment of arc.
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1422 * y1: Y coordinate of first segment of arc.
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1423 * x2: X coordinate of second segment of arc.
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1424 * y2: Y coordinate of second segment of arc.
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1425 */
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1426 void API dw_draw_arc(HWND handle, HPIXMAP pixmap, int flags, int xorigin, int yorigin, int x1, int y1, int x2, int y2)
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1427 {
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1428 }
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1429
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1430 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1431 * Create a tree object to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1432 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1433 * id: An ID to be used for getting the resource from the
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1434 * resource file.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1435 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1436 * A handle to a tree window or NULL on failure.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1437 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1438 HWND API dw_tree_new(ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1439 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1440 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1441 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1442
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1443 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1444 * Inserts an item into a tree window (widget) after another item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1445 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1446 * handle: Handle to the tree to be inserted.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1447 * item: Handle to the item to be positioned after.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1448 * title: The text title of the entry.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1449 * icon: Handle to coresponding icon.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1450 * parent: Parent handle or 0 if root.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1451 * itemdata: Item specific data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1452 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1453 * A handle to a tree item or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1454 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1455 HTREEITEM API dw_tree_insert_after(HWND handle, HTREEITEM item, char *title, HICN icon, HTREEITEM parent, void *itemdata)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1456 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1457 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1458 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1459
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1460 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1461 * Inserts an item into a tree window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1462 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1463 * handle: Handle to the tree to be inserted.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1464 * title: The text title of the entry.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1465 * icon: Handle to coresponding icon.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1466 * parent: Parent handle or 0 if root.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1467 * itemdata: Item specific data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1468 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1469 * A handle to a tree item or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1470 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1471 HTREEITEM API dw_tree_insert(HWND handle, char *title, HICN icon, HTREEITEM parent, void *itemdata)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1472 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1473 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1474 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1475
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1476 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1477 * Gets the text an item in a tree window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1478 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1479 * handle: Handle to the tree containing the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1480 * item: Handle of the item to be modified.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1481 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1482 * A malloc()ed buffer of item text to be dw_free()ed or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1483 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1484 char * API dw_tree_get_title(HWND handle, HTREEITEM item)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1485 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1486 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1487 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1488
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1489 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1490 * Gets the text an item in a tree window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1491 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1492 * handle: Handle to the tree containing the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1493 * item: Handle of the item to be modified.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1494 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1495 * A handle to a tree item or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1496 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1497 HTREEITEM API dw_tree_get_parent(HWND handle, HTREEITEM item)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1498 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1499 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1500 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1501
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1502 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1503 * Sets the text and icon of an item in a tree window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1504 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1505 * handle: Handle to the tree containing the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1506 * item: Handle of the item to be modified.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1507 * title: The text title of the entry.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1508 * icon: Handle to coresponding icon.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1509 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1510 void API dw_tree_item_change(HWND handle, HTREEITEM item, char *title, HICN icon)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1511 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1512 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1513
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1514 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1515 * Sets the item data of a tree item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1516 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1517 * handle: Handle to the tree containing the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1518 * item: Handle of the item to be modified.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1519 * itemdata: User defined data to be associated with item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1520 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1521 void API dw_tree_item_set_data(HWND handle, HTREEITEM item, void *itemdata)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1522 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1523 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1524
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1525 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1526 * Gets the item data of a tree item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1527 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1528 * handle: Handle to the tree containing the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1529 * item: Handle of the item to be modified.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1530 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1531 * A pointer to tree item data or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1532 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1533 void * API dw_tree_item_get_data(HWND handle, HTREEITEM item)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1534 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1535 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1536 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1537
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1538 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1539 * Sets this item as the active selection.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1540 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1541 * handle: Handle to the tree window (widget) to be selected.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1542 * item: Handle to the item to be selected.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1543 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1544 void API dw_tree_item_select(HWND handle, HTREEITEM item)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1545 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1546 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1547
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1548 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1549 * Removes all nodes from a tree.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1550 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1551 * handle: Handle to the window (widget) to be cleared.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1552 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1553 void API dw_tree_clear(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1554 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1555 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1556
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1557 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1558 * Expands a node on a tree.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1559 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1560 * handle: Handle to the tree window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1561 * item: Handle to node to be expanded.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1562 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1563 void API dw_tree_item_expand(HWND handle, HTREEITEM item)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1564 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1565 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1566
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1567 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1568 * Collapses a node on a tree.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1569 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1570 * handle: Handle to the tree window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1571 * item: Handle to node to be collapsed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1572 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1573 void API dw_tree_item_collapse(HWND handle, HTREEITEM item)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1574 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1575 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1576
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1577 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1578 * Removes a node from a tree.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1579 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1580 * handle: Handle to the window (widget) to be cleared.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1581 * item: Handle to node to be deleted.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1582 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1583 void API dw_tree_item_delete(HWND handle, HTREEITEM item)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1584 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1585 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1586
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1587 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1588 * Create a container object to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1589 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1590 * id: An ID to be used for getting the resource from the
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1591 * resource file.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1592 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1593 * A handle to a container window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1594 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1595 HWND API dw_container_new(ULONG cid, int multi)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1596 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1597 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1598 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1599
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1600 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1601 * Sets up the container columns.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1602 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1603 * handle: Handle to the container to be configured.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1604 * flags: An array of unsigned longs with column flags.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1605 * titles: An array of strings with column text titles.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1606 * count: The number of columns (this should match the arrays).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1607 * separator: The column number that contains the main separator.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1608 * (this item may only be used in OS/2)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1609 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1610 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1611 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1612 int API dw_container_setup(HWND handle, unsigned long *flags, char **titles, int count, int separator)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1613 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1614 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1615 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1616
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1617 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1618 * Sets up the filesystem columns, note: filesystem always has an icon/filename field.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1619 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1620 * handle: Handle to the container to be configured.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1621 * flags: An array of unsigned longs with column flags.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1622 * titles: An array of strings with column text titles.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1623 * count: The number of columns (this should match the arrays).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1624 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1625 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1626 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1627 int API dw_filesystem_setup(HWND handle, unsigned long *flags, char **titles, int count)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1628 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1629 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1630 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1631
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1632 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1633 * Allocates memory used to populate a container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1634 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1635 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1636 * rowcount: The number of items to be populated.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1637 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1638 * Handle to container items allocated or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1639 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1640 void * API dw_container_alloc(HWND handle, int rowcount)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1641 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1642 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1643 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1644
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1645 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1646 * Sets an item in specified row and column to the given data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1647 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1648 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1649 * pointer: Pointer to the allocated memory in dw_container_alloc().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1650 * column: Zero based column of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1651 * row: Zero based row of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1652 * data: Pointer to the data to be added.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1653 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1654 void API dw_container_set_item(HWND handle, void *pointer, int column, int row, void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1655 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1656 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1657
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1658 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1659 * Changes an existing item in specified row and column to the given data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1660 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1661 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1662 * column: Zero based column of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1663 * row: Zero based row of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1664 * data: Pointer to the data to be added.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1665 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1666 void API dw_container_change_item(HWND handle, int column, int row, void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1667 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1668 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1669
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1670 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1671 * Changes an existing item in specified row and column to the given data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1672 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1673 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1674 * column: Zero based column of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1675 * row: Zero based row of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1676 * data: Pointer to the data to be added.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1677 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1678 void API dw_filesystem_change_item(HWND handle, int column, int row, void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1679 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1680 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1681
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1682 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1683 * Changes an item in specified row and column to the given data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1684 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1685 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1686 * pointer: Pointer to the allocated memory in dw_container_alloc().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1687 * column: Zero based column of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1688 * row: Zero based row of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1689 * data: Pointer to the data to be added.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1690 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1691 void API dw_filesystem_change_file(HWND handle, int row, char *filename, HICN icon)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1692 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1693 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1694
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1695 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1696 * Sets an item in specified row and column to the given data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1697 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1698 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1699 * pointer: Pointer to the allocated memory in dw_container_alloc().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1700 * column: Zero based column of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1701 * row: Zero based row of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1702 * data: Pointer to the data to be added.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1703 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1704 void API dw_filesystem_set_file(HWND handle, void *pointer, int row, char *filename, HICN icon)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1705 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1706 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1707
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1708 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1709 * Sets an item in specified row and column to the given data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1710 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1711 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1712 * pointer: Pointer to the allocated memory in dw_container_alloc().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1713 * column: Zero based column of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1714 * row: Zero based row of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1715 * data: Pointer to the data to be added.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1716 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1717 void API dw_filesystem_set_item(HWND handle, void *pointer, int column, int row, void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1718 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1719 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1720
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1721 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1722 * Gets column type for a container column.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1723 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1724 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1725 * column: Zero based column.
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1726 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1727 * Constant identifying the the column type.
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1728 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1729 int API dw_container_get_column_type(HWND handle, int column)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1730 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1731 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1732 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1733
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1734 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1735 * Gets column type for a filesystem container column.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1736 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1737 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1738 * column: Zero based column.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1739 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1740 * Constant identifying the the column type.
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1741 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1742 int API dw_filesystem_get_column_type(HWND handle, int column)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1743 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1744 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1745 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1746
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1747 /*
1208
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1748 * Sets the alternating row colors for container window (widget) handle.
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1749 * Parameters:
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1750 * handle: The window (widget) handle.
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1751 * oddcolor: Odd row background color in DW_RGB format or a default color index.
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1752 * evencolor: Even row background color in DW_RGB format or a default color index.
1211
70dca53cb071 Updated GTK3 with the behavior change just commited for Mac.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1208
diff changeset
1753 * DW_RGB_TRANSPARENT will disable coloring rows.
70dca53cb071 Updated GTK3 with the behavior change just commited for Mac.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1208
diff changeset
1754 * DW_CLR_DEFAULT will use the system default alternating row colors.
1208
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1755 */
1291
b99b0b2c2826 Renamed dw_container_set_row_bg() to dw_container_set_stripe().
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1275
diff changeset
1756 void API dw_container_set_stripe(HWND handle, unsigned long oddcolor, unsigned long evencolor)
1208
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1757 {
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1758 }
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1759
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1760 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1761 * Sets the width of a column in the container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1762 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1763 * handle: Handle to window (widget) of container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1764 * column: Zero based column of width being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1765 * width: Width of column in pixels.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1766 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1767 void API dw_container_set_column_width(HWND handle, int column, int width)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1768 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1769 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1770
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1771 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1772 * Sets the title of a row in the container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1773 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1774 * pointer: Pointer to the allocated memory in dw_container_alloc().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1775 * row: Zero based row of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1776 * title: String title of the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1777 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1778 void API dw_container_set_row_title(void *pointer, int row, char *title)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1779 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1780 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1781
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1782
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1783 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1784 * Sets the title of a row in the container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1785 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1786 * handle: Handle to window (widget) of container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1787 * row: Zero based row of data being set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1788 * title: String title of the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1789 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1790 void API dw_container_change_row_title(HWND handle, int row, char *title)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1791 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1792 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1793
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1794 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1795 * Sets the title of a row in the container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1796 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1797 * handle: Handle to the container window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1798 * pointer: Pointer to the allocated memory in dw_container_alloc().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1799 * rowcount: The number of rows to be inserted.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1800 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1801 void API dw_container_insert(HWND handle, void *pointer, int rowcount)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1802 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1803 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1804
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1805 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1806 * Removes all rows from a container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1807 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1808 * handle: Handle to the window (widget) to be cleared.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1809 * redraw: TRUE to cause the container to redraw immediately.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1810 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1811 void API dw_container_clear(HWND handle, int redraw)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1812 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1813 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1814
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1815 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1816 * Removes the first x rows from a container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1817 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1818 * handle: Handle to the window (widget) to be deleted from.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1819 * rowcount: The number of rows to be deleted.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1820 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1821 void API dw_container_delete(HWND handle, int rowcount)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1822 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1823 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1824
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1825 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1826 * Scrolls container up or down.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1827 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1828 * handle: Handle to the window (widget) to be scrolled.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1829 * direction: DW_SCROLL_UP, DW_SCROLL_DOWN, DW_SCROLL_TOP or
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1830 * DW_SCROLL_BOTTOM. (rows is ignored for last two)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1831 * rows: The number of rows to be scrolled.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1832 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1833 void API dw_container_scroll(HWND handle, int direction, long rows)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1834 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1835 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1836
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1837 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1838 * Starts a new query of a container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1839 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1840 * handle: Handle to the window (widget) to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1841 * flags: If this parameter is DW_CRA_SELECTED it will only
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1842 * return items that are currently selected. Otherwise
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1843 * it will return all records in the container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1844 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1845 * Pointer to data associated with first entry or NULL on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1846 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1847 char * API dw_container_query_start(HWND handle, unsigned long flags)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1848 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1849 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1850 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1851
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1852 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1853 * Continues an existing query of a container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1854 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1855 * handle: Handle to the window (widget) to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1856 * flags: If this parameter is DW_CRA_SELECTED it will only
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1857 * return items that are currently selected. Otherwise
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1858 * it will return all records in the container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1859 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1860 * Pointer to data associated with next entry or NULL on error or completion.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1861 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1862 char * API dw_container_query_next(HWND handle, unsigned long flags)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1863 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1864 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1865 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1866
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1867 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1868 * Cursors the item with the text speficied, and scrolls to that item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1869 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1870 * handle: Handle to the window (widget) to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1871 * text: Text usually returned by dw_container_query().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1872 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1873 void API dw_container_cursor(HWND handle, char *text)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1874 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1875 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1876
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1877 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1878 * Deletes the item with the text speficied.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1879 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1880 * handle: Handle to the window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1881 * text: Text usually returned by dw_container_query().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1882 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1883 void API dw_container_delete_row(HWND handle, char *text)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1884 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1885 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1886
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1887 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1888 * Optimizes the column widths so that all data is visible.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1889 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1890 * handle: Handle to the window (widget) to be optimized.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1891 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1892 void API dw_container_optimize(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1893 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1894 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1895
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1896 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1897 * Inserts an icon into the taskbar.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1898 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1899 * handle: Window handle that will handle taskbar icon messages.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1900 * icon: Icon handle to display in the taskbar.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1901 * bubbletext: Text to show when the mouse is above the icon.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1902 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1903 void API dw_taskbar_insert(HWND handle, HICN icon, char *bubbletext)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1904 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1905 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1906
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1907 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1908 * Deletes an icon from the taskbar.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1909 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1910 * handle: Window handle that was used with dw_taskbar_insert().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1911 * icon: Icon handle that was used with dw_taskbar_insert().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1912 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1913 void API dw_taskbar_delete(HWND handle, HICN icon)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1914 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1915 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1916
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1917 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1918 * Obtains an icon from a module (or header in GTK).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1919 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1920 * module: Handle to module (DLL) in OS/2 and Windows.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1921 * id: A unsigned long id int the resources on OS/2 and
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1922 * Windows, on GTK this is converted to a pointer
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1923 * to an embedded XPM.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1924 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1925 * Handle to the created icon or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1926 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1927 HICN API dw_icon_load(unsigned long module, unsigned long resid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1928 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1929 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1930 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1931
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1932 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1933 * Obtains an icon from a file.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1934 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1935 * filename: Name of the file, omit extention to have
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1936 * DW pick the appropriate file extension.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1937 * (ICO on OS/2 or Windows, XPM on Unix)
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1938 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1939 * Handle to the created icon or NULL on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1940 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1941 HICN API dw_icon_load_from_file(char *filename)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1942 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1943 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1944 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1945
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1946 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1947 * Obtains an icon from data.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1948 * Parameters:
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1949 * data: Data for the icon (ICO on OS/2 or Windows, XPM on Unix, PNG on Mac)
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1950 * len: Length of the passed in data.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1951 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1952 * Handle to the created icon or NULL on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1953 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1954 HICN API dw_icon_load_from_data(char *data, int len)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1955 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1956 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1957 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1958
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1959 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
1960 * Frees a loaded icon resource.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1961 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1962 * handle: Handle to icon returned by dw_icon_load().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1963 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1964 void API dw_icon_free(HICN handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1965 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1966 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1967
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1968 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1969 * Create a new MDI Frame to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1970 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1971 * id: An ID to be used with dw_window_from_id or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1972 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1973 * Handle to the created MDI widget or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1974 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1975 HWND API dw_mdi_new(unsigned long cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1976 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1977 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1978 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1979
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1980 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1981 * Creates a splitbar window (widget) with given parameters.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1982 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1983 * type: Value can be DW_VERT or DW_HORZ.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1984 * topleft: Handle to the window to be top or left.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1985 * bottomright: Handle to the window to be bottom or right.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1986 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1987 * A handle to a splitbar window or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1988 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1989 HWND API dw_splitbar_new(int type, HWND topleft, HWND bottomright, unsigned long cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1990 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1991 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1992 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1993
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1994 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1995 * Sets the position of a splitbar (pecentage).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1996 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1997 * handle: The handle to the splitbar returned by dw_splitbar_new().
1117
9ca5de2e59f8 Fixed the dw_splitbar_set() comment documentation. The percent parameter was missing.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1115
diff changeset
1998 * percent: The position of the splitbar.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1999 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2000 void API dw_splitbar_set(HWND handle, float percent)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2001 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2002 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2003
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2004 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2005 * Gets the position of a splitbar (pecentage).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2006 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2007 * handle: The handle to the splitbar returned by dw_splitbar_new().
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2008 * Returns:
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2009 * Position of the splitbar (percentage).
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2010 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2011 float API dw_splitbar_get(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2012 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2013 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2014 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2015
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2016 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2017 * Create a bitmap object to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2018 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2019 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2020 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2021 * Handle to the created bitmap widget or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2022 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2023 HWND API dw_bitmap_new(ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2024 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2025 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2026 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2027
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2028 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2029 * Creates a pixmap with given parameters.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2030 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2031 * handle: Window handle the pixmap is associated with.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2032 * width: Width of the pixmap in pixels.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2033 * height: Height of the pixmap in pixels.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2034 * depth: Color depth of the pixmap.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2035 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2036 * A handle to a pixmap or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2037 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2038 HPIXMAP API dw_pixmap_new(HWND handle, unsigned long width, unsigned long height, int depth)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2039 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2040 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2041 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2042
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2043 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2044 * Creates a pixmap from a file.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2045 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2046 * handle: Window handle the pixmap is associated with.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2047 * filename: Name of the file, omit extention to have
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2048 * DW pick the appropriate file extension.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2049 * (BMP on OS/2 or Windows, XPM on Unix)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2050 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2051 * A handle to a pixmap or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2052 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2053 HPIXMAP API dw_pixmap_new_from_file(HWND handle, char *filename)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2054 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2055 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2056 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2057
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2058 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2059 * Creates a pixmap from data in memory.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2060 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2061 * handle: Window handle the pixmap is associated with.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2062 * data: Source of the image data
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2063 * (BMP on OS/2 or Windows, XPM on Unix)
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2064 * len: Length of data
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2065 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2066 * A handle to a pixmap or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2067 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2068 HPIXMAP API dw_pixmap_new_from_data(HWND handle, char *data, int len)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2069 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2070 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2071 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2072
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2073 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2074 * Sets the transparent color for a pixmap.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2075 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2076 * pixmap: Handle to a pixmap returned by
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2077 * dw_pixmap_new..
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2078 * color: Transparent RGB color
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2079 * Note: This is only necessary on platforms that
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2080 * don't handle transparency automatically
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2081 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2082 void API dw_pixmap_set_transparent_color( HPIXMAP pixmap, ULONG color )
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2083 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2084 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2085
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2086 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2087 * Creates a pixmap from internal resource graphic specified by id.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2088 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2089 * handle: Window handle the pixmap is associated with.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2090 * id: Resource ID associated with requested pixmap.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2091 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2092 * A handle to a pixmap or NULL on failure.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2093 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2094 HPIXMAP API dw_pixmap_grab(HWND handle, ULONG resid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2095 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2096 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2097 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2098
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2099 /*
1147
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2100 * Sets the font used by a specified pixmap.
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2101 * Normally the pixmap font is obtained from the associated window handle.
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2102 * However this can be used to override that, or for pixmaps with no window.
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2103 * Parameters:
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2104 * pixmap: Handle to a pixmap returned by dw_pixmap_new() or
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2105 * passed to the application via a callback.
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2106 * fontname: Name and size of the font in the form "size.fontname"
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2107 * Returns:
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2108 * DW_ERROR_NONE on success and DW_ERROR_GENERAL on failure.
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2109 */
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2110 int API dw_pixmap_set_font(HPIXMAP pixmap, char *fontname)
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2111 {
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2112 return DW_ERROR_GENERAL;
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2113 }
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2114
091ed7c20b3f Implemented dw_pixmap_set_font() on Windows. Added to export files on Windows and OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1137
diff changeset
2115 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2116 * Destroys an allocated pixmap.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2117 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2118 * pixmap: Handle to a pixmap returned by
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2119 * dw_pixmap_new..
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2120 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2121 void API dw_pixmap_destroy(HPIXMAP pixmap)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2122 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2123 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2124
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2125 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2126 * Copies from one item to another.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2127 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2128 * dest: Destination window handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2129 * destp: Destination pixmap. (choose only one).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2130 * xdest: X coordinate of destination.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2131 * ydest: Y coordinate of destination.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2132 * width: Width of area to copy.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2133 * height: Height of area to copy.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2134 * src: Source window handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2135 * srcp: Source pixmap. (choose only one).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2136 * xsrc: X coordinate of source.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2137 * ysrc: Y coordinate of source.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2138 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2139 void API dw_pixmap_bitblt(HWND dest, HPIXMAP destp, int xdest, int ydest, int width, int height, HWND src, HPIXMAP srcp, int xsrc, int ysrc)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2140 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2141 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2142
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2143 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2144 * Create a new calendar window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2145 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2146 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2147 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2148 * Handle to the created calendar or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2149 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2150 HWND API dw_calendar_new(ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2151 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2152 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2153 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2154
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2155 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2156 * Sets the current date of a calendar.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2157 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2158 * handle: The handle to the calendar returned by dw_calendar_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2159 * year, month, day: To set the calendar to display.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2160 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2161 void dw_calendar_set_date(HWND handle, unsigned int year, unsigned int month, unsigned int day)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2162 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2163 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2164
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2165 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2166 * Gets the year, month and day set in the calendar widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2167 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2168 * handle: The handle to the calendar returned by dw_calendar_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2169 * year: Variable to store the year or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2170 * month: Variable to store the month or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2171 * day: Variable to store the day or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2172 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2173 void dw_calendar_get_date(HWND handle, unsigned int *year, unsigned int *month, unsigned int *day)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2174 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2175 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2176
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2177 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2178 * Causes the embedded HTML widget to take action.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2179 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2180 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2181 * action: One of the DW_HTML_* constants.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2182 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2183 void API dw_html_action(HWND handle, int action)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2184 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2185 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2186
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2187 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2188 * Render raw HTML code in the embedded HTML widget..
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2189 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2190 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2191 * string: String buffer containt HTML code to
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2192 * be rendered.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2193 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2194 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2195 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2196 int API dw_html_raw(HWND handle, char *string)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2197 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2198 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2199 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2200
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2201 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2202 * Render file or web page in the embedded HTML widget..
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2203 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2204 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2205 * url: Universal Resource Locator of the web or
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2206 * file object to be rendered.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2207 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2208 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2209 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2210 int API dw_html_url(HWND handle, char *url)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2211 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2212 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2213 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2214
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2215 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2216 * Create a new HTML window (widget) to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2217 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2218 * id: An ID to be used with dw_window_from_id() or 0L.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2219 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2220 * Handle to the created html widget or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2221 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2222 HWND API dw_html_new(unsigned long cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2223 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2224 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2225 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2226
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2227 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2228 * Returns the current X and Y coordinates of the mouse pointer.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2229 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2230 * x: Pointer to variable to store X coordinate or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2231 * y: Pointer to variable to store Y coordinate or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2232 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2233 void API dw_pointer_query_pos(long *x, long *y)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2234 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2235 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2236
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2237 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2238 * Sets the X and Y coordinates of the mouse pointer.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2239 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2240 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2241 * y: Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2242 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2243 void API dw_pointer_set_pos(long x, long y)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2244 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2245 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2246
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2247 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2248 * Create a menu object to be popped up.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2249 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2250 * id: An ID to be used associated with this menu.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
2251 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2252 * Handle to the created menu or NULL on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
2253 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2254 HMENUI API dw_menu_new(ULONG cid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2255 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2256 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2257 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2258
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2259 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2260 * Create a menubar on a window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2261 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2262 * location: Handle of a window frame to be attached to.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
2263 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2264 * Handle to the created menu bar or NULL on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
2265 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2266 HMENUI API dw_menubar_new(HWND location)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2267 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2268 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2269 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2270
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2271 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2272 * Destroys a menu created with dw_menubar_new or dw_menu_new.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2273 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2274 * menu: Handle of a menu.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2275 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2276 void API dw_menu_destroy(HMENUI *menu)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2277 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2278 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2279
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2280 /*
1371
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2281 * Deletes the menu item specified.
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2282 * Parameters:
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2283 * menu: The handle to the menu in which the item was appended.
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2284 * id: Menuitem id.
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2285 * Returns:
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2286 * DW_ERROR_NONE (0) on success or DW_ERROR_UNKNOWN on failure.
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2287 */
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2288 int API dw_menu_delete_item(HMENUI menux, unsigned long id)
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2289 {
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2290 return DW_ERROR_UNKNOWN;
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2291 }
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2292
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2293 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2294 * Pops up a context menu at given x and y coordinates.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2295 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2296 * menu: The handle the the existing menu.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2297 * parent: Handle to the window initiating the popup.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2298 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2299 * y: Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2300 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2301 void API dw_menu_popup(HMENUI *menu, HWND parent, int x, int y)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2302 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2303 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2304
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2305 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2306 * Adds a menuitem or submenu to an existing menu.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2307 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2308 * menu: The handle the the existing menu.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2309 * title: The title text on the menu item to be added.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2310 * id: An ID to be used for message passing.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2311 * flags: Extended attributes to set on the menu.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2312 * end: If TRUE memu is positioned at the end of the menu.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2313 * check: If TRUE menu is "check"able.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2314 * submenu: Handle to an existing menu to be a submenu or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2315 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2316 * Handle to the created menu item or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2317 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2318 HWND API dw_menu_append_item(HMENUI menux, char *title, ULONG itemid, ULONG flags, int end, int check, HMENUI submenux)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2319 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2320 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2321 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2322
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2323 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2324 * Sets the state of a menu item check.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2325 * Deprecated; use dw_menu_item_set_state()
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2326 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2327 * menu: The handle the the existing menu.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2328 * id: Menuitem id.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2329 * check: TRUE for checked FALSE for not checked.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2330 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2331 void API dw_menu_item_set_check(HMENUI menux, unsigned long itemid, int check)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2332 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2333 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2334
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2335 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2336 * Sets the state of a menu item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2337 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2338 * menu: The handle to the existing menu.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2339 * id: Menuitem id.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2340 * flags: DW_MIS_ENABLED/DW_MIS_DISABLED
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2341 * DW_MIS_CHECKED/DW_MIS_UNCHECKED
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2342 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2343 void API dw_menu_item_set_state(HMENUI menux, unsigned long itemid, unsigned long state)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2344 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2345 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2346
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2347 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2348 * Create a notebook object to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2349 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2350 * id: An ID to be used for getting the resource from the
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2351 * resource file.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2352 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2353 * Handle to the created notebook or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2354 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2355 HWND API dw_notebook_new(ULONG cid, int top)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2356 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2357 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2358 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2359
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2360 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2361 * Adds a new page to specified notebook.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2362 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2363 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2364 * flags: Any additional page creation flags.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2365 * front: If TRUE page is added at the beginning.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2366 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2367 * ID of newly created notebook page.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2368 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2369 unsigned long API dw_notebook_page_new(HWND handle, ULONG flags, int front)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2370 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2371 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2372 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2373
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2374 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2375 * Remove a page from a notebook.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2376 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2377 * handle: Handle to the notebook widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2378 * pageid: ID of the page to be destroyed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2379 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2380 void API dw_notebook_page_destroy(HWND handle, unsigned int pageid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2381 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2382 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2383
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2384 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2385 * Queries the currently visible page ID.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2386 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2387 * handle: Handle to the notebook widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2388 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2389 * ID of visible notebook page.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2390 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2391 unsigned long API dw_notebook_page_get(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2392 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2393 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2394 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2395
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2396 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2397 * Sets the currently visible page ID.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2398 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2399 * handle: Handle to the notebook widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2400 * pageid: ID of the page to be made visible.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2401 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2402 void API dw_notebook_page_set(HWND handle, unsigned int pageid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2403 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2404 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2405
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2406 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2407 * Sets the text on the specified notebook tab.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2408 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2409 * handle: Notebook handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2410 * pageid: Page ID of the tab to set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2411 * text: Pointer to the text to set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2412 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2413 void API dw_notebook_page_set_text(HWND handle, ULONG pageid, char *text)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2414 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2415 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2416
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2417 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2418 * Sets the text on the specified notebook tab status area.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2419 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2420 * handle: Notebook handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2421 * pageid: Page ID of the tab to set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2422 * text: Pointer to the text to set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2423 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2424 void API dw_notebook_page_set_status_text(HWND handle, ULONG pageid, char *text)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2425 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2426 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2427
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2428 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2429 * Packs the specified box into the notebook page.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2430 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2431 * handle: Handle to the notebook to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2432 * pageid: Page ID in the notebook which is being packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2433 * page: Box handle to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2434 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2435 void API dw_notebook_pack(HWND handle, ULONG pageid, HWND page)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2436 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2437 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2438
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2439 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2440 * Create a new Window Frame.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2441 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2442 * owner: The Owner's window handle or HWND_DESKTOP.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2443 * title: The Window title.
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2444 * flStyle: Style flags.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2445 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2446 * Handle to the created window or NULL on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
2447 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2448 HWND API dw_window_new(HWND hwndOwner, char *title, ULONG flStyle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2449 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2450 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2451 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2452
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2453 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2454 * Call a function from the window (widget)'s context (typically the message loop thread).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2455 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2456 * handle: Window handle of the widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2457 * function: Function pointer to be called.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2458 * data: Pointer to the data to be passed to the function.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2459 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2460 void API dw_window_function(HWND handle, void *function, void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2461 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2462 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2463
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2464
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2465 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2466 * Changes the appearance of the mouse pointer.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2467 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2468 * handle: Handle to widget for which to change.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2469 * cursortype: ID of the pointer you want.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2470 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2471 void API dw_window_set_pointer(HWND handle, int pointertype)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2472 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2473 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2474
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2475 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2476 * Makes the window visible.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2477 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2478 * handle: The window handle to make visible.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2479 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2480 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2481 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2482 int API dw_window_show(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2483 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2484 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2485 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2486
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2487 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2488 * Makes the window invisible.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2489 * Parameters:
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2490 * handle: The window handle to hide.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2491 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2492 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2493 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2494 int API dw_window_hide(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2495 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2496 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2497 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2498
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2499 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2500 * Sets the colors used by a specified window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2501 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2502 * handle: The window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2503 * fore: Foreground color in DW_RGB format or a default color index.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2504 * back: Background color in DW_RGB format or a default color index.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
2505 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2506 * DW_ERROR_NONE (0) on success.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
2507 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2508 int API dw_window_set_color(HWND handle, ULONG fore, ULONG back)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2509 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2510 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2511 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2512
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2513 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2514 * Sets the border size of a specified window (widget) handle.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2515 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2516 * handle: The window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2517 * border: Size of the window border in pixels.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2518 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2519 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2520 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2521 int API dw_window_set_border(HWND handle, int border)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2522 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2523 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2524 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2525
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2526 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2527 * Sets the style of a given window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2528 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2529 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2530 * style: Style features enabled or disabled.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2531 * mask: Corresponding bitmask of features to be changed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2532 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2533 void API dw_window_set_style(HWND handle, ULONG style, ULONG mask)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2534 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2535 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2536
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2537 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2538 * Sets the default focus item for a window/dialog.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2539 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2540 * window: Toplevel window or dialog.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2541 * defaultitem: Handle to the dialog item to be default.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2542 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2543 void API dw_window_default(HWND handle, HWND defaultitem)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2544 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2545 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2546
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2547 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2548 * Sets window to click the default dialog item when an ENTER is pressed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2549 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2550 * window: Window (widget) to look for the ENTER press.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2551 * next: Window (widget) to move to next (or click)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2552 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2553 void API dw_window_click_default(HWND handle, HWND next)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2554 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2555 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2556
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2557 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2558 * Captures the mouse input to this window even if it is outside the bounds.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2559 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2560 * handle: Handle to receive mouse input.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2561 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2562 void API dw_window_capture(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2563 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2564 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2565
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2566 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2567 * Releases previous mouse capture.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2568 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2569 void API dw_window_release(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2570 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2571 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2572
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2573 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2574 * Changes a window's parent to newparent.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2575 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2576 * handle: The window handle to destroy.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2577 * newparent: The window's new parent window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2578 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2579 void API dw_window_reparent(HWND handle, HWND newparent)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2580 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2581 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2582
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2583 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2584 * Sets the font used by a specified window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2585 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2586 * handle: The window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2587 * fontname: Name and size of the font in the form "size.fontname"
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2588 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2589 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2590 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2591 int API dw_window_set_font(HWND handle, char *fontname)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2592 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2593 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2594 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2595
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2596 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2597 * Returns the current font for the specified window.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2598 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2599 * handle: The window handle from which to obtain the font.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2600 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2601 * A malloc()ed font name string to be dw_free()ed or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2602 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2603 char * API dw_window_get_font(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2604 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2605 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2606 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2607
1089
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2608 /* Allows the user to choose a font using the system's font chooser dialog.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2609 * Parameters:
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2610 * currfont: current font
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2611 * Returns:
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2612 * A malloced buffer with the selected font or NULL on error.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2613 */
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2614 char * API dw_font_choose(char *currfont)
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2615 {
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2616 return NULL;
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2617 }
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2618
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2619 /*
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2620 * Sets the default font used on text based widgets.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2621 * Parameters:
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2622 * fontname: Font name in Dynamic Windows format.
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2623 */
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2624 void API dw_font_set_default(char *fontname)
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2625 {
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2626 }
b58032a619b9 Added new functions for 2.1 to the template, and updated the box packing examples to use the new unified method to reduce redundancy.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1010
diff changeset
2627
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2628 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2629 * Destroys a window and all of it's children.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2630 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2631 * handle: The window handle to destroy.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
2632 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2633 * DW_ERROR_NONE (0) on success.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
2634 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2635 int API dw_window_destroy(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2636 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2637 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2638 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2639
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2640 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2641 * Gets the text used for a given window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2642 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2643 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2644 * Returns:
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2645 * The text associsated with a given window or NULL on error.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2646 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2647 char * API dw_window_get_text(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2648 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2649 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2650 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2651
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2652 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2653 * Sets the text used for a given window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2654 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2655 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2656 * text: The text associsated with a given window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2657 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2658 void API dw_window_set_text(HWND handle, char *text)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2659 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2660 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2661
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2662 /*
1389
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2663 * Sets the text used for a given window's floating bubble help.
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2664 * Parameters:
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2665 * handle: Handle to the window (widget).
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2666 * bubbletext: The text in the floating bubble tooltip.
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2667 */
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2668 void API dw_window_set_tooltip(HWND handle, char *bubbletext)
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2669 {
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2670 }
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2671
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2672 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2673 * Disables given window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2674 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2675 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2676 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2677 void API dw_window_disable(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2678 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2679 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2680
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2681 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2682 * Enables given window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2683 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2684 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2685 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2686 void API dw_window_enable(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2687 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2688 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2689
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2690 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2691 * Sets the bitmap used for a given static window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2692 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2693 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2694 * id: An ID to be used to specify the icon,
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2695 * (pass 0 if you use the filename param)
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2696 * data: memory buffer containing image (Bitmap on OS/2 or
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2697 * Windows and a pixmap on Unix, pass
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2698 * NULL if you use the id param)
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2699 * len: Length of data passed
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2700 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2701 void API dw_window_set_bitmap_from_data(HWND handle, unsigned long cid, char *data, int len)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2702 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2703 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2704
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2705 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2706 * Sets the bitmap used for a given static window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2707 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2708 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2709 * id: An ID to be used to specify the icon,
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2710 * (pass 0 if you use the filename param)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2711 * filename: a path to a file (Bitmap on OS/2 or
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2712 * Windows and a pixmap on Unix, pass
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2713 * NULL if you use the id param)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2714 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2715 void API dw_window_set_bitmap(HWND handle, unsigned long resid, char *filename)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2716 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2717 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2718
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2719 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2720 * Sets the icon used for a given window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2721 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2722 * handle: Handle to the window.
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2723 * icon: Handle to icon to be used.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2724 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2725 void API dw_window_set_icon(HWND handle, HICN icon)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2726 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2727 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2728
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2729 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2730 * Gets the child window handle with specified ID.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2731 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2732 * handle: Handle to the parent window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2733 * id: Integer ID of the child.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2734 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2735 * HWND of window with ID or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2736 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2737 HWND API dw_window_from_id(HWND handle, int id)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2738 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2739 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2740 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2741
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2742 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2743 * Minimizes or Iconifies a top-level window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2744 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2745 * handle: The window handle to minimize.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2746 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2747 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2748 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2749 int API dw_window_minimize(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2750 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2751 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2752 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2753
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2754 /* Causes entire window to be invalidated and redrawn.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2755 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2756 * handle: Toplevel window handle to be redrawn.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2757 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2758 void API dw_window_redraw(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2759 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2760 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2761
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2762 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2763 * Makes the window topmost.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2764 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2765 * handle: The window handle to make topmost.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2766 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2767 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2768 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2769 int API dw_window_raise(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2770 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2771 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2772 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2773
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2774 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2775 * Makes the window bottommost.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2776 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2777 * handle: The window handle to make bottommost.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2778 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2779 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2780 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2781 int API dw_window_lower(HWND handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2782 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2783 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2784 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2785
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2786 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2787 * Sets the size of a given window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2788 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2789 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2790 * width: New width in pixels.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2791 * height: New height in pixels.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2792 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2793 void API dw_window_set_size(HWND handle, ULONG width, ULONG height)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2794 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2795 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2796
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2797 /*
1429
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2798 * Gets the size the system thinks the widget should be.
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2799 * Parameters:
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2800 * handle: Window (widget) handle of the item to query.
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2801 * width: Width in pixels of the item or NULL if not needed.
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2802 * height: Height in pixels of the item or NULL if not needed.
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2803 */
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2804 void API dw_window_get_preferred_size(HWND handle, int *width, int *height)
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2805 {
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2806 }
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2807
fbaec6e5df63 Added dw_window_get_preferred_size() which attempts to determine the size the system wants for the widget. This is useful when creating nice looking layouts.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1389
diff changeset
2808 /*
1475
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2809 * Sets the gravity of a given window (widget).
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2810 * Gravity controls which corner of the screen and window the position is relative to.
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2811 * Parameters:
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2812 * handle: Window (widget) handle.
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2813 * horz: DW_GRAV_LEFT (default), DW_GRAV_RIGHT or DW_GRAV_CENTER.
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2814 * vert: DW_GRAV_TOP (default), DW_GRAV_BOTTOM or DW_GRAV_CENTER.
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2815 */
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2816 void API dw_window_set_gravity(HWND handle, int horz, int vert)
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2817 {
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2818 }
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2819
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2820 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2821 * Sets the position of a given window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2822 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2823 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2824 * x: X location from the bottom left.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2825 * y: Y location from the bottom left.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2826 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2827 void API dw_window_set_pos(HWND handle, LONG x, LONG y)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2828 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2829 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2830
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2831 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2832 * Sets the position and size of a given window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2833 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2834 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2835 * x: X location from the bottom left.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2836 * y: Y location from the bottom left.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2837 * width: Width of the widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2838 * height: Height of the widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2839 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2840 void API dw_window_set_pos_size(HWND handle, LONG x, LONG y, ULONG width, ULONG height)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2841 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2842 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2843
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2844 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2845 * Gets the position and size of a given window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2846 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2847 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2848 * x: X location from the bottom left or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2849 * y: Y location from the bottom left or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2850 * width: Width of the widget or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2851 * height: Height of the widget or NULL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2852 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2853 void API dw_window_get_pos_size(HWND handle, LONG *x, LONG *y, ULONG *width, ULONG *height)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2854 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2855 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2856
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2857 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2858 * Returns the width of the screen.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2859 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2860 int API dw_screen_width(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2861 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2862 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2863 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2864
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2865 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2866 * Returns the height of the screen.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2867 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2868 int API dw_screen_height(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2869 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2870 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2871 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2872
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2873 /* This should return the current color depth. */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2874 unsigned long API dw_color_depth_get(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2875 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2876 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2877 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2878
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2879 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2880 * Returns some information about the current operating environment.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2881 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2882 * env: Pointer to a DWEnv struct.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2883 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2884 void dw_environment_query(DWEnv *env)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2885 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2886 strcpy(env->osName, "Unknown");
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2887
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2888 strcpy(env->buildDate, __DATE__);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2889 strcpy(env->buildTime, __TIME__);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2890 env->DWMajorVersion = DW_MAJOR_VERSION;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2891 env->DWMinorVersion = DW_MINOR_VERSION;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2892 env->DWSubVersion = DW_SUB_VERSION;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2893
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2894 env->MajorVersion = 0; /* Operating system major */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2895 env->MinorVersion = 0; /* Operating system minor */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2896 env->MajorBuild = 0; /* Build versions... if available */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2897 env->MinorBuild = 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2898 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2899
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2900 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2901 * Emits a beep.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2902 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2903 * freq: Frequency.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2904 * dur: Duration.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2905 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2906 void API dw_beep(int freq, int dur)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2907 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2908 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2909
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2910 /* Call this after drawing to the screen to make sure
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2911 * anything you have drawn is visible.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2912 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2913 void API dw_flush(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2914 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2915 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2916
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2917 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2918 * Add a named user data item to a window handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2919 * Parameters:
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2920 * window: Window handle to save data to.
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2921 * dataname: A string pointer identifying which data to be saved.
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2922 * data: User data to be saved to the window handle.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2923 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2924 void dw_window_set_data(HWND window, char *dataname, void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2925 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2926 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2927
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2928 /*
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2929 * Gets a named user data item from a window handle.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2930 * Parameters:
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2931 * window: Window handle to get data from.
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2932 * dataname: A string pointer identifying which data to get.
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2933 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2934 * Pointer to data or NULL if no data is available.
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
2935 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2936 void *dw_window_get_data(HWND window, char *dataname)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2937 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2938 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2939 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2940
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2941 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2942 * Add a callback to a timer event.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2943 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2944 * interval: Milliseconds to delay between calls.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2945 * sigfunc: The pointer to the function to be used as the callback.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2946 * data: User data to be passed to the handler function.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2947 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2948 * Timer ID for use with dw_timer_disconnect(), 0 on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2949 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2950 int API dw_timer_connect(int interval, void *sigfunc, void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2951 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2952 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2953 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2954
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2955 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2956 * Removes timer callback.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2957 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2958 * id: Timer ID returned by dw_timer_connect().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2959 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2960 void API dw_timer_disconnect(int timerid)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2961 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2962 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2963
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2964 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2965 * Add a callback to a window event.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2966 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2967 * window: Window handle of signal to be called back.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2968 * signame: A string pointer identifying which signal to be hooked.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2969 * sigfunc: The pointer to the function to be used as the callback.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2970 * data: User data to be passed to the handler function.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2971 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2972 void API dw_signal_connect(HWND window, char *signame, void *sigfunc, void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2973 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2974 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2975
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2976 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2977 * Removes callbacks for a given window with given name.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2978 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2979 * window: Window handle of callback to be removed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2980 * signame: Signal name to be matched on window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2981 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2982 void API dw_signal_disconnect_by_name(HWND window, char *signame)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2983 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2984 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2985
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2986 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2987 * Removes all callbacks for a given window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2988 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2989 * window: Window handle of callback to be removed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2990 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2991 void API dw_signal_disconnect_by_window(HWND window)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2992 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2993 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2994
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2995 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2996 * Removes all callbacks for a given window with specified data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2997 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2998 * window: Window handle of callback to be removed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2999 * data: Pointer to the data to be compared against.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3000 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3001 void API dw_signal_disconnect_by_data(HWND window, void *data)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3002 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3003 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3004
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3005 /* Open a shared library and return a handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3006 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3007 * name: Base name of the shared library.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3008 * handle: Pointer to a module handle,
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3009 * will be filled in with the handle.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3010 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3011 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3012 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3013 int dw_module_load(char *name, HMOD *handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3014 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3015 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3016 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3017
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3018 /* Queries the address of a symbol within open handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3019 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3020 * handle: Module handle returned by dw_module_load()
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3021 * name: Name of the symbol you want the address of.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3022 * func: A pointer to a function pointer, to obtain
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3023 * the address.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3024 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3025 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3026 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3027 int dw_module_symbol(HMOD handle, char *name, void**func)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3028 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3029 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3030 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3031
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3032 /* Frees the shared library previously opened.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3033 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3034 * handle: Module handle returned by dw_module_load()
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3035 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3036 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3037 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3038 int dw_module_close(HMOD handle)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3039 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3040 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3041 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3042
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3043 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3044 * Returns the handle to an unnamed mutex semaphore or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3045 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3046 HMTX dw_mutex_new(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3047 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3048 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3049 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3050
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3051 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3052 * Closes a semaphore created by dw_mutex_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3053 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3054 * mutex: The handle to the mutex returned by dw_mutex_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3055 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3056 void dw_mutex_close(HMTX mutex)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3057 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3058 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3059
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3060 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3061 * Tries to gain access to the semaphore, if it can't it blocks.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3062 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3063 * mutex: The handle to the mutex returned by dw_mutex_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3064 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3065 void dw_mutex_lock(HMTX mutex)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3066 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3067 #if 0
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3068 /* We need to handle locks from the main thread differently...
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3069 * since we can't stop message processing... otherwise we
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3070 * will deadlock... so try to acquire the lock and continue
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3071 * processing messages in between tries.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3072 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3073 if(_dw_thread == dw_thread_id())
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3074 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3075 while(/* Attempt to lock the mutex */)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3076 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3077 /* Process any pending events */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3078 while(dw_main_iteration())
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3079 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3080 /* Just loop */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3081 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3082 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3083 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3084 else
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3085 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3086 /* Lock the mutex */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3087 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3088 #endif
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3089 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3090
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3091 /*
1158
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3092 * Tries to gain access to the semaphore.
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3093 * Parameters:
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3094 * mutex: The handle to the mutex returned by dw_mutex_new().
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3095 * Returns:
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3096 * DW_ERROR_NONE on success, DW_ERROR_TIMEOUT if it is already locked.
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3097 */
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3098 int API dw_mutex_trylock(HMTX mutex)
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3099 {
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3100 return DW_ERROR_GENERAL;
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3101 }
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3102
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3103 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3104 * Reliquishes the access to the semaphore.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3105 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3106 * mutex: The handle to the mutex returned by dw_mutex_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3107 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3108 void dw_mutex_unlock(HMTX mutex)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3109 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3110 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3111
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3112 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3113 * Returns the handle to an unnamed event semaphore or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3114 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3115 HEV dw_event_new(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3116 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3117 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3118 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3119
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3120 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3121 * Resets a semaphore created by dw_event_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3122 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3123 * eve: The handle to the event returned by dw_event_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3124 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3125 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3126 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3127 int dw_event_reset (HEV eve)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3128 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3129 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3130 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3131
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3132 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3133 * Posts a semaphore created by dw_event_new(). Causing all threads
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3134 * waiting on this event in dw_event_wait to continue.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3135 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3136 * eve: The handle to the event returned by dw_event_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3137 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3138 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3139 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3140 int dw_event_post (HEV eve)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3141 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3142 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3143 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3144
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3145 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3146 * Waits on a semaphore created by dw_event_new(), until the
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3147 * event gets posted or until the timeout expires.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3148 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3149 * eve: The handle to the event returned by dw_event_new().
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
3150 * timeout: Number of milliseconds before timing out
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
3151 * or -1 if indefinite.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3152 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3153 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3154 * DW_ERROR_TIMEOUT (2) if the timeout has expired.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3155 * Other values on other error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3156 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3157 int dw_event_wait(HEV eve, unsigned long timeout)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3158 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3159 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3160 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3161
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3162 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3163 * Closes a semaphore created by dw_event_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3164 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3165 * eve: The handle to the event returned by dw_event_new().
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3166 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3167 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3168 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3169 int dw_event_close(HEV *eve)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3170 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3171 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3172 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3173
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3174 /* Create a named event semaphore which can be
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3175 * opened from other processes.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3176 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3177 * name: Name given to semaphore which can be opened
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3178 * by other processes.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3179 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3180 * Handle to event semaphore or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3181 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3182 HEV dw_named_event_new(char *name)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3183 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3184 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3185 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3186
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3187 /* Open an already existing named event semaphore.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3188 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3189 * name: Name given to semaphore which can be opened
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3190 * by other processes.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3191 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3192 * Handle to event semaphore or NULL on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3193 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3194 HEV dw_named_event_get(char *name)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3195 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3196 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3197 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3198
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3199 /* Resets the event semaphore so threads who call wait
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3200 * on this semaphore will block.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3201 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3202 * eve: Handle to the semaphore obtained by
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
3203 * an get or new call.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3204 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3205 * DW_ERROR_NONE (0) on success.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3206 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3207 int dw_named_event_reset(HEV eve)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3208 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3209 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3210 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3211
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3212 /* Sets the posted state of an event semaphore, any threads
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3213 * waiting on the semaphore will no longer block.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3214 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3215 * eve: Handle to the semaphore obtained by
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
3216 * an get or new call.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3217 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3218 * DW_ERROR_NONE (0) on success.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3219 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3220 int dw_named_event_post(HEV eve)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3221 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3222 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3223 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3224
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3225 /* Waits on the specified semaphore until it becomes
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3226 * posted, or returns immediately if it already is posted.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3227 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3228 * eve: Handle to the semaphore obtained by
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
3229 * an get or new call.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3230 * timeout: Number of milliseconds before timing out
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3231 * or -1 if indefinite.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3232 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3233 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3234 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3235 int dw_named_event_wait(HEV eve, unsigned long timeout)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3236 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3237 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3238 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3239
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3240 /* Release this semaphore, if there are no more open
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3241 * handles on this semaphore the semaphore will be destroyed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3242 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3243 * eve: Handle to the semaphore obtained by
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
3244 * an get or new call.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3245 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3246 * DW_ERROR_NONE (0) on success.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3247 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3248 int dw_named_event_close(HEV eve)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3249 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3250 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3251 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3252
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3253 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3254 * Initializes the Dynamic Windows engine.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3255 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3256 * newthread: True if this is the only thread.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3257 * False if there is already a message loop running.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3258 * argc: Passed in from main()
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3259 * argv: Passed in from main()
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3260 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3261 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3262 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3263 int API dw_init(int newthread, int argc, char *argv[])
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3264 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3265 return DW_ERROR_NONE;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3266 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3267
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3268 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3269 * Allocates a shared memory region with a name.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3270 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3271 * dest: A pointer to a pointer to receive the memory address.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3272 * size: Size in bytes of the shared memory region to allocate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3273 * name: A string pointer to a unique memory name.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3274 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3275 * Handle to shared memory or NULL on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3276 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3277 HSHM dw_named_memory_new(void **dest, int size, char *name)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3278 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3279 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3280 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3281
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3282 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3283 * Aquires shared memory region with a name.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3284 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3285 * dest: A pointer to a pointer to receive the memory address.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3286 * size: Size in bytes of the shared memory region to requested.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3287 * name: A string pointer to a unique memory name.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3288 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3289 * Handle to shared memory or NULL on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3290 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3291 HSHM dw_named_memory_get(void **dest, int size, char *name)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3292 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3293 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3294 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3295
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3296 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3297 * Frees a shared memory region previously allocated.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3298 * Parameters:
1008
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
3299 * handle: Handle obtained from dw_named_memory_new().
f046a2712b38 Fixes to errors in documentation comments while importing them into the help database.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1007
diff changeset
3300 * ptr: The memory address aquired with dw_named_memory_new().
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3301 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3302 * DW_ERROR_NONE (0) on success or DW_ERROR_UNKNOWN (-1) on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3303 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3304 int dw_named_memory_free(HSHM handle, void *ptr)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3305 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3306 int rc = DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3307
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3308 return rc;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3309 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3310
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3311 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3312 * Creates a new thread with a starting point of func.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3313 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3314 * func: Function which will be run in the new thread.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3315 * data: Parameter(s) passed to the function.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3316 * stack: Stack size of new thread (OS/2 and Windows only).
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3317 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3318 * Thread ID on success or DW_ERROR_UNKNOWN (-1) on error.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3319 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3320 DWTID dw_thread_new(void *func, void *data, int stack)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3321 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3322 return (DWTID)DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3323 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3324
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3325 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3326 * Ends execution of current thread immediately.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3327 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3328 void dw_thread_end(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3329 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3330 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3331
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3332 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3333 * Returns the current thread's ID.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3334 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3335 DWTID dw_thread_id(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3336 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3337 return (DWTID)0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3338 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3339
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3340 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3341 * Execute and external program in a seperate session.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3342 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3343 * program: Program name with optional path.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3344 * type: Either DW_EXEC_CON or DW_EXEC_GUI.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3345 * params: An array of pointers to string arguements.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3346 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3347 * Process ID on success or DW_ERROR_UNKNOWN (-1) on error.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3348 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3349 int dw_exec(char *program, int type, char **params)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3350 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3351 int ret = DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3352
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3353 return ret;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3354 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3355
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3356 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3357 * Loads a web browser pointed at the given URL.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3358 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3359 * url: Uniform resource locator.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3360 * Returns:
1115
03cd2f3e929d Fixed a documentation and template error regarding dw_browse() return code.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1089
diff changeset
3361 * DW_ERROR_UNKNOWN (-1) on error; DW_ERROR_NONE (0) or a positive Process ID on success.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
3362 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3363 int dw_browse(char *url)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3364 {
1115
03cd2f3e929d Fixed a documentation and template error regarding dw_browse() return code.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1089
diff changeset
3365 return DW_ERROR_UNKNOWN;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3366 }
1137
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3367
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3368 /*
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3369 * Creates a new print object.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3370 * Parameters:
1152
58b5374355ab Added print jobname parameter to dw_print_new().
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1147
diff changeset
3371 * jobname: Name of the print job to show in the queue.
1137
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3372 * flags: Flags to initially configure the print object.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3373 * pages: Number of pages to print.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3374 * drawfunc: The pointer to the function to be used as the callback.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3375 * drawdata: User data to be passed to the handler function.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3376 * Returns:
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3377 * A handle to the print object or NULL on failure.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3378 */
1152
58b5374355ab Added print jobname parameter to dw_print_new().
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1147
diff changeset
3379 HPRINT API dw_print_new(char *jobname, unsigned long flags, unsigned int pages, void *drawfunc, void *drawdata)
1137
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3380 {
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3381 return NULL;
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3382 }
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3383
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3384 /*
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3385 * Runs the print job, causing the draw page callbacks to fire.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3386 * Parameters:
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3387 * print: Handle to the print object returned by dw_print_new().
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3388 * flags: Flags to run the print job.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3389 * Returns:
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3390 * DW_ERROR_UNKNOWN on error or DW_ERROR_NONE on success.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3391 */
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3392 int API dw_print_run(HPRINT print, unsigned long flags)
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3393 {
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3394 return DW_ERROR_UNKNOWN;
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3395 }
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3396
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3397 /*
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3398 * Cancels the print job, typically called from a draw page callback.
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3399 * Parameters:
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3400 * print: Handle to the print object returned by dw_print_new().
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3401 */
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3402 void API dw_print_cancel(HPRINT print)
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3403 {
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3404 }
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3405