1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-26 01:32:25 +00:00

Bring PuTTYgen into the world of object-oriented event handling.

Also add a non-functional "generate" button the the key window.

[originally from svn r2857]
This commit is contained in:
Ben Harris 2003-02-16 14:27:37 +00:00
parent 6223099261
commit 670289a8b8
5 changed files with 99 additions and 166 deletions

2
Recipe
View File

@ -161,4 +161,4 @@ PuTTYtel : [M] terminal wcwidth ldiscucs logging be_nossh mac macdlg macevlog
+ stricmp vsnprint + stricmp vsnprint
PuTTYgen : [M] macpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version PuTTYgen : [M] macpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
+ sshrand macnoise sshsha macstore misc sshrsa sshdss macmisc sshpubk + sshrand macnoise sshsha macstore misc sshrsa sshdss macmisc sshpubk
+ sshaes sshsh512 import macpgen.rsrc macpgkey + sshaes sshsh512 import macpgen.rsrc macpgkey macabout

View File

@ -1,4 +1,4 @@
/* $Id: macpgen.c,v 1.2 2003/02/15 14:20:43 ben Exp $ */ /* $Id: macpgen.c,v 1.3 2003/02/16 14:27:37 ben Exp $ */
/* /*
* Copyright (c) 1999, 2003 Ben Harris * Copyright (c) 1999, 2003 Ben Harris
* All rights reserved. * All rights reserved.
@ -71,14 +71,10 @@ static void mac_event(EventRecord *);
static void mac_contentclick(WindowPtr, EventRecord *); static void mac_contentclick(WindowPtr, EventRecord *);
static void mac_growwindow(WindowPtr, EventRecord *); static void mac_growwindow(WindowPtr, EventRecord *);
static void mac_activatewindow(WindowPtr, EventRecord *); static void mac_activatewindow(WindowPtr, EventRecord *);
static void mac_activateabout(WindowPtr, EventRecord *);
static void mac_updatewindow(WindowPtr); static void mac_updatewindow(WindowPtr);
static void mac_updatelicence(WindowPtr);
static void mac_keypress(EventRecord *); static void mac_keypress(EventRecord *);
static int mac_windowtype(WindowPtr); static int mac_windowtype(WindowPtr);
static void mac_menucommand(long); static void mac_menucommand(long);
static void mac_openabout(void);
static void mac_openlicence(void);
static void mac_adjustcursor(RgnHandle); static void mac_adjustcursor(RgnHandle);
static void mac_adjustmenus(void); static void mac_adjustmenus(void);
static void mac_closewindow(WindowPtr); static void mac_closewindow(WindowPtr);
@ -299,106 +295,33 @@ static void mac_event(EventRecord *event) {
} }
} }
static void mac_contentclick(WindowPtr window, EventRecord *event) { static void mac_contentclick(WindowPtr window, EventRecord *event)
short item; {
DialogRef dialog;
switch (mac_windowtype(window)) { if (mac_wininfo(window)->click != NULL)
case wAbout: (*mac_wininfo(window)->click)(window, event);
dialog = GetDialogFromWindow(window);
if (DialogSelect(event, &dialog, &item))
switch (item) {
case wiAboutLicence:
mac_openlicence();
break;
}
break;
}
} }
static void mac_growwindow(WindowPtr window, EventRecord *event) { static void mac_growwindow(WindowPtr window, EventRecord *event)
{
switch (mac_windowtype(window)) { if (mac_wininfo(window)->grow != NULL)
} (*mac_wininfo(window)->grow)(window, event);
} }
static void mac_activatewindow(WindowPtr window, EventRecord *event) { static void mac_activatewindow(WindowPtr window, EventRecord *event)
int active; {
active = (event->modifiers & activeFlag) != 0;
mac_adjustmenus(); mac_adjustmenus();
switch (mac_windowtype(window)) { if (mac_wininfo(window)->activate != NULL)
case wAbout: (*mac_wininfo(window)->activate)(window, event);
mac_activateabout(window, event);
break;
}
}
static void mac_activateabout(WindowPtr window, EventRecord *event) {
DialogRef dialog;
DialogItemType itemtype;
Handle itemhandle;
short item;
Rect itemrect;
int active;
dialog = GetDialogFromWindow(window);
active = (event->modifiers & activeFlag) != 0;
GetDialogItem(dialog, wiAboutLicence, &itemtype, &itemhandle, &itemrect);
HiliteControl((ControlHandle)itemhandle, active ? 0 : 255);
DialogSelect(event, &dialog, &item);
} }
static void mac_updatewindow(WindowPtr window) static void mac_updatewindow(WindowPtr window)
{ {
#if TARGET_API_MAC_CARBON
RgnHandle rgn;
#endif
switch (mac_windowtype(window)) { if (mac_wininfo(window)->update != NULL)
case wAbout: (*mac_wininfo(window)->update)(window);
BeginUpdate(window);
#if TARGET_API_MAC_CARBON
rgn = NewRgn();
GetPortVisibleRegion(GetWindowPort(window), rgn);
UpdateDialog(GetDialogFromWindow(window), rgn);
DisposeRgn(rgn);
#else
UpdateDialog(window, window->visRgn);
#endif
EndUpdate(window);
break;
case wLicence:
mac_updatelicence(window);
break;
}
}
static void mac_updatelicence(WindowPtr window)
{
Handle h;
int len;
long fondsize;
Rect textrect;
SetPort((GrafPtr)GetWindowPort(window));
BeginUpdate(window);
fondsize = GetScriptVariable(smRoman, smScriptSmallFondSize);
TextFont(HiWord(fondsize));
TextSize(LoWord(fondsize));
h = Get1Resource('TEXT', wLicence);
len = GetResourceSizeOnDisk(h);
#if TARGET_API_MAC_CARBON
GetPortBounds(GetWindowPort(window), &textrect);
#else
textrect = window->portRect;
#endif
if (h != NULL) {
HLock(h);
TETextBox(*h, len, &textrect, teFlushDefault);
HUnlock(h);
}
EndUpdate(window);
} }
/* /*
@ -417,7 +340,8 @@ static int mac_windowtype(WindowPtr window)
/* /*
* Handle a key press * Handle a key press
*/ */
static void mac_keypress(EventRecord *event) { static void mac_keypress(EventRecord *event)
{
WindowPtr window; WindowPtr window;
window = FrontWindow(); window = FrontWindow();
@ -425,12 +349,13 @@ static void mac_keypress(EventRecord *event) {
mac_adjustmenus(); mac_adjustmenus();
mac_menucommand(MenuKey(event->message & charCodeMask)); mac_menucommand(MenuKey(event->message & charCodeMask));
} else { } else {
switch (mac_windowtype(window)) { if (mac_wininfo(window)->key != NULL)
} (*mac_wininfo(window)->key)(window, event);
} }
} }
static void mac_menucommand(long result) { static void mac_menucommand(long result)
{
short menu, item; short menu, item;
WindowPtr window; WindowPtr window;
#if !TARGET_API_MAC_CARBON #if !TARGET_API_MAC_CARBON
@ -470,57 +395,15 @@ static void mac_menucommand(long result) {
break; break;
} }
/* If we get here, handling is up to window-specific code. */ /* If we get here, handling is up to window-specific code. */
switch (mac_windowtype(window)) { if (mac_wininfo(window)->menu != NULL)
} (*mac_wininfo(window)->menu)(window, menu, item);
done: done:
HiliteMenu(0); HiliteMenu(0);
} }
static void mac_openabout(void) { static void mac_closewindow(WindowPtr window)
DialogItemType itemtype; {
Handle item;
VersRecHndl vers;
Rect box;
StringPtr longvers;
WinInfo *wi;
if (windows.about)
SelectWindow(windows.about);
else {
windows.about =
GetDialogWindow(GetNewDialog(wAbout, NULL, (WindowPtr)-1));
wi = smalloc(sizeof(*wi));
wi->s = NULL;
wi->wtype = wAbout;
SetWRefCon(windows.about, (long)wi);
vers = (VersRecHndl)Get1Resource('vers', 1);
if (vers != NULL && *vers != NULL) {
longvers = (*vers)->shortVersion + (*vers)->shortVersion[0] + 1;
GetDialogItem(GetDialogFromWindow(windows.about), wiAboutVersion,
&itemtype, &item, &box);
assert(itemtype & kStaticTextDialogItem);
SetDialogItemText(item, longvers);
}
ShowWindow(windows.about);
}
}
static void mac_openlicence(void) {
WinInfo *wi;
if (windows.licence)
SelectWindow(windows.licence);
else {
windows.licence = GetNewWindow(wLicence, NULL, (WindowPtr)-1);
wi = smalloc(sizeof(*wi));
wi->s = NULL;
wi->wtype = wLicence;
SetWRefCon(windows.licence, (long)wi);
ShowWindow(windows.licence);
}
}
static void mac_closewindow(WindowPtr window) {
switch (mac_windowtype(window)) { switch (mac_windowtype(window)) {
#if !TARGET_API_MAC_CARBON #if !TARGET_API_MAC_CARBON
@ -528,14 +411,9 @@ static void mac_closewindow(WindowPtr window) {
CloseDeskAcc(GetWindowKind(window)); CloseDeskAcc(GetWindowKind(window));
break; break;
#endif #endif
case wAbout: default:
windows.about = NULL; if (mac_wininfo(window)->close != NULL)
DisposeDialog(GetDialogFromWindow(window)); (*mac_wininfo(window)->close)(window);
break;
case wLicence:
windows.licence = NULL;
DisposeWindow(window);
break;
} }
} }
@ -569,15 +447,15 @@ static void mac_adjustmenus(void) {
DisableItem(menu, iClose); DisableItem(menu, iClose);
EnableItem(menu, iQuit); EnableItem(menu, iQuit);
switch (mac_windowtype(window)) { if (mac_wininfo(window)->adjustmenus != NULL)
default: (*mac_wininfo(window)->adjustmenus)(window);
else {
DisableItem(menu, iSave); DisableItem(menu, iSave);
DisableItem(menu, iSaveAs); DisableItem(menu, iSaveAs);
menu = GetMenuHandle(mEdit); menu = GetMenuHandle(mEdit);
DisableItem(menu, 0); DisableItem(menu, 0);
menu = GetMenuHandle(mWindow); menu = GetMenuHandle(mWindow);
DisableItem(menu, 0); /* Until we get more than 1 item on it. */ DisableItem(menu, 0); /* Until we get more than 1 item on it. */
break;
} }
DrawMenuBar(); DrawMenuBar();
} }
@ -585,7 +463,8 @@ static void mac_adjustmenus(void) {
/* /*
* Make sure the right cursor's being displayed. * Make sure the right cursor's being displayed.
*/ */
static void mac_adjustcursor(RgnHandle cursrgn) { static void mac_adjustcursor(RgnHandle cursrgn)
{
Point mouse; Point mouse;
WindowPtr window, front; WindowPtr window, front;
short part; short part;
@ -618,8 +497,9 @@ static void mac_adjustcursor(RgnHandle cursrgn) {
#endif #endif
} }
} else { } else {
switch (mac_windowtype(window)) { if (mac_wininfo(window)->adjustcursor != NULL)
default: (*mac_wininfo(window)->adjustcursor)(window, mouse, cursrgn);
else {
#if TARGET_API_MAC_CARBON #if TARGET_API_MAC_CARBON
GetQDGlobalsArrow(&arrow); GetQDGlobalsArrow(&arrow);
SetCursor(&arrow); SetCursor(&arrow);
@ -628,7 +508,6 @@ static void mac_adjustcursor(RgnHandle cursrgn) {
SetCursor(&qd.arrow); SetCursor(&qd.arrow);
CopyRgn(window->visRgn, cursrgn); CopyRgn(window->visRgn, cursrgn);
#endif #endif
break;
} }
} }
} }

