mirror of
https://github.com/gwm17/glfw.git
synced 2024-11-22 18:28:52 -05:00
Add touch input toggling to events test
This commit is contained in:
parent
036d70cdb8
commit
b3e015d212
|
@ -50,6 +50,7 @@ typedef struct
|
|||
GLFWwindow* window;
|
||||
int number;
|
||||
int closeable;
|
||||
int touch;
|
||||
} Slot;
|
||||
|
||||
static void usage(void)
|
||||
|
@ -372,6 +373,15 @@ static void key_callback(GLFWwindow* window, int key, int scancode, int action,
|
|||
|
||||
switch (key)
|
||||
{
|
||||
case GLFW_KEY_T:
|
||||
{
|
||||
slot->touch = !slot->touch;
|
||||
glfwSetInputMode(window, GLFW_TOUCH, slot->touch);
|
||||
|
||||
printf("(( touch %s ))\n", slot->touch ? "enabled" : "disabled");
|
||||
break;
|
||||
}
|
||||
|
||||
case GLFW_KEY_C:
|
||||
{
|
||||
slot->closeable = !slot->closeable;
|
||||
|
@ -526,6 +536,7 @@ int main(int argc, char** argv)
|
|||
char title[128];
|
||||
|
||||
slots[i].closeable = GLFW_TRUE;
|
||||
slots[i].touch = GLFW_FALSE;
|
||||
slots[i].number = i + 1;
|
||||
|
||||
sprintf(title, "Event Linter (Window %i)", slots[i].number);
|
||||
|
|
Loading…
Reference in New Issue
Block a user