netscape-revival
lib/mac/VText/V_PowerPlant_Mods/UEventUtils.h
// ===========================================================================
// UEventUtils.h ©1994 Metrowerks Inc. All rights reserved.
// ===========================================================================
#pragma once
#include <PP_Prefix.h>
class UEventUtils {
public:
static Boolean KeyDownInMap(Uint16 inScanCode, const KeyMap inKeys);
static short GetModifiers(void);
static void FleshOutEvent(Boolean inOldButtonWasDown, EventRecord *ioEvent);
};
// ===========================================================================
// Modifier key scan codes
enum {
cmdKeyCode = 0x37,
shiftKeyCode,
alphaLockKeyCode,
optionKeyCode,
controlKeyCode
};