Implement rendering of selections

This commit is contained in:
Kovid Goyal
2016-11-29 09:45:14 +05:30
parent 05662efdd9
commit f4e3fbcb2e
8 changed files with 99 additions and 16 deletions

View File

@@ -136,6 +136,10 @@ GLFW_KEY_RIGHT_ALT = 346
GLFW_KEY_RIGHT_SUPER = 347
GLFW_KEY_MENU = 348
GLFW_KEY_LAST = GLFW_KEY_MENU
MODIFIER_KEYS = (
GLFW_KEY_LEFT_SHIFT, GLFW_KEY_RIGHT_SHIFT, GLFW_KEY_LEFT_ALT,
GLFW_KEY_RIGHT_ALT, GLFW_KEY_LEFT_CONTROL, GLFW_KEY_RIGHT_CONTROL,
GLFW_KEY_LEFT_SUPER, GLFW_KEY_RIGHT_SUPER)
# --- Modifiers ---------------------------------------------------------------