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