As far as I can tell, "simple@putty.projects.tartarus.org" has always been
[u/mdw/putty] / windows / winstuff.h
CommitLineData
8c3cd914 1/*
2 * winstuff.h: Windows-specific inter-module stuff.
3 */
4
f7f27309 5#ifndef PUTTY_WINSTUFF_H
6#define PUTTY_WINSTUFF_H
7
7440fd44 8#ifndef AUTO_WINSOCK
9#include <winsock2.h>
10#endif
11#include <windows.h>
9a30e26b 12#include <stdio.h> /* for FILENAME_MAX */
13
fe8abbf4 14#include "tree234.h"
15
16#include "winhelp.h"
17
9a30e26b 18struct Filename {
19 char path[FILENAME_MAX];
20};
c6940f12 21#define f_open(filename, mode, isprivate) ( fopen((filename).path, (mode)) )
9a30e26b 22
23struct FontSpec {
24 char name[64];
25 int isbold;
26 int height;
27 int charset;
28};
29
17c7fed1 30#ifndef CLEARTYPE_QUALITY
31#define CLEARTYPE_QUALITY 5
32#endif
33#define FONT_QUALITY(fq) ( \
34 (fq) == FQ_DEFAULT ? DEFAULT_QUALITY : \
35 (fq) == FQ_ANTIALIASED ? ANTIALIASED_QUALITY : \
36 (fq) == FQ_NONANTIALIASED ? NONANTIALIASED_QUALITY : \
37 CLEARTYPE_QUALITY)
38
158cb9b1 39/*
40 * Where we can, we use GetWindowLongPtr and friends because they're
41 * more useful on 64-bit platforms, but they're a relatively recent
42 * innovation, missing from VC++ 6 and older MinGW. Degrade nicely.
43 * (NB that on some systems, some of these things are available but
44 * not others...)
45 */
17c7fed1 46
158cb9b1 47#ifndef GCLP_HCURSOR
48/* GetClassLongPtr and friends */
49#undef GetClassLongPtr
50#define GetClassLongPtr GetClassLong
51#undef SetClassLongPtr
52#define SetClassLongPtr SetClassLong
53#define GCLP_HCURSOR GCL_HCURSOR
54/* GetWindowLongPtr and friends */
55#undef GetWindowLongPtr
17c7fed1 56#define GetWindowLongPtr GetWindowLong
158cb9b1 57#undef SetWindowLongPtr
17c7fed1 58#define SetWindowLongPtr SetWindowLong
158cb9b1 59#undef GWLP_USERDATA
17c7fed1 60#define GWLP_USERDATA GWL_USERDATA
158cb9b1 61#undef DWLP_MSGRESULT
17c7fed1 62#define DWLP_MSGRESULT DWL_MSGRESULT
158cb9b1 63/* Since we've clobbered the above functions, we should clobber the
64 * associated type regardless of whether it's defined. */
65#undef LONG_PTR
66#define LONG_PTR LONG
17c7fed1 67#endif
68
2979718a 69#define BOXFLAGS DLGWINDOWEXTRA
1e5eefb6 70#define BOXRESULT (DLGWINDOWEXTRA + sizeof(LONG_PTR))
8ee3ff16 71#define DF_END 0x0001
72
8c3cd914 73/*
74 * Global variables. Most modules declare these `extern', but
75 * window.c will do `#define PUTTY_DO_GLOBALS' before including this
76 * module, and so will get them properly defined.
2979718a 77*/
f7f27309 78#ifndef GLOBAL
8c3cd914 79#ifdef PUTTY_DO_GLOBALS
80#define GLOBAL
81#else
82#define GLOBAL extern
83#endif
f7f27309 84#endif
85
a8327734 86#ifndef DONE_TYPEDEFS
87#define DONE_TYPEDEFS
88typedef struct config_tag Config;
89typedef struct backend_tag Backend;
90typedef struct terminal_tag Terminal;
91#endif
92
f7f27309 93#define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY"
94#define PUTTY_REG_PARENT "Software\\SimonTatham"
95#define PUTTY_REG_PARENT_CHILD "PuTTY"
96#define PUTTY_REG_GPARENT "Software"
97#define PUTTY_REG_GPARENT_CHILD "SimonTatham"
98
a9dc49af 99#define PUTTY_HELP_FILE "putty.hlp"
cb2708d3 100#define PUTTY_CHM_FILE "putty.chm"
a9dc49af 101#define PUTTY_HELP_CONTENTS "putty.cnt"
102
f7f27309 103#define GETTICKCOUNT GetTickCount
104#define CURSORBLINK GetCaretBlinkTime()
105#define TICKSPERSEC 1000 /* GetTickCount returns milliseconds */
106
107#define DEFAULT_CODEPAGE CP_ACP
108
109typedef HDC Context;
8c3cd914 110
86557057 111#ifndef NO_GSSAPI
112/*
113 * GSS-API stuff
114 */
115typedef struct Ssh_gss_buf {
116 int length;
117 char *value;
118} Ssh_gss_buf;
119
120#define SSH_GSS_EMPTY_BUF (Ssh_gss_buf) {0,NULL}
121#endif
122
f7f27309 123/*
5321c0c6 124 * Window handles for the windows that can be running during a
f7f27309 125 * PuTTY session.
126 */
5321c0c6 127GLOBAL HWND hwnd; /* the main terminal window */
f7f27309 128GLOBAL HWND logbox;
129
130/*
131 * The all-important instance handle.
132 */
8c3cd914 133GLOBAL HINSTANCE hinst;
134
135/*
cb2708d3 136 * Help file stuff in winhelp.c.
6b78788a 137 */
cb2708d3 138void init_help(void);
139void shutdown_help(void);
140int has_help(void);
141void launch_help(HWND hwnd, const char *topic);
142void quit_help(HWND hwnd);
6b78788a 143
144/*
a8327734 145 * The terminal and logging context are notionally local to the
146 * Windows front end, but they must be shared between window.c and
0b4f0bc0 147 * windlg.c. Likewise the saved-sessions list.
a8327734 148 */
149GLOBAL Terminal *term;
150GLOBAL void *logctx;
151
604fab0c 152#define WM_NETEVENT (WM_APP + 5)
f7f27309 153
154/*
e6346999 155 * On Windows, we send MA_2CLK as the only event marking the second
156 * press of a mouse button. Compare unix.h.
157 */
158#define MULTICLICK_ONLY_EVENT 1
159
160/*
161 * On Windows, data written to the clipboard must be NUL-terminated.
162 */
163#define SELECTION_NUL_TERMINATED 1
164
165/*
0f351587 166 * On Windows, copying to the clipboard terminates lines with CRLF.
167 */
168#define SEL_NL { 13, 10 }
169
170/*
2f92b717 171 * sk_getxdmdata() does not exist under Windows (not that I
172 * couldn't write it if I wanted to, but I haven't bothered), so
0a4022a1 173 * it's a macro which always returns NULL. With any luck this will
2f92b717 174 * cause the compiler to notice it can optimise away the
175 * implementation of XDM-AUTHORIZATION-1 in x11fwd.c :-)
176 */
0a4022a1 177#define sk_getxdmdata(socket, lenp) (NULL)
2f92b717 178
179/*
fe8abbf4 180 * File-selector filter strings used in the config box. On Windows,
181 * these strings are of exactly the type needed to go in
182 * `lpstrFilter' in an OPENFILENAME structure.
183 */
184#define FILTER_KEY_FILES ("PuTTY Private Key Files (*.ppk)\0*.ppk\0" \
185 "All Files (*.*)\0*\0\0\0")
186#define FILTER_WAVE_FILES ("Wave Files (*.wav)\0*.WAV\0" \
187 "All Files (*.*)\0*\0\0\0")
188
189/*
2ac3322e 190 * On some versions of Windows, it has been known for WM_TIMER to
191 * occasionally get its callback time simply wrong, and call us
192 * back several minutes early. Defining these symbols enables
193 * compensation code in timing.c.
194 */
195#define TIMING_SYNC
196#define TIMING_SYNC_TICKCOUNT
197
198/*
7440fd44 199 * winnet.c dynamically loads WinSock 2 or WinSock 1 depending on
200 * what it can get, which means any WinSock routines used outside
201 * that module must be exported from it as function pointers. So
202 * here they are.
203 */
204extern int (WINAPI *p_WSAAsyncSelect)
205 (SOCKET s, HWND hWnd, u_int wMsg, long lEvent);
206extern int (WINAPI *p_WSAEventSelect)
207 (SOCKET s, WSAEVENT hEventObject, long lNetworkEvents);
208extern int (WINAPI *p_select)
209 (int nfds, fd_set FAR * readfds, fd_set FAR * writefds,
210 fd_set FAR *exceptfds, const struct timeval FAR * timeout);
211extern int (WINAPI *p_WSAGetLastError)(void);
212extern int (WINAPI *p_WSAEnumNetworkEvents)
213 (SOCKET s, WSAEVENT hEventObject, LPWSANETWORKEVENTS lpNetworkEvents);
214
39934deb 215extern int socket_writable(SOCKET skt);
216
9f7ebadc 217extern void socket_reselect_all(void);
218
7440fd44 219/*
8c3cd914 220 * Exports from winctrls.c.
221 */
222
223struct ctlpos {
224 HWND hwnd;
225 WPARAM font;
226 int dlu4inpix;
227 int ypos, width;
228 int xoff;
3ac9cd9f 229 int boxystart, boxid;
8c3cd914 230 char *boxtext;
231};
232
ca20bfcf 233/*
c0a81592 234 * Exports from winutils.c.
235 */
9754e5ca 236typedef struct filereq_tag filereq; /* cwd for file requester */
237BOOL request_file(filereq *state, OPENFILENAME *of, int preserve, int save);
238filereq *filereq_new(void);
239void filereq_free(filereq *state);
690695e0 240int message_box(LPCTSTR text, LPCTSTR caption, DWORD style, DWORD helpctxid);
d3a1a808 241void split_into_argv(char *, int *, char ***, char ***);
c0a81592 242
243/*
ca20bfcf 244 * Private structure for prefslist state. Only in the header file
245 * so that we can delegate allocation to callers.
246 */
247struct prefslist {
248 int listid, upbid, dnbid;
249 int srcitem;
250 int dummyitem;
251 int dragging;
252};
253
f7f27309 254/*
fe8abbf4 255 * This structure is passed to event handler functions as the `dlg'
256 * parameter, and hence is passed back to winctrls access functions.
257 */
258struct dlgparam {
259 HWND hwnd; /* the hwnd of the dialog box */
260 struct winctrls *controltrees[8]; /* can have several of these */
261 int nctrltrees;
f6f450e2 262 char *wintitle; /* title of actual window */
fe8abbf4 263 char *errtitle; /* title of error sub-messageboxes */
264 void *data; /* data to pass in refresh events */
265 union control *focused, *lastfocused; /* which ctrl has focus now/before */
4e6d4091 266 char shortcuts[128]; /* track which shortcuts in use */
fe8abbf4 267 int coloursel_wanted; /* has an event handler asked for
268 * a colour selector? */
fe8abbf4 269 struct { unsigned char r, g, b, ok; } coloursel_result; /* 0-255 */
4e6d4091 270 tree234 *privdata; /* stores per-control private data */
fe8abbf4 271 int ended, endresult; /* has the dialog been ended? */
272};
273
274/*
f7f27309 275 * Exports from winctrls.c.
276 */
8c3cd914 277void ctlposinit(struct ctlpos *cp, HWND hwnd,
32874aea 278 int leftborder, int rightborder, int topborder);
ca20bfcf 279HWND doctl(struct ctlpos *cp, RECT r,
32874aea 280 char *wclass, int wstyle, int exstyle, char *wtext, int wid);
8c3cd914 281void bartitle(struct ctlpos *cp, char *name, int id);
3ac9cd9f 282void beginbox(struct ctlpos *cp, char *name, int idbox);
8c3cd914 283void endbox(struct ctlpos *cp);
e73667f3 284void editboxfw(struct ctlpos *cp, int password, char *text,
285 int staticid, int editid);
32874aea 286void radioline(struct ctlpos *cp, char *text, int id, int nacross, ...);
d74d141c 287void bareradioline(struct ctlpos *cp, int nacross, ...);
8c3cd914 288void radiobig(struct ctlpos *cp, char *text, int id, ...);
289void checkbox(struct ctlpos *cp, char *text, int id);
66ee282a 290void statictext(struct ctlpos *cp, char *text, int lines, int id);
8c3cd914 291void staticbtn(struct ctlpos *cp, char *stext, int sid,
32874aea 292 char *btext, int bid);
af282e3b 293void static2btn(struct ctlpos *cp, char *stext, int sid,
294 char *btext1, int bid1, char *btext2, int bid2);
8c3cd914 295void staticedit(struct ctlpos *cp, char *stext,
32874aea 296 int sid, int eid, int percentedit);
2c9c6388 297void staticddl(struct ctlpos *cp, char *stext,
298 int sid, int lid, int percentlist);
b8ae1f0f 299void combobox(struct ctlpos *cp, char *text, int staticid, int listid);
6e522441 300void staticpassedit(struct ctlpos *cp, char *stext,
32874aea 301 int sid, int eid, int percentedit);
6e522441 302void bigeditctrl(struct ctlpos *cp, char *stext,
32874aea 303 int sid, int eid, int lines);
304void ersatztab(struct ctlpos *cp, char *stext, int sid, int lid, int s2id);
8c3cd914 305void editbutton(struct ctlpos *cp, char *stext, int sid,
32874aea 306 int eid, char *btext, int bid);
8c3cd914 307void sesssaver(struct ctlpos *cp, char *text,
32874aea 308 int staticid, int editid, int listid, ...);
8c3cd914 309void envsetter(struct ctlpos *cp, char *stext, int sid,
32874aea 310 char *e1stext, int e1sid, int e1id,
311 char *e2stext, int e2sid, int e2id,
312 int listid, char *b1text, int b1id, char *b2text, int b2id);
8c3cd914 313void charclass(struct ctlpos *cp, char *stext, int sid, int listid,
32874aea 314 char *btext, int bid, int eid, char *s2text, int s2id);
8c3cd914 315void colouredit(struct ctlpos *cp, char *stext, int sid, int listid,
32874aea 316 char *btext, int bid, ...);
fe8abbf4 317void prefslist(struct prefslist *hdl, struct ctlpos *cp, int lines,
318 char *stext, int sid, int listid, int upbid, int dnbid);
ca20bfcf 319int handle_prefslist(struct prefslist *hdl,
320 int *array, int maxmemb,
321 int is_dlmsg, HWND hwnd,
322 WPARAM wParam, LPARAM lParam);
6e522441 323void progressbar(struct ctlpos *cp, int id);
d74d141c 324void fwdsetter(struct ctlpos *cp, int listid, char *stext, int sid,
325 char *e1stext, int e1sid, int e1id,
326 char *e2stext, int e2sid, int e2id,
a4b92c62 327 char *btext, int bid,
328 char *r1text, int r1id, char *r2text, int r2id);
f7f27309 329
fe8abbf4 330#define MAX_SHORTCUTS_PER_CTRL 16
331
332/*
333 * This structure is what's stored for each `union control' in the
334 * portable-dialog interface.
335 */
336struct winctrl {
337 union control *ctrl;
338 /*
339 * The control may have several components at the Windows
340 * level, with different dialog IDs. To avoid needing N
341 * separate platformsidectrl structures (which could be stored
342 * separately in a tree234 so that lookup by ID worked), we
343 * impose the constraint that those IDs must be in a contiguous
344 * block.
345 */
346 int base_id;
347 int num_ids;
348 /*
349 * Remember what keyboard shortcuts were used by this control,
350 * so that when we remove it again we can take them out of the
351 * list in the dlgparam.
352 */
353 char shortcuts[MAX_SHORTCUTS_PER_CTRL];
354 /*
355 * Some controls need a piece of allocated memory in which to
356 * store temporary data about the control.
357 */
358 void *data;
359};
360/*
361 * And this structure holds a set of the above, in two separate
362 * tree234s so that it can find an item by `union control' or by
363 * dialog ID.
364 */
365struct winctrls {
366 tree234 *byctrl, *byid;
367};
d1582b2e 368struct controlset;
369struct controlbox;
370
fe8abbf4 371void winctrl_init(struct winctrls *);
372void winctrl_cleanup(struct winctrls *);
373void winctrl_add(struct winctrls *, struct winctrl *);
374void winctrl_remove(struct winctrls *, struct winctrl *);
375struct winctrl *winctrl_findbyctrl(struct winctrls *, union control *);
376struct winctrl *winctrl_findbyid(struct winctrls *, int);
377struct winctrl *winctrl_findbyindex(struct winctrls *, int);
378void winctrl_layout(struct dlgparam *dp, struct winctrls *wc,
379 struct ctlpos *cp, struct controlset *s, int *id);
380int winctrl_handle_command(struct dlgparam *dp, UINT msg,
381 WPARAM wParam, LPARAM lParam);
d1582b2e 382void winctrl_rem_shortcuts(struct dlgparam *dp, struct winctrl *c);
383int winctrl_context_help(struct dlgparam *dp, HWND hwnd, int id);
384
4e6d4091 385void dp_init(struct dlgparam *dp);
386void dp_add_tree(struct dlgparam *dp, struct winctrls *tree);
387void dp_cleanup(struct dlgparam *dp);
388
d1582b2e 389/*
390 * Exports from wincfg.c.
391 */
392void win_setup_config_box(struct controlbox *b, HWND *hwndp, int has_help,
8a7f1392 393 int midsession, int protocol);
fe8abbf4 394
f7f27309 395/*
396 * Exports from windlg.c.
397 */
398void defuse_showwindow(void);
399int do_config(void);
f89c3294 400int do_reconfig(HWND, int);
f7f27309 401void showeventlog(HWND);
402void showabout(HWND);
f7f27309 403void force_normal(HWND hwnd);
d1582b2e 404void modal_about_box(HWND hwnd);
405void show_help(HWND hwnd);
f7f27309 406
f7f27309 407/*
8ee3ff16 408 * Exports from winmisc.c.
409 */
4c48c989 410extern OSVERSIONINFO osVersion;
411BOOL init_winver(void);
412
8ee3ff16 413/*
f7f27309 414 * Exports from sizetip.c.
415 */
416void UpdateSizeTip(HWND src, int cx, int cy);
417void EnableSizeTip(int bEnable);
418
facd762c 419/*
420 * Exports from unicode.c.
421 */
07b2a9cd 422struct unicode_data;
21d2b241 423void init_ucs(Config *, struct unicode_data *);
facd762c 424
c44bf5bd 425/*
34292b1d 426 * Exports from winhandl.c.
427 */
bdebd7e9 428#define HANDLE_FLAG_OVERLAPPED 1
429#define HANDLE_FLAG_IGNOREEOF 2
799e067e 430#define HANDLE_FLAG_UNITBUFFER 4
34292b1d 431struct handle;
432typedef int (*handle_inputfn_t)(struct handle *h, void *data, int len);
433typedef void (*handle_outputfn_t)(struct handle *h, int new_backlog);
0e03ceff 434struct handle *handle_input_new(HANDLE handle, handle_inputfn_t gotdata,
bdebd7e9 435 void *privdata, int flags);
0e03ceff 436struct handle *handle_output_new(HANDLE handle, handle_outputfn_t sentdata,
bdebd7e9 437 void *privdata, int flags);
34292b1d 438int handle_write(struct handle *h, const void *data, int len);
439HANDLE *handle_get_events(int *nevents);
440void handle_free(struct handle *h);
441void handle_got_event(HANDLE event);
442void handle_unthrottle(struct handle *h, int backlog);
443int handle_backlog(struct handle *h);
0e03ceff 444void *handle_get_privdata(struct handle *h);
34292b1d 445
446/*
c44bf5bd 447 * pageantc.c needs to schedule callbacks for asynchronous agent
448 * requests. This has to be done differently in GUI and console, so
449 * there's an exported function used for the purpose.
450 *
451 * Also, we supply FLAG_SYNCAGENT to force agent requests to be
452 * synchronous in pscp and psftp.
453 */
454void agent_schedule_callback(void (*callback)(void *, void *, int),
455 void *callback_ctx, void *data, int len);
456#define FLAG_SYNCAGENT 0x1000
457
7374c779 458/*
459 * Exports from winser.c.
460 */
461extern Backend serial_backend;
462
f7f27309 463#endif