View File

@ -1,4 +1,4 @@
/* $Id: macpgen.r,v 1.2 2003/02/15 14:20:43 ben Exp $ */ /* $Id: macpgen.r,v 1.3 2003/02/16 14:27:37 ben Exp $ */
/* /*
* Copyright (c) 1999, 2002 Ben Harris * Copyright (c) 1999, 2002 Ben Harris
* All rights reserved. * All rights reserved.
@ -448,8 +448,8 @@ resource 'DLOG' (wKey, "key", purgeable) {
noGrowDocProc, noGrowDocProc,
invisible, invisible,
goAway, goAway,
wAbout, /* RefCon -- identifies the window to PuTTY */ wKey, /* RefCon -- identifies the window to PuTTY */
wAbout, /* DITL ID */ wKey, /* DITL ID */
"untitled", "untitled",
staggerParentWindowScreen staggerParentWindowScreen
}; };
@ -462,6 +462,8 @@ resource 'dlgx' (wKey, "key", purgeable) {
resource 'DITL' (wKey, "key", purgeable) { resource 'DITL' (wKey, "key", purgeable) {
{ {
{ 13, 13, 33, 227 },
Button { enabled, "Generate" },
} }
}; };

View File

@ -1,4 +1,4 @@
/* $Id: macpgkey.c,v 1.1 2003/02/16 13:03:12 ben Exp $ */ /* $Id: macpgkey.c,v 1.2 2003/02/16 14:27:37 ben Exp $ */
/* /*
* Copyright (c) 2003 Ben Harris * Copyright (c) 2003 Ben Harris
* All rights reserved. * All rights reserved.
@ -35,6 +35,54 @@
#include "mac.h" #include "mac.h"
#include "macpgrid.h" #include "macpgrid.h"
static void mac_clickkey(WindowPtr window, EventRecord *event)
{
short item;
DialogRef dialog;
dialog = GetDialogFromWindow(window);
if (DialogSelect(event, &dialog, &item))
switch (item) {
case wiKeyGenerate:
/* Do something */
break;
}
}
static void mac_activatekey(WindowPtr window, EventRecord *event)
{
DialogRef dialog;
DialogItemType itemtype;
Handle itemhandle;
short item;
Rect itemrect;
int active;
dialog = GetDialogFromWindow(window);
active = (event->modifiers & activeFlag) != 0;
GetDialogItem(dialog, wiKeyGenerate, &itemtype, &itemhandle, &itemrect);
HiliteControl((ControlHandle)itemhandle, active ? 0 : 255);
DialogSelect(event, &dialog, &item);
}
static void mac_updatekey(WindowPtr window)
{
#if TARGET_API_MAC_CARBON
RgnHandle rgn;
#endif
BeginUpdate(window);
#if TARGET_API_MAC_CARBON
rgn = NewRgn();
GetPortVisibleRegion(GetWindowPort(window), rgn);
UpdateDialog(GetDialogFromWindow(window), rgn);
DisposeRgn(rgn);
#else
UpdateDialog(window, window->visRgn);
#endif
EndUpdate(window);
}
void mac_newkey(void) void mac_newkey(void)
{ {
KeyState *ks; KeyState *ks;
@ -46,8 +94,11 @@ void mac_newkey(void)
memset(wi, 0, sizeof(*wi)); memset(wi, 0, sizeof(*wi));
wi->ks = ks; wi->ks = ks;
wi->wtype = wKey; wi->wtype = wKey;
SetWRefCon(ks->box, (long)wi); wi->update = &mac_updatekey;
ShowWindow(ks->box); wi->click = &mac_clickkey;
wi->activate = &mac_activatekey;
SetWRefCon(GetDialogWindow(ks->box), (long)wi);
ShowWindow(GetDialogWindow(ks->box));
} }
/* /*

View File

@ -1,4 +1,4 @@
/* $Id: macpgrid.h,v 1.2 2003/02/15 14:20:43 ben Exp $ */ /* $Id: macpgrid.h,v 1.3 2003/02/16 14:27:37 ben Exp $ */
/* /*
* macpgrid.h -- Mac resource IDs for PuTTYgen * macpgrid.h -- Mac resource IDs for PuTTYgen
@ -43,3 +43,4 @@
#define wiAboutVersion 3 #define wiAboutVersion 3
#define wLicence 131 #define wLicence 131
#define wKey 134 #define wKey 134
#define wiKeyGenerate 1