2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2002-08-12 22:29:38 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation;
|
|
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This software is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2002-08-12 22:29:38 +00:00
|
|
|
|
|
|
|
#include "mac_join.h"
|
|
|
|
|
2003-02-10 18:45:27 +00:00
|
|
|
bool success;
|
|
|
|
|
2003-06-06 22:08:46 +00:00
|
|
|
#define kJoinSignature 'join'
|
|
|
|
#define kProjectURLFieldID 128
|
|
|
|
#define kAccountKeyFieldID 129
|
2003-02-10 18:45:27 +00:00
|
|
|
|
|
|
|
// Create, show and run modally our join window
|
2002-08-12 22:29:38 +00:00
|
|
|
//
|
2003-02-10 18:45:27 +00:00
|
|
|
OSStatus CreateJoinDialog( char *master_url, char *account_key )
|
2002-08-12 22:29:38 +00:00
|
|
|
{
|
2003-06-06 22:08:46 +00:00
|
|
|
IBNibRef nibRef;
|
|
|
|
EventTypeSpec dialogSpec = {kEventClassCommand, kEventCommandProcess };
|
|
|
|
WindowRef dialogWindow;
|
|
|
|
EventHandlerUPP dialogUPP;
|
|
|
|
OSStatus err = noErr;
|
|
|
|
Size realSize;
|
|
|
|
ControlID projectURLID = { kJoinSignature, kProjectURLFieldID };
|
|
|
|
ControlID accountKeyID = { kJoinSignature, kAccountKeyFieldID };
|
|
|
|
ControlHandle zeControl;
|
|
|
|
CFStringRef text;
|
2003-02-10 18:45:27 +00:00
|
|
|
|
|
|
|
success = false;
|
|
|
|
|
2002-08-12 22:29:38 +00:00
|
|
|
// Find the dialog nib
|
|
|
|
err = CreateNibReference(CFSTR("JoinDialog"), &nibRef);
|
|
|
|
require_noerr( err, CantFindDialogNib );
|
|
|
|
|
|
|
|
// Load the window inside it
|
|
|
|
err = CreateWindowFromNib(nibRef, CFSTR("Join Dialog"), &dialogWindow);
|
|
|
|
require_noerr( err, CantCreateDialogWindow );
|
|
|
|
|
|
|
|
// We don't need the nib reference anymore.
|
|
|
|
DisposeNibReference(nibRef);
|
|
|
|
|
|
|
|
// Install our event handler
|
|
|
|
dialogUPP = NewEventHandlerUPP (JoinDialogEventHandler);
|
|
|
|
err = InstallWindowEventHandler (dialogWindow, dialogUPP, 1, &dialogSpec, (void *) dialogWindow, NULL);
|
|
|
|
require_noerr( err, CantInstallDialogHandler );
|
|
|
|
|
|
|
|
// Show the window
|
|
|
|
ShowWindow( dialogWindow );
|
2003-02-10 18:45:27 +00:00
|
|
|
|
2002-08-12 22:29:38 +00:00
|
|
|
// Run modally
|
|
|
|
RunAppModalLoopForWindow(dialogWindow);
|
|
|
|
|
2003-02-10 18:45:27 +00:00
|
|
|
GetControlByID( dialogWindow, &projectURLID, &zeControl );
|
|
|
|
GetControlData( zeControl, 0, kControlEditTextCFStringTag, sizeof(CFStringRef), &text, &realSize);
|
|
|
|
CFStringGetCString( text, master_url, 256, CFStringGetSystemEncoding() );
|
|
|
|
|
|
|
|
GetControlByID( dialogWindow, &accountKeyID, &zeControl );
|
|
|
|
GetControlData( zeControl, 0, kControlEditTextCFStringTag, sizeof(CFStringRef), &text, &realSize);
|
|
|
|
CFStringGetCString( text, account_key, 256, CFStringGetSystemEncoding() );
|
|
|
|
|
2002-08-12 22:29:38 +00:00
|
|
|
HideWindow(dialogWindow);
|
|
|
|
DisposeWindow(dialogWindow);
|
|
|
|
DisposeEventHandlerUPP(dialogUPP);
|
|
|
|
|
|
|
|
CantFindDialogNib:
|
|
|
|
CantCreateDialogWindow:
|
|
|
|
CantInstallDialogHandler:
|
|
|
|
|
2003-02-10 18:45:27 +00:00
|
|
|
return success;
|
2002-08-12 22:29:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Dialog event handler
|
|
|
|
//
|
|
|
|
pascal OSStatus JoinDialogEventHandler (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) {
|
2003-06-06 22:08:46 +00:00
|
|
|
case kHICommandOK: // 'ok '
|
2003-02-10 18:45:27 +00:00
|
|
|
success = true;
|
2003-06-06 22:08:46 +00:00
|
|
|
case kHICommandCancel: // 'not!'
|
2002-08-12 22:29:38 +00:00
|
|
|
stopModalLoop = TRUE;
|
|
|
|
result = noErr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop the modal loop.
|
|
|
|
if (stopModalLoop) {
|
|
|
|
QuitAppModalLoopForWindow((WindowRef)userData);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Return how we handled the event.
|
|
|
|
return result;
|
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_f85123c042 = "$Id$";
|