annotate mac/dw.c @ 612:c5e5671dec8f

Modify Calendar widget Amke Mac port actually compile and run Add Clipboard support for GTK and Win Add *from_data() contructors allowing icons, bitmaps to be created from embedded data.
author mhessling@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 23 Mar 2008 04:54:30 +0000
parents f6de197ecbe9
children 06be879f5137
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2 * Dynamic Windows:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3 * A GTK like implementation of the MacOS GUI
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
4 *
516
caa7ed17c132 Updated copyrights and license file.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 514
diff changeset
5 * (C) 2003-2004 Brian Smith <dbsoft@technologist.com>
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
6 *
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
7 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
8 #include "dw.h"
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
9
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
10 static void _do_resize(Box *thisbox, int x, int y);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
11
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
12 typedef struct _sighandler
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
13 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
14 struct _sighandler *next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
15 ULONG message;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
16 HWND window;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
17 int id;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
18 void *signalfunction;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
19 void *data;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
20
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
21 } SignalHandler;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
22
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
23 SignalHandler *Root = NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
24
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
25 typedef struct
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
26 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
27 ULONG message;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
28 char name[30];
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
29
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
30 } SignalList;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
31
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
32 const Rect CreationRect = { 0, 0, 2000, 1000 };
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
33 WindowRef CreationWindow = 0;
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 441
diff changeset
34 ControlRef RootControl = 0;
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
35 int _dw_screen_width = 0, _dw_screen_height = 0, _dw_color_depth = 16;
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
36
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
37 /* List of signals and their equivilent MacOS event */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
38 #define SIGNALMAX 15
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
39
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
40 SignalList SignalTranslate[SIGNALMAX] = {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
41 { nullEvent, DW_SIGNAL_CONFIGURE },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
42 { keyUp, DW_SIGNAL_KEY_PRESS },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
43 { mouseDown, DW_SIGNAL_BUTTON_PRESS },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
44 { mouseUp, DW_SIGNAL_BUTTON_RELEASE },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
45 { nullEvent, DW_SIGNAL_MOTION_NOTIFY },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
46 { nullEvent, DW_SIGNAL_DELETE },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
47 { updateEvt, DW_SIGNAL_EXPOSE },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
48 { nullEvent, DW_SIGNAL_CLICKED },
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
49 { nullEvent, DW_SIGNAL_ITEM_ENTER },
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
50 { nullEvent, DW_SIGNAL_ITEM_CONTEXT },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
51 { nullEvent, DW_SIGNAL_LIST_SELECT },
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
52 { nullEvent, DW_SIGNAL_ITEM_SELECT },
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
53 { activateEvt, DW_SIGNAL_SET_FOCUS },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
54 { nullEvent, DW_SIGNAL_VALUE_CHANGED },
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
55 { nullEvent, DW_SIGNAL_SWITCH_PAGE }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
56 };
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
57
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
58 /* This function adds a signal handler callback into the linked list.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
59 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
60 void _new_signal(ULONG message, HWND window, int id, void *signalfunction, void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
61 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
62 SignalHandler *new = malloc(sizeof(SignalHandler));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
63
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
64 new->message = message;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
65 new->window = window;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
66 new->id = id;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
67 new->signalfunction = signalfunction;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
68 new->data = data;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
69 new->next = NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
70
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
71 if (!Root)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
72 Root = new;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
73 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
74 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
75 SignalHandler *prev = NULL, *tmp = Root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
76 while(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
77 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
78 if(tmp->message == message &&
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
79 tmp->window == window &&
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
80 tmp->signalfunction == signalfunction)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
81 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
82 tmp->data = data;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
83 free(new);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
84 return;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
85 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
86 prev = tmp;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
87 tmp = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
88 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
89 if(prev)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
90 prev->next = new;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
91 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
92 Root = new;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
93 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
94 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
95
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
96 /* Finds the message number for a given signal name */
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
97 static ULONG _findsigmessage(char *signame)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
98 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
99 int z;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
100
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
101 for(z=0;z<SIGNALMAX;z++)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
102 {
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
103 if(strcasecmp(signame, SignalTranslate[z].name) == 0)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
104 return SignalTranslate[z].message;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
105 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
106 return 0L;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
107 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
108
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
109 /* Creates a Pascal string from a C string */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
110 char *_CToPascal(unsigned char *ptr, char *cstring)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
111 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
112 unsigned char len = (char)strlen(cstring);
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
113
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
114 ptr[0] = len;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
115 memcpy(&ptr[1], cstring, len+1);
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
116 return (char *)ptr;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
117 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
118
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
119 #define CToPascal(a) _CToPascal(alloca(strlen(a)+2), a)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
120
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
121 static void *_get_window_pointer(HWND handle)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
122 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
123 void *ret = NULL;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
124
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
125 if(IsValidWindowRef((WindowRef)handle))
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
126 GetWindowProperty((WindowRef)handle, 0, 'user', sizeof(void *), NULL, &ret);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
127 else
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
128 GetControlProperty(handle, 0, 'user', sizeof(void *), NULL, &ret);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
129 return ret;
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
130 }
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
131
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
132 static void _set_window_pointer(HWND handle, void *pointer)
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
133 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
134 if(IsValidWindowRef((WindowRef)handle))
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
135 SetWindowProperty((WindowRef)handle, 0, 'user', sizeof(void *), &pointer);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
136 else
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
137 SetControlProperty(handle, 0, 'user', sizeof(void *), &pointer);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
138 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
139
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
140 /* This function will recursively search a box and add up the total height of it */
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
141 static void _count_size(HWND box, int type, int *xsize, int *xorigsize)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
142 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
143 int size = 0, origsize = 0, z;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
144 Box *tmp = _get_window_pointer(box);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
145
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
146 if(!tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
147 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
148 *xsize = *xorigsize = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
149 return;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
150 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
151
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
152 if(type == tmp->type)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
153 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
154 /* If the box is going in the direction we want, then we
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
155 * return the entire sum of the items.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
156 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
157 for(z=0;z<tmp->count;z++)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
158 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
159 if(tmp->items[z].type == TYPEBOX)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
160 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
161 int s, os;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
162
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
163 _count_size(tmp->items[z].hwnd, type, &s, &os);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
164 size += s;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
165 origsize += os;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
166 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
167 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
168 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
169 size += (type == DW_HORZ ? tmp->items[z].width : tmp->items[z].height);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
170 origsize += (type == DW_HORZ ? tmp->items[z].origwidth : tmp->items[z].origheight);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
171 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
172 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
173 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
174 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
175 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
176 /* If the box is not going in the direction we want, then we only
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
177 * want to return the maximum value.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
178 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
179 int tmpsize = 0, tmporigsize = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
180
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
181 for(z=0;z<tmp->count;z++)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
182 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
183 if(tmp->items[z].type == TYPEBOX)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
184 _count_size(tmp->items[z].hwnd, type, &tmpsize, &tmporigsize);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
185 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
186 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
187 tmpsize = (type == DW_HORZ ? tmp->items[z].width : tmp->items[z].height);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
188 tmporigsize = (type == DW_HORZ ? tmp->items[z].origwidth : tmp->items[z].origheight);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
189 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
190
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
191 if(tmpsize > size)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
192 size = tmpsize;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
193 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
194 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
195
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
196 *xsize = size;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
197 *xorigsize = origsize;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
198 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
199
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
200 /* This function calculates how much space the widgets and boxes require
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
201 * and does expansion as necessary.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
202 */
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
203 static int _resize_box(Box *thisbox, int *depth, int x, int y, int *usedx, int *usedy,
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
204 int pass, int *usedpadx, int *usedpady)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
205 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
206 int z, currentx = 0, currenty = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
207 int uymax = 0, uxmax = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
208 int upymax = 0, upxmax = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
209 /* Used for the SIZEEXPAND */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
210 int nux = *usedx, nuy = *usedy;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
211 int nupx = *usedpadx, nupy = *usedpady;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
212
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
213 (*usedx) += (thisbox->pad * 2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
214 (*usedy) += (thisbox->pad * 2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
215
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
216 for(z=0;z<thisbox->count;z++)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
217 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
218 if(thisbox->items[z].type == TYPEBOX)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
219 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
220 int initialx, initialy;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
221 Box *tmp = _get_window_pointer(thisbox->items[z].hwnd);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
222
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
223 initialx = x - (*usedx);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
224 initialy = y - (*usedy);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
225
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
226 if(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
227 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
228 int newx, newy;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
229 int nux = *usedx, nuy = *usedy;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
230 int upx = *usedpadx + (tmp->pad*2), upy = *usedpady + (tmp->pad*2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
231
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
232 /* On the second pass we know how big the box needs to be and how
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
233 * much space we have, so we can calculate a ratio for the new box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
234 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
235 if(pass == 2)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
236 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
237 int deep = *depth + 1;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
238
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
239 _resize_box(tmp, &deep, x, y, &nux, &nuy, 1, &upx, &upy);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
240
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
241 tmp->upx = upx - *usedpadx;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
242 tmp->upy = upy - *usedpady;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
243
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
244 newx = x - nux;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
245 newy = y - nuy;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
246
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
247 tmp->width = thisbox->items[z].width = initialx - newx;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
248 tmp->height = thisbox->items[z].height = initialy - newy;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
249
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
250 tmp->parentxratio = thisbox->xratio;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
251 tmp->parentyratio = thisbox->yratio;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
252
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
253 tmp->parentpad = tmp->pad;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
254
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
255 /* Just in case */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
256 tmp->xratio = thisbox->xratio;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
257 tmp->yratio = thisbox->yratio;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
258
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
259 if(thisbox->type == DW_VERT)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
260 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
261 if((thisbox->items[z].width-((thisbox->items[z].pad*2)+(tmp->pad*2)))!=0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
262 tmp->xratio = ((float)((thisbox->items[z].width * thisbox->xratio)-((thisbox->items[z].pad*2)+(tmp->pad*2))))/((float)(thisbox->items[z].width-((thisbox->items[z].pad*2)+(tmp->pad*2))));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
263 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
264 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
265 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
266 if((thisbox->items[z].width-tmp->upx)!=0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
267 tmp->xratio = ((float)((thisbox->items[z].width * thisbox->xratio)-tmp->upx))/((float)(thisbox->items[z].width-tmp->upx));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
268 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
269 if(thisbox->type == DW_HORZ)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
270 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
271 if((thisbox->items[z].height-((thisbox->items[z].pad*2)+(tmp->pad*2)))!=0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
272 tmp->yratio = ((float)((thisbox->items[z].height * thisbox->yratio)-((thisbox->items[z].pad*2)+(tmp->pad*2))))/((float)(thisbox->items[z].height-((thisbox->items[z].pad*2)+(tmp->pad*2))));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
273 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
274 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
275 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
276 if((thisbox->items[z].height-tmp->upy)!=0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
277 tmp->yratio = ((float)((thisbox->items[z].height * thisbox->yratio)-tmp->upy))/((float)(thisbox->items[z].height-tmp->upy));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
278 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
279
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
280 nux = *usedx; nuy = *usedy;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
281 upx = *usedpadx + (tmp->pad*2); upy = *usedpady + (tmp->pad*2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
282 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
283
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
284 (*depth)++;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
285
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
286 _resize_box(tmp, depth, x, y, &nux, &nuy, pass, &upx, &upy);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
287
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
288 (*depth)--;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
289
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
290 newx = x - nux;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
291 newy = y - nuy;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
292
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
293 tmp->minwidth = thisbox->items[z].width = initialx - newx;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
294 tmp->minheight = thisbox->items[z].height = initialy - newy;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
295 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
296 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
297
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
298 if(pass > 1 && *depth > 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
299 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
300 if(thisbox->type == DW_VERT)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
301 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
302 if((thisbox->minwidth-((thisbox->items[z].pad*2)+(thisbox->parentpad*2))) == 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
303 thisbox->items[z].xratio = 1.0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
304 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
305 thisbox->items[z].xratio = ((float)((thisbox->width * thisbox->parentxratio)-((thisbox->items[z].pad*2)+(thisbox->parentpad*2))))/((float)(thisbox->minwidth-((thisbox->items[z].pad*2)+(thisbox->parentpad*2))));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
306 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
307 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
308 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
309 if(thisbox->minwidth-thisbox->upx == 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
310 thisbox->items[z].xratio = 1.0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
311 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
312 thisbox->items[z].xratio = ((float)((thisbox->width * thisbox->parentxratio)-thisbox->upx))/((float)(thisbox->minwidth-thisbox->upx));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
313 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
314
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
315 if(thisbox->type == DW_HORZ)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
316 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
317 if((thisbox->minheight-((thisbox->items[z].pad*2)+(thisbox->parentpad*2))) == 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
318 thisbox->items[z].yratio = 1.0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
319 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
320 thisbox->items[z].yratio = ((float)((thisbox->height * thisbox->parentyratio)-((thisbox->items[z].pad*2)+(thisbox->parentpad*2))))/((float)(thisbox->minheight-((thisbox->items[z].pad*2)+(thisbox->parentpad*2))));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
321 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
322 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
323 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
324 if(thisbox->minheight-thisbox->upy == 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
325 thisbox->items[z].yratio = 1.0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
326 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
327 thisbox->items[z].yratio = ((float)((thisbox->height * thisbox->parentyratio)-thisbox->upy))/((float)(thisbox->minheight-thisbox->upy));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
328 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
329
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
330 if(thisbox->items[z].type == TYPEBOX)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
331 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
332 Box *tmp = _get_window_pointer(thisbox->items[z].hwnd);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
333
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
334 if(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
335 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
336 tmp->parentxratio = thisbox->items[z].xratio;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
337 tmp->parentyratio = thisbox->items[z].yratio;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
338 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
339 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
340 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
341 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
342 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
343 thisbox->items[z].xratio = thisbox->xratio;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
344 thisbox->items[z].yratio = thisbox->yratio;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
345 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
346
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
347 if(thisbox->type == DW_VERT)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
348 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
349 if((thisbox->items[z].width + (thisbox->items[z].pad*2)) > uxmax)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
350 uxmax = (thisbox->items[z].width + (thisbox->items[z].pad*2));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
351 if(thisbox->items[z].hsize != SIZEEXPAND)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
352 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
353 if(((thisbox->items[z].pad*2) + thisbox->items[z].width) > upxmax)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
354 upxmax = (thisbox->items[z].pad*2) + thisbox->items[z].width;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
355 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
356 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
357 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
358 if(thisbox->items[z].pad*2 > upxmax)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
359 upxmax = thisbox->items[z].pad*2;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
360 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
361 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
362 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
363 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
364 if(thisbox->items[z].width == -1)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
365 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
366 /* figure out how much space this item requires */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
367 /* thisbox->items[z].width = */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
368 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
369 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
370 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
371 (*usedx) += thisbox->items[z].width + (thisbox->items[z].pad*2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
372 if(thisbox->items[z].hsize != SIZEEXPAND)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
373 (*usedpadx) += (thisbox->items[z].pad*2) + thisbox->items[z].width;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
374 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
375 (*usedpadx) += thisbox->items[z].pad*2;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
376 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
377 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
378 if(thisbox->type == DW_HORZ)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
379 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
380 if((thisbox->items[z].height + (thisbox->items[z].pad*2)) > uymax)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
381 uymax = (thisbox->items[z].height + (thisbox->items[z].pad*2));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
382 if(thisbox->items[z].vsize != SIZEEXPAND)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
383 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
384 if(((thisbox->items[z].pad*2) + thisbox->items[z].height) > upymax)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
385 upymax = (thisbox->items[z].pad*2) + thisbox->items[z].height;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
386 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
387 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
388 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
389 if(thisbox->items[z].pad*2 > upymax)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
390 upymax = thisbox->items[z].pad*2;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
391 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
392 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
393 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
394 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
395 if(thisbox->items[z].height == -1)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
396 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
397 /* figure out how much space this item requires */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
398 /* thisbox->items[z].height = */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
399 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
400 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
401 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
402 (*usedy) += thisbox->items[z].height + (thisbox->items[z].pad*2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
403 if(thisbox->items[z].vsize != SIZEEXPAND)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
404 (*usedpady) += (thisbox->items[z].pad*2) + thisbox->items[z].height;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
405 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
406 (*usedpady) += thisbox->items[z].pad*2;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
407 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
408 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
409 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
410
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
411 (*usedx) += uxmax;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
412 (*usedy) += uymax;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
413 (*usedpadx) += upxmax;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
414 (*usedpady) += upymax;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
415
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
416 currentx += thisbox->pad;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
417 currenty += thisbox->pad;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
418
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
419 /* The second pass is for expansion and actual placement. */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
420 if(pass > 1)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
421 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
422 /* Any SIZEEXPAND items should be set to uxmax/uymax */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
423 for(z=0;z<thisbox->count;z++)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
424 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
425 if(thisbox->items[z].hsize == SIZEEXPAND && thisbox->type == DW_VERT)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
426 thisbox->items[z].width = uxmax-(thisbox->items[z].pad*2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
427 if(thisbox->items[z].vsize == SIZEEXPAND && thisbox->type == DW_HORZ)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
428 thisbox->items[z].height = uymax-(thisbox->items[z].pad*2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
429 /* Run this code segment again to finalize the sized after setting uxmax/uymax values. */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
430 if(thisbox->items[z].type == TYPEBOX)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
431 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
432 Box *tmp = _get_window_pointer(thisbox->items[z].hwnd);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
433
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
434 if(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
435 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
436 if(*depth > 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
437 {
425
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
438 float calcval;
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
439
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
440 if(thisbox->type == DW_VERT)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
441 {
425
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
442 calcval = (float)(tmp->minwidth-((thisbox->items[z].pad*2)+(thisbox->pad*2)));
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
443 if(calcval == 0.0)
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
444 tmp->xratio = thisbox->xratio;
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
445 else
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
446 tmp->xratio = ((float)((thisbox->items[z].width * thisbox->xratio)-((thisbox->items[z].pad*2)+(thisbox->pad*2))))/calcval;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
447 tmp->width = thisbox->items[z].width;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
448 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
449 if(thisbox->type == DW_HORZ)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
450 {
425
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
451 calcval = (float)(tmp->minheight-((thisbox->items[z].pad*2)+(thisbox->pad*2)));
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
452 if(calcval == 0.0)
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
453 tmp->yratio = thisbox->yratio;
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
454 else
4fe2df53ec9f Division by zero fix in the layout engine.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 418
diff changeset
455 tmp->yratio = ((float)((thisbox->items[z].height * thisbox->yratio)-((thisbox->items[z].pad*2)+(thisbox->pad*2))))/calcval;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
456 tmp->height = thisbox->items[z].height;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
457 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
458 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
459
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
460 (*depth)++;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
461
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
462 _resize_box(tmp, depth, x, y, &nux, &nuy, 3, &nupx, &nupy);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
463
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
464 (*depth)--;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
465
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
466 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
467 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
468 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
469
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
470 for(z=0;z<(thisbox->count);z++)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
471 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
472 int height = thisbox->items[z].height;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
473 int width = thisbox->items[z].width;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
474 int pad = thisbox->items[z].pad;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
475 HWND handle = thisbox->items[z].hwnd;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
476 int vectorx, vectory;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
477
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
478 /* When upxmax != pad*2 then ratios are incorrect. */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
479 vectorx = (int)((width*thisbox->items[z].xratio)-width);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
480 vectory = (int)((height*thisbox->items[z].yratio)-height);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
481
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
482 if(width > 0 && height > 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
483 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
484 /* This is a hack to fix rounding of the sizing */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
485 if(*depth == 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
486 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
487 vectorx++;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
488 vectory++;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
489 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
490
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
491 /* If this item isn't going to expand... reset the vectors to 0 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
492 if(thisbox->items[z].vsize != SIZEEXPAND)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
493 vectory = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
494 if(thisbox->items[z].hsize != SIZEEXPAND)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
495 vectorx = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
496
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
497 MoveControl(handle, currentx + pad, currenty + pad);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
498 SizeControl(handle, width + vectorx, height + vectory);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
499
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
500 if(thisbox->type == DW_HORZ)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
501 currentx += width + vectorx + (pad * 2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
502 if(thisbox->type == DW_VERT)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
503 currenty += height + vectory + (pad * 2);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
504 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
505 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
506 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
507 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
508 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
509
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
510 static void _do_resize(Box *thisbox, int x, int y)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
511 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
512 if(x != 0 && y != 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
513 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
514 if(thisbox)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
515 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
516 int usedx = 0, usedy = 0, usedpadx = 0, usedpady = 0, depth = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
517
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
518 _resize_box(thisbox, &depth, x, y, &usedx, &usedy, 1, &usedpadx, &usedpady);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
519
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
520 if(usedx-usedpadx == 0 || usedy-usedpady == 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
521 return;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
522
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
523 thisbox->xratio = ((float)(x-usedpadx))/((float)(usedx-usedpadx));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
524 thisbox->yratio = ((float)(y-usedpady))/((float)(usedy-usedpady));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
525
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
526 usedx = usedy = usedpadx = usedpady = depth = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
527
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
528 _resize_box(thisbox, &depth, x, y, &usedx, &usedy, 2, &usedpadx, &usedpady);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
529 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
530 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
531 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
532
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
533 static void _changebox(Box *thisbox, int percent, int type)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
534 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
535 int z;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
536
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
537 for(z=0;z<thisbox->count;z++)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
538 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
539 if(thisbox->items[z].type == TYPEBOX)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
540 {
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
541 Box *tmp = _get_window_pointer(thisbox->items[z].hwnd);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
542 _changebox(tmp, percent, type);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
543 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
544 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
545 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
546 if(type == DW_HORZ)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
547 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
548 if(thisbox->items[z].hsize == SIZEEXPAND)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
549 thisbox->items[z].width = (int)(((float)thisbox->items[z].origwidth) * (((float)percent)/((float)100.0)));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
550 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
551 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
552 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
553 if(thisbox->items[z].vsize == SIZEEXPAND)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
554 thisbox->items[z].height = (int)(((float)thisbox->items[z].origheight) * (((float)percent)/((float)100.0)));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
555 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
556 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
557 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
558 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
559
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
560 static pascal OSErr QuitAppleEventHandler(const AppleEvent *appleEvt, AppleEvent* reply, UInt32 refcon)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
561 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
562 ExitToShell();
437
903fb3085d42 More MacOS fixes, make install now works properly. Made special test
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 433
diff changeset
563 }
903fb3085d42 More MacOS fixes, make install now works properly. Made special test
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 433
diff changeset
564
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
565 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
566 * Initializes the Dynamic Windows engine.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
567 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
568 * newthread: True if this is the only thread.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
569 * False if there is already a message loop running.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
570 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
571 int API dw_init(int newthread, int argc, char *argv[])
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
572 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
573 GDHandle gd = GetMainDevice();
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
574
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
575 FlushEvents(everyEvent, 0);
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
576 InitCursor();
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
577 CreateNewWindow (kDocumentWindowClass, kWindowOpaqueForEventsAttribute,
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
578 &CreationRect, &CreationWindow);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
579 CreateRootControl(CreationWindow, &RootControl);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
580 HideWindow(CreationWindow);
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
581 if(AEInstallEventHandler(kCoreEventClass, kAEQuitApplication, NewAEEventHandlerUPP(QuitAppleEventHandler), 0, false) != noErr)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
582 ExitToShell();
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
583
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
584 /* Save the height, width and color depth */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
585 _dw_screen_height = (*gd)->gdRect.bottom - (*gd)->gdRect.top;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
586 _dw_screen_width = (*gd)->gdRect.right - (*gd)->gdRect.left;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
587 _dw_color_depth = (*(*gd)->gdPMap)->cmpSize * (*(*gd)->gdPMap)->cmpCount;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
588 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
589 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
590
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
591 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
592 * Runs a message loop for Dynamic Windows.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
593 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
594 void API dw_main(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
595 {
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
596 RunApplicationEventLoop();
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
597 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
598
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
599 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
600 * Runs a message loop for Dynamic Windows, for a period of milliseconds.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
601 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
602 * milliseconds: Number of milliseconds to run the loop for.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
603 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
604 void API dw_main_sleep(int milliseconds)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
605 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
606 double start = (double)clock();
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
607
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
608 while(((((clock() - start) / CLOCKS_PER_SEC)/1000)) <= milliseconds)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
609 {
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
610 RunCurrentEventLoop(1);
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
611 }
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
612 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
613
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
614 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
615 * Processes a single message iteration and returns.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
616 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
617 void API dw_main_iteration(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
618 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
619 EventRecord eventStructure;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
620
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
621 if(WaitNextEvent(everyEvent, &eventStructure, 0, 0))
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
622 RunCurrentEventLoop(0);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
623 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
624
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
625 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
626 * Free's memory allocated by dynamic windows.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
627 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
628 * ptr: Pointer to dynamic windows allocated
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
629 * memory to be free()'d.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
630 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
631 void API dw_free(void *ptr)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
632 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
633 free(ptr);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
634 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
635
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
636 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
637 * Allocates and initializes a dialog struct.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
638 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
639 * data: User defined data to be passed to functions.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
640 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
641 DWDialog * API dw_dialog_new(void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
642 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
643 DWDialog *tmp = malloc(sizeof(DWDialog));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
644
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
645 tmp->eve = dw_event_new();
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
646 dw_event_reset(tmp->eve);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
647 tmp->data = data;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
648 tmp->done = FALSE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
649 tmp->result = NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
650
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
651 return tmp;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
652 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
653
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
654 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
655 * Accepts a dialog struct and returns the given data to the
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
656 * initial called of dw_dialog_wait().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
657 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
658 * dialog: Pointer to a dialog struct aquired by dw_dialog_new).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
659 * result: Data to be returned by dw_dialog_wait().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
660 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
661 int API dw_dialog_dismiss(DWDialog *dialog, void *result)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
662 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
663 dialog->result = result;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
664 dw_event_post(dialog->eve);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
665 dialog->done = TRUE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
666 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
667 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
668
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
669 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
670 * Accepts a dialog struct waits for dw_dialog_dismiss() to be
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
671 * called by a signal handler with the given dialog struct.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
672 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
673 * dialog: Pointer to a dialog struct aquired by dw_dialog_new).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
674 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
675 void * API dw_dialog_wait(DWDialog *dialog)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
676 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
677 void *tmp;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
678
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
679 while(!dialog->done)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
680 {
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
681 RunCurrentEventLoop(180);
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
682 }
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
683 dw_event_close(&dialog->eve);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
684 tmp = dialog->result;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
685 free(dialog);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
686 return tmp;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
687 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
688
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
689
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
690 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
691 * Displays a Message Box with given text and title..
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
692 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
693 * title: The title of the message box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
694 * format: printf style format string.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
695 * ...: Additional variables for use in the format.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
696 */
413
2e6c28ee4794 Skeletal changes to the MacOS file, this would be a good starting point
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 387
diff changeset
697 int API dw_messagebox(char *title, int flags, char *format, ...)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
698 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
699 va_list args;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
700 char outbuf[1024];
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
701 AlertStdCFStringAlertParamRec param;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
702 DialogRef dialog;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
703 CFStringRef cftext, cftitle;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
704 DialogItemIndex item;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
705 int ret = DW_MB_RETURN_OK;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
706 AlertType alert = kAlertPlainAlert;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
707
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
708 va_start(args, format);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
709 vsprintf(outbuf, format, args);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
710 va_end(args);
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
711
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
712 GetStandardAlertDefaultParams(&param, kStdCFStringAlertVersionOne);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
713 param.movable = TRUE;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
714 param.helpButton = FALSE;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
715 if(flags & DW_MB_INFORMATION)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
716 alert = kAlertNoteAlert;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
717 else if(flags & DW_MB_ERROR)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
718 alert = kAlertStopAlert;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
719 else if(flags & DW_MB_WARNING)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
720 alert = kAlertCautionAlert;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
721
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
722 if(flags & DW_MB_OK || flags & DW_MB_OKCANCEL)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
723 {
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
724 param.defaultText = CFSTR("Ok");
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
725 param.cancelText = flags & DW_MB_OK ? 0 : CFSTR("Cancel");
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
726 }
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
727 else
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
728 {
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
729 param.defaultText = CFSTR("Yes");
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
730 param.cancelText = CFSTR("No");
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
731 param.otherText = CFSTR("Cancel");
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
732 }
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
733 cftext = CFStringCreateWithCString(NULL, outbuf, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
734 cftitle = CFStringCreateWithCString(NULL, title, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
735 if(CreateStandardAlert(alert, cftext, cftitle, &param, &dialog) == noErr)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
736 {
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
737 if(RunStandardAlert(dialog, NULL, &item) == noErr)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
738 {
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
739 if(item == kAlertStdAlertOtherButton)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
740 ret = DW_MB_RETURN_CANCEL;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
741 else if(item == kAlertStdAlertCancelButton)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
742 {
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
743 if(flags & DW_MB_OK || flags & DW_MB_OKCANCEL)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
744 ret = DW_MB_RETURN_CANCEL;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
745 else
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
746 ret = DW_MB_RETURN_NO;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
747 }
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
748 else if(item == kAlertStdAlertOKButton)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
749 {
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
750 if(flags & DW_MB_YESNO || flags & DW_MB_YESNOCANCEL)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
751 ret = DW_MB_RETURN_YES;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
752 }
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
753 }
441
b559c06a76c2 Implemented more functionality on MacOS and include the platform define
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 437
diff changeset
754 }
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
755 CFRelease(cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
756 CFRelease(cftitle);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
757 return ret;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
758 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
759
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
760 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
761 * Makes the window topmost.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
762 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
763 * handle: The window handle to make topmost.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
764 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
765 int API dw_window_raise(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
766 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
767 BringToFront((WindowRef)handle);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
768 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
769 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
770
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
771 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
772 * Makes the window bottommost.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
773 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
774 * handle: The window handle to make bottommost.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
775 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
776 int API dw_window_lower(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
777 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
778 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
779 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
780
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
781 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
782 * Makes the window visible.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
783 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
784 * handle: The window handle to make visible.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
785 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
786 int API dw_window_show(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
787 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
788 ShowWindow((WindowRef)handle);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
789 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
790 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
791
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
792 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
793 * Minimizes or Iconifies a top-level window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
794 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
795 * handle: The window handle to minimize.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
796 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
797 int API dw_window_minimize(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
798 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
799 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
800 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
801
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
802 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
803 * Makes the window invisible.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
804 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
805 * handle: The window handle to make visible.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
806 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
807 int API dw_window_hide(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
808 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
809 HideWindow((WindowRef)handle);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
810 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
811 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
812
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
813 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
814 * Destroys a window and all of it's children.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
815 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
816 * handle: The window handle to destroy.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
817 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
818 int API dw_window_destroy(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
819 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
820 DisposeWindow((WindowRef)handle);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
821 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
822 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
823
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
824 /* Causes entire window to be invalidated and redrawn.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
825 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
826 * handle: Toplevel window handle to be redrawn.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
827 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
828 void API dw_window_redraw(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
829 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
830 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
831
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
832 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
833 * Changes a window's parent to newparent.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
834 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
835 * handle: The window handle to destroy.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
836 * newparent: The window's new parent window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
837 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
838 void API dw_window_reparent(HWND handle, HWND newparent)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
839 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
840 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
841
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
842 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
843 * Sets the font used by a specified window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
844 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
845 * handle: The window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
846 * fontname: Name and size of the font in the form "size.fontname"
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
847 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
848 int API dw_window_set_font(HWND handle, char *fontname)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
849 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
850 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
851 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
852
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
853 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
854 * Sets the colors used by a specified window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
855 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
856 * handle: The window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
857 * fore: Foreground color in DW_RGB format or a default color index.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
858 * back: Background color in DW_RGB format or a default color index.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
859 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
860 int API dw_window_set_color(HWND handle, ULONG fore, ULONG back)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
861 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
862 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
863 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
864
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
865 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
866 * Sets the font used by a specified window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
867 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
868 * handle: The window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
869 * border: Size of the window border in pixels.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
870 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
871 int API dw_window_set_border(HWND handle, int border)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
872 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
873 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
874 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
875
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
876 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
877 * Captures the mouse input to this window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
878 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
879 * handle: Handle to receive mouse input.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
880 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
881 void API dw_window_capture(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
882 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
883 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
884
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
885 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
886 * Releases previous mouse capture.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
887 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
888 void API dw_window_release(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
889 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
890 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
891
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
892 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
893 * Tracks this window movement.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
894 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
895 * handle: Handle to frame to be tracked.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
896 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
897 void API dw_window_track(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
898 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
899 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
900
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
901 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
902 * Changes the appearance of the mouse pointer.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
903 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
904 * handle: Handle to widget for which to change.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
905 * cursortype: ID of the pointer you want.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
906 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
907 void API dw_window_set_pointer(HWND handle, int pointertype)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
908 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
909 SetCursor(*GetCursor(pointertype));
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
910 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
911
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
912 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
913 * Create a new Window Frame.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
914 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
915 * owner: The Owner's window handle or HWND_DESKTOP.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
916 * title: The Window title.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
917 * flStyle: Style flags, see the PM reference.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
918 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
919 HWND API dw_window_new(HWND hwndOwner, char *title, ULONG flStyle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
920 {
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
921 WindowRef hwnd = 0;
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
922 ControlRef rootcontrol = 0;
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
923
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
924 CreateNewWindow (kDocumentWindowClass, flStyle | kWindowStandardHandlerAttribute,
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
925 &CreationRect, &hwnd);
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
926 CreateRootControl(hwnd, &rootcontrol);
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 441
diff changeset
927 dw_window_set_text((HWND)hwnd, title);
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
928 return (HWND)hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
929 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
930
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
931 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
932 * Create a new Box to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
933 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
934 * type: Either DW_VERT (vertical) or DW_HORZ (horizontal).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
935 * pad: Number of pixels to pad around the box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
936 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
937 HWND API dw_box_new(int type, int pad)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
938 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
939 ControlRef hwnd = NewControl(CreationWindow, NULL, "",
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
940 true, kControlSupportsEmbedding | kControlHasSpecialBackground,
549
b744c2b86df8 Argh, MacOS was using increments... let's see if we can work around it,
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 516
diff changeset
941 0, 1, kControlUserPaneProc, (SInt32) 0);
b744c2b86df8 Argh, MacOS was using increments... let's see if we can work around it,
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 516
diff changeset
942 return (HWND)hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
943 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
944
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
945 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
946 * Create a new Group Box to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
947 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
948 * type: Either DW_VERT (vertical) or DW_HORZ (horizontal).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
949 * pad: Number of pixels to pad around the box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
950 * title: Text to be displayined in the group outline.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
951 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
952 HWND API dw_groupbox_new(int type, int pad, char *title)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
953 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
954 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
955 CreateRadioGroupControl(CreationWindow, &CreationRect, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
956 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
957 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
958
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
959 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
960 * Create a new MDI Frame to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
961 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
962 * id: An ID to be used with dw_window_from_id or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
963 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
964 HWND API dw_mdi_new(unsigned long id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
965 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
966 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
967 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
968
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
969 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
970 * Create a bitmap object to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
971 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
972 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
973 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
974 HWND API dw_bitmap_new(ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
975 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
976 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
977 CreateImageWellControl(CreationWindow, &CreationRect, NULL, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
978 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
979 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
980
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
981 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
982 * Create a notebook object to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
983 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
984 * id: An ID to be used for getting the resource from the
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
985 * resource file.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
986 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
987 HWND API dw_notebook_new(ULONG id, int top)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
988 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
989 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
990 CreateTabsControl(CreationWindow, &CreationRect, kControlTabSizeSmall, kControlTabDirectionNorth, 1, NULL, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
991 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
992 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
993
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
994 char _removetilde(char *dest, char *src)
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
995 {
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
996 int z, cur=0;
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
997 char accel = '\0';
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
998
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
999 for(z=0;z<strlen(src);z++)
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1000 {
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1001 if(src[z] != '~')
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1002 {
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1003 dest[cur] = src[z];
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1004 cur++;
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1005 }
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1006 else
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1007 accel = src[z+1];
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1008 }
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1009 dest[cur] = 0;
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1010 return accel;
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1011 }
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1012
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1013 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1014 * Create a menu object to be popped up.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1015 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1016 * id: An ID to be used for getting the resource from the
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1017 * resource file.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1018 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1019 HMENUI API dw_menu_new(ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1020 {
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1021 return NewMenu(id % 256, "");
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1022 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1023
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1024 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1025 * Create a menubar on a window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1026 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1027 * location: Handle of a window frame to be attached to.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1028 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1029 HMENUI API dw_menubar_new(HWND location)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1030 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1031 return (HMENUI)-1;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1032 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1033
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1034 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1035 * Destroys a menu created with dw_menubar_new or dw_menu_new.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1036 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1037 * menu: Handle of a menu.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1038 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1039 void API dw_menu_destroy(HMENUI *menu)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1040 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1041 DisposeMenu(*menu);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1042 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1043
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1044 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1045 * Adds a menuitem or submenu to an existing menu.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1046 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1047 * menu: The handle the the existing menu.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1048 * title: The title text on the menu item to be added.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1049 * id: An ID to be used for message passing.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1050 * flags: Extended attributes to set on the menu.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1051 * end: If TRUE memu is positioned at the end of the menu.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1052 * check: If TRUE menu is "check"able.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1053 * submenu: Handle to an existing menu to be a submenu or NULL.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1054 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1055 HWND API dw_menu_append_item(HMENUI menux, char *title, ULONG id, ULONG flags, int end, int check, HMENUI submenu)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1056 {
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1057 char accel, *buf, *tempbuf = alloca(strlen(title)+1);
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1058
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1059 accel = _removetilde(tempbuf, title);
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1060 buf = CToPascal(tempbuf);
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1061
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1062 if(menux == (HMENUI)-1)
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1063 {
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1064 SetMenuTitle(submenu, buf);
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1065 InsertMenu(submenu, 0);
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1066 }
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1067 else
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1068 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1069 /* Add a separator if requested */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1070 if(!title || !*title)
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1071 AppendMenu(menux, "\001-");
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1072 else
565
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1073 {
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1074 MenuItemIndex item;
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1075 CFStringRef cftext = CFStringCreateWithCString(NULL, tempbuf, kCFStringEncodingDOSLatinUS);
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1076
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1077 AppendMenuItemTextWithCFString(menux, cftext, 0, 0, &item);
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1078 CFRelease(cftext);
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1079
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1080 id = item;
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1081 if(accel)
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1082 {
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1083 SetItemCmd(menux, item, accel);
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1084 SetMenuItemModifiers(menux, item, kMenuOptionModifier);
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1085 }
355a6d46adb1 Changes to get the menus working. Switched to using
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 564
diff changeset
1086 }
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1087 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1088 DrawMenuBar();
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1089 return (HWND)id;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1090 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1091
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1092 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1093 * Sets the state of a menu item check.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1094 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1095 * menu: The handle the the existing menu.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1096 * id: Menuitem id.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1097 * check: TRUE for checked FALSE for not checked.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1098 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1099 void API dw_menu_item_set_check(HMENUI menux, unsigned long id, int check)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1100 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1101 CheckMenuItem(menux, id, check);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1102 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1103
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1104 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1105 * Pops up a context menu at given x and y coordinates.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1106 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1107 * menu: The handle the the existing menu.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1108 * parent: Handle to the window initiating the popup.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1109 * x: X coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1110 * y: Y coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1111 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1112 void API dw_menu_popup(HMENUI *menu, HWND parent, int x, int y)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1113 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1114 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1115
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1116 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1117 * Returns the current X and Y coordinates of the mouse pointer.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1118 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1119 * x: Pointer to variable to store X coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1120 * y: Pointer to variable to store Y coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1121 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1122 void API dw_pointer_query_pos(long *x, long *y)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1123 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1124 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1125
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1126 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1127 * Sets the X and Y coordinates of the mouse pointer.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1128 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1129 * x: X coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1130 * y: Y coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1131 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1132 void API dw_pointer_set_pos(long x, long y)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1133 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1134 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1135
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1136
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1137 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1138 * Create a container object to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1139 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1140 * id: An ID to be used for getting the resource from the
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1141 * resource file.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1142 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1143 HWND API dw_container_new(ULONG id, int multi)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1144 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1145 ListHandle hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1146 Point CellSize;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1147 ListDefSpec def;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1148
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1149 SetPt(&CellSize, 52, 52);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1150 /*def.u.userProc = listDefinitionFunctionUPP;*/
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1151
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1152 CreateCustomList(&CreationRect, &CreationRect, CellSize, &def, CreationWindow, TRUE, TRUE, TRUE, TRUE, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1153 return (HWND)hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1154 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1155
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1156 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1157 * Create a tree object to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1158 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1159 * id: An ID to be used for getting the resource from the
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1160 * resource file.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1161 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1162 HWND API dw_tree_new(ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1163 {
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
1164 return dw_container_new(id, FALSE);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1165 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1166
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1167 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1168 * Create a new static text window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1169 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1170 * text: The text to be display by the static text widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1171 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1172 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1173 HWND API dw_text_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1174 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1175 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1176 CFStringRef cftext = CFStringCreateWithCString(NULL, text, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1177 CreateStaticTextControl (CreationWindow, &CreationRect, cftext, NULL, &hwnd);
549
b744c2b86df8 Argh, MacOS was using increments... let's see if we can work around it,
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 516
diff changeset
1178 CFRelease(cftext);
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1179 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1180 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1181
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1182 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1183 * Create a new status text window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1184 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1185 * text: The text to be display by the static text widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1186 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1187 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1188 HWND API dw_status_text_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1189 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1190 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1191 CFStringRef cftext = CFStringCreateWithCString(NULL, text, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1192 CreateStaticTextControl (CreationWindow, &CreationRect, cftext, NULL, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1193 CFRelease(cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1194 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1195 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1196
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1197 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1198 * Create a new Multiline Editbox window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1199 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1200 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1201 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1202 HWND API dw_mle_new(ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1203 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1204 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1205 CreateScrollingTextBoxControl(CreationWindow, &CreationRect, id, FALSE, 0, 0, 0, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1206 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1207 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1208
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1209 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1210 * Create a new Entryfield window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1211 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1212 * text: The default text to be in the entryfield widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1213 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1214 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1215 HWND API dw_entryfield_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1216 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1217 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1218 CFStringRef cftext = CFStringCreateWithCString(NULL, text, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1219 CreateEditTextControl(CreationWindow, &CreationRect, cftext, FALSE, FALSE, NULL, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1220 CFRelease(cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1221 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1222 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1223
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1224 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1225 * Create a new Entryfield (password) window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1226 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1227 * text: The default text to be in the entryfield widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1228 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1229 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1230 HWND API dw_entryfield_password_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1231 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1232 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1233 CFStringRef cftext = CFStringCreateWithCString(NULL, text, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1234 CreateEditTextControl(CreationWindow, &CreationRect, cftext, TRUE, FALSE, NULL, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1235 CFRelease(cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1236 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1237 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1238
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1239 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1240 * Create a new Combobox window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1241 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1242 * text: The default text to be in the combpbox widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1243 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1244 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1245 HWND API dw_combobox_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1246 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1247 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1248 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1249
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1250 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1251 * Create a new button window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1252 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1253 * text: The text to be display by the static text widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1254 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1255 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1256 HWND API dw_button_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1257 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1258 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1259 CFStringRef cftext = CFStringCreateWithCString(NULL, text, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1260 CreatePushButtonControl(CreationWindow, &CreationRect, cftext, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1261 CFRelease(cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1262 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1263 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1264
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1265 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1266 * Create a new bitmap button window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1267 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1268 * text: Bubble help text to be displayed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1269 * id: An ID of a bitmap in the resource file.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1270 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1271 HWND API dw_bitmapbutton_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1272 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1273 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1274 CreatePushButtonWithIconControl(CreationWindow, &CreationRect, 0, NULL, kControlPushButtonIconOnLeft, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1275 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1276 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1277
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1278 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1279 * Create a new bitmap button window (widget) to be packed from a file.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1280 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1281 * text: Bubble help text to be displayed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1282 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1283 * filename: Name of the file, omit extention to have
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1284 * DW pick the appropriate file extension.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1285 * (BMP on OS/2 or Windows, XPM on Unix)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1286 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1287 HWND dw_bitmapbutton_new_from_file(char *text, unsigned long id, char *filename)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1288 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1289 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1290 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1291
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1292 /*
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1293 * Create a new bitmap button window (widget) to be packed from data.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1294 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1295 * text: Bubble help text to be displayed.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1296 * id: An ID to be used with dw_window_from_id() or 0L.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1297 * data: Raw data of image.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1298 * (BMP on OS/2 or Windows, XPM on Unix)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1299 * len: Length of raw data
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1300 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1301 HWND dw_bitmapbutton_new_from_data(char *text, unsigned long id, char *data, int len)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1302 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1303 return 0;
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1304 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1305
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1306 /*
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1307 * Create a new spinbutton window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1308 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1309 * text: The text to be display by the static text widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1310 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1311 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1312 HWND API dw_spinbutton_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1313 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1314 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1315 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1316
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1317 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1318 * Create a new radiobutton window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1319 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1320 * text: The text to be display by the static text widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1321 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1322 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1323 HWND API dw_radiobutton_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1324 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1325 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1326 CFStringRef cftext = CFStringCreateWithCString(NULL, text, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1327 CreateRadioButtonControl(CreationWindow, &CreationRect, cftext, 0, FALSE, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1328 CFRelease(cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1329 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1330 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1331
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1332
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1333 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1334 * Create a new slider window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1335 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1336 * vertical: TRUE or FALSE if slider is vertical.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1337 * increments: Number of increments available.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1338 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1339 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1340 HWND API dw_slider_new(int vertical, int increments, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1341 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1342 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1343 CreateSliderControl(CreationWindow, &CreationRect, 0, 0, increments, kControlSliderDoesNotPoint, 0, FALSE, 0, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1344 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1345 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1346
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1347 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1348 * Create a new scrollbar window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1349 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1350 * vertical: TRUE or FALSE if scrollbar is vertical.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1351 * increments: Number of increments available.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1352 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1353 */
511
80dbd5a1f403 Removed the increments parameter from dw_scrollbar_new().
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 510
diff changeset
1354 HWND API dw_scrollbar_new(int vertical, ULONG id)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1355 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1356 HWND hwnd;
549
b744c2b86df8 Argh, MacOS was using increments... let's see if we can work around it,
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 516
diff changeset
1357 CreateScrollBarControl(CreationWindow, &CreationRect, 0, 0, 100, 100, FALSE, 0, &hwnd);
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1358 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1359 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1360
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1361 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1362 * Create a new percent bar window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1363 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1364 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1365 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1366 HWND API dw_percent_new(ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1367 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1368 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1369 CreateProgressBarControl(CreationWindow, &CreationRect, 0, 0, 100, FALSE, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1370 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1371 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1372
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1373 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1374 * Create a new checkbox window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1375 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1376 * text: The text to be display by the static text widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1377 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1378 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1379 HWND API dw_checkbox_new(char *text, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1380 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1381 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1382 CFStringRef cftext = CFStringCreateWithCString(NULL, text, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1383 CreateCheckBoxControl(CreationWindow, &CreationRect, cftext, 0, TRUE, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1384 CFRelease(cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1385 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1386 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1388 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1389 * Create a new listbox window (widget) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1390 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1391 * id: An ID to be used with dw_window_from_id() or 0L.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1392 * multi: Multiple select TRUE or FALSE.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1393 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1394 HWND API dw_listbox_new(ULONG id, int multi)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1395 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1396 HWND hwnd = 0;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1397 CreateListBoxControl(CreationWindow, &CreationRect, TRUE, 0, 1, FALSE, TRUE, 50, 50, TRUE, NULL, &hwnd);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1398 return hwnd;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1399 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1400
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1401 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1402 * Sets the icon used for a given window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1403 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1404 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1405 * id: An ID to be used to specify the icon.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1406 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1407 void API dw_window_set_icon(HWND handle, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1408 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1409 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1410
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1411 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1412 * Sets the bitmap used for a given static window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1413 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1414 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1415 * id: An ID to be used to specify the icon,
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1416 * (pass 0 if you use the filename param)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1417 * filename: a path to a file (Bitmap on OS/2 or
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1418 * Windows and a pixmap on Unix, pass
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1419 * NULL if you use the id param)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1420 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1421 void API dw_window_set_bitmap(HWND handle, unsigned long id, char *filename)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1422 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1423 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1424
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1425 /*
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1426 * Sets the bitmap used for a given static window.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1427 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1428 * handle: Handle to the window.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1429 * id: An ID to be used to specify the icon,
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1430 * (pass 0 if you use the filename param)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1431 * data: the image data
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1432 * Bitmap on Windows and a pixmap on Unix, pass
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1433 * NULL if you use the id param)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1434 * len: length of data
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1435 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1436 void dw_window_set_bitmap_from_data(HWND handle, unsigned long id, char *data, int len)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1437 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1438 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1439
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1440 /*
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1441 * Sets the text used for a given window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1442 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1443 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1444 * text: The text associsated with a given window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1445 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1446 void API dw_window_set_text(HWND handle, char *text)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1447 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1448 CFStringRef cftext = CFStringCreateWithCString(NULL, text, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1449 if(IsValidWindowRef((WindowRef)handle))
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1450 SetWindowTitleWithCFString((WindowRef)handle, cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1451 else
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1452 SetControlTitleWithCFString(handle, cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1453 CFRelease(cftext);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1454 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1455
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1456 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1457 * Gets the text used for a given window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1458 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1459 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1460 * Returns:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1461 * text: The text associsated with a given window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1462 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1463 char * API dw_window_get_text(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1464 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1465 CFStringRef cftext;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1466 char *ret = NULL;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1467
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1468 if(IsValidWindowRef((WindowRef)handle))
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1469 CopyWindowTitleAsCFString((WindowRef)handle, &cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1470 else
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1471 {
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1472 Str255 str;
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1473
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1474 GetControlTitle(handle, str);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1475 cftext = CFStringCreateWithPascalString(NULL, str, CFStringGetSystemEncoding());
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1476 }
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1477
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1478 if(cftext)
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1479 {
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1480 int length = CFStringGetLength(cftext) + 1;
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1481 char *ret = malloc(length);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1482 CFStringGetCString(cftext, ret, length, kCFStringEncodingDOSLatinUS);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1483 CFRelease(cftext);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1484 }
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 441
diff changeset
1485 return ret;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1486 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1487
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1488 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1489 * Disables given window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1490 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1491 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1492 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1493 void API dw_window_disable(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1494 {
418
4be57ee7e006 Fix a crash in dw_window_pointer when the window handle is HWND_DESKTOP.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 413
diff changeset
1495 DisableControl(handle);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1496 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1497
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1498 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1499 * Enables given window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1500 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1501 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1502 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1503 void API dw_window_enable(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1504 {
418
4be57ee7e006 Fix a crash in dw_window_pointer when the window handle is HWND_DESKTOP.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 413
diff changeset
1505 EnableControl(handle);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1506 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1507
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1508 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1509 * Gets the child window handle with specified ID.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1510 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1511 * handle: Handle to the parent window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1512 * id: Integer ID of the child.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1513 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1514 HWND API dw_window_from_id(HWND handle, int id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1515 {
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
1516 HWND ret = 0;
418
4be57ee7e006 Fix a crash in dw_window_pointer when the window handle is HWND_DESKTOP.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 413
diff changeset
1517
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
1518 #if 0
418
4be57ee7e006 Fix a crash in dw_window_pointer when the window handle is HWND_DESKTOP.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 413
diff changeset
1519 ControlID cid = (ControlID)id;
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
1520 GetControlByID((WindowRef)handle, &cid, &ret);
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
1521 #endif
418
4be57ee7e006 Fix a crash in dw_window_pointer when the window handle is HWND_DESKTOP.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 413
diff changeset
1522 return ret;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1523 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1524
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1525 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1526 * Pack windows (widgets) into a box from the end (or bottom).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1527 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1528 * box: Window handle of the box to be packed into.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1529 * item: Window handle of the item to be back.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1530 * width: Width in pixels of the item or -1 to be self determined.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1531 * height: Height in pixels of the item or -1 to be self determined.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1532 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1533 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1534 * pad: Number of pixels of padding around the item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1535 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1536 void API dw_box_pack_end(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1537 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1538 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1539
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1540 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1541 * Sets the size of a given window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1542 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1543 * handle: Window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1544 * width: New width in pixels.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1545 * height: New height in pixels.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1546 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
1547 void API dw_window_set_size(HWND handle, ULONG width, ULONG height)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1548 {
443
e99cd6e45c0b Need to have a application package directory for binaries to properly run
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 441
diff changeset
1549 SizeWindow((WindowRef)handle, (short)width, (short)height, TRUE);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1550 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1551
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1552 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1553 * Returns the width of the screen.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1554 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1555 int API dw_screen_width(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1556 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1557 return _dw_screen_width;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1558 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1559
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1560 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1561 * Returns the height of the screen.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1562 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1563 int API dw_screen_height(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1564 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1565 return _dw_screen_height;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1566 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1567
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1568 /* This should return the current color depth */
514
08d770271709 More function name changes for Rexx/DW compatibility.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 513
diff changeset
1569 unsigned long API dw_color_depth_get(void)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1570 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
1571 return _dw_color_depth;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1572 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1573
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1574
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1575 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1576 * Sets the position of a given window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1577 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1578 * handle: Window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1579 * x: X location from the bottom left.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1580 * y: Y location from the bottom left.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1581 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1582 void API dw_window_set_pos(HWND handle, ULONG x, ULONG y)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1583 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1584 MoveWindow((WindowRef)handle, (short)x, (short)y, FALSE);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1585 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1586
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1587 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1588 * Sets the position and size of a given window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1589 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1590 * handle: Window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1591 * x: X location from the bottom left.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1592 * y: Y location from the bottom left.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1593 * width: Width of the widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1594 * height: Height of the widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1595 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1596 void API dw_window_set_pos_size(HWND handle, ULONG x, ULONG y, ULONG width, ULONG height)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1597 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
1598 dw_window_set_pos(handle, x, y);
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
1599 dw_window_set_size(handle, width, height);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1600 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1601
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1602 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1603 * Gets the position and size of a given window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1604 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1605 * handle: Window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1606 * x: X location from the bottom left.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1607 * y: Y location from the bottom left.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1608 * width: Width of the widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1609 * height: Height of the widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1610 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1611 void API dw_window_get_pos_size(HWND handle, ULONG *x, ULONG *y, ULONG *width, ULONG *height)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1612 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1613 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1614
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1615 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1616 * Sets the style of a given window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1617 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1618 * handle: Window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1619 * width: New width in pixels.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1620 * height: New height in pixels.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1621 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1622 void API dw_window_set_style(HWND handle, ULONG style, ULONG mask)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1623 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1624 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1625
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1626 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1627 * Adds a new page to specified notebook.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1628 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1629 * handle: Window (widget) handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1630 * flags: Any additional page creation flags.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1631 * front: If TRUE page is added at the beginning.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1632 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1633 unsigned long API dw_notebook_page_new(HWND handle, ULONG flags, int front)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1634 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1635 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1636 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1637
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1638 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1639 * Remove a page from a notebook.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1640 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1641 * handle: Handle to the notebook widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1642 * pageid: ID of the page to be destroyed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1643 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1644 void API dw_notebook_page_destroy(HWND handle, unsigned int pageid)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1645 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1646 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1647
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1648 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1649 * Queries the currently visible page ID.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1650 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1651 * handle: Handle to the notebook widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1652 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
1653 unsigned long API dw_notebook_page_get(HWND handle)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1654 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1655 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1656 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1657
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1658 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1659 * Sets the currently visibale page ID.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1660 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1661 * handle: Handle to the notebook widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1662 * pageid: ID of the page to be made visible.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1663 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1664 void API dw_notebook_page_set(HWND handle, unsigned int pageid)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1665 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1666 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1667
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1668 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1669 * Sets the text on the specified notebook tab.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1670 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1671 * handle: Notebook handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1672 * pageid: Page ID of the tab to set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1673 * text: Pointer to the text to set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1674 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1675 void API dw_notebook_page_set_text(HWND handle, ULONG pageid, char *text)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1676 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1677 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1678
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1679 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1680 * Sets the text on the specified notebook tab status area.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1681 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1682 * handle: Notebook handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1683 * pageid: Page ID of the tab to set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1684 * text: Pointer to the text to set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1685 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1686 void API dw_notebook_page_set_status_text(HWND handle, ULONG pageid, char *text)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1687 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1688 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1689
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1690 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1691 * Packs the specified box into the notebook page.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1692 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1693 * handle: Handle to the notebook to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1694 * pageid: Page ID in the notebook which is being packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1695 * page: Box handle to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1696 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1697 void API dw_notebook_pack(HWND handle, ULONG pageid, HWND page)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1698 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1699 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1700
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1701 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1702 * Appends the specified text to the listbox's (or combobox) entry list.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1703 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1704 * handle: Handle to the listbox to be appended to.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1705 * text: Text to append into listbox.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1706 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1707 void API dw_listbox_append(HWND handle, char *text)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1708 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1709 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1710
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1711 /*
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1712 * Appends the specified text items to the listbox's (or combobox) entry list.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1713 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1714 * handle: Handle to the listbox to be appended to.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1715 * text: Text strings to append into listbox.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1716 * count: Number of text strings to append
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1717 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1718 void API dw_listbox_list_append(HWND handle, char **text, int count)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1719 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1720 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1721
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
1722 /*
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1723 * Clears the listbox's (or combobox) list of all entries.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1724 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1725 * handle: Handle to the listbox to be cleared.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1726 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1727 void API dw_listbox_clear(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1728 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1729 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1730
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1731 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1732 * Returns the listbox's item count.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1733 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1734 * handle: Handle to the listbox to be cleared.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1735 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1736 int API dw_listbox_count(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1737 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1738 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1739 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1740
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1741 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1742 * Sets the topmost item in the viewport.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1743 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1744 * handle: Handle to the listbox to be cleared.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1745 * top: Index to the top item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1746 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1747 void API dw_listbox_set_top(HWND handle, int top)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1748 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1749 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1750
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1751 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1752 * Copies the given index item's text into buffer.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1753 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1754 * handle: Handle to the listbox to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1755 * index: Index into the list to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1756 * buffer: Buffer where text will be copied.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1757 * length: Length of the buffer (including NULL).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1758 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
1759 void API dw_listbox_get_text(HWND handle, unsigned int index, char *buffer, unsigned int length)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1760 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1761 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1762
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1763 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1764 * Sets the text of a given listbox entry.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1765 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1766 * handle: Handle to the listbox to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1767 * index: Index into the list to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1768 * buffer: Buffer where text will be copied.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1769 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1770 void API dw_listbox_set_text(HWND handle, unsigned int index, char *buffer)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1771 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1772 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1773
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1774 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1775 * Returns the index to the item in the list currently selected.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1776 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1777 * handle: Handle to the listbox to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1778 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1779 unsigned int API dw_listbox_selected(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1780 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1781 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1782 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1783
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1784 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1785 * Returns the index to the current selected item or -1 when done.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1786 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1787 * handle: Handle to the listbox to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1788 * where: Either the previous return or -1 to restart.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1789 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1790 int API dw_listbox_selected_multi(HWND handle, int where)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1791 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1792 return -1;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1793 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1794
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1795 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1796 * Sets the selection state of a given index.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1797 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1798 * handle: Handle to the listbox to be set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1799 * index: Item index.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1800 * state: TRUE if selected FALSE if unselected.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1801 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1802 void API dw_listbox_select(HWND handle, int index, int state)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1803 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1804 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1805
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1806 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1807 * Deletes the item with given index from the list.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1808 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1809 * handle: Handle to the listbox to be set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1810 * index: Item index.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1811 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1812 void API dw_listbox_delete(HWND handle, int index)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1813 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1814 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1815
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1816 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1817 * Adds text to an MLE box and returns the current point.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1818 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1819 * handle: Handle to the MLE to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1820 * buffer: Text buffer to be imported.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1821 * startpoint: Point to start entering text.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1822 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1823 unsigned int API dw_mle_import(HWND handle, char *buffer, int startpoint)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1824 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1825 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1826 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1827
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1828 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1829 * Grabs text from an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1830 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1831 * handle: Handle to the MLE to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1832 * buffer: Text buffer to be exported.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1833 * startpoint: Point to start grabbing text.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1834 * length: Amount of text to be grabbed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1835 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1836 void API dw_mle_export(HWND handle, char *buffer, int startpoint, int length)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1837 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1838 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1839
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1840 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1841 * Obtains information about an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1842 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1843 * handle: Handle to the MLE to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1844 * bytes: A pointer to a variable to return the total bytes.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1845 * lines: A pointer to a variable to return the number of lines.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1846 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
1847 void API dw_mle_get_size(HWND handle, unsigned long *bytes, unsigned long *lines)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1848 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1849 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1850
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1851 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1852 * Deletes text from an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1853 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1854 * handle: Handle to the MLE to be deleted from.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1855 * startpoint: Point to start deleting text.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1856 * length: Amount of text to be deleted.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1857 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1858 void API dw_mle_delete(HWND handle, int startpoint, int length)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1859 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1860 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1861
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1862 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1863 * Clears all text from an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1864 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1865 * handle: Handle to the MLE to be cleared.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1866 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1867 void API dw_mle_clear(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1868 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1869 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1870
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1871 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1872 * Sets the visible line of an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1873 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1874 * handle: Handle to the MLE to be positioned.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1875 * line: Line to be visible.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1876 */
513
7755599311d4 Fixes search and replace errors.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 511
diff changeset
1877 void API dw_mle_set_visible(HWND handle, int line)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1878 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1879 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1880
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1881 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1882 * Sets the editablity of an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1883 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1884 * handle: Handle to the MLE.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1885 * state: TRUE if it can be edited, FALSE for readonly.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1886 */
513
7755599311d4 Fixes search and replace errors.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 511
diff changeset
1887 void API dw_mle_set_editable(HWND handle, int state)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1888 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1889 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1890
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1891 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1892 * Sets the word wrap state of an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1893 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1894 * handle: Handle to the MLE.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1895 * state: TRUE if it wraps, FALSE if it doesn't.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1896 */
513
7755599311d4 Fixes search and replace errors.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 511
diff changeset
1897 void API dw_mle_set_word_wrap(HWND handle, int state)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1898 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1899 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1900
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1901 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1902 * Sets the current cursor position of an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1903 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1904 * handle: Handle to the MLE to be positioned.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1905 * point: Point to position cursor.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1906 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
1907 void API dw_mle_set_cursor(HWND handle, int point)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1908 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1909 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1910
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1911 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1912 * Finds text in an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1913 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1914 * handle: Handle to the MLE to be cleared.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1915 * text: Text to search for.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1916 * point: Start point of search.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1917 * flags: Search specific flags.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1918 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1919 int API dw_mle_search(HWND handle, char *text, int point, unsigned long flags)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1920 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1921 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1922 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1923
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1924 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1925 * Stops redrawing of an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1926 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1927 * handle: Handle to the MLE to freeze.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1928 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1929 void API dw_mle_freeze(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1930 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1931 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1932
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1933 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1934 * Resumes redrawing of an MLE box.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1935 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1936 * handle: Handle to the MLE to thaw.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1937 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1938 void API dw_mle_thaw(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1939 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1940 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1941
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1942 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1943 * Sets the percent bar position.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1944 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1945 * handle: Handle to the percent bar to be set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1946 * position: Position of the percent bar withing the range.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1947 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1948 void API dw_percent_set_pos(HWND handle, unsigned int position)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1949 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1950 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1951
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1952 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1953 * Returns the position of the slider.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1954 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1955 * handle: Handle to the slider to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1956 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
1957 unsigned int API dw_slider_get_pos(HWND handle)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1958 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1959 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1960 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1961
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1962 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1963 * Sets the slider position.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1964 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1965 * handle: Handle to the slider to be set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1966 * position: Position of the slider withing the range.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1967 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1968 void API dw_slider_set_pos(HWND handle, unsigned int position)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1969 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1970 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1971
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1972 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1973 * Returns the position of the scrollbar.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1974 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1975 * handle: Handle to the scrollbar to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1976 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
1977 unsigned int API dw_scrollbar_get_pos(HWND handle)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1978 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1979 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1980 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1981
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1982 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1983 * Sets the scrollbar position.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1984 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1985 * handle: Handle to the scrollbar to be set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1986 * position: Position of the scrollbar withing the range.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1987 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1988 void API dw_scrollbar_set_pos(HWND handle, unsigned int position)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1989 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1990 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1991
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1992 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1993 * Sets the scrollbar range.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1994 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1995 * handle: Handle to the scrollbar to be set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1996 * range: Maximum range value.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1997 * visible: Visible area relative to the range.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1998 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
1999 void API dw_scrollbar_set_range(HWND handle, unsigned int range, unsigned int visible)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2000 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2001 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2002
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2003 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2004 * Sets the spinbutton value.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2005 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2006 * handle: Handle to the spinbutton to be set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2007 * position: Current value of the spinbutton.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2008 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2009 void API dw_spinbutton_set_pos(HWND handle, long position)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2010 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2011 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2012
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2013 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2014 * Sets the spinbutton limits.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2015 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2016 * handle: Handle to the spinbutton to be set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2017 * upper: Upper limit.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2018 * lower: Lower limit.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2019 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2020 void API dw_spinbutton_set_limits(HWND handle, long upper, long lower)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2021 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2022 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2023
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2024 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2025 * Sets the entryfield character limit.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2026 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2027 * handle: Handle to the spinbutton to be set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2028 * limit: Number of characters the entryfield will take.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2029 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2030 void API dw_entryfield_set_limit(HWND handle, ULONG limit)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2031 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2032 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2033
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2034
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2035 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2036 * Returns the current value of the spinbutton.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2037 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2038 * handle: Handle to the spinbutton to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2039 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
2040 long API dw_spinbutton_get_pos(HWND handle)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2041 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2042 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2043 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2044
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2045 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2046 * Returns the state of the checkbox.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2047 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2048 * handle: Handle to the checkbox to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2049 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
2050 int API dw_checkbox_get(HWND handle)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2051 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2052 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2053 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2054
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2055 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2056 * Sets the state of the checkbox.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2057 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2058 * handle: Handle to the checkbox to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2059 * value: TRUE for checked, FALSE for unchecked.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2060 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2061 void API dw_checkbox_set(HWND handle, int value)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2062 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2063 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2064
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2065 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2066 * Inserts an item into a tree window (widget) after another item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2067 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2068 * handle: Handle to the tree to be inserted.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2069 * item: Handle to the item to be positioned after.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2070 * title: The text title of the entry.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2071 * icon: Handle to coresponding icon.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2072 * parent: Parent handle or 0 if root.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2073 * itemdata: Item specific data.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2074 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2075 HTREEITEM API dw_tree_insert_after(HWND handle, HTREEITEM item, char *title, unsigned long icon, HTREEITEM parent, void *itemdata)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2076 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2077 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2078 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2079
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2080 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2081 * Inserts an item into a tree window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2082 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2083 * handle: Handle to the tree to be inserted.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2084 * title: The text title of the entry.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2085 * icon: Handle to coresponding icon.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2086 * parent: Parent handle or 0 if root.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2087 * itemdata: Item specific data.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2088 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2089 HTREEITEM API dw_tree_insert(HWND handle, char *title, unsigned long icon, HTREEITEM parent, void *itemdata)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2090 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2091 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2092 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2093
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2094 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2095 * Sets the text and icon of an item in a tree window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2096 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2097 * handle: Handle to the tree containing the item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2098 * item: Handle of the item to be modified.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2099 * title: The text title of the entry.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2100 * icon: Handle to coresponding icon.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2101 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
2102 void API dw_tree_item_change(HWND handle, HTREEITEM item, char *title, unsigned long icon)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2103 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2104 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2105
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2106 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2107 * Sets the item data of a tree item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2108 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2109 * handle: Handle to the tree containing the item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2110 * item: Handle of the item to be modified.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2111 * itemdata: User defined data to be associated with item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2112 */
513
7755599311d4 Fixes search and replace errors.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 511
diff changeset
2113 void API dw_tree_item_set_data(HWND handle, HTREEITEM item, void *itemdata)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2114 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2115 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2116
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2117 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2118 * Gets the item data of a tree item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2119 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2120 * handle: Handle to the tree containing the item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2121 * item: Handle of the item to be modified.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2122 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
2123 void * API dw_tree_item_get_data(HWND handle, HTREEITEM item)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2124 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2125 return NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2126 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2127
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2128 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2129 * Sets this item as the active selection.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2130 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2131 * handle: Handle to the tree window (widget) to be selected.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2132 * item: Handle to the item to be selected.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2133 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2134 void API dw_tree_item_select(HWND handle, HTREEITEM item)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2135 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2136 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2137
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2138 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2139 * Removes all nodes from a tree.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2140 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2141 * handle: Handle to the window (widget) to be cleared.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2142 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2143 void API dw_tree_clear(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2144 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2145 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2146
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2147 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2148 * Expands a node on a tree.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2149 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2150 * handle: Handle to the tree window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2151 * item: Handle to node to be expanded.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2152 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
2153 void API dw_tree_item_expand(HWND handle, HTREEITEM item)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2154 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2155 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2156
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2157 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2158 * Collapses a node on a tree.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2159 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2160 * handle: Handle to the tree window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2161 * item: Handle to node to be collapsed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2162 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
2163 void API dw_tree_item_collapse(HWND handle, HTREEITEM item)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2164 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2165 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2166
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2167 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2168 * Removes a node from a tree.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2169 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2170 * handle: Handle to the window (widget) to be cleared.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2171 * item: Handle to node to be deleted.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2172 */
510
710f82598210 Change function names to be inline with Mark Hessling's Rexx/DW.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 508
diff changeset
2173 void API dw_tree_item_delete(HWND handle, HTREEITEM item)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2174 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2175 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2176
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2177 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2178 * Sets up the container columns.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2179 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2180 * handle: Handle to the container to be configured.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2181 * flags: An array of unsigned longs with column flags.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2182 * titles: An array of strings with column text titles.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2183 * count: The number of columns (this should match the arrays).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2184 * separator: The column number that contains the main separator.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2185 * (this item may only be used in OS/2)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2186 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2187 int API dw_container_setup(HWND handle, unsigned long *flags, char **titles, int count, int separator)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2188 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2189 return TRUE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2190 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2191
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2192 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2193 * Sets up the filesystem columns, note: filesystem always has an icon/filename field.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2194 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2195 * handle: Handle to the container to be configured.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2196 * flags: An array of unsigned longs with column flags.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2197 * titles: An array of strings with column text titles.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2198 * count: The number of columns (this should match the arrays).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2199 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2200 int API dw_filesystem_setup(HWND handle, unsigned long *flags, char **titles, int count)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2201 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2202 char **newtitles = malloc(sizeof(char *) * (count + 2));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2203 unsigned long *newflags = malloc(sizeof(unsigned long) * (count + 2));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2204
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2205 newtitles[0] = "Icon";
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2206 newtitles[1] = "Filename";
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2207
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2208 newflags[0] = DW_CFA_BITMAPORICON | DW_CFA_CENTER | DW_CFA_HORZSEPARATOR | DW_CFA_SEPARATOR;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2209 newflags[1] = DW_CFA_STRING | DW_CFA_LEFT | DW_CFA_HORZSEPARATOR;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2210
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2211 memcpy(&newtitles[2], titles, sizeof(char *) * count);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2212 memcpy(&newflags[2], flags, sizeof(unsigned long) * count);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2213
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2214 dw_container_setup(handle, newflags, newtitles, count + 2, count ? 2 : 0);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2215
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2216 free(newtitles);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2217 free(newflags);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2218 return TRUE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2219 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2220
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2221 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2222 * Obtains an icon from a module (or header in GTK).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2223 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2224 * module: Handle to module (DLL) in OS/2 and Windows.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2225 * id: A unsigned long id int the resources on OS/2 and
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2226 * Windows, on GTK this is converted to a pointer
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2227 * to an embedded XPM.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2228 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2229 unsigned long API dw_icon_load(unsigned long module, unsigned long id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2230 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2231 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2232 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2233
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2234 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2235 * Obtains an icon from a file.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2236 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2237 * filename: Name of the file, omit extention to have
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2238 * DW pick the appropriate file extension.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2239 * (ICO on OS/2 or Windows, XPM on Unix)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2240 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2241 unsigned long API dw_icon_load_from_file(char *filename)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2242 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2243 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2244 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2245
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2246 /*
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2247 * Obtains an icon from data.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2248 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2249 * data: Source of data for image.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2250 * len: length of data
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2251 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2252 unsigned long API dw_icon_load_from_data(char *data, int len)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2253 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2254 return 0;
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2255 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2256
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2257 /*
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2258 * Frees a loaded resource in OS/2 and Windows.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2259 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2260 * handle: Handle to icon returned by dw_icon_load().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2261 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2262 void API dw_icon_free(unsigned long handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2263 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2264 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2265
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2266 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2267 * Allocates memory used to populate a container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2268 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2269 * handle: Handle to the container window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2270 * rowcount: The number of items to be populated.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2271 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2272 void * API dw_container_alloc(HWND handle, int rowcount)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2273 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2274 return NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2275 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2276
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2277 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2278 * Sets an item in specified row and column to the given data.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2279 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2280 * handle: Handle to the container window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2281 * pointer: Pointer to the allocated memory in dw_container_alloc().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2282 * column: Zero based column of data being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2283 * row: Zero based row of data being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2284 * data: Pointer to the data to be added.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2285 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2286 void API dw_container_set_item(HWND handle, void *pointer, int column, int row, void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2287 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2288 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2289
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2290 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2291 * Changes an existing item in specified row and column to the given data.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2292 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2293 * handle: Handle to the container window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2294 * column: Zero based column of data being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2295 * row: Zero based row of data being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2296 * data: Pointer to the data to be added.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2297 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2298 void API dw_container_change_item(HWND handle, int column, int row, void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2299 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2300 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2301
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2302 /*
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2303 * Changes an existing item in specified row and column to the given data.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2304 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2305 * handle: Handle to the container window (widget).
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2306 * column: Zero based column of data being set.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2307 * row: Zero based row of data being set.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2308 * data: Pointer to the data to be added.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2309 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2310 void API dw_filesystem_change_item(HWND handle, int column, int row, void *data)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2311 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2312 dw_filesystem_set_item(handle, NULL, column, row, data);
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2313 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2314
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2315 /*
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2316 * Changes an item in specified row and column to the given data.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2317 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2318 * handle: Handle to the container window (widget).
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2319 * pointer: Pointer to the allocated memory in dw_container_alloc().
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2320 * column: Zero based column of data being set.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2321 * row: Zero based row of data being set.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2322 * data: Pointer to the data to be added.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2323 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2324 void API dw_filesystem_change_file(HWND handle, int row, char *filename, unsigned long icon)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2325 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2326 dw_filesystem_set_file(handle, NULL, row, filename, icon);
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2327 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2328
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2329 /*
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2330 * Sets an item in specified row and column to the given data.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2331 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2332 * handle: Handle to the container window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2333 * pointer: Pointer to the allocated memory in dw_container_alloc().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2334 * column: Zero based column of data being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2335 * row: Zero based row of data being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2336 * data: Pointer to the data to be added.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2337 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2338 void API dw_filesystem_set_file(HWND handle, void *pointer, int row, char *filename, unsigned long icon)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2339 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2340 dw_container_set_item(handle, pointer, 0, row, (void *)&icon);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2341 dw_container_set_item(handle, pointer, 1, row, (void *)&filename);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2342 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2343
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2344 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2345 * Sets an item in specified row and column to the given data.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2346 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2347 * handle: Handle to the container window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2348 * pointer: Pointer to the allocated memory in dw_container_alloc().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2349 * column: Zero based column of data being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2350 * row: Zero based row of data being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2351 * data: Pointer to the data to be added.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2352 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2353 void API dw_filesystem_set_item(HWND handle, void *pointer, int column, int row, void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2354 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2355 dw_container_set_item(handle, pointer, column + 2, row, data);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2356 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2357
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2358 /*
508
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2359 * Gets column type for a container column
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2360 * Parameters:
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2361 * handle: Handle to the container window (widget).
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2362 * column: Zero based column.
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2363 */
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2364 int API dw_container_get_column_type(HWND handle, int column)
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2365 {
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2366 return 0;
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2367 }
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2368
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2369 /*
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2370 * Gets column type for a filesystem container column
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2371 * Parameters:
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2372 * handle: Handle to the container window (widget).
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2373 * column: Zero based column.
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2374 */
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2375 int API dw_filesystem_get_column_type(HWND handle, int column)
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2376 {
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2377 return dw_container_get_column_type( handle, column + 1 );
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2378 }
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2379
078a40ba2e41 Added dw_container_get_column_type and dw_filesystem_get_column_type.
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 489
diff changeset
2380 /*
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2381 * Sets the width of a column in the container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2382 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2383 * handle: Handle to window (widget) of container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2384 * column: Zero based column of width being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2385 * width: Width of column in pixels.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2386 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2387 void API dw_container_set_column_width(HWND handle, int column, int width)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2388 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2389 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2390
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2391 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2392 * Sets the title of a row in the container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2393 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2394 * pointer: Pointer to the allocated memory in dw_container_alloc().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2395 * row: Zero based row of data being set.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2396 * title: String title of the item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2397 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2398 void API dw_container_set_row_title(void *pointer, int row, char *title)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2399 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2400 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2401
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2402 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2403 * Sets the title of a row in the container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2404 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2405 * handle: Handle to the container window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2406 * pointer: Pointer to the allocated memory in dw_container_alloc().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2407 * rowcount: The number of rows to be inserted.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2408 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2409 void API dw_container_insert(HWND handle, void *pointer, int rowcount)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2410 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2411 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2412
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2413 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2414 * Removes all rows from a container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2415 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2416 * handle: Handle to the window (widget) to be cleared.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2417 * redraw: TRUE to cause the container to redraw immediately.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2418 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2419 void API dw_container_clear(HWND handle, int redraw)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2420 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2421 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2422
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2423 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2424 * Removes the first x rows from a container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2425 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2426 * handle: Handle to the window (widget) to be deleted from.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2427 * rowcount: The number of rows to be deleted.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2428 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2429 void API dw_container_delete(HWND handle, int rowcount)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2430 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2431 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2432
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2433 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2434 * Scrolls container up or down.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2435 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2436 * handle: Handle to the window (widget) to be scrolled.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2437 * direction: DW_SCROLL_UP, DW_SCROLL_DOWN, DW_SCROLL_TOP or
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2438 * DW_SCROLL_BOTTOM. (rows is ignored for last two)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2439 * rows: The number of rows to be scrolled.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2440 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2441 void API dw_container_scroll(HWND handle, int direction, long rows)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2442 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2443 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2444
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2445 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2446 * Starts a new query of a container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2447 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2448 * handle: Handle to the window (widget) to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2449 * flags: If this parameter is DW_CRA_SELECTED it will only
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2450 * return items that are currently selected. Otherwise
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2451 * it will return all records in the container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2452 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2453 char * API dw_container_query_start(HWND handle, unsigned long flags)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2454 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2455 return NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2456 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2457
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2458 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2459 * Continues an existing query of a container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2460 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2461 * handle: Handle to the window (widget) to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2462 * flags: If this parameter is DW_CRA_SELECTED it will only
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2463 * return items that are currently selected. Otherwise
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2464 * it will return all records in the container.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2465 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2466 char * API dw_container_query_next(HWND handle, unsigned long flags)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2467 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2468 return NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2469 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2470
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2471 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2472 * Cursors the item with the text speficied, and scrolls to that item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2473 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2474 * handle: Handle to the window (widget) to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2475 * text: Text usually returned by dw_container_query().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2476 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2477 void API dw_container_cursor(HWND handle, char *text)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2478 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2479 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2480
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2481 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2482 * Deletes the item with the text speficied.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2483 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2484 * handle: Handle to the window (widget).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2485 * text: Text usually returned by dw_container_query().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2486 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2487 void API dw_container_delete_row(HWND handle, char *text)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2488 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2489 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2490
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2491 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2492 * Optimizes the column widths so that all data is visible.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2493 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2494 * handle: Handle to the window (widget) to be optimized.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2495 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2496 void API dw_container_optimize(HWND handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2497 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2498 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2499
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2500 /*
489
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2501 * Inserts an icon into the taskbar.
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2502 * Parameters:
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2503 * handle: Window handle that will handle taskbar icon messages.
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2504 * icon: Icon handle to display in the taskbar.
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2505 * bubbletext: Text to show when the mouse is above the icon.
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2506 */
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2507 void dw_taskbar_insert(HWND handle, unsigned long icon, char *bubbletext)
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2508 {
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2509 }
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2510
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2511 /*
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2512 * Deletes an icon from the taskbar.
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2513 * Parameters:
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2514 * handle: Window handle that was used with dw_taskbar_insert().
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2515 * icon: Icon handle that was used with dw_taskbar_insert().
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2516 */
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2517 void dw_taskbar_delete(HWND handle, unsigned long icon)
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2518 {
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2519 }
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2520
bc156294dd16 Fix compiler complaints on OS/2.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 445
diff changeset
2521 /*
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2522 * Creates a rendering context widget (window) to be packed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2523 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2524 * id: An id to be used with dw_window_from_id.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2525 * Returns:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2526 * A handle to the widget or NULL on failure.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2527 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2528 HWND API dw_render_new(unsigned long id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2529 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2530 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2531 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2532
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2533 /* Sets the current foreground drawing color.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2534 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2535 * red: red value.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2536 * green: green value.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2537 * blue: blue value.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2538 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2539 void API dw_color_foreground_set(unsigned long value)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2540 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2541 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2542
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2543 /* Sets the current background drawing color.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2544 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2545 * red: red value.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2546 * green: green value.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2547 * blue: blue value.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2548 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2549 void API dw_color_background_set(unsigned long value)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2550 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2551 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2552
566
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2553 /* Allows the user to choose a color using the system's color chooser dialog.
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2554 * Parameters:
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2555 * value: current color
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2556 * Returns:
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2557 * The selected color or the current color if cancelled.
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2558 */
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2559 unsigned long API dw_color_choose(unsigned long value)
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2560 {
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2561 dw_messagebox("Not implemented", DW_MB_OK|DW_MB_INFORMATION, "This feature not yet supported.");
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2562 return value;
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2563 }
f6de197ecbe9 Add dw_color_choose()
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 565
diff changeset
2564
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2565 /* Draw a point on a window (preferably a render window).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2566 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2567 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2568 * pixmap: Handle to the pixmap. (choose only one of these)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2569 * x: X coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2570 * y: Y coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2571 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2572 void API dw_draw_point(HWND handle, HPIXMAP pixmap, int x, int y)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2573 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2574 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2575
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2576 /* Draw a line on a window (preferably a render window).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2577 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2578 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2579 * pixmap: Handle to the pixmap. (choose only one of these)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2580 * x1: First X coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2581 * y1: First Y coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2582 * x2: Second X coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2583 * y2: Second Y coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2584 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2585 void API dw_draw_line(HWND handle, HPIXMAP pixmap, int x1, int y1, int x2, int y2)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2586 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2587 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2588
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2589 /* Draw text on a window (preferably a render window).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2590 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2591 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2592 * pixmap: Handle to the pixmap. (choose only one of these)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2593 * x: X coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2594 * y: Y coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2595 * text: Text to be displayed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2596 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2597 void API dw_draw_text(HWND handle, HPIXMAP pixmap, int x, int y, char *text)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2598 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2599 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2600
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2601 /* Query the width and height of a text string.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2602 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2603 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2604 * pixmap: Handle to the pixmap. (choose only one of these)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2605 * text: Text to be queried.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2606 * width: Pointer to a variable to be filled in with the width.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2607 * height Pointer to a variable to be filled in with the height.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2608 */
514
08d770271709 More function name changes for Rexx/DW compatibility.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 513
diff changeset
2609 void API dw_font_text_extents_get(HWND handle, HPIXMAP pixmap, char *text, int *width, int *height)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2610 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2611 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2612
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2613 /* Draw a rectangle on a window (preferably a render window).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2614 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2615 * handle: Handle to the window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2616 * pixmap: Handle to the pixmap. (choose only one of these)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2617 * fill: Fill box TRUE or FALSE.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2618 * x: X coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2619 * y: Y coordinate.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2620 * width: Width of rectangle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2621 * height: Height of rectangle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2622 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2623 void API dw_draw_rect(HWND handle, HPIXMAP pixmap, int fill, int x, int y, int width, int height)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2624 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2625 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2626
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2627 /* Call this after drawing to the screen to make sure
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2628 * anything you have drawn is visible.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2629 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2630 void API dw_flush(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2631 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2632 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2633
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2634 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2635 * Creates a pixmap with given parameters.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2636 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2637 * handle: Window handle the pixmap is associated with.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2638 * width: Width of the pixmap in pixels.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2639 * height: Height of the pixmap in pixels.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2640 * depth: Color depth of the pixmap.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2641 * Returns:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2642 * A handle to a pixmap or NULL on failure.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2643 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2644 HPIXMAP API dw_pixmap_new(HWND handle, unsigned long width, unsigned long height, int depth)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2645 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2646 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2647 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2648
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2649 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2650 * Creates a pixmap from a file.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2651 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2652 * handle: Window handle the pixmap is associated with.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2653 * filename: Name of the file, omit extention to have
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2654 * DW pick the appropriate file extension.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2655 * (BMP on OS/2 or Windows, XPM on Unix)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2656 * Returns:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2657 * A handle to a pixmap or NULL on failure.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2658 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2659 HPIXMAP API dw_pixmap_new_from_file(HWND handle, char *filename)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2660 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2661 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2662 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2663
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2664 /*
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2665 * Creates a pixmap from data
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2666 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2667 * handle: Window handle the pixmap is associated with.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2668 * data: Source of image data
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2669 * DW pick the appropriate file extension.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2670 * (BMP on OS/2 or Windows, XPM on Unix)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2671 * Returns:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2672 * A handle to a pixmap or NULL on failure.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2673 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2674 HPIXMAP API dw_pixmap_new_from_data(HWND handle, char *data, int len)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2675 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2676 return 0;
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2677 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2678
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
2679 /*
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2680 * Creates a pixmap from internal resource graphic specified by id.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2681 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2682 * handle: Window handle the pixmap is associated with.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2683 * id: Resource ID associated with requested pixmap.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2684 * Returns:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2685 * A handle to a pixmap or NULL on failure.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2686 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2687 HPIXMAP API dw_pixmap_grab(HWND handle, ULONG id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2688 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2689 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2690 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2691
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2692 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2693 * Destroys an allocated pixmap.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2694 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2695 * pixmap: Handle to a pixmap returned by
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2696 * dw_pixmap_new..
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2697 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2698 void API dw_pixmap_destroy(HPIXMAP pixmap)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2699 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2700 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2701
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2702 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2703 * Copies from one item to another.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2704 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2705 * dest: Destination window handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2706 * destp: Destination pixmap. (choose only one).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2707 * xdest: X coordinate of destination.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2708 * ydest: Y coordinate of destination.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2709 * width: Width of area to copy.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2710 * height: Height of area to copy.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2711 * src: Source window handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2712 * srcp: Source pixmap. (choose only one).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2713 * xsrc: X coordinate of source.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2714 * ysrc: Y coordinate of source.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2715 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2716 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)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2717 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2718 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2719
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2720 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2721 * Emits a beep.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2722 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2723 * freq: Frequency.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2724 * dur: Duration.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2725 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2726 void API dw_beep(int freq, int dur)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2727 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2728 SysBeep(dur);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2729 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2730
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2731 /* Open a shared library and return a handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2732 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2733 * name: Base name of the shared library.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2734 * handle: Pointer to a module handle,
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2735 * will be filled in with the handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2736 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2737 int API dw_module_load(char *name, HMOD *handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2738 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2739 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2740 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2741
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2742 /* Queries the address of a symbol within open handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2743 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2744 * handle: Module handle returned by dw_module_load()
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2745 * name: Name of the symbol you want the address of.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2746 * func: A pointer to a function pointer, to obtain
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2747 * the address.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2748 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2749 int API dw_module_symbol(HMOD handle, char *name, void**func)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2750 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2751 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2752 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2753
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2754 /* Frees the shared library previously opened.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2755 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2756 * handle: Module handle returned by dw_module_load()
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2757 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2758 int API dw_module_close(HMOD handle)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2759 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2760 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2761 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2762
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2763 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2764 * Returns the handle to an unnamed mutex semaphore.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2765 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2766 HMTX API dw_mutex_new(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2767 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2768 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2769 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2770
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2771 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2772 * Closes a semaphore created by dw_mutex_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2773 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2774 * mutex: The handle to the mutex returned by dw_mutex_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2775 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2776 void API dw_mutex_close(HMTX mutex)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2777 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2778 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2779
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2780 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2781 * Tries to gain access to the semaphore, if it can't it blocks.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2782 * If we are in a callback we must keep the message loop running
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2783 * while blocking.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2784 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2785 * mutex: The handle to the mutex returned by dw_mutex_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2786 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2787 void API dw_mutex_lock(HMTX mutex)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2788 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2789 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2790
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2791 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2792 * Reliquishes the access to the semaphore.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2793 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2794 * mutex: The handle to the mutex returned by dw_mutex_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2795 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2796 void API dw_mutex_unlock(HMTX mutex)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2797 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2798 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2799
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2800 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2801 * Returns the handle to an unnamed event semaphore.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2802 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2803 HEV API dw_event_new(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2804 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2805 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2806 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2807
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2808 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2809 * Resets a semaphore created by dw_event_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2810 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2811 * eve: The handle to the event returned by dw_event_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2812 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2813 int API dw_event_reset(HEV eve)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2814 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2815 return TRUE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2816 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2817
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2818 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2819 * Posts a semaphore created by dw_event_new(). Causing all threads
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2820 * waiting on this event in dw_event_wait to continue.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2821 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2822 * eve: The handle to the event returned by dw_event_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2823 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2824 int API dw_event_post(HEV eve)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2825 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2826 return TRUE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2827 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2828
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2829
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2830 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2831 * Waits on a semaphore created by dw_event_new(), until the
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2832 * event gets posted or until the timeout expires.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2833 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2834 * eve: The handle to the event returned by dw_event_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2835 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2836 int API dw_event_wait(HEV eve, unsigned long timeout)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2837 {
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2838 return TRUE;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2839 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2840
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2841 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2842 * Closes a semaphore created by dw_event_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2843 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2844 * eve: The handle to the event returned by dw_event_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2845 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2846 int API dw_event_close(HEV *eve)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2847 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2848 return TRUE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2849 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2850
564
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2851 /* Create a named event semaphore which can be
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2852 * opened from other processes.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2853 * Parameters:
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2854 * eve: Pointer to an event handle to receive handle.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2855 * name: Name given to semaphore which can be opened
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2856 * by other processes.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2857 */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2858 HEV API dw_named_event_new(char *name)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2859 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2860 return 0;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2861 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2862
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2863 /* Open an already existing named event semaphore.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2864 * Parameters:
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2865 * eve: Pointer to an event handle to receive handle.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2866 * name: Name given to semaphore which can be opened
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2867 * by other processes.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2868 */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2869 HEV API dw_named_event_get(char *name)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2870 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2871 return 0;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2872 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2873
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2874 /* Resets the event semaphore so threads who call wait
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2875 * on this semaphore will block.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2876 * Parameters:
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2877 * eve: Handle to the semaphore obtained by
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2878 * an open or create call.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2879 */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2880 int API dw_named_event_reset(HEV eve)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2881 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2882 return 0;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2883 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2884
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2885 /* Sets the posted state of an event semaphore, any threads
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2886 * waiting on the semaphore will no longer block.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2887 * Parameters:
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2888 * eve: Handle to the semaphore obtained by
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2889 * an open or create call.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2890 */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2891 int API dw_named_event_post(HEV eve)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2892 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2893 return 0;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2894 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2895
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2896
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2897 /* Waits on the specified semaphore until it becomes
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2898 * posted, or returns immediately if it already is posted.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2899 * Parameters:
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2900 * eve: Handle to the semaphore obtained by
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2901 * an open or create call.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2902 * timeout: Number of milliseconds before timing out
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2903 * or -1 if indefinite.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2904 */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2905 int API dw_named_event_wait(HEV eve, unsigned long timeout)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2906 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2907 return 0;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2908 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2909
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2910 /* Release this semaphore, if there are no more open
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2911 * handles on this semaphore the semaphore will be destroyed.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2912 * Parameters:
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2913 * eve: Handle to the semaphore obtained by
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2914 * an open or create call.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2915 */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2916 int API dw_named_event_close(HEV eve)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2917 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2918 return 0;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2919 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2920
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2921 /*
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2922 * Allocates a shared memory region with a name.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2923 * Parameters:
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2924 * handle: A pointer to receive a SHM identifier.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2925 * dest: A pointer to a pointer to receive the memory address.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2926 * size: Size in bytes of the shared memory region to allocate.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2927 * name: A string pointer to a unique memory name.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2928 */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2929 HSHM API dw_named_memory_new(void **dest, int size, char *name)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2930 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2931 return 0;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2932 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2933
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2934 /*
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2935 * Aquires shared memory region with a name.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2936 * Parameters:
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2937 * dest: A pointer to a pointer to receive the memory address.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2938 * size: Size in bytes of the shared memory region to requested.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2939 * name: A string pointer to a unique memory name.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2940 */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2941 HSHM API dw_named_memory_get(void **dest, int size, char *name)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2942 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2943 return 0;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2944 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2945
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2946 /*
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2947 * Frees a shared memory region previously allocated.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2948 * Parameters:
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2949 * handle: Handle obtained from DB_named_memory_allocate.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2950 * ptr: The memory address aquired with DB_named_memory_allocate.
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2951 */
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2952 int API dw_named_memory_free(HSHM handle, void *ptr)
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2953 {
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2954
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2955 return 0;
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2956 }
33b792d5c8ab Added new functionality on MacOS, the layout engine should be working
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 549
diff changeset
2957
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2958 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2959 * Creates a new thread with a starting point of func.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2960 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2961 * func: Function which will be run in the new thread.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2962 * data: Parameter(s) passed to the function.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2963 * stack: Stack size of new thread (OS/2 and Windows only).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2964 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2965 DWTID API dw_thread_new(void *func, void *data, int stack)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2966 {
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
2967 return (DWTID)-1;
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2968 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2969
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2970 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2971 * Ends execution of current thread immediately.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2972 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2973 void API dw_thread_end(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2974 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2975 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2976
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2977 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2978 * Returns the current thread's ID.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2979 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2980 DWTID API dw_thread_id(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2981 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2982 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2983 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2984
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2985 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2986 * Cleanly terminates a DW session, should be signal handler safe.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2987 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2988 * exitcode: Exit code reported to the operating system.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2989 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2990 void API dw_exit(int exitcode)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2991 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2992 exit(exitcode);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2993 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2994
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2995 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2996 * Creates a splitbar window (widget) with given parameters.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2997 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2998 * type: Value can be DW_VERT or DW_HORZ.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
2999 * topleft: Handle to the window to be top or left.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3000 * bottomright: Handle to the window to be bottom or right.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3001 * Returns:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3002 * A handle to a splitbar window or NULL on failure.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3003 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3004 HWND API dw_splitbar_new(int type, HWND topleft, HWND bottomright, unsigned long id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3005 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3006 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3007 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3008
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3009 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3010 * Sets the position of a splitbar (pecentage).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3011 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3012 * handle: The handle to the splitbar returned by dw_splitbar_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3013 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3014 void API dw_splitbar_set(HWND handle, float percent)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3015 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3016 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3017
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3018 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3019 * Gets the position of a splitbar (pecentage).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3020 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3021 * handle: The handle to the splitbar returned by dw_splitbar_new().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3022 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3023 float API dw_splitbar_get(HWND handle)
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
3024 {
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3025 return 0.0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3026 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3027
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3028 /*
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3029 * Creates a calendar window (widget) with given parameters.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3030 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3031 * id: Unique identifier for calendar widget
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3032 * Returns:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3033 * A handle to a calendar window or NULL on failure.
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3034 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3035 HWND dw_calendar_new(unsigned long id)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3036 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3037 return 0;
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3038 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3039
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3040 /*
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3041 * Sets the current date of a calendar
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3042 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3043 * handle: The handle to the calendar returned by dw_calendar_new().
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3044 * year...
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3045 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3046 void dw_calendar_set_date(HWND handle, unsigned int year, unsigned int month, unsigned int day)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3047 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3048 return;
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3049 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3050
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3051 /*
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3052 * Gets the position of a splitbar (pecentage).
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3053 * Parameters:
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3054 * handle: The handle to the splitbar returned by dw_splitbar_new().
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3055 */
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3056 void dw_calendar_get_date(HWND handle, unsigned int *year, unsigned int *month, unsigned int *day)
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3057 {
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3058 return;
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3059 }
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3060
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3061 /*
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3062 * Pack windows (widgets) into a box from the start (or top).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3063 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3064 * box: Window handle of the box to be packed into.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3065 * item: Window handle of the item to be back.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3066 * width: Width in pixels of the item or -1 to be self determined.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3067 * height: Height in pixels of the item or -1 to be self determined.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3068 * hsize: TRUE if the window (widget) should expand horizontally to fill space given.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3069 * vsize: TRUE if the window (widget) should expand vertically to fill space given.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3070 * pad: Number of pixels of padding around the item.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3071 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3072 void API dw_box_pack_start(HWND box, HWND item, int width, int height, int hsize, int vsize, int pad)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3073 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3074 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3075
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3076 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3077 * Sets the default focus item for a window/dialog.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3078 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3079 * window: Toplevel window or dialog.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3080 * defaultitem: Handle to the dialog item to be default.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3081 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3082 void API dw_window_default(HWND window, HWND defaultitem)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3083 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3084 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3085
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3086 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3087 * Sets window to click the default dialog item when an ENTER is pressed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3088 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3089 * window: Window (widget) to look for the ENTER press.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3090 * next: Window (widget) to move to next (or click)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3091 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3092 void API dw_window_click_default(HWND window, HWND next)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3093 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3094 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3095
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3096 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3097 * Returns some information about the current operating environment.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3098 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3099 * env: Pointer to a DWEnv struct.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3100 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3101 void API dw_environment_query(DWEnv *env)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3102 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3103 ULONG Build;
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3104 char verbuf[10];
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3105
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3106 if(!env)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3107 return;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3108
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3109 Gestalt(gestaltSystemVersion, &Build);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3110
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3111 sprintf(verbuf, "%04x", (int)Build);
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3112
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3113 strcpy(env->osName,"MacOS");
437
903fb3085d42 More MacOS fixes, make install now works properly. Made special test
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 433
diff changeset
3114 env->MajorBuild = atoi(&verbuf[3]);
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3115 verbuf[3] = 0;
437
903fb3085d42 More MacOS fixes, make install now works properly. Made special test
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 433
diff changeset
3116 env->MinorVersion = atoi(&verbuf[2]);
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3117 verbuf[2] = 0;
437
903fb3085d42 More MacOS fixes, make install now works properly. Made special test
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 433
diff changeset
3118 env->MajorVersion = atoi(verbuf);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3119
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3120 env->MinorBuild = 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3121
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3122 strcpy(env->buildDate, __DATE__);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3123 strcpy(env->buildTime, __TIME__);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3124 env->DWMajorVersion = DW_MAJOR_VERSION;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3125 env->DWMinorVersion = DW_MINOR_VERSION;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3126 env->DWSubVersion = DW_SUB_VERSION;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3127 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3128
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3129 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3130 * Opens a file dialog and queries user selection.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3131 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3132 * title: Title bar text for dialog.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3133 * defpath: The default path of the open dialog.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3134 * ext: Default file extention.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3135 * flags: DW_FILE_OPEN or DW_FILE_SAVE.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3136 * Returns:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3137 * NULL on error. A malloced buffer containing
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3138 * the file path on success.
612
c5e5671dec8f Modify Calendar widget
mhessling@81767d24-ef19-dc11-ae90-00e081727c95
parents: 566
diff changeset
3139 *
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3140 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3141 char * API dw_file_browse(char *title, char *defpath, char *ext, int flags)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3142 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3143 return NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3144 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3145
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3146 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3147 * Execute and external program in a seperate session.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3148 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3149 * program: Program name with optional path.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3150 * type: Either DW_EXEC_CON or DW_EXEC_GUI.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3151 * params: An array of pointers to string arguements.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3152 * Returns:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3153 * -1 on error.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3154 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3155 int API dw_exec(char *program, int type, char **params)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3156 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3157 return -1;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3158 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3159
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3160 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3161 * Loads a web browser pointed at the given URL.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3162 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3163 * url: Uniform resource locator.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3164 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3165 int API dw_browse(char *url)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3166 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3167 return -1;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3168 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3169
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3170 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3171 * Returns a pointer to a static buffer which containes the
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3172 * current user directory. Or the root directory (C:\ on
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3173 * OS/2 and Windows).
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3174 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3175 char * API dw_user_dir(void)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3176 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3177 static char _user_dir[1024] = "";
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3178
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3179 if(!_user_dir[0])
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3180 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3181 char *home = getenv("HOME");
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3182
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3183 if(home)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3184 strcpy(_user_dir, home);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3185 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3186 strcpy(_user_dir, "/");
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3187 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3188 return _user_dir;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3189 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3190
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3191 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3192 * Call a function from the window (widget)'s context.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3193 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3194 * handle: Window handle of the widget.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3195 * function: Function pointer to be called.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3196 * data: Pointer to the data to be passed to the function.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3197 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3198 void API dw_window_function(HWND handle, void *function, void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3199 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3200 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3201
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3202 /* Functions for managing the user data lists that are associated with
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3203 * a given window handle. Used in dw_window_set_data() and
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3204 * dw_window_get_data().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3205 */
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3206 static UserData *_find_userdata(UserData **root, char *varname)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3207 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3208 UserData *tmp = *root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3209
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3210 while(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3211 {
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
3212 if(strcasecmp(tmp->varname, varname) == 0)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3213 return tmp;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3214 tmp = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3215 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3216 return NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3217 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3218
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3219 static int _new_userdata(UserData **root, char *varname, void *data)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3220 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3221 UserData *new = _find_userdata(root, varname);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3222
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3223 if(new)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3224 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3225 new->data = data;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3226 return TRUE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3227 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3228 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3229 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3230 new = malloc(sizeof(UserData));
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3231 if(new)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3232 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3233 new->varname = strdup(varname);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3234 new->data = data;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3235
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3236 new->next = NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3237
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3238 if (!*root)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3239 *root = new;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3240 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3241 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3242 UserData *prev = NULL, *tmp = *root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3243 while(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3244 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3245 prev = tmp;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3246 tmp = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3247 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3248 if(prev)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3249 prev->next = new;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3250 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3251 *root = new;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3252 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3253 return TRUE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3254 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3255 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3256 return FALSE;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3257 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3258
445
d9a5f98a1127 Reformatted source code, I am now using FTE on MacOS X. Implemented
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 443
diff changeset
3259 static int _remove_userdata(UserData **root, char *varname, int all)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3260 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3261 UserData *prev = NULL, *tmp = *root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3262
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3263 while(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3264 {
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
3265 if(all || strcasecmp(tmp->varname, varname) == 0)
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3266 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3267 if(!prev)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3268 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3269 *root = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3270 free(tmp->varname);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3271 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3272 if(!all)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3273 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3274 tmp = *root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3275 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3276 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3277 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3278 /* If all is true we should
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3279 * never get here.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3280 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3281 prev->next = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3282 free(tmp->varname);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3283 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3284 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3285 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3286 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3287 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3288 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3289 prev = tmp;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3290 tmp = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3291 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3292 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3293 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3294 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3295
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3296 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3297 * Add a named user data item to a window handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3298 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3299 * window: Window handle of signal to be called back.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3300 * dataname: A string pointer identifying which signal to be hooked.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3301 * data: User data to be passed to the handler function.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3302 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3303 void API dw_window_set_data(HWND window, char *dataname, void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3304 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3305 WindowData *blah = (WindowData *)_get_window_pointer(window);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3306
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3307 if(!blah)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3308 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3309 if(!dataname)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3310 return;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3311
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3312 blah = calloc(1, sizeof(WindowData));
433
f225f16bebbd Compile fixes for MacOS X.
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents: 425
diff changeset
3313 _set_window_pointer(window, blah);
387
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3314 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3315
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3316 if(data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3317 _new_userdata(&(blah->root), dataname, data);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3318 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3319 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3320 if(dataname)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3321 _remove_userdata(&(blah->root), dataname, FALSE);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3322 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3323 _remove_userdata(&(blah->root), NULL, TRUE);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3324 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3325 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3326
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3327 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3328 * Gets a named user data item to a window handle.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3329 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3330 * window: Window handle of signal to be called back.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3331 * dataname: A string pointer identifying which signal to be hooked.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3332 * data: User data to be passed to the handler function.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3333 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3334 void *dw_window_get_data(HWND window, char *dataname)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3335 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3336 WindowData *blah = (WindowData *)_get_window_pointer(window);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3337
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3338 if(blah && blah->root && dataname)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3339 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3340 UserData *ud = _find_userdata(&(blah->root), dataname);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3341 if(ud)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3342 return ud->data;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3343 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3344 return NULL;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3345 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3346
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3347 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3348 * Add a callback to a timer event.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3349 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3350 * interval: Milliseconds to delay between calls.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3351 * sigfunc: The pointer to the function to be used as the callback.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3352 * data: User data to be passed to the handler function.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3353 * Returns:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3354 * Timer ID for use with dw_timer_disconnect(), 0 on error.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3355 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3356 int API dw_timer_connect(int interval, void *sigfunc, void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3357 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3358 return 0;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3359 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3360
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3361 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3362 * Removes timer callback.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3363 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3364 * id: Timer ID returned by dw_timer_connect().
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3365 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3366 void API dw_timer_disconnect(int id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3367 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3368 SignalHandler *prev = NULL, *tmp = Root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3369
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3370 /* 0 is an invalid timer ID */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3371 if(!id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3372 return;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3373
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3374 while(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3375 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3376 if(tmp->id == id)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3377 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3378 if(prev)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3379 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3380 prev->next = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3381 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3382 tmp = prev->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3383 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3384 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3385 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3386 Root = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3387 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3388 tmp = Root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3389 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3390 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3391 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3392 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3393 prev = tmp;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3394 tmp = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3395 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3396 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3397 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3398
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3399 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3400 * Add a callback to a window event.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3401 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3402 * window: Window handle of signal to be called back.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3403 * signame: A string pointer identifying which signal to be hooked.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3404 * sigfunc: The pointer to the function to be used as the callback.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3405 * data: User data to be passed to the handler function.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3406 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3407 void API dw_signal_connect(HWND window, char *signame, void *sigfunc, void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3408 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3409 ULONG message = 0L;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3410
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3411 if(window && signame && sigfunc)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3412 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3413 if((message = _findsigmessage(signame)) != 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3414 _new_signal(message, window, 0, sigfunc, data);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3415 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3416 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3417
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3418 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3419 * Removes callbacks for a given window with given name.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3420 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3421 * window: Window handle of callback to be removed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3422 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3423 void API dw_signal_disconnect_by_name(HWND window, char *signame)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3424 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3425 SignalHandler *prev = NULL, *tmp = Root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3426 ULONG message;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3427
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3428 if(!window || !signame || (message = _findsigmessage(signame)) == 0)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3429 return;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3430
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3431 while(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3432 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3433 if(tmp->window == window && tmp->message == message)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3434 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3435 if(prev)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3436 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3437 prev->next = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3438 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3439 tmp = prev->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3440 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3441 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3442 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3443 Root = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3444 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3445 tmp = Root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3446 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3447 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3448 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3449 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3450 prev = tmp;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3451 tmp = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3452 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3453 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3454 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3455
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3456 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3457 * Removes all callbacks for a given window.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3458 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3459 * window: Window handle of callback to be removed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3460 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3461 void API dw_signal_disconnect_by_window(HWND window)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3462 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3463 SignalHandler *prev = NULL, *tmp = Root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3464
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3465 while(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3466 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3467 if(tmp->window == window)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3468 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3469 if(prev)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3470 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3471 prev->next = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3472 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3473 tmp = prev->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3474 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3475 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3476 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3477 Root = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3478 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3479 tmp = Root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3480 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3481 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3482 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3483 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3484 prev = tmp;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3485 tmp = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3486 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3487 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3488 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3489
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3490 /*
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3491 * Removes all callbacks for a given window with specified data.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3492 * Parameters:
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3493 * window: Window handle of callback to be removed.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3494 * data: Pointer to the data to be compared against.
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3495 */
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3496 void API dw_signal_disconnect_by_data(HWND window, void *data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3497 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3498 SignalHandler *prev = NULL, *tmp = Root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3499
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3500 while(tmp)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3501 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3502 if(tmp->window == window && tmp->data == data)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3503 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3504 if(prev)
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3505 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3506 prev->next = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3507 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3508 tmp = prev->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3509 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3510 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3511 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3512 Root = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3513 free(tmp);
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3514 tmp = Root;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3515 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3516 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3517 else
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3518 {
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3519 prev = tmp;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3520 tmp = tmp->next;
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3521 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3522 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3523 }
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3524
456c13a6e332 A basically empty DW source file, if we ever port to another platform
bsmith@81767d24-ef19-dc11-ae90-00e081727c95
parents:
diff changeset
3525