X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=unix%2Fuxputty.c;h=d71d28988d6501138455a36aeb9a6f0dc7e2b1c0;hb=92f3b101f550c164953b4a490e706ebd0d9f1374;hp=ca1208d68817daeb917d9853a57bbdcfb8f6209b;hpb=214b306909ac7597359367301e00b638a6783a0d;p=PuTTY.git diff --git a/unix/uxputty.c b/unix/uxputty.c index ca1208d6..d71d2898 100644 --- a/unix/uxputty.c +++ b/unix/uxputty.c @@ -7,32 +7,11 @@ #include #include #include +#include #include "putty.h" #include "storage.h" -/* - * TODO: - * - * - Go through all the config options and ensure they can all be - * configured and reconfigured properly. - * + icon title appears to be a non-option on Unix. - * + Why the hell did I faff about disabling two of the vtmode - * options? The rest aren't used either in pterm! Work out - * whether they should be, and how they can be. - * + Refresh in the codepage combo is badly broken. - * + `Don't translate line drawing chars' ?? What is this crap? - * It does nothing at all, and where's the option to paste as - * lqqqk? What was I smoking? - * - * - Better control of the individual config box features. - * + SSH packet logging shouldn't be mentioned in pterm, and in - * fact not PuTTYtel either. - * + Keepalives, and the Connection panel in general, shouldn't - * crop up in pterm. (And perhaps also not mid-session in - * rlogin and raw?) - */ - /* * Clean up and exit. */ @@ -127,6 +106,21 @@ char *make_default_wintitle(char *hostname) return dupcat(hostname, " - PuTTY", NULL); } +/* + * X11-forwarding-related things suitable for Gtk app. + */ + +const char platform_x11_best_transport[] = "unix"; + +char *platform_get_x_display(void) { + const char *display; + /* Try to take account of --display and what have you. */ + if (!(display = gdk_get_display())) + /* fall back to traditional method */ + display = getenv("DISPLAY"); + return dupstr(display); +} + int main(int argc, char **argv) { extern int pt_main(int argc, char **argv);