1 \section{Key Modifiers
}\label{keymodifiers
}
3 \wxheading{Include files
}
7 The following key modifier constants are defined:
15 wxMOD_CONTROL =
0x0002,
16 wxMOD_ALTGR = wxMOD_ALT | wxMOD_CONTROL,
19 #if defined(__WXMAC__) || defined(__WXCOCOA__)
20 wxMOD_CMD = wxMOD_META,
22 wxMOD_CMD = wxMOD_CONTROL,
29 Notice that
\texttt{wxMOD
\_CMD} should be used instead of
30 \texttt{wxMOD
\_CONTROL} in portable code to account for the fact that although
31 \textsc{Control
} modifier exists under Mac OS, it is not used for the same
32 purpose as under Windows or Unix there while the special Mac-specific
33 \textsc{Command
} modifier is used in exactly the same way.