InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
KBSCModifierDefs.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: lance bushore
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __KBSCModifierDefs__
25 #define __KBSCModifierDefs__
26 
27 // KBSC modifiers
28 #define kNoKBSCModifier 0x0
29 #define kControl 0x1
30 #define kShift 0x10
31 #define kOption 0x100
32 #define kMacControl 0x1000
33 #define kControlShift kControl|kShift
34 #define kControlOption kControl|kOption
35 #define kShiftOption kShift|kOption
36 #define kControlShiftOption kControl|kShift|kOption
37 
38 #endif // __KBSCModifierDefs__