2002-08-12 22:29:38 +00:00
|
|
|
// The contents of this file are subject to the Mozilla Public License
|
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
|
|
// http://www.mozilla.org/MPL/
|
|
|
|
//
|
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2002-08-12 23:22:17 +00:00
|
|
|
#include "mac_about.h"
|
2002-08-12 22:29:38 +00:00
|
|
|
|
2002-08-12 23:22:17 +00:00
|
|
|
// Create, show and run our about box
|
2002-08-12 22:29:38 +00:00
|
|
|
//
|
2002-08-12 23:22:17 +00:00
|
|
|
OSStatus CreateAboutWindow()
|
2002-08-12 22:29:38 +00:00
|
|
|
{
|
2003-06-06 22:08:46 +00:00
|
|
|
IBNibRef nibRef;
|
|
|
|
EventTypeSpec dialogSpec = {kEventClassCommand, kEventCommandProcess };
|
|
|
|
WindowRef aboutWindow;
|
|
|
|
EventHandlerUPP aboutBoxUPP;
|
|
|
|
OSStatus err = noErr;
|
2002-08-12 22:29:38 +00:00
|
|
|
|
|
|
|
// Find the dialog nib
|
2002-08-12 23:22:17 +00:00
|
|
|
err = CreateNibReference(CFSTR("AboutBox"), &nibRef);
|
2002-08-12 22:29:38 +00:00
|
|
|
require_noerr( err, CantFindDialogNib );
|
|
|
|
|
|
|
|
// Load the window inside it
|
2002-08-12 23:22:17 +00:00
|
|
|
err = CreateWindowFromNib(nibRef, CFSTR("About Box"), &aboutWindow);
|
2002-08-12 22:29:38 +00:00
|
|
|
require_noerr( err, CantCreateDialogWindow );
|
|
|
|
|
|
|
|
// We don't need the nib reference anymore.
|
|
|
|
DisposeNibReference(nibRef);
|
|
|
|
|
|
|
|
// Install our event handler
|
2002-08-12 23:22:17 +00:00
|
|
|
/*dialogUPP = NewEventHandlerUPP (JoinDialogEventHandler);
|
|
|
|
err = InstallWindowEventHandler (aboutWindow, aboutBoxUPP, 1, &dialogSpec, (void *) dialogWindow, NULL);
|
|
|
|
require_noerr( err, CantInstallDialogHandler );*/
|
2002-08-12 22:29:38 +00:00
|
|
|
|
|
|
|
// Show the window
|
2002-08-12 23:22:17 +00:00
|
|
|
ShowWindow( aboutWindow );
|
2002-08-12 22:29:38 +00:00
|
|
|
|
2002-08-12 23:22:17 +00:00
|
|
|
/*HideWindow(aboutWindow);
|
|
|
|
DisposeWindow(aboutWindow);
|
|
|
|
DisposeEventHandlerUPP(aboutBoxUPP);*/
|
2002-08-12 22:29:38 +00:00
|
|
|
|
|
|
|
CantFindDialogNib:
|
|
|
|
CantCreateDialogWindow:
|
|
|
|
CantInstallDialogHandler:
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2002-08-12 23:22:17 +00:00
|
|
|
|
2002-08-12 22:29:38 +00:00
|
|
|
// Dialog event handler
|
|
|
|
//
|
2002-08-12 23:22:17 +00:00
|
|
|
/*pascal OSStatus AboutBoxEventHandler (EventHandlerCallRef myHandler, EventRef event, void *userData) {
|
2003-06-06 22:08:46 +00:00
|
|
|
OSStatus result = eventNotHandledErr;
|
|
|
|
HICommand command;
|
|
|
|
bool stopModalLoop = FALSE;
|
2002-08-12 22:29:38 +00:00
|
|
|
|
|
|
|
// Get the HI Command
|
|
|
|
GetEventParameter (event, kEventParamDirectObject, typeHICommand, NULL,
|
|
|
|
sizeof (HICommand), NULL, &command);
|
|
|
|
// Look for our Yes Join and No Join commands
|
|
|
|
switch (command.commandID) {
|
|
|
|
case 'ysjn':
|
|
|
|
//HandleResponse(TRUE);
|
|
|
|
stopModalLoop = TRUE;
|
|
|
|
result = noErr;
|
|
|
|
break;
|
|
|
|
case 'nojn':
|
|
|
|
//HandleResponse(FALSE);
|
|
|
|
stopModalLoop = TRUE;
|
|
|
|
result = noErr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop the modal loop.
|
|
|
|
if (stopModalLoop) {
|
|
|
|
QuitAppModalLoopForWindow((WindowRef)userData);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Return how we handled the event.
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-08-12 23:22:17 +00:00
|
|
|
*/
|