1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

The "about" box now behaves approximately as it should (though we still don't

have a licence box).

[originally from svn r154]
This commit is contained in:
Ben Harris 1999-04-02 12:58:03 +00:00
parent 3966fdee44
commit 05e93b3d2b
4 changed files with 60 additions and 19 deletions

58
mac.c
View File

@ -1,4 +1,4 @@
/* $Id: mac.c,v 1.1.2.22 1999/04/01 21:26:44 ben Exp $ */
/* $Id: mac.c,v 1.1.2.23 1999/04/02 12:58:02 ben Exp $ */
/*
* Copyright (c) 1999 Ben Harris
* All rights reserved.
@ -40,8 +40,10 @@
#include <Devices.h>
#include <DiskInit.h>
#include <Gestalt.h>
#include <Resources.h>
#include <ToolUtils.h>
#include <assert.h>
#include <limits.h>
#include <stdarg.h>
#include <stdlib.h> /* putty.h needs size_t */
@ -64,11 +66,13 @@ static void mac_eventloop(void);
static void mac_event(EventRecord *);
static void mac_contentclick(WindowPtr, EventRecord *);
static void mac_growwindow(WindowPtr, EventRecord *);
static void mac_activatewindow(WindowPtr, Boolean);
static void mac_activatewindow(WindowPtr, EventRecord *);
static void mac_activateabout(WindowPtr, EventRecord *);
static void mac_updatewindow(WindowPtr);
static void mac_keypress(EventRecord *);
static int mac_windowtype(WindowPtr);
static void mac_menucommand(long);
static void mac_openabout(void);
static void mac_adjustcursor(RgnHandle);
static void mac_adjustmenus(void);
static void mac_closewindow(WindowPtr);
@ -205,8 +209,7 @@ static void mac_event(EventRecord *event) {
mac_keypress(event);
break;
case activateEvt:
mac_activatewindow((WindowPtr)event->message,
(event->modifiers & activeFlag) != 0);
mac_activatewindow((WindowPtr)event->message, event);
break;
case updateEvt:
mac_updatewindow((WindowPtr)event->message);
@ -246,16 +249,34 @@ static void mac_growwindow(WindowPtr window, EventRecord *event) {
}
}
static void mac_activatewindow(WindowPtr window, Boolean active) {
static void mac_activatewindow(WindowPtr window, EventRecord *event) {
int active;
active = (event->modifiers & activeFlag) != 0;
mac_adjustmenus();
switch (mac_windowtype(window)) {
case wTerminal:
mac_activateterm(window, active);
break;
case wAbout:
mac_activateabout(window, event);
break;
}
}
static void mac_activateabout(WindowPtr window, EventRecord *event) {
DialogItemType itemtype;
Handle itemhandle;
short item;
Rect itemrect;
int active;
active = (event->modifiers & activeFlag) != 0;
GetDialogItem(window, wiAboutLicence, &itemtype, &itemhandle, &itemrect);
HiliteControl((ControlHandle)itemhandle, active ? 0 : 255);
DialogSelect(event, &window, &item);
}
static void mac_updatewindow(WindowPtr window) {
switch (mac_windowtype(window)) {
@ -328,10 +349,7 @@ static void mac_menucommand(long result) {
case mApple:
switch (item) {
case iAbout:
if (windows.about)
SelectWindow(windows.about);
else
windows.about = GetNewDialog(wAbout, NULL, (WindowPtr)-1);
mac_openabout();
goto done;
default:
GetMenuItemText(GetMenuHandle(mApple), item, da);
@ -363,6 +381,28 @@ static void mac_menucommand(long result) {
HiliteMenu(0);
}
static void mac_openabout(void) {
DialogItemType itemtype;
Handle item;
VersRecHndl vers;
Rect box;
StringPtr longvers;
if (windows.about)
SelectWindow(windows.about);
else {
windows.about = GetNewDialog(wAbout, NULL, (WindowPtr)-1);
/* XXX check we're using the right resource file? */
vers = (VersRecHndl)GetResource('vers', 1);
assert(vers != NULL && *vers != NULL);
longvers = (*vers)->shortVersion + (*vers)->shortVersion[0] + 1;
GetDialogItem(windows.about, wiAboutVersion, &itemtype, &item, &box);
assert(itemtype & kStaticTextDialogItem);
SetDialogItemText(item, longvers);
ShowWindow(windows.about);
}
}
static void mac_closewindow(WindowPtr window) {
switch (mac_windowtype(window)) {

View File

@ -1,4 +1,4 @@
/* $Id: mac_res.r,v 1.1.2.16 1999/04/01 21:27:36 ben Exp $ */
/* $Id: mac_res.r,v 1.1.2.17 1999/04/02 12:58:02 ben Exp $ */
/*
* Copyright (c) 1999 Ben Harris
* All rights reserved.
@ -404,9 +404,9 @@ resource 'CNTL' (cVScroll, "vscroll", purgeable) {
/* "About" box */
resource 'DLOG' (wAbout, "about", purgeable) {
{ 0, 0, 120, 186 },
{ 0, 0, 120, 240 },
noGrowDocProc,
visible,
invisible,
goAway,
wAbout, /* RefCon -- identifies the window to PuTTY */
wAbout, /* DITL ID */
@ -422,13 +422,13 @@ resource 'dlgx' (wAbout, "about", purgeable) {
resource 'DITL' (wAbout, "about", purgeable) {
{
{ 87, 13, 107, 173 },
{ 87, 13, 107, 227 },
Button { enabled, "View Licence" },
{ 13, 13, 29, 173 },
{ 13, 13, 29, 227 },
StaticText { disabled, "PuTTY"},
{ 42, 13, 74, 173 },
StaticText { disabled, "Dev 0.45 Mac 0\n"
"© 1997-9 Simon Tatham"},
{ 42, 13, 74, 227 },
StaticText { disabled, "Some version or other\n"
"Copyright © 1997-9 Simon Tatham"},
}
};

View File

@ -1,4 +1,4 @@
/* $Id: macresid.h,v 1.1.2.5 1999/03/11 21:40:32 ben Exp $ */
/* $Id: macresid.h,v 1.1.2.6 1999/04/02 12:58:03 ben Exp $ */
/*
* macresid.h -- Mac resource IDs
@ -36,6 +36,7 @@
#define wFatal 128
#define wAbout 129
#define wiAboutLicence 1
#define wiAboutVersion 3
#define wTerminal 130
#define wLicence 131

View File

@ -19,6 +19,6 @@ resource 'vers' (1, purgeable) {
PUTTY_VERS_SHORT_STR,
PUTTY_VERS_LONG_STR " (" BUILD_ARCH ")\n"
"Copyright \$a9 Simon Tatham 1997-9",
"Copyright \$a9 Simon Tatham 1999",
};