annotate template/dw.c @ 1634:c3e08322b8f6

Fixed issues drawing arcs on GTK3 and GTK2 for printing. This issue was seen in the test program with the failure to draw the bottom right arc. GTK2 printing may require some other updates after looking at this change.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 29 Mar 2012 05:16:26 +0000
parents 4a9c574d5c17
children 9dbd2984c1e5
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 /*
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
599 * 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
600 * 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
601 * box: Window handle of the box to be packed into.
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
602 * item: Window handle of the item to be back.
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
603 * 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
604 * 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
605 * 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
606 * 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
607 * 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
608 * 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
609 */
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
610 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
611 {
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
612 _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
613 }
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
614
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
615 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
616 * 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
617 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
618 * box: Window handle of the box to be packed into.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
619 * item: Window handle of the item to be back.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
620 * 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
621 * 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
622 * 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
623 * 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
624 * 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
625 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
626 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
627 {
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 /* 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
629 * 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
630 */
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 _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
632 }
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
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 * 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
636 * 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
637 * box: Window handle of the box to be packed into.
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 * item: Window handle of the item to be back.
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 * 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
640 * 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
641 * 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
642 * 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
643 * 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
644 */
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
645 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
646 {
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
647 _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
648 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
649
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 * 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
652 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
653 * 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
654 * 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
655 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
656 * 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
657 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
658 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
659 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
660 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
661 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
662
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
663 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
664 * 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
665 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
666 * 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
667 * 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
668 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
669 * 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
670 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
671 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
672 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
673 return 0;
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
677 * 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
678 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
679 * 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
680 * 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
681 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
682 * 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
683 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
684 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
685 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
686 return 0;
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
690 * Sets the entryfield character limit.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
691 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
692 * 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
693 * 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
694 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
695 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
696 {
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
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 * 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
701 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
702 * 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
703 * 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
704 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
705 * 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
706 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
707 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
708 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
709 return 0;
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
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 * 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
714 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
715 * 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
716 * 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
717 * 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
718 * DW pick the appropriate file extension.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
719 * (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
720 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
721 * 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
722 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
723 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
724 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
725 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
726 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
727
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
728 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
729 * 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
730 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
731 * 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
732 * 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
733 * data: The contents of the image
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
734 * (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
735 * len: length of str
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
736 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
737 * 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
738 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
739 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
740 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
741 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
742 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
743
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
744 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
745 * 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
746 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
747 * 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
748 * 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
749 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
750 * 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
751 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
752 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
753 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
754 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
755 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
756
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
757 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
758 * Sets the spinbutton value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
759 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
760 * 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
761 * position: Current value of the spinbutton.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
762 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
763 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
764 {
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
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 * Sets the spinbutton limits.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
769 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
770 * 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
771 * upper: Upper limit.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
772 * lower: Lower limit.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
773 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
774 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
775 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
776 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
777
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 * 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
780 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
781 * 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
782 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
783 * 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
784 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
785 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
786 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
787 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
788 }
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 * 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
792 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
793 * 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
794 * 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
795 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
796 * 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
797 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
798 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
799 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
800 return 0;
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 * 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
805 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
806 * 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
807 * increments: Number of increments available.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
808 * 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
809 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
810 * 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
811 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
812 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
813 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
814 return 0;
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
817 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
818 * Returns the position of the slider.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
819 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
820 * 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
821 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
822 * 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
823 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
824 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
825 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
826 return 0;
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
830 * Sets the slider position.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
831 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
832 * 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
833 * 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
834 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
835 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
836 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
837 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
840 * 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
841 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
842 * 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
843 * 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
844 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
845 * 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
846 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
847 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
848 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
849 return 0;
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
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 * Returns the position of the scrollbar.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
854 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
855 * 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
856 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
857 * 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
858 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
859 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
860 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
861 return 0;
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 * Sets the scrollbar position.
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 * 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
868 * 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
869 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
870 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
871 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
872 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
875 * Sets the scrollbar range.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
876 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
877 * 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
878 * range: Maximum range value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
879 * 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
880 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
881 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
882 {
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
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 * 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
887 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
888 * 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
889 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
890 * 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
891 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
892 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
893 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
894 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
895 }
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 * Sets the percent bar position.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
899 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
900 * 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
901 * 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
902 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
903 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
904 {
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
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 * 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
909 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
910 * 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
911 * 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
912 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
913 * 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
914 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
915 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
916 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
917 return 0;
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
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 * Returns the state of the checkbox.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
922 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
923 * 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
924 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
925 * State of checkbox (TRUE or FALSE).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
926 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
927 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
928 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
929 return FALSE;
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 * Sets the state of the checkbox.
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 * 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
936 * 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
937 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
938 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
939 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
940 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
943 * 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
944 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
945 * 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
946 * multi: Multiple select TRUE or FALSE.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
947 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
948 * 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
949 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
950 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
951 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
952 return 0;
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
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 * 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
957 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
958 * 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
959 * text: Text to append into listbox.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
960 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
961 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
962 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
963 }
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 * 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
967 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
968 * 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
969 * text: Text to insert into listbox.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
970 * 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
971 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
972 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
973 {
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
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 * 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
978 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
979 * 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
980 * 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
981 * 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
982 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
983 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
984 {
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
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 * 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
989 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
990 * 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
991 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
992 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
993 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
994 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
995
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 * Returns the listbox's item count.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
998 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
999 * 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
1000 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1001 * 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
1002 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1003 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
1004 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1005 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1006 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1009 * 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
1010 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1011 * 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
1012 * top: Index to the top item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1013 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1014 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
1015 {
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
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 * 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
1020 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1021 * 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
1022 * 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
1023 * 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
1024 * 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
1025 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1026 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
1027 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1028 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1031 * 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
1032 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1033 * 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
1034 * 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
1035 * 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
1036 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1037 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
1038 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1039 }
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 * 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
1043 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1044 * 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
1045 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1046 * 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
1047 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1048 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
1049 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1050 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1051 }
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 * 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
1055 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1056 * 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
1057 * 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
1058 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1059 * 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
1060 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1061 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
1062 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1063 return DW_ERROR_UNKNOWN;
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 * 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
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 set.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1070 * index: Item index.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1071 * 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
1072 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1073 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
1074 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1075 }
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 * 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
1079 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1080 * 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
1081 * index: Item index.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1082 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1083 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
1084 {
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
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 * 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
1089 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1090 * 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
1091 * 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
1092 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1093 * 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
1094 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1095 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
1096 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1097 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1098 }
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 * 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
1102 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1103 * 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
1104 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1105 * 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
1106 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1107 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
1108 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1109 return 0;
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 * 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
1114 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1115 * 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
1116 * buffer: Text buffer to be imported.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1117 * startpoint: Point to start entering text.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1118 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1119 * Current position in the buffer.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1120 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1121 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
1122 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1123 return 0;
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1127 * Grabs text from an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1128 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1129 * 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
1130 * buffer: Text buffer to be exported.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1131 * startpoint: Point to start grabbing text.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1132 * 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
1133 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1134 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
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1139 * Obtains information about an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1140 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1141 * 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
1142 * 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
1143 * 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
1144 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1145 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
1146 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1147 *bytes = 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1148 *lines = 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 * Deletes 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 deleted from.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1155 * startpoint: Point to start deleting text.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1156 * 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
1157 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1158 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
1159 {
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 * 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
1164 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1165 * 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
1166 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1167 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
1168 {
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
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 * 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
1173 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1174 * 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
1175 * line: Line to be visible.
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 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
1178 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1179 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1180
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1181 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1182 * 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
1183 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1184 * handle: Handle to the MLE.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1185 * 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
1186 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1187 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
1188 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1189 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1190
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 * 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
1193 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1194 * handle: Handle to the MLE.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1195 * 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
1196 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1197 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
1198 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1199 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1200
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 * 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
1203 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1204 * 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
1205 * point: Point to position cursor.
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 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
1208 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1209 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1210
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 * Finds text in an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1213 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1214 * 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
1215 * text: Text to search for.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1216 * point: Start point of search.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1217 * 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
1218 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1219 * 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
1220 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1221 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
1222 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1223 return DW_ERROR_UNKNOWN;
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 * Stops redrawing 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 freeze.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1230 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1231 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
1232 {
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 * Resumes redrawing of an MLE box.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1237 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1238 * 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
1239 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1240 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
1241 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1242 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1243
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1244 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1245 * 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
1246 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1247 * 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
1248 * 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
1249 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1250 * 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
1251 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1252 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
1253 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1254 return 0;
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
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 * 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
1259 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1260 * 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
1261 * 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
1262 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1263 * 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
1264 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1265 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
1266 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1267 return 0;
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1271 * 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
1272 * Parameters:
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.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1274 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1275 * 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
1276 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1277 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
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 /* Sets the current foreground drawing color.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1283 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1284 * red: red value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1285 * green: green value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1286 * blue: blue value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1287 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1288 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
1289 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1290 }
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 /* Sets the current background drawing color.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1293 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1294 * red: red value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1295 * green: green value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1296 * blue: blue value.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1297 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1298 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
1299 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1300 }
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 /* 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
1303 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1304 * value: current color
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1305 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1306 * 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
1307 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1308 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
1309 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1310 return value;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1311 }
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 /* 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
1314 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1315 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1316 * 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
1317 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1318 * y: Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1319 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1320 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
1321 {
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1324 /* 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
1325 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1326 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1327 * 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
1328 * x1: First X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1329 * y1: First Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1330 * x2: Second X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1331 * y2: Second Y coordinate.
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 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
1334 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1335 }
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 /* 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
1338 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1339 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1340 * 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
1341 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1342 * y: Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1343 * text: Text to be displayed.
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_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
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 /* 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
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 * text: Text to be queried.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1354 * 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
1355 * 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
1356 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1357 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
1358 {
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 /* 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
1362 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1363 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1364 * 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
1365 * 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
1366 * 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
1367 * 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
1368 * 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
1369 */
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
1370 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
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 /* 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
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)
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
1378 * 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
1379 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1380 * y: Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1381 * width: Width of rectangle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1382 * height: Height of rectangle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1383 */
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
1384 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
1385 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1386 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1387
1261
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1388 /* 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
1389 * Parameters:
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1390 * 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
1391 * 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
1392 * 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
1393 * 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
1394 * 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
1395 * 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
1396 * 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
1397 * 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
1398 * 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
1399 * 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
1400 */
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1401 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
1402 {
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1403 }
61d0c5f84644 Initial attempt at adding dw_draw_arc() support on all platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1211
diff changeset
1404
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1405 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1406 * 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
1407 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1408 * 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
1409 * resource file.
1010
9af693aafa93 Attempt at implmenting dw_window_get_font on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1008
diff changeset
1410 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1411 * 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
1412 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1413 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
1414 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1415 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1416 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1417
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1418 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1419 * 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
1420 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1421 * 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
1422 * 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
1423 * 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
1424 * icon: Handle to coresponding icon.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1425 * 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
1426 * itemdata: Item specific data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1427 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1428 * 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
1429 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1430 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
1431 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1432 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1433 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1434
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1435 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1436 * 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
1437 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1438 * 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
1439 * 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
1440 * icon: Handle to coresponding icon.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1441 * 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
1442 * itemdata: Item specific data.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1443 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1444 * 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
1445 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1446 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
1447 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1448 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1449 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1450
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1451 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1452 * 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
1453 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1454 * 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
1455 * 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
1456 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1457 * 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
1458 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1459 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
1460 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1461 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1462 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1463
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1464 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1465 * 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
1466 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1467 * 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
1468 * 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
1469 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1470 * 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
1471 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1472 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
1473 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1474 return 0;
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1478 * 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
1479 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1480 * 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
1481 * 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
1482 * 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
1483 * icon: Handle to coresponding icon.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1484 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1485 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
1486 {
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 * 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
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 * 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
1495 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1496 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
1497 {
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
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 * 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
1502 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1503 * 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
1504 * 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
1505 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1506 * 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
1507 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1508 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
1509 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1510 return NULL;
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 * 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
1515 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1516 * 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
1517 * 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
1518 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1519 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
1520 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1521 }
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 * Removes all nodes from a tree.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1525 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1526 * 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
1527 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1528 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
1529 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1530 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1531
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 * Expands a node on a tree.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1534 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1535 * 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
1536 * 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
1537 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1538 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
1539 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1540 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1541
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1542 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1543 * Collapses a node on a tree.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1544 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1545 * 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
1546 * 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
1547 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1548 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
1549 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1550 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1551
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 * Removes a node from a tree.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1554 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1555 * 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
1556 * 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
1557 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1558 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
1559 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1560 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1561
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 * 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
1564 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1565 * 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
1566 * resource file.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1567 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1568 * 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
1569 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1570 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
1571 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1572 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1573 }
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 * Sets up the container columns.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1577 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1578 * 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
1579 * 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
1580 * 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
1581 * 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
1582 * 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
1583 * (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
1584 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1585 * DW_ERROR_NONE (0) on success.
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 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
1588 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1589 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1590 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1591
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1592 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1593 * 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
1594 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1595 * 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
1596 * 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
1597 * 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
1598 * 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
1599 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1600 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1601 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1602 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
1603 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1604 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1605 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1606
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1607 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1608 * 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
1609 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1610 * 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
1611 * 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
1612 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1613 * 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
1614 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1615 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
1616 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1617 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1618 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1619
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1620 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1621 * 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
1622 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1623 * 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
1624 * 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
1625 * 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
1626 * 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
1627 * 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
1628 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1629 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
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1634 * 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
1635 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1636 * 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
1637 * 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
1638 * 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
1639 * 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
1640 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1641 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
1642 {
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 * 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
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 * 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
1650 * 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
1651 * 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
1652 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1653 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
1654 {
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 * 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
1659 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1660 * 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
1661 * 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
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_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
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 * 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
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 * 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
1675 * 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
1676 * 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
1677 * 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
1678 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1679 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
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1684 * 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
1685 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1686 * 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
1687 * 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
1688 * 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
1689 * 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
1690 * 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
1691 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1692 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
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 /*
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
1697 * 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
1698 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1699 * 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
1700 * 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
1701 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1702 * 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
1703 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1704 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
1705 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1706 return 0;
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 /*
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
1710 * 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
1711 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1712 * 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
1713 * column: Zero based column.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1714 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1715 * 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
1716 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1717 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
1718 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1719 return 0;
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1722 /*
1208
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1723 * 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
1724 * Parameters:
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1725 * 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
1726 * 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
1727 * 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
1728 * 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
1729 * 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
1730 */
1291
b99b0b2c2826 Renamed dw_container_set_row_bg() to dw_container_set_stripe().
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1275
diff changeset
1731 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
1732 {
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1733 }
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1734
53547c9c99a2 Added dw_container_set_row_bg() stubs on the remaining platforms.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1158
diff changeset
1735 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1736 * 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
1737 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1738 * 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
1739 * 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
1740 * width: Width of column in pixels.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1741 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1742 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
1743 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1744 }
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 * 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
1748 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1749 * 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
1750 * 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
1751 * title: String title of the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1752 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1753 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
1754 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1755 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1756
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1757
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1758 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1759 * 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
1760 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1761 * 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
1762 * 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
1763 * title: String title of the item.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1764 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1765 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
1766 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1767 }
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 * 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
1771 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1772 * 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
1773 * 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
1774 * 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
1775 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1776 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
1777 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1778 }
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 * Removes all rows from a container.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1782 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1783 * 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
1784 * 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
1785 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1786 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
1787 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1788 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1791 * 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
1792 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1793 * 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
1794 * 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
1795 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1796 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
1797 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1798 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1799
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 * Scrolls container up or down.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1802 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1803 * 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
1804 * 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
1805 * 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
1806 * 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
1807 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1808 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
1809 {
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
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 * 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
1814 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1815 * 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
1816 * 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
1817 * 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
1818 * 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
1819 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1820 * 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
1821 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1822 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
1823 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1824 return NULL;
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1827 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1828 * 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
1829 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1830 * 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
1831 * 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
1832 * 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
1833 * 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
1834 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1835 * 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
1836 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1837 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
1838 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1839 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1840 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1841
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1842 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1843 * 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
1844 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1845 * 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
1846 * 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
1847 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1848 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
1849 {
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 * 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
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).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1856 * 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
1857 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1858 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
1859 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1860 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1861
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1862 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1863 * 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
1864 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1865 * 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
1866 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1867 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
1868 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1869 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1870
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1871 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1872 * Inserts an icon into the taskbar.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1873 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1874 * 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
1875 * 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
1876 * 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
1877 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1878 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
1879 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1880 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1881
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 * Deletes an icon from the taskbar.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1884 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1885 * 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
1886 * 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
1887 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1888 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
1889 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1890 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1893 * 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
1894 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1895 * 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
1896 * 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
1897 * 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
1898 * to an embedded XPM.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1899 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1900 * 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
1901 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1902 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
1903 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1904 return 0;
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 * Obtains an icon from a file.
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 * 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
1911 * DW pick the appropriate file extension.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1912 * (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
1913 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1914 * 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
1915 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1916 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
1917 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1918 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1919 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1920
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1921 /*
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
1922 * Obtains an icon from data.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1923 * 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
1924 * 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
1925 * 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
1926 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1927 * 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
1928 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1929 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
1930 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1931 return 0;
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1934 /*
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
1935 * Frees a loaded icon resource.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1936 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1937 * 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
1938 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1939 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
1940 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1941 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1944 * 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
1945 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1946 * 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
1947 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1948 * 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
1949 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1950 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
1951 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1952 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1953 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1954
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 * 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
1957 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1958 * 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
1959 * 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
1960 * 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
1961 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1962 * 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
1963 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1964 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
1965 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1966 return 0;
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1970 * 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
1971 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1972 * 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
1973 * 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
1974 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1975 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
1976 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1977 }
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 * 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
1981 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1982 * 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
1983 * 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
1984 * Position of the splitbar (percentage).
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1985 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1986 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
1987 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1988 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1989 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1992 * 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
1993 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1994 * 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
1995 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1996 * 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
1997 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
1998 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
1999 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2000 return 0;
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 * Creates a pixmap with given parameters.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2005 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2006 * 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
2007 * 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
2008 * 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
2009 * depth: Color depth of the pixmap.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2010 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2011 * 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
2012 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2013 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
2014 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2015 return 0;
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2018 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2019 * Creates a pixmap from a file.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2020 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2021 * 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
2022 * 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
2023 * DW pick the appropriate file extension.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2024 * (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
2025 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2026 * 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
2027 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2028 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
2029 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2030 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2031 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2032
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2033 /*
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
2034 * 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
2035 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2036 * 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
2037 * data: Source of the image data
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2038 * (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
2039 * len: Length of data
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2040 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2041 * 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
2042 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2043 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
2044 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2045 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2046 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2047
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2048 /*
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
2049 * 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
2050 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2051 * 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
2052 * 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
2053 * color: Transparent RGB color
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2054 * 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
2055 * don't handle transparency automatically
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 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
2058 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2059 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2060
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2061 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2062 * 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
2063 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2064 * 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
2065 * 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
2066 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2067 * 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
2068 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2069 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
2070 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2071 return 0;
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2074 /*
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
2075 * 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
2076 * 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
2077 * 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
2078 * 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
2079 * 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
2080 * 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
2081 * 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
2082 * 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
2083 * 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
2084 */
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
2085 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
2086 {
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
2087 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
2088 }
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
2089
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
2090 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2091 * Destroys an allocated pixmap.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2092 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2093 * 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
2094 * dw_pixmap_new..
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 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
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2100 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2101 * Copies from one item to another.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2102 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2103 * dest: Destination window handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2104 * destp: Destination pixmap. (choose only one).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2105 * xdest: X coordinate of destination.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2106 * ydest: Y coordinate of destination.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2107 * width: Width of area to copy.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2108 * height: Height of area to copy.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2109 * src: Source window handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2110 * srcp: Source pixmap. (choose only one).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2111 * xsrc: X coordinate of source.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2112 * ysrc: Y coordinate of source.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2113 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2114 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
2115 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2116 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2117
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2118 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2119 * 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
2120 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2121 * 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
2122 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2123 * 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
2124 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2125 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
2126 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2127 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2128 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2129
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2130 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2131 * 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
2132 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2133 * 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
2134 * 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
2135 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2136 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
2137 {
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
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 * 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
2142 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2143 * 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
2144 * 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
2145 * 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
2146 * 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
2147 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2148 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
2149 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2150 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2153 * 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
2154 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2155 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2156 * 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
2157 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2158 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
2159 {
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
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 * 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
2164 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2165 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2166 * 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
2167 * be rendered.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2168 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2169 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2170 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2171 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
2172 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2173 return DW_ERROR_GENERAL;
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 * 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
2178 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2179 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2180 * 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
2181 * file object to be rendered.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2182 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2183 * DW_ERROR_NONE (0) on success.
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 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
2186 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2187 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2188 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2189
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2190 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2191 * 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
2192 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2193 * 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
2194 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2195 * 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
2196 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2197 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
2198 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2199 return 0;
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2203 * 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
2204 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2205 * 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
2206 * 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
2207 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2208 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
2209 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2210 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2213 * 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
2214 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2215 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2216 * y: Y coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2217 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2218 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
2219 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2220 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2223 * 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
2224 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2225 * 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
2226 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2227 * 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
2228 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2229 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
2230 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2231 return 0;
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
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 * Create a menubar on a window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2236 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2237 * 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
2238 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2239 * 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
2240 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2241 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
2242 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2243 return 0;
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 * 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
2248 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2249 * menu: Handle of a menu.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2250 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2251 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
2252 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2253 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2254
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2255 /*
1371
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2256 * 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
2257 * Parameters:
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2258 * 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
2259 * 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
2260 * Returns:
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2261 * 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
2262 */
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2263 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
2264 {
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2265 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
2266 }
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2267
896347a9be19 Initial versions of dw_menu_delete_item() on OS/2 and Windows.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1306
diff changeset
2268 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2269 * 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
2270 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2271 * 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
2272 * 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
2273 * x: X coordinate.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2274 * y: Y coordinate.
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_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
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2281 * 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
2282 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2283 * 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
2284 * 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
2285 * 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
2286 * 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
2287 * 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
2288 * 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
2289 * 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
2290 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2291 * 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
2292 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2293 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
2294 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2295 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2296 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2297
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2298 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2299 * 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
2300 * 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
2301 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2302 * 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
2303 * id: Menuitem id.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2304 * 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
2305 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2306 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
2307 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2308 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2309
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2310 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2311 * 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
2312 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2313 * 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
2314 * id: Menuitem id.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2315 * 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
2316 * DW_MIS_CHECKED/DW_MIS_UNCHECKED
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 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
2319 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2320 }
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 * 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
2324 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2325 * 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
2326 * resource file.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2327 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2328 * 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
2329 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2330 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
2331 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2332 return 0;
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 * 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
2337 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2338 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2339 * flags: Any additional page creation flags.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2340 * 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
2341 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2342 * ID of newly created notebook page.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2343 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2344 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
2345 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2346 return 0;
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2349 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2350 * Remove a page from a notebook.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2351 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2352 * handle: Handle to the notebook widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2353 * 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
2354 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2355 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
2356 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2357 }
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 * Queries the currently visible page ID.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2361 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2362 * handle: Handle to the notebook widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2363 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2364 * ID of visible notebook page.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2365 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2366 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
2367 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2368 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2369 }
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 /*
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
2372 * 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
2373 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2374 * handle: Handle to the notebook widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2375 * 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
2376 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2377 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
2378 {
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
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 * 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
2383 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2384 * handle: Notebook handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2385 * 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
2386 * 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
2387 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2388 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
2389 {
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
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 * 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
2394 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2395 * handle: Notebook handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2396 * 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
2397 * 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
2398 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2399 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
2400 {
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
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 * 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
2405 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2406 * 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
2407 * 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
2408 * page: Box handle to be packed.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2409 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2410 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
2411 {
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
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 * Create a new Window Frame.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2416 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2417 * 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
2418 * 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
2419 * flStyle: Style flags.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2420 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2421 * 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
2422 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2423 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
2424 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2425 return 0;
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 * 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
2430 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2431 * handle: Window handle of the widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2432 * function: Function pointer to be called.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2433 * 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
2434 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2435 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
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2441 * 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
2442 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2443 * 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
2444 * 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
2445 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2446 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
2447 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2448 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2451 * Makes the window visible.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2452 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2453 * 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
2454 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2455 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2456 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2457 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
2458 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2459 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2460 }
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 * Makes the window invisible.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2464 * 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
2465 * 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
2466 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2467 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2468 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2469 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
2470 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2471 return DW_ERROR_GENERAL;
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 * 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
2476 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2477 * handle: The window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2478 * 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
2479 * 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
2480 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2481 * 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
2482 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2483 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
2484 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2485 return DW_ERROR_GENERAL;
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 /*
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
2489 * 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
2490 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2491 * handle: The window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2492 * 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
2493 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2494 * DW_ERROR_NONE (0) on success.
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 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
2497 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2498 return DW_ERROR_GENERAL;
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2501 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2502 * 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
2503 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2504 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2505 * style: Style features enabled or disabled.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2506 * 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
2507 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2508 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
2509 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2510 }
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 * 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
2514 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2515 * window: Toplevel window or dialog.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2516 * 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
2517 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2518 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
2519 {
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
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 * 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
2524 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2525 * 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
2526 * 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
2527 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2528 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
2529 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2530 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2531
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 * 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
2534 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2535 * handle: Handle to receive mouse input.
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 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
2538 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2539 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2540
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2541 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2542 * Releases previous mouse capture.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2543 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2544 void API dw_window_release(void)
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2549 * 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
2550 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2551 * handle: The window handle to destroy.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2552 * 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
2553 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2554 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
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2559 * 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
2560 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2561 * handle: The window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2562 * 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
2563 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2564 * DW_ERROR_NONE (0) on success.
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 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
2567 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2568 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2569 }
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 /*
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
2572 * 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
2573 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2574 * 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
2575 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2576 * 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
2577 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2578 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
2579 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2580 return NULL;
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
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
2583 /* 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
2584 * 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
2585 * 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
2586 * 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
2587 * 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
2588 */
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
2589 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
2590 {
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
2591 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
2592 }
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
2593
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
2594 /*
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
2595 * 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
2596 * 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
2597 * 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
2598 */
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
2599 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
2600 {
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
2601 }
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
2602
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2603 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2604 * 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
2605 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2606 * 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
2607 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2608 * 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
2609 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2610 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
2611 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2612 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2613 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2614
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2615 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2616 * 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
2617 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2618 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2619 * 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
2620 * 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
2621 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2622 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
2623 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2624 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2625 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2626
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2627 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2628 * 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
2629 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2630 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2631 * 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
2632 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2633 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
2634 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2635 }
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 /*
1389
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2638 * 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
2639 * Parameters:
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2640 * 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
2641 * 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
2642 */
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2643 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
2644 {
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2645 }
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2646
0512fbb08abf Added dw_window_set_tooltip() for adding bubble help to most controls.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1384
diff changeset
2647 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2648 * Disables given window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2649 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2650 * handle: Handle to the window.
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 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
2653 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2654 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2655
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2656 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2657 * Enables given window (widget).
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2658 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2659 * handle: Handle to the window.
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 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
2662 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2663 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2664
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2665 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2666 * 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
2667 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2668 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2669 * 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
2670 * (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
2671 * 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
2672 * 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
2673 * 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
2674 * len: Length of data passed
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2675 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2676 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
2677 {
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 * 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
2682 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2683 * handle: Handle to the window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2684 * 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
2685 * (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
2686 * 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
2687 * 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
2688 * 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
2689 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2690 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
2691 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2692 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2693
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2694 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2695 * 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
2696 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2697 * 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
2698 * 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
2699 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2700 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
2701 {
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 * 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
2706 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2707 * handle: Handle to the parent window.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2708 * id: Integer ID of the child.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2709 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2710 * 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
2711 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2712 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
2713 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2714 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2715 }
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 * 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
2719 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2720 * handle: The window handle to minimize.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2721 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2722 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2723 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2724 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
2725 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2726 return DW_ERROR_GENERAL;
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 /* 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
2730 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2731 * 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
2732 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2733 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
2734 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2735 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2738 * Makes the window topmost.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2739 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2740 * 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
2741 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2742 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2743 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2744 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
2745 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2746 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2747 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2750 * Makes the window bottommost.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2751 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2752 * 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
2753 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2754 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2755 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2756 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
2757 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2758 return DW_ERROR_GENERAL;
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 * 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
2763 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2764 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2765 * width: New width in pixels.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2766 * height: New height in pixels.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2767 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2768 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
2769 {
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2772 /*
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
2773 * 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
2774 * 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
2775 * 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
2776 * 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
2777 * 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
2778 */
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
2779 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
2780 {
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
2781 }
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
2782
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
2783 /*
1475
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2784 * 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
2785 * 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
2786 * Parameters:
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2787 * 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
2788 * 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
2789 * 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
2790 */
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2791 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
2792 {
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2793 }
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2794
e0212278f794 Added dw_window_set_gravity() to the template and readme.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1441
diff changeset
2795 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2796 * 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
2797 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2798 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2799 * 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
2800 * 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
2801 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2802 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
2803 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2804 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2805
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2806 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2807 * 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
2808 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2809 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2810 * 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
2811 * 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
2812 * width: Width of the widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2813 * height: Height of the widget.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2814 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2815 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
2816 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2817 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2818
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2819 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2820 * 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
2821 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2822 * handle: Window (widget) handle.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2823 * 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
2824 * 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
2825 * 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
2826 * 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
2827 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2828 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
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2833 * Returns the width of the screen.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2834 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2835 int API dw_screen_width(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2836 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2837 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2838 }
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2841 * Returns the height of the screen.
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 int API dw_screen_height(void)
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 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2846 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2847
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
2848 /* 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
2849 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
2850 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2851 return 0;
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
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 * 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
2856 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2857 * env: Pointer to a DWEnv struct.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2858 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2859 void dw_environment_query(DWEnv *env)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2860 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2861 strcpy(env->osName, "Unknown");
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2862
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2863 strcpy(env->buildDate, __DATE__);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2864 strcpy(env->buildTime, __TIME__);
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2865 env->DWMajorVersion = DW_MAJOR_VERSION;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2866 env->DWMinorVersion = DW_MINOR_VERSION;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2867 env->DWSubVersion = DW_SUB_VERSION;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2868
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2869 env->MajorVersion = 0; /* Operating system major */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2870 env->MinorVersion = 0; /* Operating system minor */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2871 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
2872 env->MinorBuild = 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2873 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2874
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 * Emits a beep.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2877 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2878 * freq: Frequency.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2879 * dur: Duration.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2880 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2881 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
2882 {
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2885 /* 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
2886 * anything you have drawn is visible.
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 void API dw_flush(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2889 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2890 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2891
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2892 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2893 * 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
2894 * 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
2895 * 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
2896 * 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
2897 * 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
2898 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2899 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
2900 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2901 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2902
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2903 /*
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
2904 * 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
2905 * 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
2906 * 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
2907 * 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
2908 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2909 * 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
2910 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2911 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
2912 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2913 return NULL;
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 * 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
2918 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2919 * interval: Milliseconds to delay between calls.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2920 * 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
2921 * 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
2922 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2923 * 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
2924 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2925 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
2926 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2927 return 0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2928 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2929
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2930 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2931 * Removes timer callback.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2932 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2933 * 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
2934 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2935 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
2936 {
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
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 * 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
2941 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2942 * 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
2943 * 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
2944 * 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
2945 * 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
2946 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2947 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
2948 {
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
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 * 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
2953 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2954 * 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
2955 * 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
2956 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2957 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
2958 {
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
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 * 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
2963 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2964 * 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
2965 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2966 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
2967 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2968 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2969
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2970 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2971 * 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
2972 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2973 * 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
2974 * 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
2975 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2976 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
2977 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2978 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2979
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2980 /* 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
2981 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2982 * 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
2983 * handle: Pointer to a module handle,
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2984 * 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
2985 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2986 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2987 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2988 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
2989 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2990 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2991 }
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 /* 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
2994 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2995 * 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
2996 * 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
2997 * 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
2998 * the address.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
2999 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3000 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3001 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3002 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
3003 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3004 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3005 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3006
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3007 /* Frees the shared library previously opened.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3008 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3009 * 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
3010 * Returns:
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_close(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_GENERAL;
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 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3019 * 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
3020 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3021 HMTX dw_mutex_new(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3022 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3023 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3024 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3025
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 * 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
3028 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3029 * 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
3030 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3031 void dw_mutex_close(HMTX mutex)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3032 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3033 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3034
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3035 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3036 * 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
3037 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3038 * 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
3039 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3040 void dw_mutex_lock(HMTX mutex)
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 #if 0
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3043 /* 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
3044 * 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
3045 * 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
3046 * processing messages in between tries.
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 if(_dw_thread == dw_thread_id())
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 while(/* Attempt to lock the mutex */)
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 /* Process any pending events */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3053 while(dw_main_iteration())
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3054 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3055 /* Just loop */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3056 }
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 else
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 /* Lock the mutex */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3062 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3063 #endif
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3066 /*
1158
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3067 * 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
3068 * Parameters:
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3069 * 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
3070 * Returns:
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3071 * 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
3072 */
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3073 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
3074 {
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3075 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
3076 }
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3077
f86f556ff29d Added dw_mutex_trylock() that functions like dw_mutex_lock() except
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1152
diff changeset
3078 /*
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3079 * Reliquishes the access to the semaphore.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3080 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3081 * 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
3082 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3083 void dw_mutex_unlock(HMTX mutex)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3084 {
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
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 * 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
3089 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3090 HEV dw_event_new(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3091 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3092 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3093 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3094
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3095 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3096 * 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
3097 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3098 * 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
3099 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3100 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3101 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3102 int dw_event_reset (HEV eve)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3103 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3104 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3105 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3106
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 * 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
3109 * 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
3110 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3111 * 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
3112 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3113 * DW_ERROR_NONE (0) on success.
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 int dw_event_post (HEV eve)
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 DW_ERROR_GENERAL;
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 * 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
3122 * 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
3123 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3124 * 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
3125 * 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
3126 * or -1 if indefinite.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3127 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3128 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3129 * 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
3130 * Other values on other error.
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 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
3133 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3134 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3135 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3136
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3137 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3138 * 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
3139 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3140 * 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
3141 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3142 * DW_ERROR_NONE (0) on success.
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 int dw_event_close(HEV *eve)
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 return DW_ERROR_GENERAL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3147 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3148
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3149 /* 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
3150 * opened from other processes.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3151 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3152 * 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
3153 * by other processes.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3154 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3155 * 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
3156 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3157 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
3158 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3159 return NULL;
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 /* 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
3163 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3164 * 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
3165 * by other processes.
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 * 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
3168 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3169 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
3170 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3171 return NULL;
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 /* 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
3175 * on this semaphore will block.
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 * 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
3178 * 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
3179 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3180 * 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
3181 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3182 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
3183 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3184 return DW_ERROR_GENERAL;
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 /* 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
3188 * 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
3189 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3190 * 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
3191 * an get or new call.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3192 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3193 * 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
3194 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3195 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
3196 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3197 return DW_ERROR_GENERAL;
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
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3200 /* 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
3201 * 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
3202 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3203 * 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
3204 * an get or new call.
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3205 * 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
3206 * or -1 if indefinite.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3207 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3208 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3209 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3210 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
3211 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3212 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3213 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3214
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3215 /* 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
3216 * 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
3217 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3218 * 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
3219 * 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
3220 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3221 * 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
3222 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3223 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
3224 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3225 return DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3226 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3227
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3228 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3229 * Initializes the Dynamic Windows engine.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3230 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3231 * 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
3232 * 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
3233 * argc: Passed in from main()
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3234 * argv: Passed in from main()
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3235 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3236 * DW_ERROR_NONE (0) on success.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3237 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3238 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
3239 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3240 return DW_ERROR_NONE;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3241 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3242
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3243 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3244 * 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
3245 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3246 * 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
3247 * 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
3248 * 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
3249 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3250 * 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
3251 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3252 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
3253 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3254 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3255 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3256
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3257 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3258 * 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
3259 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3260 * 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
3261 * 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
3262 * 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
3263 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3264 * 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
3265 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3266 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
3267 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3268 return NULL;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3269 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3270
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3271 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3272 * 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
3273 * 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
3274 * 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
3275 * 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
3276 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3277 * 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
3278 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3279 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
3280 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3281 int rc = DW_ERROR_UNKNOWN;
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 return rc;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3284 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3285
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3286 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3287 * 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
3288 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3289 * 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
3290 * 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
3291 * 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
3292 * Returns:
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3293 * 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
3294 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3295 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
3296 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3297 return (DWTID)DW_ERROR_UNKNOWN;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3298 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3299
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3300 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3301 * Ends execution of current thread immediately.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3302 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3303 void dw_thread_end(void)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3304 {
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
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 * Returns the current thread's ID.
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 DWTID dw_thread_id(void)
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 return (DWTID)0;
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3313 }
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3314
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3315 /*
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3316 * 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
3317 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3318 * program: Program name with optional path.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3319 * 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
3320 * 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
3321 * Returns:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3322 * 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
3323 */
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3324 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
3325 {
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3326 int ret = DW_ERROR_UNKNOWN;
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 return ret;
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 * 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
3333 * Parameters:
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3334 * url: Uniform resource locator.
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3335 * Returns:
1115
03cd2f3e929d Fixed a documentation and template error regarding dw_browse() return code.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1089
diff changeset
3336 * 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
3337 */
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3338 int dw_browse(char *url)
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3339 {
1115
03cd2f3e929d Fixed a documentation and template error regarding dw_browse() return code.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1089
diff changeset
3340 return DW_ERROR_UNKNOWN;
988
56077b50be7e Reset line endings to LF from CRLF
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 987
diff changeset
3341 }
1137
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3342
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3343 /*
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3344 * 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
3345 * Parameters:
1152
58b5374355ab Added print jobname parameter to dw_print_new().
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1147
diff changeset
3346 * 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
3347 * 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
3348 * 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
3349 * 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
3350 * 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
3351 * Returns:
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3352 * 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
3353 */
1152
58b5374355ab Added print jobname parameter to dw_print_new().
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1147
diff changeset
3354 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
3355 {
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3356 return NULL;
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3357 }
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3358
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3359 /*
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3360 * 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
3361 * Parameters:
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3362 * 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
3363 * 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
3364 * Returns:
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3365 * 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
3366 */
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3367 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
3368 {
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3369 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
3370 }
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3371
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3372 /*
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3373 * 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
3374 * Parameters:
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3375 * 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
3376 */
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3377 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
3378 {
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3379 }
e24e5a13ff2c Added code to test the new print functions in dwtest.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 1117
diff changeset
3380