| ︙ | | |
722
723
724
725
726
727
728
729
730
731
732
733
734
735
|
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
|
+
|
struct controlset *s;
struct sessionsaver_data *ssd;
struct charclass_data *ccd;
struct colour_data *cd;
struct environ_data *ed;
struct portfwd_data *pfd;
union control *c;
char *str;
ssd = (struct sessionsaver_data *)
ctrl_alloc(b, sizeof(struct sessionsaver_data));
ssd->sesslist = (midsession ? NULL : sesslist);
/*
* The standard panel that appears at the bottom of all panels:
|
| ︙ | | |
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
|
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
|
+
-
+
+
|
ssd->cancelbutton->generic.column = 4;
/* We carefully don't close the 5-column part, so that platform-
* specific add-ons can put extra buttons alongside Open and Cancel. */
/*
* The Session panel.
*/
str = dupprintf("Basic options for your %s session", appname);
ctrl_settitle(b, "Session", "Basic options for your PuTTY session");
ctrl_settitle(b, "Session", str);
sfree(str);
if (!midsession) {
s = ctrl_getset(b, "Session", "hostport",
"Specify your connection by host name or IP address");
ctrl_columns(s, 2, 75, 25);
c = ctrl_editbox(s, "Host Name (or IP address)", 'n', 100,
HELPCTX(session_hostname),
|
| ︙ | | |
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
|
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
|
+
-
+
+
|
ctrl_checkbox(s, "Disable remote-controlled character set configuration",
'r', HELPCTX(features_charset), dlg_stdcheckbox_handler,
I(offsetof(Config,no_remote_charset)));
/*
* The Window panel.
*/
str = dupprintf("Options controlling %s's window", appname);
ctrl_settitle(b, "Window", "Options controlling PuTTY's window");
ctrl_settitle(b, "Window", str);
sfree(str);
s = ctrl_getset(b, "Window", "size", "Set the size of the window");
ctrl_columns(s, 2, 50, 50);
c = ctrl_editbox(s, "Rows", 'r', 100,
HELPCTX(window_size),
dlg_stdeditbox_handler, I(offsetof(Config,height)),I(-1));
c->generic.column = 0;
|
| ︙ | | |
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
|
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
|
+
-
+
-
+
|
HELPCTX(window_erased),
dlg_stdcheckbox_handler,
I(offsetof(Config,erase_to_scrollback)));
/*
* The Window/Appearance panel.
*/
str = dupprintf("Configure the appearance of %s's window", appname);
ctrl_settitle(b, "Window/Appearance",
ctrl_settitle(b, "Window/Appearance", str);
"Configure the appearance of PuTTY's window");
sfree(str);
s = ctrl_getset(b, "Window/Appearance", "cursor",
"Adjust the use of the cursor");
ctrl_radiobuttons(s, "Cursor appearance:", NO_SHORTCUT, 3,
HELPCTX(appearance_cursor),
dlg_stdradiobutton_handler,
I(offsetof(Config, cursor_type)),
|
| ︙ | | |
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
|
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
|
+
-
+
-
+
|
HELPCTX(appearance_border),
dlg_stdeditbox_handler,
I(offsetof(Config,window_border)), I(-1));
/*
* The Window/Behaviour panel.
*/
str = dupprintf("Configure the behaviour of %s's window", appname);
ctrl_settitle(b, "Window/Behaviour",
ctrl_settitle(b, "Window/Behaviour", str);
"Configure the behaviour of PuTTY's window");
sfree(str);
s = ctrl_getset(b, "Window/Behaviour", "title",
"Adjust the behaviour of the window title");
ctrl_editbox(s, "Window title:", 't', 100,
HELPCTX(appearance_title),
dlg_stdeditbox_handler, I(offsetof(Config,wintitle)),
I(sizeof(((Config *)0)->wintitle)));
|
| ︙ | | |
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
|
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
|
+
-
+
-
+
|
s = ctrl_getset(b, "Window/Translation", "trans",
"Character set translation on received data");
ctrl_combobox(s, "Received data assumed to be in which character set:",
'r', 100, HELPCTX(translation_codepage),
codepage_handler, P(NULL), P(NULL));
str = dupprintf("Adjust how %s displays line drawing characters", appname);
s = ctrl_getset(b, "Window/Translation", "linedraw",
s = ctrl_getset(b, "Window/Translation", "linedraw", str);
"Adjust how PuTTY displays line drawing characters");
sfree(str);
ctrl_radiobuttons(s, "Handling of line drawing characters:", NO_SHORTCUT,1,
HELPCTX(translation_linedraw),
dlg_stdradiobutton_handler,
I(offsetof(Config, vtmode)),
"Font has XWindows encoding", 'x', I(VT_XWINDOWS),
"Poor man's line drawing (+, - and |)",'p',I(VT_POORMAN),
"Unicode mode", 'u', I(VT_UNICODE), NULL);
|
| ︙ | | |
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
|
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
|
+
-
+
-
+
|
s = ctrl_getset(b, "Window/Colours", "general",
"General options for colour usage");
ctrl_checkbox(s, "Bolded text is a different colour", 'b',
HELPCTX(colours_bold),
dlg_stdcheckbox_handler, I(offsetof(Config,bold_colour)));
str = dupprintf("Adjust the precise colours %s displays", appname);
s = ctrl_getset(b, "Window/Colours", "adjust",
s = ctrl_getset(b, "Window/Colours", "adjust", str);
"Adjust the precise colours PuTTY displays");
sfree(str);
ctrl_text(s, "Select a colour from the list, and then click the"
" Modify button to change its appearance.",
HELPCTX(colours_config));
ctrl_columns(s, 2, 67, 33);
cd = (struct colour_data *)ctrl_alloc(b, sizeof(struct colour_data));
cd->listbox = ctrl_listbox(s, "Select a colour to adjust:", 'u',
HELPCTX(colours_config), colour_handler, P(cd));
|
| ︙ | | |