gerv%gerv.net f4294ea0f8 Bug 236613: change to MPL/LGPL/GPL tri-license.
git-svn-id: svn://10.0.0.236/trunk@155026 18797224-902f-48f8-a5cc-f745e15eee43
2004-04-17 14:37:35 +00:00

292 lines
5.9 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (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 Mozilla Communicator client code, released
* March 31, 1998.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1999
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Samir Gehani <sgehani@netscape.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef _NS_EVENTHANDLER_H_
#include "nsEventHandler.h"
#endif
#include <LowMem.h>
#include <ToolUtils.h>
#include "nsASEApp.h"
#include "nsFileSelector.h"
#include "nsAppleSingleEncoder.h"
#include "nsAppleSingleDecoder.h"
nsEventHandler::nsEventHandler()
{
}
nsEventHandler::~nsEventHandler()
{
}
OSErr
nsEventHandler::HandleNextEvent(EventRecord *aEvt)
{
OSErr err = noErr;
mCurrEvent = aEvt;
switch(aEvt->what)
{
case kHighLevelEvent:
err = AEProcessAppleEvent(aEvt);
if (err != errAEEventNotHandled)
break;
case mouseDown:
err = HandleMouseDown();
break;
case mouseUp:
break;
case autoKey:
case keyDown:
err = HandleKeyDown();
break;
case updateEvt:
err = HandleUpdateEvt();
break;
case activateEvt:
err = HandleActivateEvt();
break;
case osEvt:
err = HandleOSEvt();
break;
case nullEvent:
break;
default:
break;
}
return err;
}
OSErr
nsEventHandler::HandleMouseDown()
{
OSErr err = noErr;
WindowPtr currWindow;
SInt16 cntlPartCode;
SInt32 menuChoice;
cntlPartCode = FindWindow(mCurrEvent->where, &currWindow);
switch (cntlPartCode)
{
case inMenuBar:
menuChoice = MenuSelect(mCurrEvent->where);
HandleMenuChoice(menuChoice);
::InvalMenuBar();
break;
default:
break;
}
return err;
}
OSErr
nsEventHandler::HandleKeyDown()
{
OSErr err = noErr;
SInt8 charCode;
SInt32 menuChoice = 0;
charCode = mCurrEvent->message & charCodeMask;
if ((mCurrEvent->modifiers & cmdKey) != 0)
{
switch (charCode)
{
case 'E':
case 'e':
menuChoice = rMenuFile;
menuChoice <<= 16;
menuChoice |= rMenuItemASEncode;
break;
case 'D':
case 'd':
menuChoice = rMenuFile;
menuChoice <<= 16;
menuChoice |= rMenuItemASDecode;
break;
case 'F':
case 'f':
menuChoice = rMenuFile;
menuChoice <<= 16;
menuChoice |= rMenuItemASEncodeFolder;
break;
case 'O':
case 'o':
menuChoice = rMenuFile;
menuChoice <<= 16;
menuChoice |= rMenuItemASDecodeFolder;
break;
case 'Q':
case 'q':
menuChoice = rMenuFile;
menuChoice <<= 16;
menuChoice |= rMenuItemQuit;
break;
default:
menuChoice = 0;
break;
}
err = HandleMenuChoice(menuChoice);
}
return err;
}
OSErr
nsEventHandler::HandleUpdateEvt()
{
return noErr;
}
OSErr
nsEventHandler::HandleActivateEvt()
{
return noErr;
}
OSErr
nsEventHandler::HandleOSEvt()
{
::HiliteMenu(0);
return noErr;
}
OSErr
nsEventHandler::HandleInContent()
{
return noErr;
}
OSErr
nsEventHandler::HandleMenuChoice(SInt32 aChoice)
{
OSErr err = noErr;
long menuID = HiWord(aChoice);
long menuItem = LoWord(aChoice);
FSSpec file, outFile;
nsFileSelector selector;
switch (menuID)
{
case rMenuFile:
switch (menuItem)
{
case rMenuItemASEncode: /* AS Encode... */
err = selector.SelectFile(&file);
if (err == noErr)
{
if (nsAppleSingleEncoder::HasResourceFork(&file))
{
nsAppleSingleEncoder encoder;
err = encoder.Encode(&file);
}
}
break;
case rMenuItemASDecode: /* AS Decode... */
err = selector.SelectFile(&file);
if (err == noErr)
{
if (nsAppleSingleDecoder::IsAppleSingleFile(&file))
{
nsAppleSingleDecoder decoder;
err = decoder.Decode(&file, &outFile);
}
}
break;
case rMenuItemASEncodeFolder: /* AS Encode Folder... */
err = selector.SelectFolder(&file);
if (err == noErr)
{
nsAppleSingleEncoder encoder;
err = encoder.EncodeFolder(&file);
}
break;
case rMenuItemASDecodeFolder: /* AS Decode Folder... */
err = selector.SelectFolder(&file);
if (err == noErr)
{
nsAppleSingleDecoder decoder;
err = decoder.DecodeFolder(&file);
}
break;
case rMenuItemQuit: /* Quit */
nsASEApp::SetCompletionStatus(true);
break;
}
break;
case rMenuApple:
if (menuItem == rMenuItemAbout)
::Alert(rAboutBox, nil);
break;
default:
break;
}
return err;
}