ede860e91c
Bug: skia: Change-Id: I41480aa89dfcd8cb7e016e477cbabe354f35ce8a Reviewed-on: https://skia-review.googlesource.com/75480 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
23 lines
436 B
C
23 lines
436 B
C
|
|
/*
|
|
* Copyright 2006 The Android Open Source Project
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
|
|
#ifndef SkKey_DEFINED
|
|
#define SkKey_DEFINED
|
|
|
|
#include "SkTypes.h"
|
|
|
|
enum SkModifierKeys {
|
|
kShift_SkModifierKey = 1 << 0,
|
|
kControl_SkModifierKey = 1 << 1,
|
|
kOption_SkModifierKey = 1 << 2, // same as ALT
|
|
kCommand_SkModifierKey = 1 << 3,
|
|
};
|
|
|
|
#endif
|