X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/217b88d1dad5aa3362e9e8c1af94b237933309a5..f160b7b8908cac4a7ca37b49928b7855fe0a11fe:/mac/macpgen.r diff --git a/mac/macpgen.r b/mac/macpgen.r index 036b14f0..da0dd55f 100644 --- a/mac/macpgen.r +++ b/mac/macpgen.r @@ -1,6 +1,6 @@ -/* $Id: macpgen.r,v 1.3 2003/02/16 14:27:37 ben Exp $ */ +/* $Id$ */ /* - * Copyright (c) 1999, 2002 Ben Harris + * Copyright (c) 1999, 2002, 2003 Ben Harris * All rights reserved. * * Permission is hereby granted, free of charge, to any person @@ -58,10 +58,10 @@ resource 'pGen' (0, purgeable) { resource 'SIZE' (-1) { reserved, - ignoreSuspendResumeEvents, + acceptSuspendResumeEvents, reserved, canBackground, - needsActivateOnFGSwitch, + doesActivateOnFGSwitch, backgroundAndForeground, dontGetFrontClicks, ignoreAppDiedEvents, @@ -111,6 +111,36 @@ resource 'kind' (129) { } }; +#if TARGET_API_MAC_CARBON +/* + * Mac OS X Info.plist. + * See Tech Note TN2013 for details. + * We don't bother with things that Mac OS X seems to be able to get from + * other resources. + */ +type 'plst' as 'TEXT'; + +resource 'plst' (0) { + "\n" + "\n" + "\n" + " \n" + " CFBundleInfoDictionaryVersion 6.0\n" + " CFBundleIdentifier\n" + " org.tartarus.projects.putty.puttygen\n" + " CFBundleName PuTTYgen\n" + " CFBundlePackageType APPL\n" + " CFBundleSignature pGen\n" + " \n" + "\n" +}; + +/* Mac OS X doesn't use this, but Mac OS 9 does. */ +type 'carb' as 'TEXT'; +resource 'carb' (0) { "" }; +#endif + /* Icons, courtesy of DeRez */ /* Random seed icon */ @@ -392,7 +422,7 @@ resource 'DITL' (wAbout, "about", purgeable) { StaticText { disabled, "PuTTYgen"}, { 42, 13, 74, 227 }, StaticText { disabled, "Some version or other\n" - "Copyright © 1997-9 Simon Tatham"}, + "Copyright © 1997-2008 Simon Tatham"}, } }; @@ -413,11 +443,12 @@ type 'TEXT' { }; resource 'TEXT' (wLicence, "licence", purgeable) { - "Copyright 1997-2003 Simon Tatham.\n" + "Copyright 1997-2008 Simon Tatham.\n" "\n" - "Portions copyright Robert de Bath, Joris van Rantwijk, Delian" - "Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry," - "Justin Bradford, Ben Harris, and CORE SDI S.A.\n" + "Portions copyright Robert de Bath, Joris van Rantwijk, Delian " + "Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, " + "Justin Bradford, Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus " + "Kuhn, Colin Watson, and CORE SDI S.A.\n" "\n" "Permission is hereby granted, free of charge, to any person " "obtaining a copy of this software and associated documentation " @@ -460,10 +491,19 @@ resource 'dlgx' (wKey, "key", purgeable) { } }; +#define cProgress 129 + resource 'DITL' (wKey, "key", purgeable) { { { 13, 13, 33, 227 }, Button { enabled, "Generate" }, + { 46, 13, 12, 227 }, + Control { enabled, cProgress }, } }; +resource 'CNTL' (cProgress) { + { 46, 13, 12, 227 }, + 0, visible, 0, 0, + kControlProgressBarProc, 0, "" +};