Add the ability to allocate extra per-dialog-instance private data
[u/mdw/putty] / winstuff.h
... / ...
CommitLineData
1/*
2 * winstuff.h: Windows-specific inter-module stuff.
3 */
4
5#ifndef PUTTY_WINSTUFF_H
6#define PUTTY_WINSTUFF_H
7
8#include <stdio.h> /* for FILENAME_MAX */
9
10#include "tree234.h"
11
12#include "winhelp.h"
13
14struct Filename {
15 char path[FILENAME_MAX];
16};
17#define f_open(filename, mode) ( fopen((filename).path, (mode)) )
18
19struct FontSpec {
20 char name[64];
21 int isbold;
22 int height;
23 int charset;
24};
25
26/*
27 * Global variables. Most modules declare these `extern', but
28 * window.c will do `#define PUTTY_DO_GLOBALS' before including this
29 * module, and so will get them properly defined.
30 */
31#ifndef GLOBAL
32#ifdef PUTTY_DO_GLOBALS
33#define GLOBAL
34#else
35#define GLOBAL extern
36#endif
37#endif
38
39#ifndef DONE_TYPEDEFS
40#define DONE_TYPEDEFS
41typedef struct config_tag Config;
42typedef struct backend_tag Backend;
43typedef struct terminal_tag Terminal;
44#endif
45
46#define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY"
47#define PUTTY_REG_PARENT "Software\\SimonTatham"
48#define PUTTY_REG_PARENT_CHILD "PuTTY"
49#define PUTTY_REG_GPARENT "Software"
50#define PUTTY_REG_GPARENT_CHILD "SimonTatham"
51
52#define GETTICKCOUNT GetTickCount
53#define CURSORBLINK GetCaretBlinkTime()
54#define TICKSPERSEC 1000 /* GetTickCount returns milliseconds */
55
56#define DEFAULT_CODEPAGE CP_ACP
57
58typedef HDC Context;
59
60/*
61 * Window handles for the dialog boxes that can be running during a
62 * PuTTY session.
63 */
64GLOBAL HWND logbox;
65
66/*
67 * The all-important instance handle.
68 */
69GLOBAL HINSTANCE hinst;
70
71/*
72 * Details of the help file.
73 */
74GLOBAL char *help_path;
75GLOBAL int help_has_contents;
76
77/*
78 * The terminal and logging context are notionally local to the
79 * Windows front end, but they must be shared between window.c and
80 * windlg.c. Likewise the saved-sessions list.
81 */
82GLOBAL Terminal *term;
83GLOBAL void *logctx;
84
85/*
86 * I've just looked in the windows standard headr files for WM_USER, there
87 * are hundreds of flags defined using the form WM_USER+123 so I've
88 * renumbered this NETEVENT value and the two in window.c
89 */
90#define WM_XUSER (WM_USER + 0x2000)
91#define WM_NETEVENT (WM_XUSER + 5)
92
93/*
94 * On Windows, we send MA_2CLK as the only event marking the second
95 * press of a mouse button. Compare unix.h.
96 */
97#define MULTICLICK_ONLY_EVENT 1
98
99/*
100 * On Windows, data written to the clipboard must be NUL-terminated.
101 */
102#define SELECTION_NUL_TERMINATED 1
103
104/*
105 * On Windows, copying to the clipboard terminates lines with CRLF.
106 */
107#define SEL_NL { 13, 10 }
108
109/*
110 * sk_getxdmdata() does not exist under Windows (not that I
111 * couldn't write it if I wanted to, but I haven't bothered), so
112 * it's a macro which always returns FALSE. With any luck this will
113 * cause the compiler to notice it can optimise away the
114 * implementation of XDM-AUTHORIZATION-1 in x11fwd.c :-)
115 */
116#define sk_getxdmdata(socket, ip, port) (0)
117
118/*
119 * File-selector filter strings used in the config box. On Windows,
120 * these strings are of exactly the type needed to go in
121 * `lpstrFilter' in an OPENFILENAME structure.
122 */
123#define FILTER_KEY_FILES ("PuTTY Private Key Files (*.ppk)\0*.ppk\0" \
124 "All Files (*.*)\0*\0\0\0")
125#define FILTER_WAVE_FILES ("Wave Files (*.wav)\0*.WAV\0" \
126 "All Files (*.*)\0*\0\0\0")
127
128/*
129 * Exports from winctrls.c.
130 */
131
132struct ctlpos {
133 HWND hwnd;
134 WPARAM font;
135 int dlu4inpix;
136 int ypos, width;
137 int xoff;
138 int boxystart, boxid;
139 char *boxtext;
140};
141
142/*
143 * Exports from winutils.c.
144 */
145void split_into_argv(char *, int *, char ***, char ***);
146
147/*
148 * Private structure for prefslist state. Only in the header file
149 * so that we can delegate allocation to callers.
150 */
151struct prefslist {
152 int listid, upbid, dnbid;
153 int srcitem;
154 int dummyitem;
155 int dragging;
156};
157
158/*
159 * This structure is passed to event handler functions as the `dlg'
160 * parameter, and hence is passed back to winctrls access functions.
161 */
162struct dlgparam {
163 HWND hwnd; /* the hwnd of the dialog box */
164 struct winctrls *controltrees[8]; /* can have several of these */
165 int nctrltrees;
166 char *errtitle; /* title of error sub-messageboxes */
167 void *data; /* data to pass in refresh events */
168 union control *focused, *lastfocused; /* which ctrl has focus now/before */
169 char shortcuts[128]; /* track which shortcuts in use */
170 int coloursel_wanted; /* has an event handler asked for
171 * a colour selector? */
172 struct { unsigned char r, g, b, ok; } coloursel_result; /* 0-255 */
173 tree234 *privdata; /* stores per-control private data */
174 int ended, endresult; /* has the dialog been ended? */
175};
176
177/*
178 * Exports from winctrls.c.
179 */
180void ctlposinit(struct ctlpos *cp, HWND hwnd,
181 int leftborder, int rightborder, int topborder);
182HWND doctl(struct ctlpos *cp, RECT r,
183 char *wclass, int wstyle, int exstyle, char *wtext, int wid);
184void bartitle(struct ctlpos *cp, char *name, int id);
185void beginbox(struct ctlpos *cp, char *name, int idbox);
186void endbox(struct ctlpos *cp);
187void multiedit(struct ctlpos *cp, int password, ...);
188void radioline(struct ctlpos *cp, char *text, int id, int nacross, ...);
189void bareradioline(struct ctlpos *cp, int nacross, ...);
190void radiobig(struct ctlpos *cp, char *text, int id, ...);
191void checkbox(struct ctlpos *cp, char *text, int id);
192void statictext(struct ctlpos *cp, char *text, int lines, int id);
193void staticbtn(struct ctlpos *cp, char *stext, int sid,
194 char *btext, int bid);
195void static2btn(struct ctlpos *cp, char *stext, int sid,
196 char *btext1, int bid1, char *btext2, int bid2);
197void staticedit(struct ctlpos *cp, char *stext,
198 int sid, int eid, int percentedit);
199void staticddl(struct ctlpos *cp, char *stext,
200 int sid, int lid, int percentlist);
201void combobox(struct ctlpos *cp, char *text, int staticid, int listid);
202void staticpassedit(struct ctlpos *cp, char *stext,
203 int sid, int eid, int percentedit);
204void bigeditctrl(struct ctlpos *cp, char *stext,
205 int sid, int eid, int lines);
206void ersatztab(struct ctlpos *cp, char *stext, int sid, int lid, int s2id);
207void editbutton(struct ctlpos *cp, char *stext, int sid,
208 int eid, char *btext, int bid);
209void sesssaver(struct ctlpos *cp, char *text,
210 int staticid, int editid, int listid, ...);
211void envsetter(struct ctlpos *cp, char *stext, int sid,
212 char *e1stext, int e1sid, int e1id,
213 char *e2stext, int e2sid, int e2id,
214 int listid, char *b1text, int b1id, char *b2text, int b2id);
215void charclass(struct ctlpos *cp, char *stext, int sid, int listid,
216 char *btext, int bid, int eid, char *s2text, int s2id);
217void colouredit(struct ctlpos *cp, char *stext, int sid, int listid,
218 char *btext, int bid, ...);
219void prefslist(struct prefslist *hdl, struct ctlpos *cp, int lines,
220 char *stext, int sid, int listid, int upbid, int dnbid);
221int handle_prefslist(struct prefslist *hdl,
222 int *array, int maxmemb,
223 int is_dlmsg, HWND hwnd,
224 WPARAM wParam, LPARAM lParam);
225void progressbar(struct ctlpos *cp, int id);
226void fwdsetter(struct ctlpos *cp, int listid, char *stext, int sid,
227 char *e1stext, int e1sid, int e1id,
228 char *e2stext, int e2sid, int e2id,
229 char *btext, int bid,
230 char *r1text, int r1id, char *r2text, int r2id);
231
232#define MAX_SHORTCUTS_PER_CTRL 16
233
234/*
235 * This structure is what's stored for each `union control' in the
236 * portable-dialog interface.
237 */
238struct winctrl {
239 union control *ctrl;
240 /*
241 * The control may have several components at the Windows
242 * level, with different dialog IDs. To avoid needing N
243 * separate platformsidectrl structures (which could be stored
244 * separately in a tree234 so that lookup by ID worked), we
245 * impose the constraint that those IDs must be in a contiguous
246 * block.
247 */
248 int base_id;
249 int num_ids;
250 /*
251 * Remember what keyboard shortcuts were used by this control,
252 * so that when we remove it again we can take them out of the
253 * list in the dlgparam.
254 */
255 char shortcuts[MAX_SHORTCUTS_PER_CTRL];
256 /*
257 * Some controls need a piece of allocated memory in which to
258 * store temporary data about the control.
259 */
260 void *data;
261};
262/*
263 * And this structure holds a set of the above, in two separate
264 * tree234s so that it can find an item by `union control' or by
265 * dialog ID.
266 */
267struct winctrls {
268 tree234 *byctrl, *byid;
269};
270struct controlset;
271struct controlbox;
272
273void winctrl_init(struct winctrls *);
274void winctrl_cleanup(struct winctrls *);
275void winctrl_add(struct winctrls *, struct winctrl *);
276void winctrl_remove(struct winctrls *, struct winctrl *);
277struct winctrl *winctrl_findbyctrl(struct winctrls *, union control *);
278struct winctrl *winctrl_findbyid(struct winctrls *, int);
279struct winctrl *winctrl_findbyindex(struct winctrls *, int);
280void winctrl_layout(struct dlgparam *dp, struct winctrls *wc,
281 struct ctlpos *cp, struct controlset *s, int *id);
282int winctrl_handle_command(struct dlgparam *dp, UINT msg,
283 WPARAM wParam, LPARAM lParam);
284void winctrl_rem_shortcuts(struct dlgparam *dp, struct winctrl *c);
285int winctrl_context_help(struct dlgparam *dp, HWND hwnd, int id);
286
287void dp_init(struct dlgparam *dp);
288void dp_add_tree(struct dlgparam *dp, struct winctrls *tree);
289void dp_cleanup(struct dlgparam *dp);
290
291/*
292 * Exports from wincfg.c.
293 */
294void win_setup_config_box(struct controlbox *b, HWND *hwndp, int has_help,
295 int midsession);
296
297/*
298 * Exports from windlg.c.
299 */
300void defuse_showwindow(void);
301int do_config(void);
302int do_reconfig(HWND);
303void showeventlog(HWND);
304void showabout(HWND);
305void force_normal(HWND hwnd);
306void modal_about_box(HWND hwnd);
307void show_help(HWND hwnd);
308
309/*
310 * Exports from sizetip.c.
311 */
312void UpdateSizeTip(HWND src, int cx, int cy);
313void EnableSizeTip(int bEnable);
314
315/*
316 * Exports from unicode.c.
317 */
318struct unicode_data;
319void init_ucs(Config *, struct unicode_data *);
320
321#endif