1999-01-08 16:02:13 +03:00
|
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <commdlg.h>
|
2000-09-22 17:16:49 +04:00
|
|
|
#ifndef AUTO_WINSOCK
|
|
|
|
#ifdef WINSOCK_TWO
|
|
|
|
#include <winsock2.h>
|
|
|
|
#else
|
1999-01-08 16:02:13 +03:00
|
|
|
#include <winsock.h>
|
2000-09-22 17:16:49 +04:00
|
|
|
#endif
|
|
|
|
#endif
|
1999-01-08 16:02:13 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "ssh.h"
|
1999-07-06 23:42:57 +04:00
|
|
|
#include "putty.h"
|
1999-01-08 16:02:13 +03:00
|
|
|
#include "win_res.h"
|
2000-09-27 19:21:04 +04:00
|
|
|
#include "storage.h"
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-10-02 16:24:58 +04:00
|
|
|
#define NPANELS 9
|
|
|
|
#define MAIN_NPANELS 9
|
|
|
|
#define RECONF_NPANELS 6
|
1999-01-08 16:02:13 +03:00
|
|
|
|
1999-11-09 14:10:04 +03:00
|
|
|
static char **events = NULL;
|
|
|
|
static int nevents = 0, negsize = 0;
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static HWND logbox = NULL, abtbox = NULL;
|
|
|
|
|
2000-09-27 20:21:52 +04:00
|
|
|
static void gpps(void *handle, char *name, char *def, char *val, int len) {
|
|
|
|
if (!read_setting_s(handle, name, val, len)) {
|
1999-01-08 16:02:13 +03:00
|
|
|
strncpy(val, def, len);
|
|
|
|
val[len-1] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-09-27 20:21:52 +04:00
|
|
|
static void gppi(void *handle, char *name, int def, int *i) {
|
|
|
|
*i = read_setting_i(handle, name, def);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static HINSTANCE hinst;
|
|
|
|
|
1999-02-18 13:39:23 +03:00
|
|
|
static int readytogo;
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static void save_settings (char *section, int do_host) {
|
|
|
|
int i;
|
|
|
|
char *p;
|
2000-09-27 20:21:52 +04:00
|
|
|
void *sesskey;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-09-27 20:21:52 +04:00
|
|
|
sesskey = open_settings_w(section);
|
|
|
|
if (!sesskey)
|
|
|
|
return;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_i (sesskey, "Present", 1);
|
1999-01-08 16:02:13 +03:00
|
|
|
if (do_host) {
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_s (sesskey, "HostName", cfg.host);
|
|
|
|
write_setting_i (sesskey, "PortNumber", cfg.port);
|
2000-03-15 18:08:48 +03:00
|
|
|
p = "raw";
|
2000-06-23 13:44:15 +04:00
|
|
|
for (i = 0; backends[i].name != NULL; i++)
|
2000-03-15 18:08:48 +03:00
|
|
|
if (backends[i].protocol == cfg.protocol) {
|
|
|
|
p = backends[i].name;
|
|
|
|
break;
|
|
|
|
}
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_s (sesskey, "Protocol", p);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_i (sesskey, "CloseOnExit", !!cfg.close_on_exit);
|
|
|
|
write_setting_i (sesskey, "WarnOnClose", !!cfg.warn_on_close);
|
|
|
|
write_setting_s (sesskey, "TerminalType", cfg.termtype);
|
|
|
|
write_setting_s (sesskey, "TerminalSpeed", cfg.termspeed);
|
1999-01-08 16:02:13 +03:00
|
|
|
{
|
1999-01-08 16:10:19 +03:00
|
|
|
char buf[2*sizeof(cfg.environmt)], *p, *q;
|
1999-01-08 16:02:13 +03:00
|
|
|
p = buf;
|
1999-01-08 16:10:19 +03:00
|
|
|
q = cfg.environmt;
|
1999-01-08 16:02:13 +03:00
|
|
|
while (*q) {
|
|
|
|
while (*q) {
|
|
|
|
int c = *q++;
|
|
|
|
if (c == '=' || c == ',' || c == '\\')
|
|
|
|
*p++ = '\\';
|
|
|
|
if (c == '\t')
|
|
|
|
c = '=';
|
|
|
|
*p++ = c;
|
|
|
|
}
|
|
|
|
*p++ = ',';
|
|
|
|
q++;
|
|
|
|
}
|
|
|
|
*p = '\0';
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_s (sesskey, "Environment", buf);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_s (sesskey, "UserName", cfg.username);
|
|
|
|
write_setting_i (sesskey, "NoPTY", cfg.nopty);
|
|
|
|
write_setting_i (sesskey, "AgentFwd", cfg.agentfwd);
|
|
|
|
write_setting_s (sesskey, "RemoteCmd", cfg.remote_cmd);
|
|
|
|
write_setting_s (sesskey, "Cipher", cfg.cipher == CIPHER_BLOWFISH ? "blowfish" :
|
1999-10-25 12:59:40 +04:00
|
|
|
cfg.cipher == CIPHER_DES ? "des" : "3des");
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_i (sesskey, "AuthTIS", cfg.try_tis_auth);
|
|
|
|
write_setting_i (sesskey, "SshProt", cfg.sshprot);
|
|
|
|
write_setting_s (sesskey, "PublicKeyFile", cfg.keyfile);
|
2000-10-02 19:22:41 +04:00
|
|
|
write_setting_s (sesskey, "RemoteCommand", cfg.remote_cmd);
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_i (sesskey, "RFCEnviron", cfg.rfc_environ);
|
|
|
|
write_setting_i (sesskey, "BackspaceIsDelete", cfg.bksp_is_delete);
|
|
|
|
write_setting_i (sesskey, "RXVTHomeEnd", cfg.rxvt_homeend);
|
|
|
|
write_setting_i (sesskey, "LinuxFunctionKeys", cfg.funky_type);
|
|
|
|
write_setting_i (sesskey, "ApplicationCursorKeys", cfg.app_cursor);
|
|
|
|
write_setting_i (sesskey, "ApplicationKeypad", cfg.app_keypad);
|
|
|
|
write_setting_i (sesskey, "NetHackKeypad", cfg.nethack_keypad);
|
|
|
|
write_setting_i (sesskey, "AltF4", cfg.alt_f4);
|
|
|
|
write_setting_i (sesskey, "AltSpace", cfg.alt_space);
|
|
|
|
write_setting_i (sesskey, "LdiscTerm", cfg.ldisc_term);
|
|
|
|
write_setting_i (sesskey, "BlinkCur", cfg.blink_cur);
|
|
|
|
write_setting_i (sesskey, "Beep", cfg.beep);
|
|
|
|
write_setting_i (sesskey, "ScrollbackLines", cfg.savelines);
|
|
|
|
write_setting_i (sesskey, "DECOriginMode", cfg.dec_om);
|
|
|
|
write_setting_i (sesskey, "AutoWrapMode", cfg.wrap_mode);
|
|
|
|
write_setting_i (sesskey, "LFImpliesCR", cfg.lfhascr);
|
|
|
|
write_setting_i (sesskey, "WinNameAlways", cfg.win_name_always);
|
2000-10-02 16:24:58 +04:00
|
|
|
write_setting_s (sesskey, "WinTitle", cfg.wintitle);
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_i (sesskey, "TermWidth", cfg.width);
|
|
|
|
write_setting_i (sesskey, "TermHeight", cfg.height);
|
|
|
|
write_setting_s (sesskey, "Font", cfg.font);
|
|
|
|
write_setting_i (sesskey, "FontIsBold", cfg.fontisbold);
|
|
|
|
write_setting_i (sesskey, "FontCharSet", cfg.fontcharset);
|
|
|
|
write_setting_i (sesskey, "FontHeight", cfg.fontheight);
|
|
|
|
write_setting_i (sesskey, "FontVTMode", cfg.vtmode);
|
|
|
|
write_setting_i (sesskey, "TryPalette", cfg.try_palette);
|
|
|
|
write_setting_i (sesskey, "BoldAsColour", cfg.bold_colour);
|
1999-01-08 16:02:13 +03:00
|
|
|
for (i=0; i<22; i++) {
|
|
|
|
char buf[20], buf2[30];
|
|
|
|
sprintf(buf, "Colour%d", i);
|
|
|
|
sprintf(buf2, "%d,%d,%d", cfg.colours[i][0],
|
|
|
|
cfg.colours[i][1], cfg.colours[i][2]);
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_s (sesskey, buf, buf2);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_i (sesskey, "MouseIsXterm", cfg.mouse_is_xterm);
|
1999-01-08 16:02:13 +03:00
|
|
|
for (i=0; i<256; i+=32) {
|
|
|
|
char buf[20], buf2[256];
|
|
|
|
int j;
|
|
|
|
sprintf(buf, "Wordness%d", i);
|
|
|
|
*buf2 = '\0';
|
|
|
|
for (j=i; j<i+32; j++) {
|
|
|
|
sprintf(buf2+strlen(buf2), "%s%d",
|
|
|
|
(*buf2 ? "," : ""), cfg.wordness[j]);
|
|
|
|
}
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_s (sesskey, buf, buf2);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
2000-09-27 20:21:52 +04:00
|
|
|
write_setting_i (sesskey, "KoiWinXlat", cfg.xlat_enablekoiwin);
|
|
|
|
write_setting_i (sesskey, "88592Xlat", cfg.xlat_88592w1250);
|
|
|
|
write_setting_i (sesskey, "CapsLockCyr", cfg.xlat_capslockcyr);
|
|
|
|
write_setting_i (sesskey, "ScrollBar", cfg.scrollbar);
|
|
|
|
write_setting_i (sesskey, "ScrollOnKey", cfg.scroll_on_key);
|
|
|
|
write_setting_i (sesskey, "LockSize", cfg.locksize);
|
|
|
|
write_setting_i (sesskey, "BCE", cfg.bce);
|
|
|
|
write_setting_i (sesskey, "BlinkText", cfg.blinktext);
|
|
|
|
|
|
|
|
close_settings_w(sesskey);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void load_settings (char *section, int do_host) {
|
|
|
|
int i;
|
1999-10-27 18:28:11 +04:00
|
|
|
char prot[10];
|
2000-09-27 20:21:52 +04:00
|
|
|
void *sesskey;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-09-27 20:21:52 +04:00
|
|
|
sesskey = open_settings_r(section);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
1999-10-27 18:28:11 +04:00
|
|
|
gpps (sesskey, "HostName", "", cfg.host, sizeof(cfg.host));
|
|
|
|
gppi (sesskey, "PortNumber", default_port, &cfg.port);
|
2000-03-15 18:08:48 +03:00
|
|
|
|
1999-10-27 18:28:11 +04:00
|
|
|
gpps (sesskey, "Protocol", "default", prot, 10);
|
2000-03-15 18:08:48 +03:00
|
|
|
cfg.protocol = default_protocol;
|
2000-06-23 13:44:15 +04:00
|
|
|
for (i = 0; backends[i].name != NULL; i++)
|
2000-03-15 18:08:48 +03:00
|
|
|
if (!strcmp(prot, backends[i].name)) {
|
|
|
|
cfg.protocol = backends[i].protocol;
|
|
|
|
break;
|
|
|
|
}
|
1999-10-27 18:28:11 +04:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
gppi (sesskey, "CloseOnExit", 1, &cfg.close_on_exit);
|
1999-11-05 12:50:49 +03:00
|
|
|
gppi (sesskey, "WarnOnClose", 1, &cfg.warn_on_close);
|
1999-01-08 16:02:13 +03:00
|
|
|
gpps (sesskey, "TerminalType", "xterm", cfg.termtype,
|
|
|
|
sizeof(cfg.termtype));
|
|
|
|
gpps (sesskey, "TerminalSpeed", "38400,38400", cfg.termspeed,
|
|
|
|
sizeof(cfg.termspeed));
|
|
|
|
{
|
1999-01-08 16:10:19 +03:00
|
|
|
char buf[2*sizeof(cfg.environmt)], *p, *q;
|
1999-01-08 16:02:13 +03:00
|
|
|
gpps (sesskey, "Environment", "", buf, sizeof(buf));
|
|
|
|
p = buf;
|
2000-04-26 12:07:08 +04:00
|
|
|
q = cfg.environmt;
|
1999-01-08 16:02:13 +03:00
|
|
|
while (*p) {
|
|
|
|
while (*p && *p != ',') {
|
|
|
|
int c = *p++;
|
|
|
|
if (c == '=')
|
|
|
|
c = '\t';
|
|
|
|
if (c == '\\')
|
|
|
|
c = *p++;
|
2000-04-26 12:07:08 +04:00
|
|
|
*q++ = c;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
if (*p == ',') p++;
|
|
|
|
*q++ = '\0';
|
|
|
|
}
|
|
|
|
*q = '\0';
|
|
|
|
}
|
|
|
|
gpps (sesskey, "UserName", "", cfg.username, sizeof(cfg.username));
|
1999-01-15 14:30:40 +03:00
|
|
|
gppi (sesskey, "NoPTY", 0, &cfg.nopty);
|
2000-09-15 15:26:18 +04:00
|
|
|
gppi (sesskey, "AgentFwd", 0, &cfg.agentfwd);
|
2000-09-08 19:24:19 +04:00
|
|
|
gpps (sesskey, "RemoteCmd", "", cfg.remote_cmd, sizeof(cfg.remote_cmd));
|
1999-07-06 23:42:57 +04:00
|
|
|
{
|
|
|
|
char cipher[10];
|
|
|
|
gpps (sesskey, "Cipher", "3des", cipher, 10);
|
|
|
|
if (!strcmp(cipher, "blowfish"))
|
|
|
|
cfg.cipher = CIPHER_BLOWFISH;
|
1999-10-25 12:59:40 +04:00
|
|
|
else if (!strcmp(cipher, "des"))
|
|
|
|
cfg.cipher = CIPHER_DES;
|
1999-07-06 23:42:57 +04:00
|
|
|
else
|
|
|
|
cfg.cipher = CIPHER_3DES;
|
|
|
|
}
|
2000-09-11 13:37:43 +04:00
|
|
|
gppi (sesskey, "SshProt", 1, &cfg.sshprot);
|
1999-11-08 20:42:12 +03:00
|
|
|
gppi (sesskey, "AuthTIS", 0, &cfg.try_tis_auth);
|
2000-09-07 20:33:49 +04:00
|
|
|
gpps (sesskey, "PublicKeyFile", "", cfg.keyfile, sizeof(cfg.keyfile));
|
2000-10-02 19:22:41 +04:00
|
|
|
gpps (sesskey, "RemoteCommand", "", cfg.remote_cmd,
|
|
|
|
sizeof(cfg.remote_cmd));
|
1999-01-08 16:02:13 +03:00
|
|
|
gppi (sesskey, "RFCEnviron", 0, &cfg.rfc_environ);
|
|
|
|
gppi (sesskey, "BackspaceIsDelete", 1, &cfg.bksp_is_delete);
|
|
|
|
gppi (sesskey, "RXVTHomeEnd", 0, &cfg.rxvt_homeend);
|
2000-07-26 16:13:51 +04:00
|
|
|
gppi (sesskey, "LinuxFunctionKeys", 0, &cfg.funky_type);
|
1999-01-08 16:02:13 +03:00
|
|
|
gppi (sesskey, "ApplicationCursorKeys", 0, &cfg.app_cursor);
|
|
|
|
gppi (sesskey, "ApplicationKeypad", 0, &cfg.app_keypad);
|
1999-11-09 14:10:04 +03:00
|
|
|
gppi (sesskey, "NetHackKeypad", 0, &cfg.nethack_keypad);
|
|
|
|
gppi (sesskey, "AltF4", 1, &cfg.alt_f4);
|
|
|
|
gppi (sesskey, "AltSpace", 0, &cfg.alt_space);
|
1999-11-09 15:05:34 +03:00
|
|
|
gppi (sesskey, "LdiscTerm", 0, &cfg.ldisc_term);
|
2000-03-17 13:46:59 +03:00
|
|
|
gppi (sesskey, "BlinkCur", 0, &cfg.blink_cur);
|
2000-06-24 21:00:49 +04:00
|
|
|
gppi (sesskey, "Beep", 1, &cfg.beep);
|
1999-01-08 16:02:13 +03:00
|
|
|
gppi (sesskey, "ScrollbackLines", 200, &cfg.savelines);
|
|
|
|
gppi (sesskey, "DECOriginMode", 0, &cfg.dec_om);
|
|
|
|
gppi (sesskey, "AutoWrapMode", 1, &cfg.wrap_mode);
|
1999-01-15 14:30:40 +03:00
|
|
|
gppi (sesskey, "LFImpliesCR", 0, &cfg.lfhascr);
|
1999-01-08 16:02:13 +03:00
|
|
|
gppi (sesskey, "WinNameAlways", 0, &cfg.win_name_always);
|
2000-10-02 16:24:58 +04:00
|
|
|
gpps (sesskey, "WinTitle", "", cfg.wintitle, sizeof(cfg.wintitle));
|
1999-01-08 16:02:13 +03:00
|
|
|
gppi (sesskey, "TermWidth", 80, &cfg.width);
|
|
|
|
gppi (sesskey, "TermHeight", 24, &cfg.height);
|
|
|
|
gpps (sesskey, "Font", "Courier", cfg.font, sizeof(cfg.font));
|
|
|
|
gppi (sesskey, "FontIsBold", 0, &cfg.fontisbold);
|
1999-11-08 14:08:09 +03:00
|
|
|
gppi (sesskey, "FontCharSet", ANSI_CHARSET, &cfg.fontcharset);
|
1999-01-08 16:02:13 +03:00
|
|
|
gppi (sesskey, "FontHeight", 10, &cfg.fontheight);
|
2000-03-17 13:35:09 +03:00
|
|
|
gppi (sesskey, "FontVTMode", VT_OEMANSI, (int *)&cfg.vtmode);
|
1999-01-08 16:02:13 +03:00
|
|
|
gppi (sesskey, "TryPalette", 0, &cfg.try_palette);
|
|
|
|
gppi (sesskey, "BoldAsColour", 1, &cfg.bold_colour);
|
|
|
|
for (i=0; i<22; i++) {
|
|
|
|
static char *defaults[] = {
|
|
|
|
"187,187,187", "255,255,255", "0,0,0", "85,85,85", "0,0,0",
|
|
|
|
"0,255,0", "0,0,0", "85,85,85", "187,0,0", "255,85,85",
|
|
|
|
"0,187,0", "85,255,85", "187,187,0", "255,255,85", "0,0,187",
|
|
|
|
"85,85,255", "187,0,187", "255,85,255", "0,187,187",
|
|
|
|
"85,255,255", "187,187,187", "255,255,255"
|
|
|
|
};
|
|
|
|
char buf[20], buf2[30];
|
1999-11-22 13:07:24 +03:00
|
|
|
int c0, c1, c2;
|
1999-01-08 16:02:13 +03:00
|
|
|
sprintf(buf, "Colour%d", i);
|
|
|
|
gpps (sesskey, buf, defaults[i], buf2, sizeof(buf2));
|
1999-11-22 13:07:24 +03:00
|
|
|
if(sscanf(buf2, "%d,%d,%d", &c0, &c1, &c2) == 3) {
|
|
|
|
cfg.colours[i][0] = c0;
|
|
|
|
cfg.colours[i][1] = c1;
|
|
|
|
cfg.colours[i][2] = c2;
|
|
|
|
}
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
gppi (sesskey, "MouseIsXterm", 0, &cfg.mouse_is_xterm);
|
|
|
|
for (i=0; i<256; i+=32) {
|
|
|
|
static char *defaults[] = {
|
|
|
|
"0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0",
|
|
|
|
"0,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1",
|
|
|
|
"1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2",
|
|
|
|
"1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1",
|
|
|
|
"1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1",
|
|
|
|
"1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1",
|
|
|
|
"2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2",
|
|
|
|
"2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2"
|
|
|
|
};
|
|
|
|
char buf[20], buf2[256], *p;
|
|
|
|
int j;
|
|
|
|
sprintf(buf, "Wordness%d", i);
|
|
|
|
gpps (sesskey, buf, defaults[i/32], buf2, sizeof(buf2));
|
|
|
|
p = buf2;
|
|
|
|
for (j=i; j<i+32; j++) {
|
|
|
|
char *q = p;
|
|
|
|
while (*p && *p != ',') p++;
|
|
|
|
if (*p == ',') *p++ = '\0';
|
|
|
|
cfg.wordness[j] = atoi(q);
|
|
|
|
}
|
|
|
|
}
|
1999-11-08 14:08:09 +03:00
|
|
|
gppi (sesskey, "KoiWinXlat", 0, &cfg.xlat_enablekoiwin);
|
1999-11-17 13:44:43 +03:00
|
|
|
gppi (sesskey, "88592Xlat", 0, &cfg.xlat_88592w1250);
|
1999-11-08 14:08:09 +03:00
|
|
|
gppi (sesskey, "CapsLockCyr", 0, &cfg.xlat_capslockcyr);
|
2000-07-26 16:13:51 +04:00
|
|
|
gppi (sesskey, "ScrollBar", 1, &cfg.scrollbar);
|
|
|
|
gppi (sesskey, "ScrollOnKey", 0, &cfg.scroll_on_key);
|
|
|
|
gppi (sesskey, "LockSize", 0, &cfg.locksize);
|
|
|
|
gppi (sesskey, "BCE", 0, &cfg.bce);
|
|
|
|
gppi (sesskey, "BlinkText", 0, &cfg.blinktext);
|
1999-11-08 14:08:09 +03:00
|
|
|
|
2000-09-27 20:21:52 +04:00
|
|
|
close_settings_r(sesskey);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
2000-07-26 16:13:51 +04:00
|
|
|
static void force_normal(HWND hwnd)
|
|
|
|
{
|
|
|
|
static int recurse = 0;
|
|
|
|
|
|
|
|
WINDOWPLACEMENT wp;
|
|
|
|
|
|
|
|
if(recurse) return;
|
|
|
|
recurse = 1;
|
|
|
|
|
|
|
|
wp.length = sizeof(wp);
|
|
|
|
if (GetWindowPlacement(hwnd, &wp))
|
|
|
|
{
|
|
|
|
wp.showCmd = SW_SHOWNORMAL;
|
|
|
|
SetWindowPlacement(hwnd, &wp);
|
|
|
|
}
|
|
|
|
recurse = 0;
|
|
|
|
}
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static void MyGetDlgItemInt (HWND hwnd, int id, int *result) {
|
|
|
|
BOOL ok;
|
|
|
|
int n;
|
|
|
|
n = GetDlgItemInt (hwnd, id, &ok, FALSE);
|
|
|
|
if (ok)
|
|
|
|
*result = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CALLBACK LogProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
1999-11-09 14:10:04 +03:00
|
|
|
for (i=0; i<nevents; i++)
|
1999-01-08 16:02:13 +03:00
|
|
|
SendDlgItemMessage (hwnd, IDN_LIST, LB_ADDSTRING,
|
1999-11-09 14:10:04 +03:00
|
|
|
0, (LPARAM)events[i]);
|
1999-01-08 16:02:13 +03:00
|
|
|
return 1;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
|
|
|
case IDOK:
|
|
|
|
logbox = NULL;
|
|
|
|
DestroyWindow (hwnd);
|
|
|
|
return 0;
|
2000-09-22 18:46:26 +04:00
|
|
|
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);
|
|
|
|
selitems = malloc(selcount * sizeof(int));
|
|
|
|
if (selitems) {
|
|
|
|
int count = SendDlgItemMessage(hwnd, IDN_LIST,
|
|
|
|
LB_GETSELITEMS,
|
|
|
|
selcount, (LPARAM)selitems);
|
|
|
|
int i;
|
|
|
|
int size;
|
|
|
|
char *clipdata;
|
|
|
|
static unsigned char sel_nl[] = SEL_NL;
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
size += strlen(events[selitems[i]]) + sizeof(sel_nl);
|
|
|
|
|
|
|
|
clipdata = malloc(size);
|
|
|
|
if (clipdata) {
|
|
|
|
char *p = clipdata;
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
char *q = events[selitems[i]];
|
|
|
|
int qlen = strlen(q);
|
|
|
|
memcpy(p, q, qlen);
|
|
|
|
p += qlen;
|
|
|
|
memcpy(p, sel_nl, sizeof(sel_nl));
|
|
|
|
p += sizeof(sel_nl);
|
|
|
|
}
|
|
|
|
write_clip(clipdata, size);
|
|
|
|
term_deselect();
|
|
|
|
free(clipdata);
|
|
|
|
}
|
|
|
|
free(selitems);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
case WM_CLOSE:
|
|
|
|
logbox = NULL;
|
|
|
|
DestroyWindow (hwnd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-02-20 21:12:47 +03:00
|
|
|
static int CALLBACK LicenceProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
return 1;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
|
|
|
case IDOK:
|
2000-09-29 12:42:55 +04:00
|
|
|
EndDialog(hwnd, 1);
|
1999-02-20 21:12:47 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
case WM_CLOSE:
|
2000-09-29 12:42:55 +04:00
|
|
|
EndDialog(hwnd, 1);
|
1999-02-20 21:12:47 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static int CALLBACK AboutProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
1999-02-09 18:18:34 +03:00
|
|
|
SetDlgItemText (hwnd, IDA_VERSION, ver);
|
1999-01-08 16:02:13 +03:00
|
|
|
return 1;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
|
|
|
case IDOK:
|
|
|
|
abtbox = NULL;
|
|
|
|
DestroyWindow (hwnd);
|
|
|
|
return 0;
|
|
|
|
case IDA_LICENCE:
|
|
|
|
EnableWindow(hwnd, 0);
|
|
|
|
DialogBox (hinst, MAKEINTRESOURCE(IDD_LICENCEBOX),
|
1999-02-20 21:12:47 +03:00
|
|
|
NULL, LicenceProc);
|
1999-01-08 16:02:13 +03:00
|
|
|
EnableWindow(hwnd, 1);
|
2000-09-22 13:38:35 +04:00
|
|
|
SetActiveWindow(hwnd);
|
1999-01-08 16:02:13 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
case WM_CLOSE:
|
|
|
|
abtbox = NULL;
|
|
|
|
DestroyWindow (hwnd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-10-05 21:19:04 +04:00
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
* Routines to self-manage the controls in a dialog box.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define GAPBETWEEN 3
|
|
|
|
#define GAPWITHIN 1
|
|
|
|
#define DLGWIDTH 168
|
|
|
|
#define STATICHEIGHT 8
|
|
|
|
#define CHECKBOXHEIGHT 8
|
|
|
|
#define RADIOHEIGHT 8
|
|
|
|
#define EDITHEIGHT 12
|
|
|
|
#define COMBOHEIGHT 12
|
|
|
|
#define PUSHBTNHEIGHT 14
|
|
|
|
|
|
|
|
struct ctlpos {
|
|
|
|
HWND hwnd;
|
|
|
|
LONG units;
|
|
|
|
WPARAM font;
|
|
|
|
int ypos, width;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Used on self-constructed dialogs. */
|
2000-10-06 15:42:30 +04:00
|
|
|
static void ctlposinit(struct ctlpos *cp, HWND hwnd) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
cp->hwnd = hwnd;
|
|
|
|
cp->units = GetWindowLong(hwnd, GWL_USERDATA);
|
|
|
|
cp->font = GetWindowLong(hwnd, DWL_USER);
|
|
|
|
cp->ypos = GAPBETWEEN;
|
|
|
|
GetClientRect(hwnd, &r);
|
|
|
|
cp->width = (r.right * 4) / (cp->units & 0xFFFF) - 2*GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Used on kosher dialogs. */
|
2000-10-06 15:42:30 +04:00
|
|
|
static void ctlposinit2(struct ctlpos *cp, HWND hwnd) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
cp->hwnd = hwnd;
|
|
|
|
r.left = r.top = 0;
|
|
|
|
r.right = 4;
|
|
|
|
r.bottom = 8;
|
|
|
|
MapDialogRect(hwnd, &r);
|
|
|
|
cp->units = (r.bottom << 16) | r.right;
|
|
|
|
cp->font = SendMessage(hwnd, WM_GETFONT, 0, 0);
|
|
|
|
cp->ypos = GAPBETWEEN;
|
|
|
|
GetClientRect(hwnd, &r);
|
|
|
|
cp->width = (r.right * 4) / (cp->units & 0xFFFF) - 2*GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
2000-10-06 15:42:30 +04:00
|
|
|
static void doctl(struct ctlpos *cp, RECT r,
|
|
|
|
char *wclass, int wstyle, int exstyle,
|
|
|
|
char *wtext, int wid) {
|
2000-10-05 21:19:04 +04:00
|
|
|
HWND ctl;
|
|
|
|
/*
|
|
|
|
* Note nonstandard use of RECT. This is deliberate: by
|
|
|
|
* transforming the width and height directly we arrange to
|
|
|
|
* have all supposedly same-sized controls really same-sized.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* MapDialogRect, or its near equivalent. */
|
|
|
|
r.left = (r.left * (cp->units & 0xFFFF)) / 4;
|
|
|
|
r.right = (r.right * (cp->units & 0xFFFF)) / 4;
|
|
|
|
r.top = (r.top * ((cp->units>>16) & 0xFFFF)) / 8;
|
|
|
|
r.bottom = (r.bottom * ((cp->units>>16) & 0xFFFF)) / 8;
|
|
|
|
|
|
|
|
ctl = CreateWindowEx(exstyle, wclass, wtext, wstyle,
|
|
|
|
r.left, r.top, r.right, r.bottom,
|
|
|
|
cp->hwnd, (HMENU)wid, hinst, NULL);
|
|
|
|
SendMessage(ctl, WM_SETFONT, cp->font, MAKELPARAM(TRUE, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Some edit boxes. Each one has a static above it. The percentages
|
|
|
|
* of the horizontal space are provided.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void multiedit(struct ctlpos *cp, ...) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
va_list ap;
|
|
|
|
int percent, xpos;
|
|
|
|
|
|
|
|
percent = xpos = 0;
|
|
|
|
va_start(ap, cp);
|
|
|
|
while (1) {
|
|
|
|
char *text;
|
|
|
|
int staticid, editid, pcwidth;
|
|
|
|
text = va_arg(ap, char *);
|
|
|
|
if (!text)
|
|
|
|
break;
|
|
|
|
staticid = va_arg(ap, int);
|
|
|
|
editid = va_arg(ap, int);
|
|
|
|
pcwidth = va_arg(ap, int);
|
|
|
|
|
|
|
|
r.left = xpos + GAPBETWEEN;
|
|
|
|
percent += pcwidth;
|
|
|
|
xpos = (cp->width + GAPBETWEEN) * percent / 100;
|
|
|
|
r.right = xpos - r.left;
|
|
|
|
|
|
|
|
r.top = cp->ypos; r.bottom = STATICHEIGHT;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0,
|
|
|
|
text, staticid);
|
|
|
|
r.top = cp->ypos + 8 + GAPWITHIN; r.bottom = EDITHEIGHT;
|
|
|
|
doctl(cp, r, "EDIT",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", editid);
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
cp->ypos += 8+GAPWITHIN+12+GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A set of radio buttons on the same line, with a static above
|
|
|
|
* them. `nacross' dictates how many parts the line is divided into
|
|
|
|
* (you might want this not to equal the number of buttons if you
|
|
|
|
* needed to line up some 2s and some 3s to look good in the same
|
|
|
|
* panel).
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void radioline(struct ctlpos *cp,
|
|
|
|
char *text, int id, int nacross, ...) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
va_list ap;
|
|
|
|
int group;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = STATICHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, id);
|
|
|
|
va_start(ap, nacross);
|
|
|
|
group = WS_GROUP;
|
|
|
|
i = 0;
|
|
|
|
while (1) {
|
|
|
|
char *btext;
|
|
|
|
int bid;
|
|
|
|
btext = va_arg(ap, char *);
|
|
|
|
if (!btext)
|
|
|
|
break;
|
|
|
|
bid = va_arg(ap, int);
|
|
|
|
r.left = GAPBETWEEN + i * (cp->width+GAPBETWEEN)/nacross;
|
|
|
|
r.right = (i+1) * (cp->width+GAPBETWEEN)/nacross - r.left;
|
|
|
|
r.top = cp->ypos; r.bottom = RADIOHEIGHT;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP | group,
|
|
|
|
0,
|
|
|
|
btext, bid);
|
|
|
|
group = 0;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A set of radio buttons on multiple lines, with a static above
|
|
|
|
* them.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void radiobig(struct ctlpos *cp, char *text, int id, ...) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
va_list ap;
|
|
|
|
int group;
|
|
|
|
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = STATICHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, id);
|
|
|
|
va_start(ap, id);
|
|
|
|
group = WS_GROUP;
|
|
|
|
while (1) {
|
|
|
|
char *btext;
|
|
|
|
int bid;
|
|
|
|
btext = va_arg(ap, char *);
|
|
|
|
if (!btext)
|
|
|
|
break;
|
|
|
|
bid = va_arg(ap, int);
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = STATICHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP | group,
|
|
|
|
0,
|
|
|
|
btext, bid);
|
|
|
|
group = 0;
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
cp->ypos += GAPBETWEEN - GAPWITHIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A single standalone checkbox.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void checkbox(struct ctlpos *cp, char *text, int id) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = CHECKBOXHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 0,
|
|
|
|
text, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A button on the right hand side, with a static to its left.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void staticbtn(struct ctlpos *cp, char *stext, int sid,
|
|
|
|
char *btext, int bid) {
|
2000-10-05 21:19:04 +04:00
|
|
|
const int height = (PUSHBTNHEIGHT > STATICHEIGHT ?
|
|
|
|
PUSHBTNHEIGHT : STATICHEIGHT);
|
|
|
|
RECT r;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
|
|
|
|
rpos = GAPBETWEEN + 3 * (cp->width + GAPBETWEEN) / 4;
|
|
|
|
lwid = rpos - 2*GAPBETWEEN;
|
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos + (height-STATICHEIGHT)/2;
|
|
|
|
r.right = lwid; r.bottom = STATICHEIGHT;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
r.left = rpos; r.top = cp->ypos + (height-PUSHBTNHEIGHT)/2;
|
|
|
|
r.right = rwid; r.bottom = PUSHBTNHEIGHT;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0,
|
|
|
|
btext, bid);
|
|
|
|
|
|
|
|
cp->ypos += height + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* An edit control on the right hand side, with a static to its left.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void staticedit(struct ctlpos *cp, char *stext, int sid, int eid) {
|
2000-10-05 21:19:04 +04:00
|
|
|
const int height = (EDITHEIGHT > STATICHEIGHT ?
|
|
|
|
EDITHEIGHT : STATICHEIGHT);
|
|
|
|
RECT r;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
|
|
|
|
rpos = GAPBETWEEN + (cp->width + GAPBETWEEN) / 2;
|
|
|
|
lwid = rpos - 2*GAPBETWEEN;
|
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos + (height-STATICHEIGHT)/2;
|
|
|
|
r.right = lwid; r.bottom = STATICHEIGHT;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
r.left = rpos; r.top = cp->ypos + (height-EDITHEIGHT)/2;
|
|
|
|
r.right = rwid; r.bottom = EDITHEIGHT;
|
|
|
|
doctl(cp, r, "EDIT",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", eid);
|
|
|
|
|
|
|
|
cp->ypos += height + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A tab-control substitute when a real tab control is unavailable.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void ersatztab(struct ctlpos *cp, char *stext, int sid,
|
|
|
|
int lid, int s2id) {
|
2000-10-05 21:19:04 +04:00
|
|
|
const int height = (COMBOHEIGHT > STATICHEIGHT ?
|
|
|
|
COMBOHEIGHT : STATICHEIGHT);
|
|
|
|
RECT r;
|
|
|
|
int bigwid, lwid, rwid, rpos;
|
|
|
|
static const int BIGGAP = 15;
|
|
|
|
static const int MEDGAP = 3;
|
|
|
|
|
|
|
|
bigwid = cp->width + 2*GAPBETWEEN - 2*BIGGAP;
|
|
|
|
cp->ypos += MEDGAP;
|
|
|
|
rpos = BIGGAP + (bigwid + BIGGAP) / 2;
|
|
|
|
lwid = rpos - 2*BIGGAP;
|
|
|
|
rwid = bigwid + BIGGAP - rpos;
|
|
|
|
|
|
|
|
r.left = BIGGAP; r.top = cp->ypos + (height-STATICHEIGHT)/2;
|
|
|
|
r.right = lwid; r.bottom = STATICHEIGHT;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
r.left = rpos; r.top = cp->ypos + (height-COMBOHEIGHT)/2;
|
|
|
|
r.right = rwid; r.bottom = COMBOHEIGHT*10;
|
|
|
|
doctl(cp, r, "COMBOBOX",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP |
|
|
|
|
CBS_DROPDOWNLIST | CBS_HASSTRINGS,
|
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", lid);
|
|
|
|
|
|
|
|
cp->ypos += height + MEDGAP + GAPBETWEEN;
|
|
|
|
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = 2;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE | SS_ETCHEDHORZ,
|
|
|
|
0, "", s2id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A static line, followed by an edit control on the left hand side
|
|
|
|
* and a button on the right.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void editbutton(struct ctlpos *cp, char *stext, int sid,
|
|
|
|
int eid, char *btext, int bid) {
|
2000-10-05 21:19:04 +04:00
|
|
|
const int height = (EDITHEIGHT > PUSHBTNHEIGHT ?
|
|
|
|
EDITHEIGHT : PUSHBTNHEIGHT);
|
|
|
|
RECT r;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = STATICHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
rpos = GAPBETWEEN + 3 * (cp->width + GAPBETWEEN) / 4;
|
|
|
|
lwid = rpos - 2*GAPBETWEEN;
|
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos + (height-EDITHEIGHT)/2;
|
|
|
|
r.right = lwid; r.bottom = EDITHEIGHT;
|
|
|
|
doctl(cp, r, "EDIT",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", eid);
|
|
|
|
|
|
|
|
r.left = rpos; r.top = cp->ypos + (height-PUSHBTNHEIGHT)/2;
|
|
|
|
r.right = rwid; r.bottom = PUSHBTNHEIGHT;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0,
|
|
|
|
btext, bid);
|
|
|
|
|
|
|
|
cp->ypos += height + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Special control which was hard to describe generically: the
|
|
|
|
* session-saver assembly. A static; below that an edit box; below
|
|
|
|
* that a list box. To the right of the list box, a column of
|
|
|
|
* buttons.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void sesssaver(struct ctlpos *cp, char *text,
|
|
|
|
int staticid, int editid, int listid, ...) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
va_list ap;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
int y;
|
|
|
|
const int LISTDEFHEIGHT = 66;
|
|
|
|
|
|
|
|
rpos = GAPBETWEEN + 3 * (cp->width + GAPBETWEEN) / 4;
|
|
|
|
lwid = rpos - 2*GAPBETWEEN;
|
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
|
|
|
/* The static control. */
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = lwid; r.bottom = STATICHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, staticid);
|
|
|
|
|
|
|
|
/* The edit control. */
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = lwid; r.bottom = EDITHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "EDIT",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", staticid);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The buttons (we should hold off on the list box until we
|
|
|
|
* know how big the buttons are).
|
|
|
|
*/
|
|
|
|
va_start(ap, listid);
|
|
|
|
y = cp->ypos;
|
|
|
|
while (1) {
|
|
|
|
char *btext = va_arg(ap, char *);
|
|
|
|
int bid;
|
|
|
|
if (!btext) break;
|
|
|
|
bid = va_arg(ap, int);
|
|
|
|
r.left = rpos; r.top = y;
|
|
|
|
r.right = rwid; r.bottom = PUSHBTNHEIGHT;
|
|
|
|
y += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0,
|
|
|
|
btext, bid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compute list box height. LISTDEFHEIGHT, or height of buttons. */
|
|
|
|
y -= cp->ypos;
|
|
|
|
y -= GAPWITHIN;
|
|
|
|
if (y < LISTDEFHEIGHT) y = LISTDEFHEIGHT;
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = lwid; r.bottom = y;
|
|
|
|
cp->ypos += y + GAPBETWEEN;
|
|
|
|
doctl(cp, r, "LISTBOX",
|
2000-10-06 12:10:53 +04:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL |
|
|
|
|
LBS_STANDARD | LBS_HASSTRINGS,
|
2000-10-05 21:19:04 +04:00
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", listid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Another special control: the environment-variable setter. A
|
|
|
|
* static line first; then a pair of edit boxes with associated
|
|
|
|
* statics, and two buttons; then a list box.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void envsetter(struct ctlpos *cp, char *stext, int sid,
|
|
|
|
char *e1stext, int e1sid, int e1id,
|
|
|
|
char *e2stext, int e2sid, int e2id,
|
|
|
|
int listid,
|
|
|
|
char *b1text, int b1id, char *b2text, int b2id) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
const int height = (STATICHEIGHT > EDITHEIGHT && STATICHEIGHT > PUSHBTNHEIGHT ?
|
|
|
|
STATICHEIGHT :
|
|
|
|
EDITHEIGHT > PUSHBTNHEIGHT ?
|
|
|
|
EDITHEIGHT : PUSHBTNHEIGHT);
|
|
|
|
const static int percents[] = { 20, 35, 10, 25 };
|
|
|
|
int i, j, xpos, percent;
|
|
|
|
const int LISTHEIGHT = 42;
|
|
|
|
|
|
|
|
/* The static control. */
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = STATICHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
/* The statics+edits+buttons. */
|
|
|
|
for (j = 0; j < 2; j++) {
|
|
|
|
percent = 10;
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
xpos = (cp->width + GAPBETWEEN) * percent / 100;
|
|
|
|
r.left = xpos + GAPBETWEEN;
|
|
|
|
percent += percents[i];
|
|
|
|
xpos = (cp->width + GAPBETWEEN) * percent / 100;
|
|
|
|
r.right = xpos - r.left;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.bottom = (i==0 ? STATICHEIGHT :
|
|
|
|
i==1 ? EDITHEIGHT :
|
|
|
|
PUSHBTNHEIGHT);
|
|
|
|
r.top += (height-r.bottom)/2;
|
|
|
|
if (i==0) {
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0,
|
|
|
|
j==0 ? e1stext : e2stext, j==0 ? e1sid : e2sid);
|
|
|
|
} else if (i==1) {
|
|
|
|
doctl(cp, r, "EDIT",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", j==0 ? e1id : e2id);
|
|
|
|
} else if (i==3) {
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0,
|
|
|
|
j==0 ? b1text : b2text, j==0 ? b1id : b2id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cp->ypos += height + GAPWITHIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The list box. */
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = LISTHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
doctl(cp, r, "LISTBOX",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS |
|
|
|
|
LBS_USETABSTOPS,
|
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", listid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Yet another special control: the character-class setter. A
|
|
|
|
* static, then a list, then a line containing a
|
|
|
|
* button-and-static-and-edit.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void charclass(struct ctlpos *cp, char *stext, int sid, int listid,
|
|
|
|
char *btext, int bid, int eid, char *s2text, int s2id) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
const int height = (STATICHEIGHT > EDITHEIGHT && STATICHEIGHT > PUSHBTNHEIGHT ?
|
|
|
|
STATICHEIGHT :
|
|
|
|
EDITHEIGHT > PUSHBTNHEIGHT ?
|
|
|
|
EDITHEIGHT : PUSHBTNHEIGHT);
|
|
|
|
const static int percents[] = { 30, 40, 30 };
|
|
|
|
int i, xpos, percent;
|
|
|
|
const int LISTHEIGHT = 66;
|
|
|
|
|
|
|
|
/* The static control. */
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = STATICHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
/* The list box. */
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = LISTHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "LISTBOX",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS |
|
|
|
|
LBS_USETABSTOPS,
|
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", listid);
|
|
|
|
|
|
|
|
/* The button+static+edit. */
|
|
|
|
percent = xpos = 0;
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
r.left = xpos + GAPBETWEEN;
|
|
|
|
percent += percents[i];
|
|
|
|
xpos = (cp->width + GAPBETWEEN) * percent / 100;
|
|
|
|
r.right = xpos - r.left;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.bottom = (i==0 ? PUSHBTNHEIGHT :
|
|
|
|
i==1 ? STATICHEIGHT :
|
|
|
|
EDITHEIGHT);
|
|
|
|
r.top += (height-r.bottom)/2;
|
|
|
|
if (i==0) {
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0, btext, bid);
|
|
|
|
} else if (i==1) {
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE | SS_CENTER,
|
|
|
|
0, s2text, s2id);
|
|
|
|
} else if (i==2) {
|
|
|
|
doctl(cp, r, "EDIT",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE, "", eid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cp->ypos += height + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A special control (horrors!). The colour editor. A static line;
|
|
|
|
* then on the left, a list box, and on the right, a sequence of
|
|
|
|
* two-part statics followed by a button.
|
|
|
|
*/
|
2000-10-06 15:42:30 +04:00
|
|
|
static void colouredit(struct ctlpos *cp, char *stext, int sid, int listid,
|
|
|
|
char *btext, int bid, ...) {
|
2000-10-05 21:19:04 +04:00
|
|
|
RECT r;
|
|
|
|
int y;
|
|
|
|
va_list ap;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
const int LISTHEIGHT = 66;
|
|
|
|
|
|
|
|
/* The static control. */
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = cp->width; r.bottom = STATICHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
rpos = GAPBETWEEN + 2 * (cp->width + GAPBETWEEN) / 3;
|
|
|
|
lwid = rpos - 2*GAPBETWEEN;
|
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
|
|
|
/* The list box. */
|
|
|
|
r.left = GAPBETWEEN; r.top = cp->ypos;
|
|
|
|
r.right = lwid; r.bottom = LISTHEIGHT;
|
|
|
|
doctl(cp, r, "LISTBOX",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS |
|
|
|
|
LBS_USETABSTOPS,
|
|
|
|
WS_EX_CLIENTEDGE,
|
|
|
|
"", listid);
|
|
|
|
|
|
|
|
/* The statics. */
|
|
|
|
y = cp->ypos;
|
|
|
|
va_start(ap, bid);
|
|
|
|
while (1) {
|
|
|
|
char *ltext;
|
|
|
|
int lid, rid;
|
|
|
|
ltext = va_arg(ap, char *);
|
|
|
|
if (!ltext) break;
|
|
|
|
lid = va_arg(ap, int);
|
|
|
|
rid = va_arg(ap, int);
|
|
|
|
r.top = y; r.bottom = STATICHEIGHT;
|
|
|
|
y += r.bottom + GAPWITHIN;
|
|
|
|
r.left = rpos; r.right = rwid/2;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, ltext, lid);
|
|
|
|
r.left = rpos + r.right; r.right = rwid - r.right;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE | SS_RIGHT, 0, "", rid);
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
/* The button. */
|
|
|
|
r.top = y + 2*GAPWITHIN; r.bottom = PUSHBTNHEIGHT;
|
|
|
|
r.left = rpos; r.right = rwid;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0, btext, bid);
|
|
|
|
|
|
|
|
cp->ypos += LISTHEIGHT + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static int GeneralPanelProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
switch (msg) {
|
2000-10-05 21:19:04 +04:00
|
|
|
case WM_SETFONT:
|
|
|
|
{
|
|
|
|
HFONT hfont = (HFONT)wParam;
|
|
|
|
HFONT oldfont;
|
|
|
|
HDC hdc;
|
|
|
|
TEXTMETRIC tm;
|
|
|
|
LONG units;
|
|
|
|
|
|
|
|
hdc = GetDC(hwnd);
|
|
|
|
oldfont = SelectObject(hdc, hfont);
|
|
|
|
GetTextMetrics(hdc, &tm);
|
|
|
|
units = (tm.tmHeight << 16) | tm.tmAveCharWidth;
|
|
|
|
SelectObject(hdc, oldfont);
|
|
|
|
DeleteDC(hdc);
|
|
|
|
SetWindowLong(hwnd, GWL_USERDATA, units);
|
|
|
|
SetWindowLong(hwnd, DWL_USER, wParam);
|
|
|
|
}
|
|
|
|
return 0;
|
1999-01-08 16:02:13 +03:00
|
|
|
case WM_INITDIALOG:
|
|
|
|
SetWindowPos (hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
|
|
|
return 1;
|
|
|
|
case WM_CLOSE:
|
|
|
|
DestroyWindow (hwnd);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-09-22 13:35:06 +04:00
|
|
|
static char savedsession[2048];
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static int CALLBACK ConnectionProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
int i;
|
2000-10-05 21:19:04 +04:00
|
|
|
struct ctlpos cp;
|
2000-10-06 13:06:33 +04:00
|
|
|
enum { controlstartvalue = 1000,
|
|
|
|
IDC_HOSTSTATIC,
|
|
|
|
IDC_HOST,
|
|
|
|
IDC_PORTSTATIC,
|
|
|
|
IDC_PORT,
|
|
|
|
IDC_PROTSTATIC,
|
|
|
|
IDC_PROTRAW,
|
|
|
|
IDC_PROTTELNET,
|
|
|
|
IDC_PROTSSH,
|
|
|
|
IDC_SESSSTATIC,
|
|
|
|
IDC_SESSEDIT,
|
|
|
|
IDC_SESSLIST,
|
|
|
|
IDC_SESSLOAD,
|
|
|
|
IDC_SESSSAVE,
|
|
|
|
IDC_SESSDEL,
|
|
|
|
IDC_CLOSEEXIT,
|
|
|
|
IDC_CLOSEWARN
|
|
|
|
};
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
2000-10-05 21:19:04 +04:00
|
|
|
/* Accelerators used: [aco] dehlnprstwx */
|
|
|
|
ctlposinit(&cp, hwnd);
|
|
|
|
multiedit(&cp,
|
2000-10-06 13:06:33 +04:00
|
|
|
"Host &Name", IDC_HOSTSTATIC, IDC_HOST, 75,
|
|
|
|
"&Port", IDC_PORTSTATIC, IDC_PORT, 25, NULL);
|
|
|
|
radioline(&cp, "Protocol:", IDC_PROTSTATIC, 3,
|
|
|
|
"&Raw", IDC_PROTRAW,
|
|
|
|
"&Telnet", IDC_PROTTELNET,
|
2000-10-05 21:19:04 +04:00
|
|
|
#ifdef FWHACK
|
|
|
|
"SS&H/hack",
|
|
|
|
#else
|
|
|
|
"SS&H",
|
|
|
|
#endif
|
2000-10-06 13:06:33 +04:00
|
|
|
IDC_PROTSSH, NULL);
|
2000-10-05 21:19:04 +04:00
|
|
|
sesssaver(&cp, "Stor&ed Sessions",
|
2000-10-06 13:06:33 +04:00
|
|
|
IDC_SESSSTATIC, IDC_SESSEDIT, IDC_SESSLIST,
|
|
|
|
"&Load", IDC_SESSLOAD,
|
|
|
|
"&Save", IDC_SESSSAVE,
|
|
|
|
"&Delete", IDC_SESSDEL, NULL);
|
|
|
|
checkbox(&cp, "Close Window on E&xit", IDC_CLOSEEXIT);
|
|
|
|
checkbox(&cp, "&Warn on Close", IDC_CLOSEWARN);
|
|
|
|
|
|
|
|
SetDlgItemText (hwnd, IDC_HOST, cfg.host);
|
|
|
|
SetDlgItemText (hwnd, IDC_SESSEDIT, savedsession);
|
|
|
|
SetDlgItemInt (hwnd, IDC_PORT, cfg.port, FALSE);
|
1999-01-08 16:02:13 +03:00
|
|
|
for (i = 0; i < nsessions; i++)
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_SESSLIST, LB_ADDSTRING,
|
1999-01-08 16:02:13 +03:00
|
|
|
0, (LPARAM) (sessions[i]));
|
2000-10-06 13:06:33 +04:00
|
|
|
CheckRadioButton (hwnd, IDC_PROTRAW, IDC_PROTSSH,
|
|
|
|
cfg.protocol==PROT_SSH ? IDC_PROTSSH :
|
|
|
|
cfg.protocol==PROT_TELNET ? IDC_PROTTELNET : IDC_PROTRAW );
|
|
|
|
CheckDlgButton (hwnd, IDC_CLOSEEXIT, cfg.close_on_exit);
|
|
|
|
CheckDlgButton (hwnd, IDC_CLOSEWARN, cfg.warn_on_close);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
1999-02-18 13:39:23 +03:00
|
|
|
case WM_LBUTTONUP:
|
|
|
|
/*
|
|
|
|
* Button release should trigger WM_OK if there was a
|
|
|
|
* previous double click on the session list.
|
|
|
|
*/
|
|
|
|
ReleaseCapture();
|
|
|
|
if (readytogo)
|
|
|
|
SendMessage (GetParent(hwnd), WM_COMMAND, IDOK, 0);
|
|
|
|
break;
|
1999-01-08 16:02:13 +03:00
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_PROTTELNET:
|
|
|
|
case IDC_PROTSSH:
|
|
|
|
case IDC_PROTRAW:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED) {
|
2000-10-06 13:06:33 +04:00
|
|
|
int i = IsDlgButtonChecked (hwnd, IDC_PROTSSH);
|
|
|
|
int j = IsDlgButtonChecked (hwnd, IDC_PROTTELNET);
|
1999-11-01 19:40:40 +03:00
|
|
|
cfg.protocol = i ? PROT_SSH : j ? PROT_TELNET : PROT_RAW ;
|
1999-01-08 16:02:13 +03:00
|
|
|
if ((cfg.protocol == PROT_SSH && cfg.port == 23) ||
|
|
|
|
(cfg.protocol == PROT_TELNET && cfg.port == 22)) {
|
|
|
|
cfg.port = i ? 22 : 23;
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemInt (hwnd, IDC_PORT, cfg.port, FALSE);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_HOST:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_HOST, cfg.host,
|
1999-01-08 16:02:13 +03:00
|
|
|
sizeof(cfg.host)-1);
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_PORT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
MyGetDlgItemInt (hwnd, IDC_PORT, &cfg.port);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_CLOSEEXIT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.close_on_exit = IsDlgButtonChecked (hwnd, IDC_CLOSEEXIT);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_CLOSEWARN:
|
1999-11-05 12:50:49 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.warn_on_close = IsDlgButtonChecked (hwnd, IDC_CLOSEWARN);
|
1999-11-05 12:50:49 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_SESSEDIT:
|
2000-09-22 13:35:06 +04:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE) {
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_SESSLIST, LB_SETCURSEL,
|
1999-01-08 16:02:13 +03:00
|
|
|
(WPARAM) -1, 0);
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_SESSEDIT,
|
2000-09-22 13:35:06 +04:00
|
|
|
savedsession, sizeof(savedsession)-1);
|
|
|
|
savedsession[sizeof(savedsession)-1] = '\0';
|
|
|
|
}
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_SESSSAVE:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED) {
|
|
|
|
/*
|
|
|
|
* Save a session
|
|
|
|
*/
|
|
|
|
char str[2048];
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_SESSEDIT, str, sizeof(str)-1);
|
1999-01-08 16:02:13 +03:00
|
|
|
if (!*str) {
|
2000-10-06 13:06:33 +04:00
|
|
|
int n = SendDlgItemMessage (hwnd, IDC_SESSLIST,
|
1999-01-08 16:02:13 +03:00
|
|
|
LB_GETCURSEL, 0, 0);
|
|
|
|
if (n == LB_ERR) {
|
|
|
|
MessageBeep(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
strcpy (str, sessions[n]);
|
|
|
|
}
|
|
|
|
save_settings (str, !!strcmp(str, "Default Settings"));
|
|
|
|
get_sesslist (FALSE);
|
|
|
|
get_sesslist (TRUE);
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_SESSLIST, LB_RESETCONTENT,
|
1999-01-08 16:02:13 +03:00
|
|
|
0, 0);
|
|
|
|
for (i = 0; i < nsessions; i++)
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_SESSLIST, LB_ADDSTRING,
|
1999-01-08 16:02:13 +03:00
|
|
|
0, (LPARAM) (sessions[i]));
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_SESSLIST, LB_SETCURSEL,
|
1999-01-08 16:02:13 +03:00
|
|
|
(WPARAM) -1, 0);
|
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_SESSLIST:
|
|
|
|
case IDC_SESSLOAD:
|
|
|
|
if (LOWORD(wParam) == IDC_SESSLOAD &&
|
1999-01-08 16:02:13 +03:00
|
|
|
HIWORD(wParam) != BN_CLICKED &&
|
|
|
|
HIWORD(wParam) != BN_DOUBLECLICKED)
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
if (LOWORD(wParam) == IDC_SESSLIST &&
|
1999-01-08 16:02:13 +03:00
|
|
|
HIWORD(wParam) != LBN_DBLCLK)
|
|
|
|
break;
|
|
|
|
{
|
2000-10-06 13:06:33 +04:00
|
|
|
int n = SendDlgItemMessage (hwnd, IDC_SESSLIST,
|
1999-01-08 16:02:13 +03:00
|
|
|
LB_GETCURSEL, 0, 0);
|
|
|
|
if (n == LB_ERR) {
|
|
|
|
MessageBeep(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
load_settings (sessions[n],
|
|
|
|
!!strcmp(sessions[n], "Default Settings"));
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemText (hwnd, IDC_HOST, cfg.host);
|
|
|
|
SetDlgItemInt (hwnd, IDC_PORT, cfg.port, FALSE);
|
|
|
|
CheckRadioButton (hwnd, IDC_PROTRAW, IDC_PROTSSH,
|
|
|
|
(cfg.protocol==PROT_SSH ? IDC_PROTSSH :
|
|
|
|
cfg.protocol==PROT_TELNET ? IDC_PROTTELNET : IDC_PROTRAW));
|
|
|
|
CheckDlgButton (hwnd, IDC_CLOSEEXIT, cfg.close_on_exit);
|
|
|
|
CheckDlgButton (hwnd, IDC_CLOSEWARN, cfg.warn_on_close);
|
|
|
|
SendDlgItemMessage (hwnd, IDC_SESSLIST, LB_SETCURSEL,
|
1999-01-08 16:02:13 +03:00
|
|
|
(WPARAM) -1, 0);
|
|
|
|
}
|
2000-10-06 13:06:33 +04:00
|
|
|
if (LOWORD(wParam) == IDC_SESSLIST) {
|
1999-01-08 16:02:13 +03:00
|
|
|
/*
|
|
|
|
* A double-click on a saved session should
|
|
|
|
* actually start the session, not just load it.
|
|
|
|
* Unless it's Default Settings or some other
|
|
|
|
* host-less set of saved settings.
|
|
|
|
*/
|
1999-02-18 13:39:23 +03:00
|
|
|
if (*cfg.host) {
|
|
|
|
readytogo = TRUE;
|
|
|
|
SetCapture(hwnd);
|
|
|
|
}
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_SESSDEL:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED) {
|
2000-10-06 13:06:33 +04:00
|
|
|
int n = SendDlgItemMessage (hwnd, IDC_SESSLIST,
|
1999-01-08 16:02:13 +03:00
|
|
|
LB_GETCURSEL, 0, 0);
|
|
|
|
if (n == LB_ERR || n == 0) {
|
|
|
|
MessageBeep(0);
|
|
|
|
break;
|
|
|
|
}
|
2000-09-27 20:21:52 +04:00
|
|
|
del_settings(sessions[n]);
|
1999-01-08 16:02:13 +03:00
|
|
|
get_sesslist (FALSE);
|
|
|
|
get_sesslist (TRUE);
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_SESSLIST, LB_RESETCONTENT,
|
1999-01-08 16:02:13 +03:00
|
|
|
0, 0);
|
|
|
|
for (i = 0; i < nsessions; i++)
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_SESSLIST, LB_ADDSTRING,
|
1999-01-08 16:02:13 +03:00
|
|
|
0, (LPARAM) (sessions[i]));
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_SESSLIST, LB_SETCURSEL,
|
1999-01-08 16:02:13 +03:00
|
|
|
(WPARAM) -1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return GeneralPanelProc (hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CALLBACK KeyboardProc (HWND hwnd, UINT msg,
|
2000-10-05 21:19:04 +04:00
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
struct ctlpos cp;
|
2000-10-06 13:06:33 +04:00
|
|
|
enum { controlstartvalue = 1000,
|
|
|
|
IDC_DELSTATIC,
|
|
|
|
IDC_DEL008,
|
|
|
|
IDC_DEL127,
|
|
|
|
IDC_HOMESTATIC,
|
|
|
|
IDC_HOMETILDE,
|
|
|
|
IDC_HOMERXVT,
|
|
|
|
IDC_FUNCSTATIC,
|
|
|
|
IDC_FUNCTILDE,
|
|
|
|
IDC_FUNCLINUX,
|
|
|
|
IDC_FUNCXTERM,
|
|
|
|
IDC_KPSTATIC,
|
|
|
|
IDC_KPNORMAL,
|
|
|
|
IDC_KPAPPLIC,
|
|
|
|
IDC_KPNH,
|
|
|
|
IDC_CURSTATIC,
|
|
|
|
IDC_CURNORMAL,
|
|
|
|
IDC_CURAPPLIC,
|
|
|
|
IDC_ALTF4,
|
|
|
|
IDC_ALTSPACE,
|
|
|
|
IDC_LDISCTERM,
|
|
|
|
IDC_SCROLLKEY
|
|
|
|
};
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
2000-10-05 21:19:04 +04:00
|
|
|
/* Accelerators used: [aco] 4?ehiklmnprsuvxy */
|
|
|
|
ctlposinit(&cp, hwnd);
|
2000-10-06 13:06:33 +04:00
|
|
|
radioline(&cp, "Action of Backspace:", IDC_DELSTATIC, 2,
|
|
|
|
"Control-&H", IDC_DEL008,
|
|
|
|
"Control-&? (127)", IDC_DEL127, NULL);
|
|
|
|
radioline(&cp, "Action of Home and End:", IDC_HOMESTATIC, 2,
|
|
|
|
"&Standard", IDC_HOMETILDE,
|
|
|
|
"&rxvt", IDC_HOMERXVT, NULL);
|
|
|
|
radioline(&cp, "Function key and keypad layout:", IDC_FUNCSTATIC, 3,
|
|
|
|
"&VT400", IDC_FUNCTILDE,
|
|
|
|
"&Linux", IDC_FUNCLINUX,
|
|
|
|
"&Xterm R6", IDC_FUNCXTERM, NULL);
|
|
|
|
radioline(&cp, "Initial state of cursor keys:", IDC_CURSTATIC, 2,
|
|
|
|
"&Normal", IDC_CURNORMAL,
|
|
|
|
"A&pplication", IDC_CURAPPLIC, NULL);
|
|
|
|
radioline(&cp, "Initial state of numeric keypad:", IDC_KPSTATIC, 3,
|
|
|
|
"Nor&mal", IDC_KPNORMAL,
|
|
|
|
"Appl&ication", IDC_KPAPPLIC,
|
|
|
|
"N&etHack", IDC_KPNH, NULL);
|
|
|
|
checkbox(&cp, "ALT-F&4 is special (closes window)", IDC_ALTF4);
|
|
|
|
checkbox(&cp, "ALT-Space is special (S&ystem menu)", IDC_ALTSPACE);
|
|
|
|
checkbox(&cp, "&Use local terminal line discipline", IDC_LDISCTERM);
|
|
|
|
checkbox(&cp, "Reset scrollback on &keypress", IDC_SCROLLKEY);
|
|
|
|
|
|
|
|
CheckRadioButton (hwnd, IDC_DEL008, IDC_DEL127,
|
|
|
|
cfg.bksp_is_delete ? IDC_DEL127 : IDC_DEL008);
|
|
|
|
CheckRadioButton (hwnd, IDC_HOMETILDE, IDC_HOMERXVT,
|
|
|
|
cfg.rxvt_homeend ? IDC_HOMERXVT : IDC_HOMETILDE);
|
|
|
|
CheckRadioButton (hwnd, IDC_FUNCTILDE, IDC_FUNCXTERM,
|
2000-07-26 16:13:51 +04:00
|
|
|
cfg.funky_type ?
|
2000-10-06 13:06:33 +04:00
|
|
|
(cfg.funky_type==2 ? IDC_FUNCXTERM
|
|
|
|
: IDC_FUNCLINUX )
|
|
|
|
: IDC_FUNCTILDE);
|
|
|
|
CheckRadioButton (hwnd, IDC_CURNORMAL, IDC_CURAPPLIC,
|
|
|
|
cfg.app_cursor ? IDC_CURAPPLIC : IDC_CURNORMAL);
|
|
|
|
CheckRadioButton (hwnd, IDC_KPNORMAL, IDC_KPNH,
|
|
|
|
cfg.nethack_keypad ? IDC_KPNH :
|
|
|
|
cfg.app_keypad ? IDC_KPAPPLIC : IDC_KPNORMAL);
|
|
|
|
CheckDlgButton (hwnd, IDC_ALTF4, cfg.alt_f4);
|
|
|
|
CheckDlgButton (hwnd, IDC_ALTSPACE, cfg.alt_space);
|
|
|
|
CheckDlgButton (hwnd, IDC_LDISCTERM, cfg.ldisc_term);
|
|
|
|
CheckDlgButton (hwnd, IDC_SCROLLKEY, cfg.scroll_on_key);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_DEL008:
|
|
|
|
case IDC_DEL127:
|
|
|
|
cfg.bksp_is_delete = IsDlgButtonChecked (hwnd, IDC_DEL127);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_HOMETILDE:
|
|
|
|
case IDC_HOMERXVT:
|
|
|
|
cfg.rxvt_homeend = IsDlgButtonChecked (hwnd, IDC_HOMERXVT);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_FUNCXTERM:
|
2000-07-26 16:13:51 +04:00
|
|
|
cfg.funky_type = 2;
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_FUNCTILDE:
|
|
|
|
case IDC_FUNCLINUX:
|
|
|
|
cfg.funky_type = IsDlgButtonChecked (hwnd, IDC_FUNCLINUX);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_KPNORMAL:
|
|
|
|
case IDC_KPAPPLIC:
|
|
|
|
cfg.app_keypad = IsDlgButtonChecked (hwnd, IDC_KPAPPLIC);
|
1999-11-09 14:10:04 +03:00
|
|
|
cfg.nethack_keypad = FALSE;
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_KPNH:
|
1999-11-09 14:10:04 +03:00
|
|
|
cfg.app_keypad = FALSE;
|
|
|
|
cfg.nethack_keypad = TRUE;
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_CURNORMAL:
|
|
|
|
case IDC_CURAPPLIC:
|
|
|
|
cfg.app_cursor = IsDlgButtonChecked (hwnd, IDC_CURAPPLIC);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_ALTF4:
|
1999-11-09 14:10:04 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.alt_f4 = IsDlgButtonChecked (hwnd, IDC_ALTF4);
|
1999-11-09 14:10:04 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_ALTSPACE:
|
1999-11-09 14:10:04 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.alt_space = IsDlgButtonChecked (hwnd, IDC_ALTSPACE);
|
1999-11-09 14:10:04 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_LDISCTERM:
|
1999-11-09 15:05:34 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.ldisc_term = IsDlgButtonChecked (hwnd, IDC_LDISCTERM);
|
1999-11-09 15:05:34 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_SCROLLKEY:
|
2000-03-17 13:46:59 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.scroll_on_key = IsDlgButtonChecked (hwnd, IDC_SCROLLKEY);
|
2000-03-17 13:46:59 +03:00
|
|
|
break;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return GeneralPanelProc (hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fmtfont (char *buf) {
|
|
|
|
sprintf (buf, "Font: %s, ", cfg.font);
|
|
|
|
if (cfg.fontisbold)
|
|
|
|
strcat(buf, "bold, ");
|
|
|
|
if (cfg.fontheight == 0)
|
|
|
|
strcat (buf, "default height");
|
|
|
|
else
|
|
|
|
sprintf (buf+strlen(buf), "%d-%s",
|
|
|
|
(cfg.fontheight < 0 ? -cfg.fontheight : cfg.fontheight),
|
|
|
|
(cfg.fontheight < 0 ? "pixel" : "point"));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CALLBACK TerminalProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
2000-10-05 21:19:04 +04:00
|
|
|
struct ctlpos cp;
|
1999-01-08 16:02:13 +03:00
|
|
|
CHOOSEFONT cf;
|
|
|
|
LOGFONT lf;
|
|
|
|
char fontstatic[256];
|
2000-10-06 13:06:33 +04:00
|
|
|
enum { controlstartvalue = 1000,
|
|
|
|
IDC_WRAPMODE,
|
|
|
|
IDC_DECOM,
|
|
|
|
IDC_DIMSTATIC,
|
|
|
|
IDC_ROWSSTATIC,
|
|
|
|
IDC_ROWSEDIT,
|
|
|
|
IDC_COLSSTATIC,
|
|
|
|
IDC_COLSEDIT,
|
|
|
|
IDC_SAVESTATIC,
|
|
|
|
IDC_SAVEEDIT,
|
|
|
|
IDC_FONTSTATIC,
|
|
|
|
IDC_CHOOSEFONT,
|
|
|
|
IDC_LFHASCR,
|
|
|
|
IDC_BEEP,
|
|
|
|
IDC_BCE,
|
|
|
|
IDC_BLINKTEXT
|
|
|
|
};
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
2000-10-05 21:19:04 +04:00
|
|
|
/* Accelerators used: [aco] dghlmnprsw */
|
|
|
|
ctlposinit(&cp, hwnd);
|
|
|
|
multiedit(&cp,
|
2000-10-06 13:06:33 +04:00
|
|
|
"&Rows", IDC_ROWSSTATIC, IDC_ROWSEDIT, 33,
|
|
|
|
"Colu&mns", IDC_COLSSTATIC, IDC_COLSEDIT, 33,
|
|
|
|
"&Scrollback", IDC_SAVESTATIC, IDC_SAVEEDIT, 33,
|
2000-10-05 21:19:04 +04:00
|
|
|
NULL);
|
2000-10-06 13:06:33 +04:00
|
|
|
staticbtn(&cp, "", IDC_FONTSTATIC, "C&hange...", IDC_CHOOSEFONT);
|
|
|
|
checkbox(&cp, "Auto &wrap mode initially on", IDC_WRAPMODE);
|
|
|
|
checkbox(&cp, "&DEC Origin Mode initially on", IDC_DECOM);
|
|
|
|
checkbox(&cp, "Implicit CR in every &LF", IDC_LFHASCR);
|
|
|
|
checkbox(&cp, "Bee&p enabled", IDC_BEEP);
|
|
|
|
checkbox(&cp, "Use Back&ground colour erase", IDC_BCE);
|
|
|
|
checkbox(&cp, "Enable bli&nking text", IDC_BLINKTEXT);
|
|
|
|
|
|
|
|
CheckDlgButton (hwnd, IDC_WRAPMODE, cfg.wrap_mode);
|
|
|
|
CheckDlgButton (hwnd, IDC_DECOM, cfg.dec_om);
|
|
|
|
CheckDlgButton (hwnd, IDC_LFHASCR, cfg.lfhascr);
|
|
|
|
SetDlgItemInt (hwnd, IDC_ROWSEDIT, cfg.height, FALSE);
|
|
|
|
SetDlgItemInt (hwnd, IDC_COLSEDIT, cfg.width, FALSE);
|
|
|
|
SetDlgItemInt (hwnd, IDC_SAVEEDIT, cfg.savelines, FALSE);
|
1999-01-08 16:02:13 +03:00
|
|
|
fmtfont (fontstatic);
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemText (hwnd, IDC_FONTSTATIC, fontstatic);
|
|
|
|
CheckDlgButton (hwnd, IDC_BEEP, cfg.beep);
|
|
|
|
CheckDlgButton (hwnd, IDC_BCE, cfg.bce);
|
|
|
|
CheckDlgButton (hwnd, IDC_BLINKTEXT, cfg.blinktext);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_WRAPMODE:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.wrap_mode = IsDlgButtonChecked (hwnd, IDC_WRAPMODE);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_DECOM:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.dec_om = IsDlgButtonChecked (hwnd, IDC_DECOM);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_LFHASCR:
|
1999-01-15 14:30:40 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.lfhascr = IsDlgButtonChecked (hwnd, IDC_LFHASCR);
|
1999-01-15 14:30:40 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_ROWSEDIT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
MyGetDlgItemInt (hwnd, IDC_ROWSEDIT, &cfg.height);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_COLSEDIT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
MyGetDlgItemInt (hwnd, IDC_COLSEDIT, &cfg.width);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_SAVEEDIT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
MyGetDlgItemInt (hwnd, IDC_SAVEEDIT, &cfg.savelines);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_CHOOSEFONT:
|
1999-01-08 16:02:13 +03:00
|
|
|
lf.lfHeight = cfg.fontheight;
|
|
|
|
lf.lfWidth = lf.lfEscapement = lf.lfOrientation = 0;
|
|
|
|
lf.lfItalic = lf.lfUnderline = lf.lfStrikeOut = 0;
|
|
|
|
lf.lfWeight = (cfg.fontisbold ? FW_BOLD : 0);
|
1999-11-08 14:08:09 +03:00
|
|
|
lf.lfCharSet = cfg.fontcharset;
|
1999-01-08 16:02:13 +03:00
|
|
|
lf.lfOutPrecision = OUT_DEFAULT_PRECIS;
|
|
|
|
lf.lfClipPrecision = CLIP_DEFAULT_PRECIS;
|
|
|
|
lf.lfQuality = DEFAULT_QUALITY;
|
|
|
|
lf.lfPitchAndFamily = FIXED_PITCH | FF_DONTCARE;
|
|
|
|
strncpy (lf.lfFaceName, cfg.font, sizeof(lf.lfFaceName)-1);
|
|
|
|
lf.lfFaceName[sizeof(lf.lfFaceName)-1] = '\0';
|
|
|
|
|
|
|
|
cf.lStructSize = sizeof(cf);
|
|
|
|
cf.hwndOwner = hwnd;
|
|
|
|
cf.lpLogFont = &lf;
|
|
|
|
cf.Flags = CF_FIXEDPITCHONLY | CF_FORCEFONTEXIST |
|
|
|
|
CF_INITTOLOGFONTSTRUCT | CF_SCREENFONTS;
|
|
|
|
|
|
|
|
if (ChooseFont (&cf)) {
|
|
|
|
strncpy (cfg.font, lf.lfFaceName, sizeof(cfg.font)-1);
|
|
|
|
cfg.font[sizeof(cfg.font)-1] = '\0';
|
|
|
|
cfg.fontisbold = (lf.lfWeight == FW_BOLD);
|
1999-11-08 14:08:09 +03:00
|
|
|
cfg.fontcharset = lf.lfCharSet;
|
1999-01-08 16:02:13 +03:00
|
|
|
cfg.fontheight = lf.lfHeight;
|
|
|
|
fmtfont (fontstatic);
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemText (hwnd, IDC_FONTSTATIC, fontstatic);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_BEEP:
|
2000-07-26 16:13:51 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.beep = IsDlgButtonChecked (hwnd, IDC_BEEP);
|
2000-07-26 16:13:51 +04:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_BLINKTEXT:
|
2000-07-26 16:13:51 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.blinktext = IsDlgButtonChecked (hwnd, IDC_BLINKTEXT);
|
2000-07-26 16:13:51 +04:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_BCE:
|
2000-07-26 16:13:51 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.bce = IsDlgButtonChecked (hwnd, IDC_BCE);
|
2000-07-26 16:13:51 +04:00
|
|
|
break;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GeneralPanelProc (hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
2000-10-02 16:24:58 +04:00
|
|
|
static int CALLBACK WindowProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
2000-10-05 21:19:04 +04:00
|
|
|
struct ctlpos cp;
|
2000-10-06 13:06:33 +04:00
|
|
|
enum { controlstartvalue = 1000,
|
|
|
|
IDC_WINNAME,
|
|
|
|
IDC_BLINKCUR,
|
|
|
|
IDC_SCROLLBAR,
|
|
|
|
IDC_LOCKSIZE,
|
|
|
|
IDC_WINTITLE,
|
|
|
|
IDC_WINEDIT
|
|
|
|
};
|
|
|
|
|
2000-10-02 16:24:58 +04:00
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
2000-10-05 21:19:04 +04:00
|
|
|
/* Accelerators used: [aco] bikty */
|
|
|
|
ctlposinit(&cp, hwnd);
|
|
|
|
multiedit(&cp,
|
2000-10-06 13:06:33 +04:00
|
|
|
"Initial window &title:", IDC_WINTITLE, IDC_WINEDIT, 100,
|
2000-10-05 21:19:04 +04:00
|
|
|
NULL);
|
2000-10-06 13:06:33 +04:00
|
|
|
checkbox(&cp, "Avoid ever using &icon title", IDC_WINNAME);
|
|
|
|
checkbox(&cp, "&Blinking cursor", IDC_BLINKCUR);
|
|
|
|
checkbox(&cp, "Displa&y scrollbar", IDC_SCROLLBAR);
|
|
|
|
checkbox(&cp, "Loc&k Window size", IDC_LOCKSIZE);
|
|
|
|
|
|
|
|
SetDlgItemText (hwnd, IDC_WINEDIT, cfg.wintitle);
|
|
|
|
CheckDlgButton (hwnd, IDC_WINNAME, cfg.win_name_always);
|
|
|
|
CheckDlgButton (hwnd, IDC_BLINKCUR, cfg.blink_cur);
|
|
|
|
CheckDlgButton (hwnd, IDC_SCROLLBAR, cfg.scrollbar);
|
|
|
|
CheckDlgButton (hwnd, IDC_LOCKSIZE, cfg.locksize);
|
2000-10-02 16:24:58 +04:00
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_WINNAME:
|
2000-10-02 16:24:58 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.win_name_always = IsDlgButtonChecked (hwnd, IDC_WINNAME);
|
2000-10-02 16:24:58 +04:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_BLINKCUR:
|
2000-10-02 16:24:58 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.blink_cur = IsDlgButtonChecked (hwnd, IDC_BLINKCUR);
|
2000-10-02 16:24:58 +04:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_SCROLLBAR:
|
2000-10-02 16:24:58 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.scrollbar = IsDlgButtonChecked (hwnd, IDC_SCROLLBAR);
|
2000-10-02 16:24:58 +04:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_LOCKSIZE:
|
2000-10-02 16:24:58 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.locksize = IsDlgButtonChecked (hwnd, IDC_LOCKSIZE);
|
2000-10-02 16:24:58 +04:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_WINEDIT:
|
2000-10-02 16:24:58 +04:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_WINEDIT, cfg.wintitle,
|
2000-10-02 16:24:58 +04:00
|
|
|
sizeof(cfg.wintitle)-1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GeneralPanelProc (hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static int CALLBACK TelnetProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
int i;
|
2000-10-05 21:19:04 +04:00
|
|
|
struct ctlpos cp;
|
2000-10-06 13:06:33 +04:00
|
|
|
enum { controlstartvalue = 1000,
|
|
|
|
IDC_TTSTATIC,
|
|
|
|
IDC_TTEDIT,
|
|
|
|
IDC_TSSTATIC,
|
|
|
|
IDC_TSEDIT,
|
|
|
|
IDC_LOGSTATIC,
|
|
|
|
IDC_LOGEDIT,
|
|
|
|
IDC_ENVSTATIC,
|
|
|
|
IDC_VARSTATIC,
|
|
|
|
IDC_VAREDIT,
|
|
|
|
IDC_VALSTATIC,
|
|
|
|
IDC_VALEDIT,
|
|
|
|
IDC_ENVLIST,
|
|
|
|
IDC_ENVADD,
|
|
|
|
IDC_ENVREMOVE,
|
|
|
|
IDC_EMSTATIC,
|
|
|
|
IDC_EMBSD,
|
|
|
|
IDC_EMRFC
|
|
|
|
};
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
2000-10-05 21:19:04 +04:00
|
|
|
/* Accelerators used: [aco] bdflrstuv */
|
|
|
|
ctlposinit(&cp, hwnd);
|
2000-10-06 13:06:33 +04:00
|
|
|
staticedit(&cp, "Terminal-&type string", IDC_TTSTATIC, IDC_TTEDIT);
|
|
|
|
staticedit(&cp, "Terminal-&speed string", IDC_TSSTATIC, IDC_TSEDIT);
|
|
|
|
staticedit(&cp, "Auto-login &username", IDC_LOGSTATIC, IDC_LOGEDIT);
|
|
|
|
envsetter(&cp, "Environment variables:", IDC_ENVSTATIC,
|
|
|
|
"&Variable", IDC_VARSTATIC, IDC_VAREDIT,
|
|
|
|
"Va&lue", IDC_VALSTATIC, IDC_VALEDIT,
|
|
|
|
IDC_ENVLIST,
|
|
|
|
"A&dd", IDC_ENVADD, "&Remove", IDC_ENVREMOVE);
|
|
|
|
radioline(&cp, "Handling of OLD_ENVIRON ambiguity:", IDC_EMSTATIC, 2,
|
|
|
|
"&BSD (commonplace)", IDC_EMBSD,
|
|
|
|
"R&FC 1408 (unusual)", IDC_EMRFC, NULL);
|
|
|
|
|
|
|
|
SetDlgItemText (hwnd, IDC_TTEDIT, cfg.termtype);
|
|
|
|
SetDlgItemText (hwnd, IDC_TSEDIT, cfg.termspeed);
|
|
|
|
SetDlgItemText (hwnd, IDC_LOGEDIT, cfg.username);
|
1999-01-08 16:02:13 +03:00
|
|
|
{
|
1999-01-08 16:10:19 +03:00
|
|
|
char *p = cfg.environmt;
|
1999-01-08 16:02:13 +03:00
|
|
|
while (*p) {
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_ENVLIST, LB_ADDSTRING, 0,
|
1999-01-08 16:02:13 +03:00
|
|
|
(LPARAM) p);
|
|
|
|
p += strlen(p)+1;
|
|
|
|
}
|
|
|
|
}
|
2000-10-06 13:06:33 +04:00
|
|
|
CheckRadioButton (hwnd, IDC_EMBSD, IDC_EMRFC,
|
|
|
|
cfg.rfc_environ ? IDC_EMRFC : IDC_EMBSD);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_TTEDIT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_TTEDIT, cfg.termtype,
|
1999-01-08 16:02:13 +03:00
|
|
|
sizeof(cfg.termtype)-1);
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_TSEDIT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_TSEDIT, cfg.termspeed,
|
1999-01-08 16:02:13 +03:00
|
|
|
sizeof(cfg.termspeed)-1);
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_LOGEDIT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_LOGEDIT, cfg.username,
|
1999-01-08 16:02:13 +03:00
|
|
|
sizeof(cfg.username)-1);
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_EMBSD:
|
|
|
|
case IDC_EMRFC:
|
|
|
|
cfg.rfc_environ = IsDlgButtonChecked (hwnd, IDC_EMRFC);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_ENVADD:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED) {
|
1999-01-08 16:10:19 +03:00
|
|
|
char str[sizeof(cfg.environmt)];
|
1999-01-08 16:02:13 +03:00
|
|
|
char *p;
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_VAREDIT, str, sizeof(str)-1);
|
1999-01-08 16:02:13 +03:00
|
|
|
if (!*str) {
|
|
|
|
MessageBeep(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p = str + strlen(str);
|
|
|
|
*p++ = '\t';
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_VALEDIT, p, sizeof(str)-1-(p-str));
|
1999-01-08 16:02:13 +03:00
|
|
|
if (!*p) {
|
|
|
|
MessageBeep(0);
|
|
|
|
break;
|
|
|
|
}
|
1999-01-08 16:10:19 +03:00
|
|
|
p = cfg.environmt;
|
1999-01-08 16:02:13 +03:00
|
|
|
while (*p) {
|
|
|
|
while (*p) p++;
|
|
|
|
p++;
|
|
|
|
}
|
1999-01-08 16:10:19 +03:00
|
|
|
if ((p-cfg.environmt) + strlen(str) + 2 < sizeof(cfg.environmt)) {
|
1999-01-08 16:02:13 +03:00
|
|
|
strcpy (p, str);
|
|
|
|
p[strlen(str)+1] = '\0';
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_ENVLIST, LB_ADDSTRING,
|
1999-01-08 16:02:13 +03:00
|
|
|
0, (LPARAM)str);
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemText (hwnd, IDC_VAREDIT, "");
|
|
|
|
SetDlgItemText (hwnd, IDC_VALEDIT, "");
|
1999-01-08 16:02:13 +03:00
|
|
|
} else {
|
|
|
|
MessageBox(hwnd, "Environment too big", "PuTTY Error",
|
|
|
|
MB_OK | MB_ICONERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_ENVREMOVE:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) != BN_CLICKED &&
|
|
|
|
HIWORD(wParam) != BN_DOUBLECLICKED)
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
i = SendDlgItemMessage (hwnd, IDC_ENVLIST, LB_GETCURSEL, 0, 0);
|
1999-01-08 16:02:13 +03:00
|
|
|
if (i == LB_ERR)
|
|
|
|
MessageBeep (0);
|
|
|
|
else {
|
|
|
|
char *p, *q;
|
|
|
|
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_ENVLIST, LB_DELETESTRING,
|
1999-01-08 16:02:13 +03:00
|
|
|
i, 0);
|
1999-01-08 16:10:19 +03:00
|
|
|
p = cfg.environmt;
|
1999-01-08 16:02:13 +03:00
|
|
|
while (i > 0) {
|
|
|
|
if (!*p)
|
|
|
|
goto disaster;
|
|
|
|
while (*p) p++;
|
|
|
|
p++;
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
q = p;
|
|
|
|
if (!*p)
|
|
|
|
goto disaster;
|
|
|
|
while (*p) p++;
|
|
|
|
p++;
|
|
|
|
while (*p) {
|
|
|
|
while (*p)
|
|
|
|
*q++ = *p++;
|
|
|
|
*q++ = *p++;
|
|
|
|
}
|
|
|
|
*q = '\0';
|
|
|
|
disaster:;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GeneralPanelProc (hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CALLBACK SshProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
2000-10-05 21:19:04 +04:00
|
|
|
struct ctlpos cp;
|
2000-09-07 20:33:49 +04:00
|
|
|
OPENFILENAME of;
|
|
|
|
char filename[sizeof(cfg.keyfile)];
|
2000-10-06 13:06:33 +04:00
|
|
|
enum { controlstartvalue = 1000,
|
|
|
|
IDC_TTSTATIC,
|
|
|
|
IDC_TTEDIT,
|
|
|
|
IDC_LOGSTATIC,
|
|
|
|
IDC_LOGEDIT,
|
|
|
|
IDC_NOPTY,
|
|
|
|
IDC_CIPHERSTATIC,
|
|
|
|
IDC_CIPHER3DES,
|
|
|
|
IDC_CIPHERBLOWF,
|
|
|
|
IDC_CIPHERDES,
|
|
|
|
IDC_AUTHTIS,
|
|
|
|
IDC_PKSTATIC,
|
|
|
|
IDC_PKEDIT,
|
|
|
|
IDC_PKBUTTON,
|
|
|
|
IDC_SSHPROTSTATIC,
|
|
|
|
IDC_SSHPROT1,
|
|
|
|
IDC_SSHPROT2,
|
|
|
|
IDC_AGENTFWD,
|
|
|
|
IDC_CMDSTATIC,
|
|
|
|
IDC_CMDEDIT
|
|
|
|
};
|
2000-09-07 20:33:49 +04:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
2000-10-05 21:19:04 +04:00
|
|
|
/* Accelerators used: [aco] 123abdkmprtuw */
|
|
|
|
ctlposinit(&cp, hwnd);
|
2000-10-06 13:06:33 +04:00
|
|
|
staticedit(&cp, "Terminal-&type string", IDC_TTSTATIC, IDC_TTEDIT);
|
|
|
|
staticedit(&cp, "Auto-login &username", IDC_LOGSTATIC, IDC_LOGEDIT);
|
2000-10-05 21:19:04 +04:00
|
|
|
multiedit(&cp,
|
2000-10-06 13:06:33 +04:00
|
|
|
"&Remote command:", IDC_CMDSTATIC, IDC_CMDEDIT, 100,
|
2000-10-05 21:19:04 +04:00
|
|
|
NULL);
|
2000-10-06 13:06:33 +04:00
|
|
|
checkbox(&cp, "Don't allocate a &pseudo-terminal", IDC_NOPTY);
|
2000-10-05 21:19:04 +04:00
|
|
|
checkbox(&cp, "Atte&mpt TIS or CryptoCard authentication",
|
2000-10-06 13:06:33 +04:00
|
|
|
IDC_AUTHTIS);
|
|
|
|
checkbox(&cp, "Allow &agent forwarding", IDC_AGENTFWD);
|
2000-10-05 21:19:04 +04:00
|
|
|
editbutton(&cp, "Private &key file for authentication:",
|
2000-10-06 13:06:33 +04:00
|
|
|
IDC_PKSTATIC, IDC_PKEDIT, "Bro&wse...", IDC_PKBUTTON);
|
2000-10-05 21:19:04 +04:00
|
|
|
radioline(&cp, "Preferred SSH protocol version:",
|
2000-10-06 13:06:33 +04:00
|
|
|
IDC_SSHPROTSTATIC, 2,
|
|
|
|
"&1", IDC_SSHPROT1, "&2", IDC_SSHPROT2, NULL);
|
|
|
|
radioline(&cp, "Preferred encryption algorithm:", IDC_CIPHERSTATIC, 3,
|
|
|
|
"&3DES", IDC_CIPHER3DES,
|
|
|
|
"&Blowfish", IDC_CIPHERBLOWF,
|
|
|
|
"&DES", IDC_CIPHERDES, NULL);
|
|
|
|
|
|
|
|
SetDlgItemText (hwnd, IDC_TTEDIT, cfg.termtype);
|
|
|
|
SetDlgItemText (hwnd, IDC_LOGEDIT, cfg.username);
|
|
|
|
CheckDlgButton (hwnd, IDC_NOPTY, cfg.nopty);
|
|
|
|
CheckDlgButton (hwnd, IDC_AGENTFWD, cfg.agentfwd);
|
|
|
|
CheckRadioButton (hwnd, IDC_CIPHER3DES, IDC_CIPHERDES,
|
|
|
|
cfg.cipher == CIPHER_BLOWFISH ? IDC_CIPHERBLOWF :
|
|
|
|
cfg.cipher == CIPHER_DES ? IDC_CIPHERDES :
|
|
|
|
IDC_CIPHER3DES);
|
|
|
|
CheckRadioButton (hwnd, IDC_SSHPROT1, IDC_SSHPROT2,
|
|
|
|
cfg.sshprot == 1 ? IDC_SSHPROT1 : IDC_SSHPROT2);
|
|
|
|
CheckDlgButton (hwnd, IDC_AUTHTIS, cfg.try_tis_auth);
|
|
|
|
SetDlgItemText (hwnd, IDC_PKEDIT, cfg.keyfile);
|
|
|
|
SetDlgItemText (hwnd, IDC_CMDEDIT, cfg.remote_cmd);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_TTEDIT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_TTEDIT, cfg.termtype,
|
1999-01-08 16:02:13 +03:00
|
|
|
sizeof(cfg.termtype)-1);
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_LOGEDIT:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_LOGEDIT, cfg.username,
|
1999-01-08 16:02:13 +03:00
|
|
|
sizeof(cfg.username)-1);
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_NOPTY:
|
1999-01-15 14:30:40 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.nopty = IsDlgButtonChecked (hwnd, IDC_NOPTY);
|
1999-01-15 14:30:40 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_AGENTFWD:
|
2000-09-15 15:26:18 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.agentfwd = IsDlgButtonChecked (hwnd, IDC_AGENTFWD);
|
2000-09-15 15:26:18 +04:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_CIPHER3DES:
|
|
|
|
case IDC_CIPHERBLOWF:
|
|
|
|
case IDC_CIPHERDES:
|
1999-07-06 23:42:57 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED) {
|
2000-10-06 13:06:33 +04:00
|
|
|
if (IsDlgButtonChecked (hwnd, IDC_CIPHER3DES))
|
1999-07-06 23:42:57 +04:00
|
|
|
cfg.cipher = CIPHER_3DES;
|
2000-10-06 13:06:33 +04:00
|
|
|
else if (IsDlgButtonChecked (hwnd, IDC_CIPHERBLOWF))
|
1999-07-06 23:42:57 +04:00
|
|
|
cfg.cipher = CIPHER_BLOWFISH;
|
2000-10-06 13:06:33 +04:00
|
|
|
else if (IsDlgButtonChecked (hwnd, IDC_CIPHERDES))
|
1999-10-25 12:59:40 +04:00
|
|
|
cfg.cipher = CIPHER_DES;
|
1999-07-06 23:42:57 +04:00
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_SSHPROT1:
|
|
|
|
case IDC_SSHPROT2:
|
2000-09-11 13:37:43 +04:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED) {
|
2000-10-06 13:06:33 +04:00
|
|
|
if (IsDlgButtonChecked (hwnd, IDC_SSHPROT1))
|
2000-09-11 13:37:43 +04:00
|
|
|
cfg.sshprot = 1;
|
2000-10-06 13:06:33 +04:00
|
|
|
else if (IsDlgButtonChecked (hwnd, IDC_SSHPROT2))
|
2000-09-11 13:37:43 +04:00
|
|
|
cfg.sshprot = 2;
|
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_AUTHTIS:
|
1999-11-08 20:42:12 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.try_tis_auth = IsDlgButtonChecked (hwnd, IDC_AUTHTIS);
|
1999-11-08 20:42:12 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_PKEDIT:
|
2000-09-07 20:33:49 +04:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_PKEDIT, cfg.keyfile,
|
2000-09-07 20:33:49 +04:00
|
|
|
sizeof(cfg.keyfile)-1);
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_CMDEDIT:
|
2000-10-02 19:22:41 +04:00
|
|
|
if (HIWORD(wParam) == EN_CHANGE)
|
2000-10-06 13:06:33 +04:00
|
|
|
GetDlgItemText (hwnd, IDC_CMDEDIT, cfg.remote_cmd,
|
2000-10-02 19:22:41 +04:00
|
|
|
sizeof(cfg.remote_cmd)-1);
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_PKBUTTON:
|
2000-09-07 20:33:49 +04:00
|
|
|
/*
|
|
|
|
* FIXME: this crashes. Find out why.
|
|
|
|
*/
|
|
|
|
memset(&of, 0, sizeof(of));
|
|
|
|
#ifdef OPENFILENAME_SIZE_VERSION_400
|
|
|
|
of.lStructSize = OPENFILENAME_SIZE_VERSION_400;
|
|
|
|
#else
|
|
|
|
of.lStructSize = sizeof(of);
|
|
|
|
#endif
|
|
|
|
of.hwndOwner = hwnd;
|
|
|
|
of.lpstrFilter = "All Files\0*\0\0\0";
|
|
|
|
of.lpstrCustomFilter = NULL;
|
|
|
|
of.nFilterIndex = 1;
|
|
|
|
of.lpstrFile = filename; strcpy(filename, cfg.keyfile);
|
|
|
|
of.nMaxFile = sizeof(filename);
|
|
|
|
of.lpstrFileTitle = NULL;
|
|
|
|
of.lpstrInitialDir = NULL;
|
|
|
|
of.lpstrTitle = "Select Public Key File";
|
|
|
|
of.Flags = 0;
|
|
|
|
if (GetOpenFileName(&of)) {
|
|
|
|
strcpy(cfg.keyfile, filename);
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemText (hwnd, IDC_PKEDIT, cfg.keyfile);
|
2000-09-07 20:33:49 +04:00
|
|
|
}
|
|
|
|
break;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GeneralPanelProc (hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CALLBACK SelectionProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
2000-10-05 21:19:04 +04:00
|
|
|
struct ctlpos cp;
|
1999-01-08 16:02:13 +03:00
|
|
|
int i;
|
2000-10-06 13:06:33 +04:00
|
|
|
enum { controlstartvalue = 1000,
|
|
|
|
IDC_MBSTATIC,
|
|
|
|
IDC_MBWINDOWS,
|
|
|
|
IDC_MBXTERM,
|
|
|
|
IDC_CCSTATIC,
|
|
|
|
IDC_CCLIST,
|
|
|
|
IDC_CCSET,
|
|
|
|
IDC_CCSTATIC2,
|
|
|
|
IDC_CCEDIT
|
|
|
|
};
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
2000-10-05 21:19:04 +04:00
|
|
|
/* Accelerators used: [aco] stwx */
|
|
|
|
ctlposinit(&cp, hwnd);
|
2000-10-06 13:06:33 +04:00
|
|
|
radiobig(&cp, "Action of mouse buttons:", IDC_MBSTATIC,
|
|
|
|
"&Windows (Right pastes, Middle extends)", IDC_MBWINDOWS,
|
|
|
|
"&xterm (Right extends, Middle pastes)", IDC_MBXTERM,
|
2000-10-05 21:19:04 +04:00
|
|
|
NULL);
|
2000-10-06 13:06:33 +04:00
|
|
|
charclass(&cp, "Character classes:", IDC_CCSTATIC, IDC_CCLIST,
|
|
|
|
"&Set", IDC_CCSET, IDC_CCEDIT,
|
|
|
|
"&to class", IDC_CCSTATIC2);
|
2000-10-05 21:19:04 +04:00
|
|
|
|
2000-10-06 13:06:33 +04:00
|
|
|
CheckRadioButton (hwnd, IDC_MBWINDOWS, IDC_MBXTERM,
|
|
|
|
cfg.mouse_is_xterm ? IDC_MBXTERM : IDC_MBWINDOWS);
|
1999-01-08 16:02:13 +03:00
|
|
|
{
|
|
|
|
static int tabs[4] = {25, 61, 96, 128};
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_CCLIST, LB_SETTABSTOPS, 4,
|
1999-01-08 16:02:13 +03:00
|
|
|
(LPARAM) tabs);
|
|
|
|
}
|
|
|
|
for (i=0; i<256; i++) {
|
|
|
|
char str[100];
|
|
|
|
sprintf(str, "%d\t(0x%02X)\t%c\t%d", i, i,
|
|
|
|
(i>=0x21 && i != 0x7F) ? i : ' ',
|
|
|
|
cfg.wordness[i]);
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_CCLIST, LB_ADDSTRING, 0,
|
1999-01-08 16:02:13 +03:00
|
|
|
(LPARAM) str);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_MBWINDOWS:
|
|
|
|
case IDC_MBXTERM:
|
|
|
|
cfg.mouse_is_xterm = IsDlgButtonChecked (hwnd, IDC_MBXTERM);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_CCSET:
|
1999-01-08 16:02:13 +03:00
|
|
|
{
|
|
|
|
BOOL ok;
|
|
|
|
int i;
|
2000-10-06 13:06:33 +04:00
|
|
|
int n = GetDlgItemInt (hwnd, IDC_CCEDIT, &ok, FALSE);
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
if (!ok)
|
|
|
|
MessageBeep (0);
|
|
|
|
else {
|
|
|
|
for (i=0; i<256; i++)
|
2000-10-06 13:06:33 +04:00
|
|
|
if (SendDlgItemMessage (hwnd, IDC_CCLIST, LB_GETSEL,
|
1999-01-08 16:02:13 +03:00
|
|
|
i, 0)) {
|
|
|
|
char str[100];
|
|
|
|
cfg.wordness[i] = n;
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_CCLIST,
|
1999-01-08 16:02:13 +03:00
|
|
|
LB_DELETESTRING, i, 0);
|
|
|
|
sprintf(str, "%d\t(0x%02X)\t%c\t%d", i, i,
|
|
|
|
(i>=0x21 && i != 0x7F) ? i : ' ',
|
|
|
|
cfg.wordness[i]);
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_CCLIST,
|
1999-01-08 16:02:13 +03:00
|
|
|
LB_INSERTSTRING, i,
|
|
|
|
(LPARAM)str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GeneralPanelProc (hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CALLBACK ColourProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
static const char *const colours[] = {
|
|
|
|
"Default Foreground", "Default Bold Foreground",
|
|
|
|
"Default Background", "Default Bold Background",
|
|
|
|
"Cursor Text", "Cursor Colour",
|
|
|
|
"ANSI Black", "ANSI Black Bold",
|
|
|
|
"ANSI Red", "ANSI Red Bold",
|
|
|
|
"ANSI Green", "ANSI Green Bold",
|
|
|
|
"ANSI Yellow", "ANSI Yellow Bold",
|
|
|
|
"ANSI Blue", "ANSI Blue Bold",
|
|
|
|
"ANSI Magenta", "ANSI Magenta Bold",
|
|
|
|
"ANSI Cyan", "ANSI Cyan Bold",
|
|
|
|
"ANSI White", "ANSI White Bold"
|
|
|
|
};
|
|
|
|
static const int permanent[] = {
|
|
|
|
TRUE, FALSE, TRUE, FALSE, TRUE, TRUE,
|
|
|
|
TRUE, FALSE, TRUE, FALSE, TRUE, FALSE, TRUE, FALSE,
|
|
|
|
TRUE, FALSE, TRUE, FALSE, TRUE, FALSE, TRUE, FALSE
|
|
|
|
};
|
2000-10-05 21:19:04 +04:00
|
|
|
struct ctlpos cp;
|
2000-10-06 13:06:33 +04:00
|
|
|
enum { controlstartvalue = 1000,
|
|
|
|
IDC_BOLDCOLOUR,
|
|
|
|
IDC_PALETTE,
|
|
|
|
IDC_STATIC,
|
|
|
|
IDC_LIST,
|
|
|
|
IDC_RSTATIC,
|
|
|
|
IDC_GSTATIC,
|
|
|
|
IDC_BSTATIC,
|
|
|
|
IDC_RVALUE,
|
|
|
|
IDC_GVALUE,
|
|
|
|
IDC_BVALUE,
|
|
|
|
IDC_CHANGE
|
|
|
|
};
|
2000-10-05 21:19:04 +04:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
2000-10-05 21:19:04 +04:00
|
|
|
/* Accelerators used: [aco] bmlu */
|
|
|
|
ctlposinit(&cp, hwnd);
|
2000-10-06 13:06:33 +04:00
|
|
|
checkbox(&cp, "&Bolded text is a different colour", IDC_BOLDCOLOUR);
|
|
|
|
checkbox(&cp, "Attempt to use &logical palettes", IDC_PALETTE);
|
2000-10-05 21:19:04 +04:00
|
|
|
colouredit(&cp, "Select a colo&ur and click to modify it:",
|
2000-10-06 13:06:33 +04:00
|
|
|
IDC_STATIC, IDC_LIST,
|
|
|
|
"&Modify...", IDC_CHANGE,
|
|
|
|
"Red:", IDC_RSTATIC, IDC_RVALUE,
|
|
|
|
"Green:", IDC_GSTATIC, IDC_GVALUE,
|
|
|
|
"Blue:", IDC_BSTATIC, IDC_BVALUE, NULL);
|
|
|
|
|
|
|
|
CheckDlgButton (hwnd, IDC_BOLDCOLOUR, cfg.bold_colour);
|
|
|
|
CheckDlgButton (hwnd, IDC_PALETTE, cfg.try_palette);
|
1999-01-08 16:02:13 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i=0; i<22; i++)
|
|
|
|
if (cfg.bold_colour || permanent[i])
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_LIST, LB_ADDSTRING, 0,
|
1999-01-08 16:02:13 +03:00
|
|
|
(LPARAM) colours[i]);
|
|
|
|
}
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_LIST, LB_SETCURSEL, 0, 0);
|
|
|
|
SetDlgItemInt (hwnd, IDC_RVALUE, cfg.colours[0][0], FALSE);
|
|
|
|
SetDlgItemInt (hwnd, IDC_GVALUE, cfg.colours[0][1], FALSE);
|
|
|
|
SetDlgItemInt (hwnd, IDC_BVALUE, cfg.colours[0][2], FALSE);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_BOLDCOLOUR:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED) {
|
|
|
|
int n, i;
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.bold_colour = IsDlgButtonChecked (hwnd, IDC_BOLDCOLOUR);
|
|
|
|
n = SendDlgItemMessage (hwnd, IDC_LIST, LB_GETCOUNT, 0, 0);
|
1999-01-08 16:02:13 +03:00
|
|
|
if (cfg.bold_colour && n!=22) {
|
|
|
|
for (i=0; i<22; i++)
|
|
|
|
if (!permanent[i])
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_LIST,
|
1999-01-08 16:02:13 +03:00
|
|
|
LB_INSERTSTRING, i,
|
|
|
|
(LPARAM) colours[i]);
|
|
|
|
} else if (!cfg.bold_colour && n!=12) {
|
|
|
|
for (i=22; i-- ;)
|
|
|
|
if (!permanent[i])
|
2000-10-06 13:06:33 +04:00
|
|
|
SendDlgItemMessage (hwnd, IDC_LIST,
|
1999-01-08 16:02:13 +03:00
|
|
|
LB_DELETESTRING, i, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_PALETTE:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED)
|
2000-10-06 13:06:33 +04:00
|
|
|
cfg.try_palette = IsDlgButtonChecked (hwnd, IDC_PALETTE);
|
1999-01-08 16:02:13 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_LIST:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == LBN_DBLCLK ||
|
|
|
|
HIWORD(wParam) == LBN_SELCHANGE) {
|
2000-10-06 13:06:33 +04:00
|
|
|
int i = SendDlgItemMessage (hwnd, IDC_LIST, LB_GETCURSEL,
|
1999-01-08 16:02:13 +03:00
|
|
|
0, 0);
|
|
|
|
if (!cfg.bold_colour)
|
|
|
|
i = (i < 3 ? i*2 : i == 3 ? 5 : i*2-2);
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemInt (hwnd, IDC_RVALUE, cfg.colours[i][0], FALSE);
|
|
|
|
SetDlgItemInt (hwnd, IDC_GVALUE, cfg.colours[i][1], FALSE);
|
|
|
|
SetDlgItemInt (hwnd, IDC_BVALUE, cfg.colours[i][2], FALSE);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_CHANGE:
|
1999-01-08 16:02:13 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED) {
|
|
|
|
static CHOOSECOLOR cc;
|
|
|
|
static DWORD custom[16] = {0}; /* zero initialisers */
|
2000-10-06 13:06:33 +04:00
|
|
|
int i = SendDlgItemMessage (hwnd, IDC_LIST, LB_GETCURSEL,
|
1999-01-08 16:02:13 +03:00
|
|
|
0, 0);
|
|
|
|
if (!cfg.bold_colour)
|
|
|
|
i = (i < 3 ? i*2 : i == 3 ? 5 : i*2-2);
|
|
|
|
cc.lStructSize = sizeof(cc);
|
|
|
|
cc.hwndOwner = hwnd;
|
1999-11-22 13:07:24 +03:00
|
|
|
cc.hInstance = (HWND)hinst;
|
1999-01-08 16:02:13 +03:00
|
|
|
cc.lpCustColors = custom;
|
|
|
|
cc.rgbResult = RGB (cfg.colours[i][0], cfg.colours[i][1],
|
|
|
|
cfg.colours[i][2]);
|
|
|
|
cc.Flags = CC_FULLOPEN | CC_RGBINIT;
|
|
|
|
if (ChooseColor(&cc)) {
|
|
|
|
cfg.colours[i][0] =
|
|
|
|
(unsigned char) (cc.rgbResult & 0xFF);
|
|
|
|
cfg.colours[i][1] =
|
|
|
|
(unsigned char) (cc.rgbResult >> 8) & 0xFF;
|
|
|
|
cfg.colours[i][2] =
|
|
|
|
(unsigned char) (cc.rgbResult >> 16) & 0xFF;
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemInt (hwnd, IDC_RVALUE, cfg.colours[i][0],
|
1999-01-08 16:02:13 +03:00
|
|
|
FALSE);
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemInt (hwnd, IDC_GVALUE, cfg.colours[i][1],
|
1999-01-08 16:02:13 +03:00
|
|
|
FALSE);
|
2000-10-06 13:06:33 +04:00
|
|
|
SetDlgItemInt (hwnd, IDC_BVALUE, cfg.colours[i][2],
|
1999-01-08 16:02:13 +03:00
|
|
|
FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return GeneralPanelProc (hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
2000-07-26 16:13:51 +04:00
|
|
|
static int CALLBACK TranslationProc (HWND hwnd, UINT msg,
|
1999-11-08 14:08:09 +03:00
|
|
|
WPARAM wParam, LPARAM lParam) {
|
2000-10-05 21:19:04 +04:00
|
|
|
struct ctlpos cp;
|
2000-10-06 13:06:33 +04:00
|
|
|
enum { controlstartvalue = 1000,
|
|
|
|
IDC_XLATSTATIC,
|
|
|
|
IDC_NOXLAT,
|
|
|
|
IDC_KOI8WIN1251,
|
|
|
|
IDC_88592WIN1250,
|
|
|
|
IDC_CAPSLOCKCYR,
|
|
|
|
IDC_VTSTATIC,
|
|
|
|
IDC_VTXWINDOWS,
|
|
|
|
IDC_VTOEMANSI,
|
|
|
|
IDC_VTOEMONLY,
|
|
|
|
IDC_VTPOORMAN
|
|
|
|
};
|
2000-10-05 21:19:04 +04:00
|
|
|
|
1999-11-08 14:08:09 +03:00
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
2000-10-05 21:19:04 +04:00
|
|
|
/* Accelerators used: [aco] beiknpsx */
|
|
|
|
ctlposinit(&cp, hwnd);
|
|
|
|
radiobig(&cp,
|
2000-10-06 13:06:33 +04:00
|
|
|
"Handling of VT100 line drawing characters:", IDC_VTSTATIC,
|
|
|
|
"Font has &XWindows encoding", IDC_VTXWINDOWS,
|
|
|
|
"Use font in &both ANSI and OEM modes", IDC_VTOEMANSI,
|
|
|
|
"Use font in O&EM mode only", IDC_VTOEMONLY,
|
2000-10-05 21:19:04 +04:00
|
|
|
"&Poor man's line drawing (""+"", ""-"" and ""|"")",
|
2000-10-06 13:06:33 +04:00
|
|
|
IDC_VTPOORMAN, NULL);
|
2000-10-05 21:19:04 +04:00
|
|
|
radiobig(&cp,
|
2000-10-06 13:06:33 +04:00
|
|
|
"Character set translation:", IDC_XLATSTATIC,
|
|
|
|
"&None", IDC_NOXLAT,
|
|
|
|
"&KOI8 / Win-1251", IDC_KOI8WIN1251,
|
|
|
|
"&ISO-8859-2 / Win-1250", IDC_88592WIN1250, NULL);
|
|
|
|
checkbox(&cp, "CAP&S LOCK acts as cyrillic switch", IDC_CAPSLOCKCYR);
|
|
|
|
|
|
|
|
CheckRadioButton (hwnd, IDC_NOXLAT, IDC_88592WIN1250,
|
|
|
|
cfg.xlat_88592w1250 ? IDC_88592WIN1250 :
|
|
|
|
cfg.xlat_enablekoiwin ? IDC_KOI8WIN1251 :
|
|
|
|
IDC_NOXLAT);
|
|
|
|
CheckDlgButton (hwnd, IDC_CAPSLOCKCYR, cfg.xlat_capslockcyr);
|
|
|
|
CheckRadioButton (hwnd, IDC_VTXWINDOWS, IDC_VTPOORMAN,
|
|
|
|
cfg.vtmode == VT_XWINDOWS ? IDC_VTXWINDOWS :
|
|
|
|
cfg.vtmode == VT_OEMANSI ? IDC_VTOEMANSI :
|
|
|
|
cfg.vtmode == VT_OEMONLY ? IDC_VTOEMONLY :
|
|
|
|
IDC_VTPOORMAN);
|
1999-11-08 14:08:09 +03:00
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_NOXLAT:
|
|
|
|
case IDC_KOI8WIN1251:
|
|
|
|
case IDC_88592WIN1250:
|
1999-11-17 13:44:43 +03:00
|
|
|
cfg.xlat_enablekoiwin =
|
2000-10-06 13:06:33 +04:00
|
|
|
IsDlgButtonChecked (hwnd, IDC_KOI8WIN1251);
|
1999-11-17 13:44:43 +03:00
|
|
|
cfg.xlat_88592w1250 =
|
2000-10-06 13:06:33 +04:00
|
|
|
IsDlgButtonChecked (hwnd, IDC_88592WIN1250);
|
1999-11-08 14:08:09 +03:00
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_CAPSLOCKCYR:
|
1999-11-08 14:08:09 +03:00
|
|
|
if (HIWORD(wParam) == BN_CLICKED ||
|
|
|
|
HIWORD(wParam) == BN_DOUBLECLICKED) {
|
|
|
|
cfg.xlat_capslockcyr =
|
2000-10-06 13:06:33 +04:00
|
|
|
IsDlgButtonChecked (hwnd, IDC_CAPSLOCKCYR);
|
1999-11-08 14:08:09 +03:00
|
|
|
}
|
|
|
|
break;
|
2000-10-06 13:06:33 +04:00
|
|
|
case IDC_VTXWINDOWS:
|
|
|
|
case IDC_VTOEMANSI:
|
|
|
|
case IDC_VTOEMONLY:
|
|
|
|
case IDC_VTPOORMAN:
|
2000-07-26 16:13:51 +04:00
|
|
|
cfg.vtmode =
|
2000-10-06 13:06:33 +04:00
|
|
|
(IsDlgButtonChecked (hwnd, IDC_VTXWINDOWS) ? VT_XWINDOWS :
|
|
|
|
IsDlgButtonChecked (hwnd, IDC_VTOEMANSI) ? VT_OEMANSI :
|
|
|
|
IsDlgButtonChecked (hwnd, IDC_VTOEMONLY) ? VT_OEMONLY :
|
2000-07-26 16:13:51 +04:00
|
|
|
VT_POORMAN);
|
|
|
|
break;
|
1999-11-08 14:08:09 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return GeneralPanelProc (hwnd, msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static DLGPROC panelproc[NPANELS] = {
|
2000-10-02 16:24:58 +04:00
|
|
|
ConnectionProc, KeyboardProc, TerminalProc, WindowProc,
|
2000-07-26 16:13:51 +04:00
|
|
|
TelnetProc, SshProc, SelectionProc, ColourProc, TranslationProc
|
1999-01-08 16:02:13 +03:00
|
|
|
};
|
1999-11-08 14:08:09 +03:00
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static char *names[NPANELS] = {
|
2000-10-02 16:24:58 +04:00
|
|
|
"Connection", "Keyboard", "Terminal", "Window", "Telnet",
|
2000-07-26 16:13:51 +04:00
|
|
|
"SSH", "Selection", "Colours", "Translation"
|
1999-01-08 16:02:13 +03:00
|
|
|
};
|
|
|
|
|
2000-10-02 16:24:58 +04:00
|
|
|
static int mainp[MAIN_NPANELS] = { 0, 1, 2, 3, 4, 5, 6, 7, 8};
|
|
|
|
static int reconfp[RECONF_NPANELS] = { 1, 2, 3, 6, 7, 8};
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-10-05 21:19:04 +04:00
|
|
|
static HWND makesubdialog(HWND hwnd, int x, int y, int w, int h, int n) {
|
|
|
|
RECT r;
|
|
|
|
HWND ret;
|
|
|
|
WPARAM font;
|
|
|
|
r.left = x; r.top = y;
|
|
|
|
r.right = r.left + w; r.bottom = r.top + h;
|
|
|
|
MapDialogRect(hwnd, &r);
|
|
|
|
ret = CreateWindowEx(WS_EX_CONTROLPARENT,
|
|
|
|
WC_DIALOG, "", /* no title */
|
|
|
|
WS_CHILD | WS_VISIBLE | DS_SETFONT,
|
|
|
|
r.left, r.top,
|
|
|
|
r.right-r.left, r.bottom-r.top,
|
2000-10-06 13:06:33 +04:00
|
|
|
hwnd, (HMENU)IDC_SUBDLG,
|
2000-10-05 21:19:04 +04:00
|
|
|
hinst, NULL);
|
|
|
|
SetWindowLong (ret, DWL_DLGPROC, (LONG)panelproc[n]);
|
|
|
|
font = SendMessage(hwnd, WM_GETFONT, 0, 0);
|
|
|
|
SendMessage (ret, WM_SETFONT, font, MAKELPARAM(0, 0));
|
|
|
|
SendMessage (ret, WM_INITDIALOG, 0, 0);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
static int GenericMainDlgProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam,
|
|
|
|
int npanels, int *panelnums, HWND *page) {
|
2000-10-05 21:19:04 +04:00
|
|
|
HWND hw, tabctl;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
switch (msg) {
|
|
|
|
case WM_INITDIALOG:
|
|
|
|
{ /* centre the window */
|
|
|
|
RECT rs, rd;
|
|
|
|
|
|
|
|
hw = GetDesktopWindow();
|
|
|
|
if (GetWindowRect (hw, &rs) && GetWindowRect (hwnd, &rd))
|
|
|
|
MoveWindow (hwnd, (rs.right + rs.left + rd.left - rd.right)/2,
|
|
|
|
(rs.bottom + rs.top + rd.top - rd.bottom)/2,
|
|
|
|
rd.right-rd.left, rd.bottom-rd.top, TRUE);
|
|
|
|
}
|
2000-10-05 21:19:04 +04:00
|
|
|
{
|
|
|
|
RECT r;
|
|
|
|
r.left = 3; r.right = r.left + 174;
|
|
|
|
r.top = 3; r.bottom = r.top + 193;
|
|
|
|
MapDialogRect(hwnd, &r);
|
|
|
|
tabctl = CreateWindowEx(0, WC_TABCONTROL, "",
|
|
|
|
WS_CHILD | WS_VISIBLE |
|
|
|
|
WS_TABSTOP | TCS_MULTILINE,
|
|
|
|
r.left, r.top,
|
|
|
|
r.right-r.left, r.bottom-r.top,
|
|
|
|
hwnd, (HMENU)IDC_TAB, hinst, NULL);
|
|
|
|
|
|
|
|
if (!tabctl) {
|
|
|
|
struct ctlpos cp;
|
|
|
|
ctlposinit2(&cp, hwnd);
|
|
|
|
ersatztab(&cp, "Category:", IDC_TABSTATIC1, IDC_TABLIST,
|
|
|
|
IDC_TABSTATIC2);
|
|
|
|
} else {
|
|
|
|
WPARAM font = SendMessage(hwnd, WM_GETFONT, 0, 0);
|
|
|
|
SendMessage(tabctl, WM_SETFONT, font, MAKELPARAM(TRUE, 0));
|
|
|
|
}
|
|
|
|
}
|
1999-01-08 16:02:13 +03:00
|
|
|
*page = NULL;
|
2000-10-05 21:19:04 +04:00
|
|
|
if (tabctl) { /* initialise the tab control */
|
1999-01-08 16:02:13 +03:00
|
|
|
TC_ITEMHEADER tab;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<npanels; i++) {
|
|
|
|
tab.mask = TCIF_TEXT;
|
|
|
|
tab.pszText = names[panelnums[i]];
|
2000-10-05 21:19:04 +04:00
|
|
|
TabCtrl_InsertItem (tabctl, i, &tab);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
2000-10-05 21:19:04 +04:00
|
|
|
} else {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<npanels; i++) {
|
|
|
|
SendDlgItemMessage(hwnd, IDC_TABLIST, CB_ADDSTRING,
|
|
|
|
0, (LPARAM)names[panelnums[i]]);
|
|
|
|
}
|
|
|
|
SendDlgItemMessage(hwnd, IDC_TABLIST, CB_SETCURSEL, 0, 0);
|
|
|
|
}
|
|
|
|
*page = makesubdialog(hwnd, 6, 30, 168, 163, panelnums[0]);
|
1999-01-08 16:02:13 +03:00
|
|
|
SetFocus (*page);
|
|
|
|
return 0;
|
|
|
|
case WM_NOTIFY:
|
|
|
|
if (LOWORD(wParam) == IDC_TAB &&
|
|
|
|
((LPNMHDR)lParam)->code == TCN_SELCHANGE) {
|
|
|
|
int i = TabCtrl_GetCurSel(((LPNMHDR)lParam)->hwndFrom);
|
|
|
|
if (*page)
|
|
|
|
DestroyWindow (*page);
|
2000-10-05 21:19:04 +04:00
|
|
|
*page = makesubdialog(hwnd, 6, 30, 168, 163, panelnums[i]);
|
1999-01-08 16:02:13 +03:00
|
|
|
SetFocus (((LPNMHDR)lParam)->hwndFrom); /* ensure focus stays */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
switch (LOWORD(wParam)) {
|
2000-10-05 21:19:04 +04:00
|
|
|
case IDC_TABLIST:
|
|
|
|
if (HIWORD(wParam) == CBN_SELCHANGE) {
|
|
|
|
HWND tablist = GetDlgItem (hwnd, IDC_TABLIST);
|
|
|
|
int i = SendMessage (tablist, CB_GETCURSEL, 0, 0);
|
|
|
|
if (*page)
|
|
|
|
DestroyWindow (*page);
|
|
|
|
*page = makesubdialog(hwnd, 6, 30, 168, 163, panelnums[i]);
|
|
|
|
SetFocus(tablist); /* ensure focus stays */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
1999-01-08 16:02:13 +03:00
|
|
|
case IDOK:
|
|
|
|
if (*cfg.host)
|
|
|
|
EndDialog (hwnd, 1);
|
|
|
|
else
|
|
|
|
MessageBeep (0);
|
|
|
|
return 0;
|
|
|
|
case IDCANCEL:
|
|
|
|
EndDialog (hwnd, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
case WM_CLOSE:
|
|
|
|
EndDialog (hwnd, 0);
|
|
|
|
return 0;
|
2000-07-26 16:13:51 +04:00
|
|
|
|
|
|
|
/* Grrr Explorer will maximize Dialogs! */
|
|
|
|
case WM_SIZE:
|
|
|
|
if (wParam == SIZE_MAXIMIZED)
|
|
|
|
force_normal(hwnd);
|
|
|
|
return 0;
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CALLBACK MainDlgProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
static HWND page = NULL;
|
|
|
|
|
|
|
|
if (msg == WM_COMMAND && LOWORD(wParam) == IDOK) {
|
|
|
|
}
|
|
|
|
if (msg == WM_COMMAND && LOWORD(wParam) == IDC_ABOUT) {
|
|
|
|
EnableWindow(hwnd, 0);
|
|
|
|
DialogBox(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX),
|
|
|
|
GetParent(hwnd), AboutProc);
|
|
|
|
EnableWindow(hwnd, 1);
|
2000-09-22 13:38:35 +04:00
|
|
|
SetActiveWindow(hwnd);
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
return GenericMainDlgProc (hwnd, msg, wParam, lParam,
|
|
|
|
MAIN_NPANELS, mainp, &page);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int CALLBACK ReconfDlgProc (HWND hwnd, UINT msg,
|
|
|
|
WPARAM wParam, LPARAM lParam) {
|
|
|
|
static HWND page;
|
|
|
|
return GenericMainDlgProc (hwnd, msg, wParam, lParam,
|
|
|
|
RECONF_NPANELS, reconfp, &page);
|
|
|
|
}
|
|
|
|
|
1999-10-28 20:07:25 +04:00
|
|
|
void get_sesslist(int allocate) {
|
2000-09-27 20:21:52 +04:00
|
|
|
static char otherbuf[2048];
|
1999-01-08 16:02:13 +03:00
|
|
|
static char *buffer;
|
2000-09-27 20:21:52 +04:00
|
|
|
int buflen, bufsize, i;
|
|
|
|
char *p, *ret;
|
|
|
|
void *handle;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
|
|
|
if (allocate) {
|
2000-09-27 20:21:52 +04:00
|
|
|
|
|
|
|
if ((handle = enum_settings_start()) == NULL)
|
1999-01-08 16:02:13 +03:00
|
|
|
return;
|
|
|
|
|
|
|
|
buflen = bufsize = 0;
|
|
|
|
buffer = NULL;
|
|
|
|
do {
|
2000-09-27 20:21:52 +04:00
|
|
|
ret = enum_settings_next(handle, otherbuf, sizeof(otherbuf));
|
|
|
|
if (ret) {
|
|
|
|
int len = strlen(otherbuf)+1;
|
|
|
|
if (bufsize < buflen+len) {
|
|
|
|
bufsize = buflen + len + 2048;
|
|
|
|
buffer = srealloc(buffer, bufsize);
|
|
|
|
}
|
|
|
|
strcpy(buffer+buflen, otherbuf);
|
1999-01-08 16:02:13 +03:00
|
|
|
buflen += strlen(buffer+buflen)+1;
|
|
|
|
}
|
2000-09-27 20:21:52 +04:00
|
|
|
} while (ret);
|
|
|
|
enum_settings_finish(handle);
|
1999-01-08 16:02:13 +03:00
|
|
|
buffer = srealloc(buffer, buflen+1);
|
|
|
|
buffer[buflen] = '\0';
|
|
|
|
|
|
|
|
p = buffer;
|
|
|
|
nsessions = 1; /* "Default Settings" counts as one */
|
|
|
|
while (*p) {
|
|
|
|
if (strcmp(p, "Default Settings"))
|
|
|
|
nsessions++;
|
|
|
|
while (*p) p++;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
sessions = smalloc(nsessions * sizeof(char *));
|
|
|
|
sessions[0] = "Default Settings";
|
|
|
|
p = buffer;
|
|
|
|
i = 1;
|
|
|
|
while (*p) {
|
|
|
|
if (strcmp(p, "Default Settings"))
|
|
|
|
sessions[i++] = p;
|
|
|
|
while (*p) p++;
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sfree (buffer);
|
|
|
|
sfree (sessions);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int do_config (void) {
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
get_sesslist(TRUE);
|
2000-09-22 13:35:06 +04:00
|
|
|
savedsession[0] = '\0';
|
1999-01-08 16:02:13 +03:00
|
|
|
ret = DialogBox (hinst, MAKEINTRESOURCE(IDD_MAINBOX), NULL, MainDlgProc);
|
|
|
|
get_sesslist(FALSE);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int do_reconfig (HWND hwnd) {
|
|
|
|
Config backup_cfg;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
backup_cfg = cfg; /* structure copy */
|
|
|
|
ret = DialogBox (hinst, MAKEINTRESOURCE(IDD_RECONF), hwnd, ReconfDlgProc);
|
|
|
|
if (!ret)
|
|
|
|
cfg = backup_cfg; /* structure copy */
|
2000-07-26 16:13:51 +04:00
|
|
|
else
|
|
|
|
force_normal(hwnd);
|
|
|
|
|
1999-01-08 16:02:13 +03:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void do_defaults (char *session) {
|
|
|
|
if (session)
|
|
|
|
load_settings (session, TRUE);
|
|
|
|
else
|
|
|
|
load_settings ("Default Settings", FALSE);
|
|
|
|
}
|
|
|
|
|
1999-11-09 14:10:04 +03:00
|
|
|
void logevent (char *string) {
|
|
|
|
if (nevents >= negsize) {
|
1999-01-08 16:02:13 +03:00
|
|
|
negsize += 64;
|
1999-11-09 14:10:04 +03:00
|
|
|
events = srealloc (events, negsize * sizeof(*events));
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
1999-11-09 14:10:04 +03:00
|
|
|
events[nevents] = smalloc(1+strlen(string));
|
|
|
|
strcpy (events[nevents], string);
|
|
|
|
nevents++;
|
2000-09-22 18:24:27 +04:00
|
|
|
if (logbox) {
|
|
|
|
int count;
|
1999-01-08 16:02:13 +03:00
|
|
|
SendDlgItemMessage (logbox, IDN_LIST, LB_ADDSTRING,
|
|
|
|
0, (LPARAM)string);
|
2000-09-22 18:24:27 +04:00
|
|
|
count = SendDlgItemMessage (logbox, IDN_LIST, LB_GETCOUNT, 0, 0);
|
2000-09-22 18:46:26 +04:00
|
|
|
SendDlgItemMessage (logbox, IDN_LIST, LB_SETTOPINDEX, count-1, 0);
|
2000-09-22 18:24:27 +04:00
|
|
|
}
|
1999-01-08 16:02:13 +03:00
|
|
|
}
|
|
|
|
|
1999-11-09 14:10:04 +03:00
|
|
|
void showeventlog (HWND hwnd) {
|
1999-01-08 16:02:13 +03:00
|
|
|
if (!logbox) {
|
|
|
|
logbox = CreateDialog (hinst, MAKEINTRESOURCE(IDD_LOGBOX),
|
|
|
|
hwnd, LogProc);
|
|
|
|
ShowWindow (logbox, SW_SHOWNORMAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void showabout (HWND hwnd) {
|
|
|
|
if (!abtbox) {
|
|
|
|
abtbox = CreateDialog (hinst, MAKEINTRESOURCE(IDD_ABOUTBOX),
|
|
|
|
hwnd, AboutProc);
|
|
|
|
ShowWindow (abtbox, SW_SHOWNORMAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-09-28 12:37:10 +04:00
|
|
|
void verify_ssh_host_key(char *host, int port, char *keytype,
|
2000-09-27 19:21:04 +04:00
|
|
|
char *keystr, char *fingerprint) {
|
|
|
|
int ret;
|
1999-01-08 16:02:13 +03:00
|
|
|
|
2000-09-27 19:21:04 +04:00
|
|
|
static const char absentmsg[] =
|
|
|
|
"The server's host key is not cached in the registry. You\n"
|
|
|
|
"have no guarantee that the server is the computer you\n"
|
|
|
|
"think it is.\n"
|
|
|
|
"The server's key fingerprint is:\n"
|
|
|
|
"%s\n"
|
|
|
|
"If you trust this host, hit Yes to add the key to\n"
|
|
|
|
"PuTTY's cache and carry on connecting.\n"
|
|
|
|
"If you do not trust this host, hit No to abandon the\n"
|
|
|
|
"connection.\n";
|
|
|
|
|
|
|
|
static const char wrongmsg[] =
|
|
|
|
"WARNING - POTENTIAL SECURITY BREACH!\n"
|
|
|
|
"\n"
|
|
|
|
"The server's host key does not match the one PuTTY has\n"
|
|
|
|
"cached in the registry. This means that either the\n"
|
|
|
|
"server administrator has changed the host key, or you\n"
|
|
|
|
"have actually connected to another computer pretending\n"
|
|
|
|
"to be the server.\n"
|
|
|
|
"The new key fingerprint is:\n"
|
|
|
|
"%s\n"
|
|
|
|
"If you were expecting this change and trust the new key,\n"
|
|
|
|
"hit Yes to update PuTTY's cache and continue connecting.\n"
|
|
|
|
"If you want to carry on connecting but without updating\n"
|
|
|
|
"the cache, hit No.\n"
|
|
|
|
"If you want to abandon the connection completely, hit\n"
|
|
|
|
"Cancel. Hitting Cancel is the ONLY guaranteed safe\n"
|
|
|
|
"choice.\n";
|
|
|
|
|
|
|
|
static const char mbtitle[] = "PuTTY Security Alert";
|
2000-09-25 19:47:57 +04:00
|
|
|
|
2000-09-27 19:21:04 +04:00
|
|
|
|
|
|
|
char message[160+ /* sensible fingerprint max size */
|
|
|
|
(sizeof(absentmsg) > sizeof(wrongmsg) ?
|
|
|
|
sizeof(absentmsg) : sizeof(wrongmsg))];
|
2000-09-25 19:47:57 +04:00
|
|
|
|
|
|
|
/*
|
2000-09-27 19:21:04 +04:00
|
|
|
* Verify the key against the registry.
|
2000-09-25 19:47:57 +04:00
|
|
|
*/
|
2000-09-28 12:37:10 +04:00
|
|
|
ret = verify_host_key(host, port, keytype, keystr);
|
2000-09-27 19:21:04 +04:00
|
|
|
|
|
|
|
if (ret == 0) /* success - key matched OK */
|
|
|
|
return;
|
|
|
|
if (ret == 2) { /* key was different */
|
|
|
|
int mbret;
|
|
|
|
sprintf(message, wrongmsg, fingerprint);
|
|
|
|
mbret = MessageBox(NULL, message, mbtitle,
|
|
|
|
MB_ICONWARNING | MB_YESNOCANCEL);
|
|
|
|
if (mbret == IDYES)
|
2000-09-28 12:37:10 +04:00
|
|
|
store_host_key(host, port, keytype, keystr);
|
2000-09-27 19:21:04 +04:00
|
|
|
if (mbret == IDCANCEL)
|
|
|
|
exit(0);
|
2000-09-25 19:47:57 +04:00
|
|
|
}
|
2000-09-27 19:21:04 +04:00
|
|
|
if (ret == 1) { /* key was absent */
|
|
|
|
int mbret;
|
|
|
|
sprintf(message, absentmsg, fingerprint);
|
|
|
|
mbret = MessageBox(NULL, message, mbtitle,
|
|
|
|
MB_ICONWARNING | MB_YESNO);
|
|
|
|
if (mbret == IDNO)
|
|
|
|
exit(0);
|
2000-09-28 12:37:10 +04:00
|
|
|
store_host_key(host, port, keytype, keystr);
|
2000-09-25 19:47:57 +04:00
|
|
|
}
|
|
|
|
}
|