1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330 |
- /*
- * dialog.c - dialogs for PuTTY(tel), including the configuration dialog.
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <limits.h>
- #include <assert.h>
- #include <ctype.h>
- #include <time.h>
- #include "putty.h"
- #include "ssh.h"
- #include "putty-rc.h"
- #include "win-gui-seat.h"
- #include "storage.h"
- #include "dialog.h"
- #include "licence.h"
- #include <commctrl.h>
- #include <commdlg.h>
- #include <shellapi.h>
- #ifdef MSVC4
- #define TVINSERTSTRUCT TV_INSERTSTRUCT
- #define TVITEM TV_ITEM
- #define ICON_BIG 1
- #endif
- typedef struct PortableDialogStuff {
- /*
- * These are the various bits of data required to handle a dialog
- * box that's been built up from the cross-platform dialog.c
- * system.
- */
- /* The 'controlbox' that was returned from the portable setup function */
- struct controlbox *ctrlbox;
- /* The dlgparam that's passed to all the runtime dlg_* functions.
- * Declared as an array of 1 so it's convenient to pass it as a pointer. */
- struct dlgparam dp[1];
- /*
- * Collections of instantiated controls. There can be more than
- * one of these, because sometimes you want to destroy and
- * recreate a subset of them - e.g. when switching panes in the
- * main PuTTY config box, you delete and recreate _most_ of the
- * controls, but not the OK and Cancel buttons at the bottom.
- */
- size_t nctrltrees;
- struct winctrls *ctrltrees;
- /*
- * Flag indicating whether the dialog box has been initialised.
- * Used to suppresss spurious firing of message handlers during
- * setup.
- */
- bool initialised;
- } PortableDialogStuff;
- /*
- * Initialise a PortableDialogStuff, before launching the dialog box.
- */
- static PortableDialogStuff *pds_new(size_t nctrltrees)
- {
- PortableDialogStuff *pds = snew(PortableDialogStuff);
- memset(pds, 0, sizeof(*pds));
- pds->ctrlbox = ctrl_new_box();
- dp_init(pds->dp);
- pds->nctrltrees = nctrltrees;
- pds->ctrltrees = snewn(pds->nctrltrees, struct winctrls);
- for (size_t i = 0; i < pds->nctrltrees; i++) {
- winctrl_init(&pds->ctrltrees[i]);
- dp_add_tree(pds->dp, &pds->ctrltrees[i]);
- }
- pds->dp->errtitle = dupprintf("%s Error", appname);
- pds->initialised = false;
- return pds;
- }
- static void pds_free(PortableDialogStuff *pds)
- {
- ctrl_free_box(pds->ctrlbox);
- dp_cleanup(pds->dp);
- for (size_t i = 0; i < pds->nctrltrees; i++)
- winctrl_cleanup(&pds->ctrltrees[i]);
- sfree(pds->ctrltrees);
- sfree(pds);
- }
- static INT_PTR pds_default_dlgproc(PortableDialogStuff *pds, HWND hwnd,
- UINT msg, WPARAM wParam, LPARAM lParam)
- {
- switch (msg) {
- case WM_LBUTTONUP:
- /*
- * Button release should trigger WM_OK if there was a
- * previous double click on the host CA list.
- */
- ReleaseCapture();
- if (pds->dp->ended)
- ShinyEndDialog(hwnd, pds->dp->endresult ? 1 : 0);
- break;
- case WM_COMMAND:
- case WM_DRAWITEM:
- default: { /* also handle drag list msg here */
- /*
- * Only process WM_COMMAND once the dialog is fully formed.
- */
- int ret;
- if (pds->initialised) {
- ret = winctrl_handle_command(pds->dp, msg, wParam, lParam);
- if (pds->dp->ended && GetCapture() != hwnd)
- ShinyEndDialog(hwnd, pds->dp->endresult ? 1 : 0);
- } else
- ret = 0;
- return ret;
- }
- case WM_HELP:
- if (!winctrl_context_help(pds->dp,
- hwnd, ((LPHELPINFO)lParam)->iCtrlId))
- MessageBeep(0);
- break;
- case WM_CLOSE:
- quit_help(hwnd);
- ShinyEndDialog(hwnd, 0);
- return 0;
- /* Grrr Explorer will maximize Dialogs! */
- case WM_SIZE:
- if (wParam == SIZE_MAXIMIZED)
- force_normal(hwnd);
- return 0;
- }
- return 0;
- }
- static void pds_initdialog_start(PortableDialogStuff *pds, HWND hwnd)
- {
- pds->dp->hwnd = hwnd;
- if (pds->dp->wintitle) /* apply override title, if provided */
- SetWindowText(hwnd, pds->dp->wintitle);
- /* The portable dialog system generally includes the ability to
- * handle context help for particular controls. Enable the
- * relevant window styles if we have a help file available. */
- if (has_help()) {
- LONG_PTR style = GetWindowLongPtr(hwnd, GWL_EXSTYLE);
- SetWindowLongPtr(hwnd, GWL_EXSTYLE, style | WS_EX_CONTEXTHELP);
- } else {
- /* If not, and if the dialog template provided a top-level
- * Help button, delete it */
- HWND item = GetDlgItem(hwnd, IDC_HELPBTN);
- if (item)
- DestroyWindow(item);
- }
- }
- /*
- * Create the panelfuls of controls in the configuration box.
- */
- static void pds_create_controls(
- PortableDialogStuff *pds, size_t which_tree, int base_id,
- int left, int right, int top, char *path)
- {
- struct ctlpos cp;
- ctlposinit(&cp, pds->dp->hwnd, left, right, top);
- for (int index = -1; (index = ctrl_find_path(
- pds->ctrlbox, path, index)) >= 0 ;) {
- struct controlset *s = pds->ctrlbox->ctrlsets[index];
- winctrl_layout(pds->dp, &pds->ctrltrees[which_tree], &cp, s, &base_id);
- }
- }
- static void pds_initdialog_finish(PortableDialogStuff *pds)
- {
- /*
- * Set focus into the first available control in ctrltree #0,
- * which the caller was expected to set up to be the one
- * containing the dialog controls likely to be used first.
- */
- struct winctrl *c;
- for (int i = 0; (c = winctrl_findbyindex(&pds->ctrltrees[0], i)) != NULL;
- i++) {
- if (c->ctrl) {
- dlg_set_focus(c->ctrl, pds->dp);
- break;
- }
- }
- /*
- * Now we've finished creating our initial set of controls,
- * it's safe to actually show the window without risking setup
- * flicker.
- */
- ShowWindow(pds->dp->hwnd, SW_SHOWNORMAL);
- pds->initialised = true;
- }
- #define LOGEVENT_INITIAL_MAX 128
- #define LOGEVENT_CIRCULAR_MAX 128
- static char *events_initial[LOGEVENT_INITIAL_MAX];
- static char *events_circular[LOGEVENT_CIRCULAR_MAX];
- static int ninitial = 0, ncircular = 0, circular_first = 0;
- #define PRINTER_DISABLED_STRING "None (printing disabled)"
- void force_normal(HWND hwnd)
- {
- static bool recurse = false;
- WINDOWPLACEMENT wp;
- if (recurse)
- return;
- recurse = true;
- wp.length = sizeof(wp);
- if (GetWindowPlacement(hwnd, &wp) && wp.showCmd == SW_SHOWMAXIMIZED) {
- wp.showCmd = SW_SHOWNORMAL;
- SetWindowPlacement(hwnd, &wp);
- }
- recurse = false;
- }
- static char *getevent(int i)
- {
- if (i < ninitial)
- return events_initial[i];
- if ((i -= ninitial) < ncircular)
- return events_circular[(circular_first + i) % LOGEVENT_CIRCULAR_MAX];
- return NULL;
- }
- static HWND logbox;
- HWND event_log_window(void) { return logbox; }
- static INT_PTR CALLBACK LogProc(HWND hwnd, UINT msg,
- WPARAM wParam, LPARAM lParam)
- {
- int i;
- switch (msg) {
- case WM_INITDIALOG: {
- char *str = dupprintf("%s Event Log", appname);
- SetWindowText(hwnd, str);
- sfree(str);
- static int tabs[4] = { 78, 108 };
- SendDlgItemMessage(hwnd, IDN_LIST, LB_SETTABSTOPS, 2,
- (LPARAM) tabs);
- for (i = 0; i < ninitial; i++)
- SendDlgItemMessage(hwnd, IDN_LIST, LB_ADDSTRING,
- 0, (LPARAM) events_initial[i]);
- for (i = 0; i < ncircular; i++)
- SendDlgItemMessage(hwnd, IDN_LIST, LB_ADDSTRING,
- 0, (LPARAM) events_circular[(circular_first + i) % LOGEVENT_CIRCULAR_MAX]);
- return 1;
- }
- case WM_COMMAND:
- switch (LOWORD(wParam)) {
- case IDOK:
- case IDCANCEL:
- logbox = NULL;
- SetActiveWindow(GetParent(hwnd));
- DestroyWindow(hwnd);
- return 0;
- case IDN_COPY:
- if (HIWORD(wParam) == BN_CLICKED ||
- HIWORD(wParam) == BN_DOUBLECLICKED) {
- int selcount;
- int *selitems;
- selcount = SendDlgItemMessage(hwnd, IDN_LIST,
- LB_GETSELCOUNT, 0, 0);
- if (selcount == 0) { /* don't even try to copy zero items */
- MessageBeep(0);
- break;
- }
- selitems = snewn(selcount, int);
- if (selitems) {
- int count = SendDlgItemMessage(hwnd, IDN_LIST,
- LB_GETSELITEMS,
- selcount,
- (LPARAM) selitems);
- static const unsigned char sel_nl[] = SEL_NL;
- if (count == 0) { /* can't copy zero stuff */
- MessageBeep(0);
- break;
- }
- strbuf *sb = strbuf_new();
- for (int i = 0; i < count; i++) {
- char *q = getevent(selitems[i]);
- put_datapl(sb, ptrlen_from_asciz(q));
- put_data(sb, sel_nl, sizeof(sel_nl));
- }
- write_aclip(hwnd, CLIP_SYSTEM, sb->s, sb->len);
- strbuf_free(sb);
- sfree(selitems);
- for (i = 0; i < (ninitial + ncircular); i++)
- SendDlgItemMessage(hwnd, IDN_LIST, LB_SETSEL,
- false, i);
- }
- }
- return 0;
- }
- return 0;
- case WM_CLOSE:
- logbox = NULL;
- SetActiveWindow(GetParent(hwnd));
- DestroyWindow(hwnd);
- return 0;
- }
- return 0;
- }
- static INT_PTR CALLBACK LicenceProc(HWND hwnd, UINT msg,
- WPARAM wParam, LPARAM lParam)
- {
- switch (msg) {
- case WM_INITDIALOG: {
- char *str = dupprintf("%s Licence", appname);
- SetWindowText(hwnd, str);
- sfree(str);
- SetDlgItemText(hwnd, IDA_TEXT, LICENCE_TEXT("\r\n\r\n"));
- return 1;
- }
- case WM_COMMAND:
- switch (LOWORD(wParam)) {
- case IDOK:
- case IDCANCEL:
- EndDialog(hwnd, 1);
- return 0;
- }
- return 0;
- case WM_CLOSE:
- EndDialog(hwnd, 1);
- return 0;
- }
- return 0;
- }
- static INT_PTR CALLBACK AboutProc(HWND hwnd, UINT msg,
- WPARAM wParam, LPARAM lParam)
- {
- char *str;
- switch (msg) {
- case WM_INITDIALOG: {
- str = dupprintf("About %s", appname);
- SetWindowText(hwnd, str);
- sfree(str);
- char *buildinfo_text = buildinfo("\r\n");
- char *text = dupprintf(
- "%s\r\n\r\n%s\r\n\r\n%s\r\n\r\n%s",
- appname, ver, buildinfo_text,
- "\251 " SHORT_COPYRIGHT_DETAILS ". All rights reserved.");
- sfree(buildinfo_text);
- SetDlgItemText(hwnd, IDA_TEXT, text);
- MakeDlgItemBorderless(hwnd, IDA_TEXT);
- sfree(text);
- return 1;
- }
- case WM_COMMAND:
- switch (LOWORD(wParam)) {
- case IDOK:
- case IDCANCEL:
- EndDialog(hwnd, true);
- return 0;
- case IDA_LICENCE:
- EnableWindow(hwnd, 0);
- DialogBox(hinst, MAKEINTRESOURCE(IDD_LICENCEBOX),
- hwnd, LicenceProc);
- EnableWindow(hwnd, 1);
- SetActiveWindow(hwnd);
- return 0;
- case IDA_WEB:
- /* Load web browser */
- ShellExecute(hwnd, "open",
- "https://www.chiark.greenend.org.uk/~sgtatham/putty/",
- 0, 0, SW_SHOWDEFAULT);
- return 0;
- }
- return 0;
- case WM_CLOSE:
- EndDialog(hwnd, true);
- return 0;
- }
- return 0;
- }
- /*
- * Null dialog procedure.
- */
- static INT_PTR CALLBACK NullDlgProc(HWND hwnd, UINT msg,
- WPARAM wParam, LPARAM lParam)
- {
- return 0;
- }
- enum {
- IDCX_ABOUT = IDC_ABOUT,
- IDCX_TVSTATIC,
- IDCX_TREEVIEW,
- IDCX_STDBASE,
- IDCX_PANELBASE = IDCX_STDBASE + 32
- };
- struct treeview_faff {
- HWND treeview;
- HTREEITEM lastat[4];
- };
- static HTREEITEM treeview_insert(struct treeview_faff *faff,
- int level, char *text, char *path)
- {
- TVINSERTSTRUCT ins;
- int i;
- HTREEITEM newitem;
- ins.hParent = (level > 0 ? faff->lastat[level - 1] : TVI_ROOT);
- ins.hInsertAfter = faff->lastat[level];
- #if _WIN32_IE >= 0x0400 && defined NONAMELESSUNION
- #define INSITEM DUMMYUNIONNAME.item
- #else
- #define INSITEM item
- #endif
- ins.INSITEM.mask = TVIF_TEXT | TVIF_PARAM;
- ins.INSITEM.pszText = text;
- ins.INSITEM.cchTextMax = strlen(text)+1;
- ins.INSITEM.lParam = (LPARAM)path;
- newitem = TreeView_InsertItem(faff->treeview, &ins);
- if (level > 0)
- TreeView_Expand(faff->treeview, faff->lastat[level - 1],
- (level > 1 ? TVE_COLLAPSE : TVE_EXPAND));
- faff->lastat[level] = newitem;
- for (i = level + 1; i < 4; i++)
- faff->lastat[i] = NULL;
- return newitem;
- }
- const char *dialog_box_demo_screenshot_filename = NULL;
- /* ctrltrees indices for the main dialog box */
- enum {
- TREE_PANEL, /* things we swap out every time treeview selects a new pane */
- TREE_BASE, /* fixed things at the bottom like OK and Cancel buttons */
- };
- /*
- * This function is the configuration box.
- * (Being a dialog procedure, in general it returns 0 if the default
- * dialog processing should be performed, and 1 if it should not.)
- */
- static INT_PTR GenericMainDlgProc(HWND hwnd, UINT msg, WPARAM wParam,
- LPARAM lParam, void *ctx)
- {
- PortableDialogStuff *pds = (PortableDialogStuff *)ctx;
- const int DEMO_SCREENSHOT_TIMER_ID = 1230;
- HWND treeview;
- struct treeview_faff tvfaff;
- switch (msg) {
- case WM_INITDIALOG:
- pds_initdialog_start(pds, hwnd);
- pds_create_controls(pds, TREE_BASE, IDCX_STDBASE, 3, 3, 235, "");
- SendMessage(hwnd, WM_SETICON, (WPARAM) ICON_BIG,
- (LPARAM) LoadIcon(hinst, MAKEINTRESOURCE(IDI_CFGICON)));
- centre_window(hwnd);
- /*
- * Create the tree view.
- */
- {
- RECT r;
- WPARAM font;
- HWND tvstatic;
- r.left = 3;
- r.right = r.left + 95;
- r.top = 3;
- r.bottom = r.top + 10;
- MapDialogRect(hwnd, &r);
- tvstatic = CreateWindowEx(0, "STATIC", "Cate&gory:",
- WS_CHILD | WS_VISIBLE,
- r.left, r.top,
- r.right - r.left, r.bottom - r.top,
- hwnd, (HMENU) IDCX_TVSTATIC, hinst,
- NULL);
- font = SendMessage(hwnd, WM_GETFONT, 0, 0);
- SendMessage(tvstatic, WM_SETFONT, font, MAKELPARAM(true, 0));
- r.left = 3;
- r.right = r.left + 95;
- r.top = 13;
- r.bottom = r.top + 219;
- MapDialogRect(hwnd, &r);
- treeview = CreateWindowEx(WS_EX_CLIENTEDGE, WC_TREEVIEW, "",
- WS_CHILD | WS_VISIBLE |
- WS_TABSTOP | TVS_HASLINES |
- TVS_DISABLEDRAGDROP | TVS_HASBUTTONS
- | TVS_LINESATROOT |
- TVS_SHOWSELALWAYS, r.left, r.top,
- r.right - r.left, r.bottom - r.top,
- hwnd, (HMENU) IDCX_TREEVIEW, hinst,
- NULL);
- font = SendMessage(hwnd, WM_GETFONT, 0, 0);
- SendMessage(treeview, WM_SETFONT, font, MAKELPARAM(true, 0));
- tvfaff.treeview = treeview;
- memset(tvfaff.lastat, 0, sizeof(tvfaff.lastat));
- }
- /*
- * Set up the tree view contents.
- */
- {
- HTREEITEM hfirst = NULL;
- int i;
- char *path = NULL;
- char *firstpath = NULL;
- for (i = 0; i < pds->ctrlbox->nctrlsets; i++) {
- struct controlset *s = pds->ctrlbox->ctrlsets[i];
- HTREEITEM item;
- int j;
- char *c;
- if (!s->pathname[0])
- continue;
- j = path ? ctrl_path_compare(s->pathname, path) : 0;
- if (j == INT_MAX)
- continue; /* same path, nothing to add to tree */
- /*
- * We expect never to find an implicit path
- * component. For example, we expect never to see
- * A/B/C followed by A/D/E, because that would
- * _implicitly_ create A/D. All our path prefixes
- * are expected to contain actual controls and be
- * selectable in the treeview; so we would expect
- * to see A/D _explicitly_ before encountering
- * A/D/E.
- */
- assert(j == ctrl_path_elements(s->pathname) - 1);
- c = strrchr(s->pathname, '/');
- if (!c)
- c = s->pathname;
- else
- c++;
- item = treeview_insert(&tvfaff, j, c, s->pathname);
- if (!hfirst) {
- hfirst = item;
- firstpath = s->pathname;
- }
- path = s->pathname;
- }
- /*
- * Put the treeview selection on to the first panel in the
- * ctrlbox.
- */
- TreeView_SelectItem(treeview, hfirst);
- /*
- * And create the actual control set for that panel, to
- * match the initial treeview selection.
- */
- assert(firstpath); /* config.c must have given us _something_ */
- pds_create_controls(pds, TREE_PANEL, IDCX_PANELBASE,
- 100, 3, 13, firstpath);
- dlg_refresh(NULL, pds->dp); /* and set up control values */
- }
- if (dialog_box_demo_screenshot_filename)
- SetTimer(hwnd, DEMO_SCREENSHOT_TIMER_ID, TICKSPERSEC, NULL);
- pds_initdialog_finish(pds);
- return 0;
- case WM_TIMER:
- if (dialog_box_demo_screenshot_filename &&
- (UINT_PTR)wParam == DEMO_SCREENSHOT_TIMER_ID) {
- KillTimer(hwnd, DEMO_SCREENSHOT_TIMER_ID);
- char *err = save_screenshot(
- hwnd, dialog_box_demo_screenshot_filename);
- if (err) {
- MessageBox(hwnd, err, "Demo screenshot failure",
- MB_OK | MB_ICONERROR);
- sfree(err);
- }
- ShinyEndDialog(hwnd, 0);
- }
- return 0;
- case WM_NOTIFY:
- if (LOWORD(wParam) == IDCX_TREEVIEW &&
- ((LPNMHDR) lParam)->code == TVN_SELCHANGED) {
- /*
- * Selection-change events on the treeview cause us to do
- * a flurry of control deletion and creation - but only
- * after WM_INITDIALOG has finished. The initial
- * selection-change event(s) during treeview setup are
- * ignored.
- */
- HTREEITEM i;
- TVITEM item;
- char buffer[64];
- if (!pds->initialised)
- return 0;
- i = TreeView_GetSelection(((LPNMHDR) lParam)->hwndFrom);
- SendMessage (hwnd, WM_SETREDRAW, false, 0);
- item.hItem = i;
- item.pszText = buffer;
- item.cchTextMax = sizeof(buffer);
- item.mask = TVIF_TEXT | TVIF_PARAM;
- TreeView_GetItem(((LPNMHDR) lParam)->hwndFrom, &item);
- {
- /* Destroy all controls in the currently visible panel. */
- int k;
- HWND item;
- struct winctrl *c;
- while ((c = winctrl_findbyindex(
- &pds->ctrltrees[TREE_PANEL], 0)) != NULL) {
- for (k = 0; k < c->num_ids; k++) {
- item = GetDlgItem(hwnd, c->base_id + k);
- if (item)
- DestroyWindow(item);
- }
- winctrl_rem_shortcuts(pds->dp, c);
- winctrl_remove(&pds->ctrltrees[TREE_PANEL], c);
- sfree(c->data);
- sfree(c);
- }
- }
- pds_create_controls(pds, TREE_PANEL, IDCX_PANELBASE,
- 100, 3, 13, (char *)item.lParam);
- dlg_refresh(NULL, pds->dp); /* set up control values */
- SendMessage (hwnd, WM_SETREDRAW, true, 0);
- InvalidateRect (hwnd, NULL, true);
- SetFocus(((LPNMHDR) lParam)->hwndFrom); /* ensure focus stays */
- }
- return 0;
- default:
- return pds_default_dlgproc(pds, hwnd, msg, wParam, lParam);
- }
- }
- void modal_about_box(HWND hwnd)
- {
- EnableWindow(hwnd, 0);
- DialogBox(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX), hwnd, AboutProc);
- EnableWindow(hwnd, 1);
- SetActiveWindow(hwnd);
- }
- void show_help(HWND hwnd)
- {
- launch_help(hwnd, NULL);
- }
- void defuse_showwindow(void)
- {
- /*
- * Work around the fact that the app's first call to ShowWindow
- * will ignore the default in favour of the shell-provided
- * setting.
- */
- {
- HWND hwnd;
- hwnd = CreateDialog(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX),
- NULL, NullDlgProc);
- ShowWindow(hwnd, SW_HIDE);
- SetActiveWindow(hwnd);
- DestroyWindow(hwnd);
- }
- }
- bool do_config(Conf *conf)
- {
- bool ret;
- PortableDialogStuff *pds = pds_new(2);
- setup_config_box(pds->ctrlbox, false, 0, 0);
- win_setup_config_box(pds->ctrlbox, &pds->dp->hwnd, has_help(), false, 0);
- pds->dp->wintitle = dupprintf("%s Configuration", appname);
- pds->dp->data = conf;
- dlg_auto_set_fixed_pitch_flag(pds->dp);
- pds->dp->shortcuts['g'] = true; /* the treeview: `Cate&gory' */
- ret = ShinyDialogBox(hinst, MAKEINTRESOURCE(IDD_MAINBOX), "PuTTYConfigBox",
- NULL, GenericMainDlgProc, pds);
- pds_free(pds);
- return ret;
- }
- bool do_reconfig(HWND hwnd, Conf *conf, int protcfginfo)
- {
- Conf *backup_conf;
- bool ret;
- int protocol;
- PortableDialogStuff *pds = pds_new(2);
- backup_conf = conf_copy(conf);
- protocol = conf_get_int(conf, CONF_protocol);
- setup_config_box(pds->ctrlbox, true, protocol, protcfginfo);
- win_setup_config_box(pds->ctrlbox, &pds->dp->hwnd, has_help(),
- true, protocol);
- pds->dp->wintitle = dupprintf("%s Reconfiguration", appname);
- pds->dp->data = conf;
- dlg_auto_set_fixed_pitch_flag(pds->dp);
- pds->dp->shortcuts['g'] = true; /* the treeview: `Cate&gory' */
- ret = ShinyDialogBox(hinst, MAKEINTRESOURCE(IDD_MAINBOX), "PuTTYConfigBox",
- NULL, GenericMainDlgProc, pds);
- pds_free(pds);
- if (!ret)
- conf_copy_into(conf, backup_conf);
- conf_free(backup_conf);
- return ret;
- }
- static void win_gui_eventlog(LogPolicy *lp, const char *string)
- {
- char timebuf[40];
- char **location;
- struct tm tm;
- tm=ltime();
- strftime(timebuf, sizeof(timebuf), "%Y-%m-%d %H:%M:%S\t", &tm);
- if (ninitial < LOGEVENT_INITIAL_MAX)
- location = &events_initial[ninitial];
- else
- location = &events_circular[(circular_first + ncircular) % LOGEVENT_CIRCULAR_MAX];
- if (*location)
- sfree(*location);
- *location = dupcat(timebuf, string);
- if (logbox) {
- int count;
- SendDlgItemMessage(logbox, IDN_LIST, LB_ADDSTRING,
- 0, (LPARAM) *location);
- count = SendDlgItemMessage(logbox, IDN_LIST, LB_GETCOUNT, 0, 0);
- SendDlgItemMessage(logbox, IDN_LIST, LB_SETTOPINDEX, count - 1, 0);
- }
- if (ninitial < LOGEVENT_INITIAL_MAX) {
- ninitial++;
- } else if (ncircular < LOGEVENT_CIRCULAR_MAX) {
- ncircular++;
- } else if (ncircular == LOGEVENT_CIRCULAR_MAX) {
- circular_first = (circular_first + 1) % LOGEVENT_CIRCULAR_MAX;
- sfree(events_circular[circular_first]);
- events_circular[circular_first] = dupstr("..");
- }
- }
- static void win_gui_logging_error(LogPolicy *lp, const char *event)
- {
- WinGuiSeat *wgs = container_of(lp, WinGuiSeat, logpolicy);
- /* Send 'can't open log file' errors to the terminal window.
- * (Marked as stderr, although terminal.c won't care.) */
- seat_stderr_pl(&wgs->seat, ptrlen_from_asciz(event));
- seat_stderr_pl(&wgs->seat, PTRLEN_LITERAL("\r\n"));
- }
- void showeventlog(HWND hwnd)
- {
- if (!logbox) {
- logbox = CreateDialog(hinst, MAKEINTRESOURCE(IDD_LOGBOX),
- hwnd, LogProc);
- ShowWindow(logbox, SW_SHOWNORMAL);
- }
- SetActiveWindow(logbox);
- }
- void showabout(HWND hwnd)
- {
- DialogBox(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX), hwnd, AboutProc);
- }
- struct hostkey_dialog_ctx {
- SeatDialogText *text;
- bool has_title;
- const char *helpctx;
- };
- static INT_PTR HostKeyMoreInfoProc(HWND hwnd, UINT msg, WPARAM wParam,
- LPARAM lParam, void *vctx)
- {
- struct hostkey_dialog_ctx *ctx = (struct hostkey_dialog_ctx *)vctx;
- switch (msg) {
- case WM_INITDIALOG: {
- int index = 100, y = 12;
- WPARAM font = SendMessage(hwnd, WM_GETFONT, 0, 0);
- const char *key = NULL;
- for (SeatDialogTextItem *item = ctx->text->items,
- *end = item + ctx->text->nitems; item < end; item++) {
- switch (item->type) {
- case SDT_MORE_INFO_KEY:
- key = item->text;
- break;
- case SDT_MORE_INFO_VALUE_SHORT:
- case SDT_MORE_INFO_VALUE_BLOB: {
- RECT rk, rv;
- DWORD editstyle = WS_CHILD | WS_VISIBLE | WS_TABSTOP |
- ES_AUTOHSCROLL | ES_READONLY;
- if (item->type == SDT_MORE_INFO_VALUE_BLOB) {
- rk.left = 12;
- rk.right = 376;
- rk.top = y;
- rk.bottom = 8;
- y += 10;
- editstyle |= ES_MULTILINE;
- rv.left = 12;
- rv.right = 376;
- rv.top = y;
- rv.bottom = 64;
- y += 68;
- } else {
- rk.left = 12;
- rk.right = 80;
- rk.top = y+2;
- rk.bottom = 8;
- rv.left = 100;
- rv.right = 288;
- rv.top = y;
- rv.bottom = 12;
- y += 16;
- }
- MapDialogRect(hwnd, &rk);
- HWND ctl = CreateWindowEx(
- 0, "STATIC", key, WS_CHILD | WS_VISIBLE,
- rk.left, rk.top, rk.right, rk.bottom,
- hwnd, (HMENU)(ULONG_PTR)index++, hinst, NULL);
- SendMessage(ctl, WM_SETFONT, font, MAKELPARAM(true, 0));
- MapDialogRect(hwnd, &rv);
- ctl = CreateWindowEx(
- WS_EX_CLIENTEDGE, "EDIT", item->text, editstyle,
- rv.left, rv.top, rv.right, rv.bottom,
- hwnd, (HMENU)(ULONG_PTR)index++, hinst, NULL);
- SendMessage(ctl, WM_SETFONT, font, MAKELPARAM(true, 0));
- break;
- }
- default:
- break;
- }
- }
- /*
- * Now resize the overall window, and move the Close button at
- * the bottom.
- */
- RECT r;
- r.left = 176;
- r.top = y + 10;
- r.right = r.bottom = 0;
- MapDialogRect(hwnd, &r);
- HWND ctl = GetDlgItem(hwnd, IDOK);
- SetWindowPos(ctl, NULL, r.left, r.top, 0, 0,
- SWP_NOSIZE | SWP_NOREDRAW | SWP_NOZORDER);
- r.left = r.top = r.right = 0;
- r.bottom = 300;
- MapDialogRect(hwnd, &r);
- int oldheight = r.bottom;
- r.left = r.top = r.right = 0;
- r.bottom = y + 30;
- MapDialogRect(hwnd, &r);
- int newheight = r.bottom;
- GetWindowRect(hwnd, &r);
- SetWindowPos(hwnd, NULL, 0, 0, r.right - r.left,
- r.bottom - r.top + newheight - oldheight,
- SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER);
- ShowWindow(hwnd, SW_SHOWNORMAL);
- return 1;
- }
- case WM_COMMAND:
- switch (LOWORD(wParam)) {
- case IDOK:
- ShinyEndDialog(hwnd, 0);
- return 0;
- }
- return 0;
- case WM_CLOSE:
- ShinyEndDialog(hwnd, 0);
- return 0;
- }
- return 0;
- }
- static const char *process_seatdialogtext(
- strbuf *dlg_text, const char **scary_heading, SeatDialogText *text)
- {
- const char *dlg_title = "";
- for (SeatDialogTextItem *item = text->items,
- *end = item + text->nitems; item < end; item++) {
- switch (item->type) {
- case SDT_PARA:
- put_fmt(dlg_text, "%s\r\n\r\n", item->text);
- break;
- case SDT_DISPLAY:
- put_fmt(dlg_text, "%s\r\n\r\n", item->text);
- break;
- case SDT_SCARY_HEADING:
- assert(scary_heading != NULL && "only expect a scary heading if "
- "the dialog has somewhere to put it");
- *scary_heading = item->text;
- break;
- case SDT_TITLE:
- dlg_title = item->text;
- break;
- default:
- break;
- }
- }
- /* Trim any trailing newlines */
- while (strbuf_chomp(dlg_text, '\r') || strbuf_chomp(dlg_text, '\n'));
- return dlg_title;
- }
- static INT_PTR HostKeyDialogProc(HWND hwnd, UINT msg,
- WPARAM wParam, LPARAM lParam, void *vctx)
- {
- struct hostkey_dialog_ctx *ctx = (struct hostkey_dialog_ctx *)vctx;
- switch (msg) {
- case WM_INITDIALOG: {
- strbuf *dlg_text = strbuf_new();
- const char *scary_heading = NULL;
- const char *dlg_title = process_seatdialogtext(
- dlg_text, &scary_heading, ctx->text);
- LPCTSTR iconid = IDI_QUESTION;
- if (scary_heading) {
- SetDlgItemText(hwnd, IDC_HK_TITLE, scary_heading);
- iconid = IDI_WARNING;
- }
- SetDlgItemText(hwnd, IDC_HK_TEXT, dlg_text->s);
- MakeDlgItemBorderless(hwnd, IDC_HK_TEXT);
- strbuf_free(dlg_text);
- SetWindowText(hwnd, dlg_title);
- if (!ctx->has_title) {
- HWND item = GetDlgItem(hwnd, IDC_HK_TITLE);
- if (item)
- DestroyWindow(item);
- }
- /*
- * Find out how tall the text in the edit control really ended
- * up (after line wrapping), and adjust the height of the
- * whole box to match it.
- */
- int height = SendDlgItemMessage(hwnd, IDC_HK_TEXT,
- EM_GETLINECOUNT, 0, 0);
- height *= 8; /* height of a text line, by definition of dialog units */
- int edittop = ctx->has_title ? 40 : 20;
- RECT r;
- r.left = 40;
- r.top = edittop;
- r.right = 290;
- r.bottom = height;
- MapDialogRect(hwnd, &r);
- SetWindowPos(GetDlgItem(hwnd, IDC_HK_TEXT), NULL,
- r.left, r.top, r.right, r.bottom,
- SWP_NOREDRAW | SWP_NOZORDER);
- static const struct {
- int id, x;
- } buttons[] = {
- { IDCANCEL, 288 },
- { IDC_HK_ACCEPT, 168 },
- { IDC_HK_ONCE, 216 },
- { IDC_HK_MOREINFO, 60 },
- { IDHELP, 12 },
- };
- for (size_t i = 0; i < lenof(buttons); i++) {
- HWND ctl = GetDlgItem(hwnd, buttons[i].id);
- r.left = buttons[i].x;
- r.top = edittop + height + 20;
- r.right = r.bottom = 0;
- MapDialogRect(hwnd, &r);
- SetWindowPos(ctl, NULL, r.left, r.top, 0, 0,
- SWP_NOSIZE | SWP_NOREDRAW | SWP_NOZORDER);
- }
- r.left = r.top = r.right = 0;
- r.bottom = 240;
- MapDialogRect(hwnd, &r);
- int oldheight = r.bottom;
- r.left = r.top = r.right = 0;
- r.bottom = edittop + height + 40;
- MapDialogRect(hwnd, &r);
- int newheight = r.bottom;
- GetWindowRect(hwnd, &r);
- SetWindowPos(hwnd, NULL, 0, 0, r.right - r.left,
- r.bottom - r.top + newheight - oldheight,
- SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER);
- HANDLE icon = LoadImage(
- NULL, iconid, IMAGE_ICON,
- GetSystemMetrics(SM_CXICON), GetSystemMetrics(SM_CYICON),
- LR_SHARED);
- SendDlgItemMessage(hwnd, IDC_HK_ICON, STM_SETICON, (WPARAM)icon, 0);
- if (!has_help()) {
- HWND item = GetDlgItem(hwnd, IDHELP);
- if (item)
- DestroyWindow(item);
- }
- ShowWindow(hwnd, SW_SHOWNORMAL);
- return 1;
- }
- case WM_CTLCOLORSTATIC: {
- HDC hdc = (HDC)wParam;
- HWND control = (HWND)lParam;
- if (GetWindowLongPtr(control, GWLP_ID) == IDC_HK_TITLE &&
- ctx->has_title) {
- SetBkMode(hdc, TRANSPARENT);
- HFONT prev_font = (HFONT)SelectObject(
- hdc, (HFONT)GetStockObject(SYSTEM_FONT));
- LOGFONT lf;
- if (GetObject(prev_font, sizeof(lf), &lf)) {
- lf.lfWeight = FW_BOLD;
- lf.lfHeight = lf.lfHeight * 3 / 2;
- HFONT bold_font = CreateFontIndirect(&lf);
- if (bold_font)
- SelectObject(hdc, bold_font);
- }
- return (INT_PTR)GetSysColorBrush(COLOR_BTNFACE);
- }
- return 0;
- }
- case WM_COMMAND:
- switch (LOWORD(wParam)) {
- case IDC_HK_ACCEPT:
- case IDC_HK_ONCE:
- case IDCANCEL:
- ShinyEndDialog(hwnd, LOWORD(wParam));
- return 0;
- case IDHELP: {
- launch_help(hwnd, ctx->helpctx);
- return 0;
- }
- case IDC_HK_MOREINFO: {
- ShinyDialogBox(hinst, MAKEINTRESOURCE(IDD_HK_MOREINFO),
- "PuTTYHostKeyMoreInfo", hwnd,
- HostKeyMoreInfoProc, ctx);
- }
- }
- return 0;
- case WM_CLOSE:
- ShinyEndDialog(hwnd, IDCANCEL);
- return 0;
- }
- return 0;
- }
- const SeatDialogPromptDescriptions *win_seat_prompt_descriptions(Seat *seat)
- {
- static const SeatDialogPromptDescriptions descs = {
- .hk_accept_action = "press \"Accept\"",
- .hk_connect_once_action = "press \"Connect Once\"",
- .hk_cancel_action = "press \"Cancel\"",
- .hk_cancel_action_Participle = "Pressing \"Cancel\"",
- .weak_accept_action = "press \"Yes\"",
- .weak_cancel_action = "press \"No\"",
- };
- return &descs;
- }
- SeatPromptResult win_seat_confirm_ssh_host_key(
- Seat *seat, const char *host, int port, const char *keytype,
- char *keystr, SeatDialogText *text, HelpCtx helpctx,
- void (*callback)(void *ctx, SeatPromptResult result), void *cbctx)
- {
- WinGuiSeat *wgs = container_of(seat, WinGuiSeat, seat);
- struct hostkey_dialog_ctx ctx[1];
- ctx->text = text;
- ctx->helpctx = helpctx;
- int mbret = ShinyDialogBox(
- hinst, MAKEINTRESOURCE(IDD_HOSTKEY), "PuTTYHostKeyDialog",
- wgs->term_hwnd, HostKeyDialogProc, ctx);
- assert(mbret==IDC_HK_ACCEPT || mbret==IDC_HK_ONCE || mbret==IDCANCEL);
- if (mbret == IDC_HK_ACCEPT) {
- store_host_key(seat, host, port, keytype, keystr);
- return SPR_OK;
- } else if (mbret == IDC_HK_ONCE) {
- return SPR_OK;
- }
- return SPR_USER_ABORT;
- }
- /*
- * Ask whether the selected algorithm is acceptable (since it was
- * below the configured 'warn' threshold).
- */
- SeatPromptResult win_seat_confirm_weak_crypto_primitive(
- Seat *seat, SeatDialogText *text,
- void (*callback)(void *ctx, SeatPromptResult result), void *ctx)
- {
- strbuf *dlg_text = strbuf_new();
- const char *dlg_title = process_seatdialogtext(dlg_text, NULL, text);
- int mbret = MessageBox(NULL, dlg_text->s, dlg_title,
- MB_ICONWARNING | MB_YESNO | MB_DEFBUTTON2);
- socket_reselect_all();
- strbuf_free(dlg_text);
- if (mbret == IDYES)
- return SPR_OK;
- else
- return SPR_USER_ABORT;
- }
- SeatPromptResult win_seat_confirm_weak_cached_hostkey(
- Seat *seat, SeatDialogText *text,
- void (*callback)(void *ctx, SeatPromptResult result), void *ctx)
- {
- strbuf *dlg_text = strbuf_new();
- const char *dlg_title = process_seatdialogtext(dlg_text, NULL, text);
- int mbret = MessageBox(NULL, dlg_text->s, dlg_title,
- MB_ICONWARNING | MB_YESNO | MB_DEFBUTTON2);
- socket_reselect_all();
- strbuf_free(dlg_text);
- if (mbret == IDYES)
- return SPR_OK;
- else
- return SPR_USER_ABORT;
- }
- /*
- * Ask whether to wipe a session log file before writing to it.
- * Returns 2 for wipe, 1 for append, 0 for cancel (don't log).
- */
- static int win_gui_askappend(LogPolicy *lp, Filename *filename,
- void (*callback)(void *ctx, int result),
- void *ctx)
- {
- static const char msgtemplate[] =
- "The session log file \"%.*s\" already exists.\n"
- "You can overwrite it with a new session log,\n"
- "append your session log to the end of it,\n"
- "or disable session logging for this session.\n"
- "Hit Yes to wipe the file, No to append to it,\n"
- "or Cancel to disable logging.";
- char *message;
- char *mbtitle;
- int mbret;
- message = dupprintf(msgtemplate, FILENAME_MAX, filename->utf8path);
- mbtitle = dupprintf("%s Log to File", appname);
- mbret = message_box(NULL, message, mbtitle,
- MB_ICONQUESTION | MB_YESNOCANCEL | MB_DEFBUTTON3,
- true, 0);
- socket_reselect_all();
- sfree(message);
- sfree(mbtitle);
- if (mbret == IDYES)
- return 2;
- else if (mbret == IDNO)
- return 1;
- else
- return 0;
- }
- const LogPolicyVtable win_gui_logpolicy_vt = {
- .eventlog = win_gui_eventlog,
- .askappend = win_gui_askappend,
- .logging_error = win_gui_logging_error,
- .verbose = null_lp_verbose_yes,
- };
- /*
- * Warn about the obsolescent key file format.
- *
- * Uniquely among these functions, this one does _not_ expect a
- * frontend handle. This means that if PuTTY is ported to a
- * platform which requires frontend handles, this function will be
- * an anomaly. Fortunately, the problem it addresses will not have
- * been present on that platform, so it can plausibly be
- * implemented as an empty function.
- */
- void old_keyfile_warning(void)
- {
- static const char mbtitle[] = "%s Key File Warning";
- static const char message[] =
- "You are loading an SSH-2 private key which has an\n"
- "old version of the file format. This means your key\n"
- "file is not fully tamperproof. Future versions of\n"
- "%s may stop supporting this private key format,\n"
- "so we recommend you convert your key to the new\n"
- "format.\n"
- "\n"
- "You can perform this conversion by loading the key\n"
- "into PuTTYgen and then saving it again.";
- char *msg, *title;
- msg = dupprintf(message, appname);
- title = dupprintf(mbtitle, appname);
- MessageBox(NULL, msg, title, MB_OK);
- socket_reselect_all();
- sfree(msg);
- sfree(title);
- }
- static INT_PTR CAConfigProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam,
- void *ctx)
- {
- PortableDialogStuff *pds = (PortableDialogStuff *)ctx;
- switch (msg) {
- case WM_INITDIALOG:
- pds_initdialog_start(pds, hwnd);
- SendMessage(hwnd, WM_SETICON, (WPARAM) ICON_BIG,
- (LPARAM) LoadIcon(hinst, MAKEINTRESOURCE(IDI_CFGICON)));
- centre_window(hwnd);
- pds_create_controls(pds, 0, IDCX_PANELBASE, 3, 3, 3, "Main");
- pds_create_controls(pds, 0, IDCX_STDBASE, 3, 3, 243, "");
- dlg_refresh(NULL, pds->dp); /* and set up control values */
- pds_initdialog_finish(pds);
- return 0;
- default:
- return pds_default_dlgproc(pds, hwnd, msg, wParam, lParam);
- }
- }
- void show_ca_config_box(dlgparam *dp)
- {
- PortableDialogStuff *pds = pds_new(1);
- setup_ca_config_box(pds->ctrlbox);
- ShinyDialogBox(hinst, MAKEINTRESOURCE(IDD_CA_CONFIG), "PuTTYConfigBox",
- dp ? dp->hwnd : NULL, CAConfigProc, pds);
- pds_free(pds);
- }
|