2014-11-06 03:26:16 -05:00
|
|
|
//========================================================================
|
2015-06-01 16:55:06 -04:00
|
|
|
// GLFW 3.2 Mir - www.glfw.org
|
2014-11-06 03:26:16 -05:00
|
|
|
//------------------------------------------------------------------------
|
2015-07-30 13:59:32 -04:00
|
|
|
// Copyright (c) 2014-2015 Brandon Schaefer <brandon.schaefer@canonical.com>
|
2014-11-06 03:26:16 -05:00
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
#include "internal.h"
|
2014-11-06 03:24:49 -05:00
|
|
|
|
|
|
|
#include <linux/input.h>
|
2014-11-10 12:42:41 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-11-06 03:24:49 -05:00
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
|
2014-11-10 12:42:41 -05:00
|
|
|
typedef struct EventNode
|
|
|
|
{
|
|
|
|
TAILQ_ENTRY(EventNode) entries;
|
2015-07-30 13:59:32 -04:00
|
|
|
const MirEvent* event;
|
2014-11-10 12:42:41 -05:00
|
|
|
_GLFWwindow* window;
|
|
|
|
} EventNode;
|
|
|
|
|
|
|
|
static void deleteNode(EventQueue* queue, EventNode* node)
|
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
mir_event_unref(node->event);
|
2014-11-10 12:42:41 -05:00
|
|
|
free(node);
|
|
|
|
}
|
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
static GLFWbool emptyEventQueue(EventQueue* queue)
|
2014-11-10 12:42:41 -05:00
|
|
|
{
|
2015-08-23 13:30:04 -04:00
|
|
|
return queue->head.tqh_first == NULL;
|
2014-11-10 12:42:41 -05:00
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
// TODO The mir_event_ref is not supposed to be used but ... its needed
|
|
|
|
// in this case. Need to wait until we can read from an FD set up by mir
|
|
|
|
// for single threaded event handling.
|
|
|
|
static EventNode* newEventNode(const MirEvent* event, _GLFWwindow* context)
|
2014-11-10 12:42:41 -05:00
|
|
|
{
|
|
|
|
EventNode* new_node = calloc(1, sizeof(EventNode));
|
2015-07-30 13:59:32 -04:00
|
|
|
new_node->event = mir_event_ref(event);
|
2014-11-10 12:42:41 -05:00
|
|
|
new_node->window = context;
|
|
|
|
|
|
|
|
return new_node;
|
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
static void enqueueEvent(const MirEvent* event, _GLFWwindow* context)
|
2014-11-10 12:42:41 -05:00
|
|
|
{
|
|
|
|
pthread_mutex_lock(&_glfw.mir.event_mutex);
|
|
|
|
|
|
|
|
EventNode* new_node = newEventNode(event, context);
|
|
|
|
TAILQ_INSERT_TAIL(&_glfw.mir.event_queue->head, new_node, entries);
|
|
|
|
|
|
|
|
pthread_cond_signal(&_glfw.mir.event_cond);
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&_glfw.mir.event_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
static EventNode* dequeueEvent(EventQueue* queue)
|
|
|
|
{
|
|
|
|
EventNode* node = NULL;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&_glfw.mir.event_mutex);
|
|
|
|
|
|
|
|
node = queue->head.tqh_first;
|
|
|
|
|
|
|
|
if (node)
|
|
|
|
TAILQ_REMOVE(&queue->head, node, entries);
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&_glfw.mir.event_mutex);
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
/* FIXME Soon to be changed upstream mir! So we can use an egl config to figure out
|
|
|
|
the best pixel format!
|
|
|
|
*/
|
2014-11-06 17:52:38 -05:00
|
|
|
static MirPixelFormat findValidPixelFormat(void)
|
2014-11-06 03:23:02 -05:00
|
|
|
{
|
2015-01-05 17:11:11 -05:00
|
|
|
unsigned int i, validFormats, mirPixelFormats = 32;
|
|
|
|
MirPixelFormat formats[mir_pixel_formats];
|
2014-11-06 03:23:02 -05:00
|
|
|
|
|
|
|
mir_connection_get_available_surface_formats(_glfw.mir.connection, formats,
|
2015-01-05 17:11:11 -05:00
|
|
|
mirPixelFormats, &validFormats);
|
2014-11-06 03:23:02 -05:00
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
for (i = 0; i < validFormats; i++)
|
2014-11-06 03:23:02 -05:00
|
|
|
{
|
2014-11-06 17:52:38 -05:00
|
|
|
if (formats[i] == mir_pixel_format_abgr_8888 ||
|
|
|
|
formats[i] == mir_pixel_format_xbgr_8888 ||
|
|
|
|
formats[i] == mir_pixel_format_argb_8888 ||
|
|
|
|
formats[i] == mir_pixel_format_xrgb_8888)
|
2014-11-06 03:23:02 -05:00
|
|
|
{
|
2014-11-06 17:52:38 -05:00
|
|
|
return formats[i];
|
2014-11-06 03:23:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mir_pixel_format_invalid;
|
|
|
|
}
|
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
static int mirModToGLFWMod(uint32_t mods)
|
2014-11-06 03:27:54 -05:00
|
|
|
{
|
2014-11-06 17:52:38 -05:00
|
|
|
int publicMods = 0x0;
|
2014-11-06 03:27:54 -05:00
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
if (mods & mir_input_event_modifier_alt)
|
2014-11-06 17:52:38 -05:00
|
|
|
publicMods |= GLFW_MOD_ALT;
|
2015-07-30 13:59:32 -04:00
|
|
|
else if (mods & mir_input_event_modifier_shift)
|
2014-11-06 17:52:38 -05:00
|
|
|
publicMods |= GLFW_MOD_SHIFT;
|
2015-07-30 13:59:32 -04:00
|
|
|
else if (mods & mir_input_event_modifier_ctrl)
|
2014-11-06 17:52:38 -05:00
|
|
|
publicMods |= GLFW_MOD_CONTROL;
|
2015-07-30 13:59:32 -04:00
|
|
|
else if (mods & mir_input_event_modifier_meta)
|
2014-11-06 17:52:38 -05:00
|
|
|
publicMods |= GLFW_MOD_SUPER;
|
2014-11-06 03:27:54 -05:00
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
return publicMods;
|
2014-11-06 03:27:54 -05:00
|
|
|
}
|
|
|
|
|
2014-11-06 03:24:49 -05:00
|
|
|
// Taken from wl_init.c
|
|
|
|
static int toGLFWKeyCode(uint32_t key)
|
|
|
|
{
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case KEY_GRAVE: return GLFW_KEY_GRAVE_ACCENT;
|
|
|
|
case KEY_1: return GLFW_KEY_1;
|
|
|
|
case KEY_2: return GLFW_KEY_2;
|
|
|
|
case KEY_3: return GLFW_KEY_3;
|
|
|
|
case KEY_4: return GLFW_KEY_4;
|
|
|
|
case KEY_5: return GLFW_KEY_5;
|
|
|
|
case KEY_6: return GLFW_KEY_6;
|
|
|
|
case KEY_7: return GLFW_KEY_7;
|
|
|
|
case KEY_8: return GLFW_KEY_8;
|
|
|
|
case KEY_9: return GLFW_KEY_9;
|
|
|
|
case KEY_0: return GLFW_KEY_0;
|
|
|
|
case KEY_MINUS: return GLFW_KEY_MINUS;
|
|
|
|
case KEY_EQUAL: return GLFW_KEY_EQUAL;
|
|
|
|
case KEY_Q: return GLFW_KEY_Q;
|
|
|
|
case KEY_W: return GLFW_KEY_W;
|
|
|
|
case KEY_E: return GLFW_KEY_E;
|
|
|
|
case KEY_R: return GLFW_KEY_R;
|
|
|
|
case KEY_T: return GLFW_KEY_T;
|
|
|
|
case KEY_Y: return GLFW_KEY_Y;
|
|
|
|
case KEY_U: return GLFW_KEY_U;
|
|
|
|
case KEY_I: return GLFW_KEY_I;
|
|
|
|
case KEY_O: return GLFW_KEY_O;
|
|
|
|
case KEY_P: return GLFW_KEY_P;
|
|
|
|
case KEY_LEFTBRACE: return GLFW_KEY_LEFT_BRACKET;
|
|
|
|
case KEY_RIGHTBRACE: return GLFW_KEY_RIGHT_BRACKET;
|
|
|
|
case KEY_A: return GLFW_KEY_A;
|
|
|
|
case KEY_S: return GLFW_KEY_S;
|
|
|
|
case KEY_D: return GLFW_KEY_D;
|
|
|
|
case KEY_F: return GLFW_KEY_F;
|
|
|
|
case KEY_G: return GLFW_KEY_G;
|
|
|
|
case KEY_H: return GLFW_KEY_H;
|
|
|
|
case KEY_J: return GLFW_KEY_J;
|
|
|
|
case KEY_K: return GLFW_KEY_K;
|
|
|
|
case KEY_L: return GLFW_KEY_L;
|
|
|
|
case KEY_SEMICOLON: return GLFW_KEY_SEMICOLON;
|
|
|
|
case KEY_APOSTROPHE: return GLFW_KEY_APOSTROPHE;
|
|
|
|
case KEY_Z: return GLFW_KEY_Z;
|
|
|
|
case KEY_X: return GLFW_KEY_X;
|
|
|
|
case KEY_C: return GLFW_KEY_C;
|
|
|
|
case KEY_V: return GLFW_KEY_V;
|
|
|
|
case KEY_B: return GLFW_KEY_B;
|
|
|
|
case KEY_N: return GLFW_KEY_N;
|
|
|
|
case KEY_M: return GLFW_KEY_M;
|
|
|
|
case KEY_COMMA: return GLFW_KEY_COMMA;
|
|
|
|
case KEY_DOT: return GLFW_KEY_PERIOD;
|
|
|
|
case KEY_SLASH: return GLFW_KEY_SLASH;
|
|
|
|
case KEY_BACKSLASH: return GLFW_KEY_BACKSLASH;
|
|
|
|
case KEY_ESC: return GLFW_KEY_ESCAPE;
|
|
|
|
case KEY_TAB: return GLFW_KEY_TAB;
|
|
|
|
case KEY_LEFTSHIFT: return GLFW_KEY_LEFT_SHIFT;
|
|
|
|
case KEY_RIGHTSHIFT: return GLFW_KEY_RIGHT_SHIFT;
|
|
|
|
case KEY_LEFTCTRL: return GLFW_KEY_LEFT_CONTROL;
|
|
|
|
case KEY_RIGHTCTRL: return GLFW_KEY_RIGHT_CONTROL;
|
|
|
|
case KEY_LEFTALT: return GLFW_KEY_LEFT_ALT;
|
|
|
|
case KEY_RIGHTALT: return GLFW_KEY_RIGHT_ALT;
|
|
|
|
case KEY_LEFTMETA: return GLFW_KEY_LEFT_SUPER;
|
|
|
|
case KEY_RIGHTMETA: return GLFW_KEY_RIGHT_SUPER;
|
|
|
|
case KEY_MENU: return GLFW_KEY_MENU;
|
|
|
|
case KEY_NUMLOCK: return GLFW_KEY_NUM_LOCK;
|
|
|
|
case KEY_CAPSLOCK: return GLFW_KEY_CAPS_LOCK;
|
|
|
|
case KEY_PRINT: return GLFW_KEY_PRINT_SCREEN;
|
|
|
|
case KEY_SCROLLLOCK: return GLFW_KEY_SCROLL_LOCK;
|
|
|
|
case KEY_PAUSE: return GLFW_KEY_PAUSE;
|
|
|
|
case KEY_DELETE: return GLFW_KEY_DELETE;
|
|
|
|
case KEY_BACKSPACE: return GLFW_KEY_BACKSPACE;
|
|
|
|
case KEY_ENTER: return GLFW_KEY_ENTER;
|
|
|
|
case KEY_HOME: return GLFW_KEY_HOME;
|
|
|
|
case KEY_END: return GLFW_KEY_END;
|
|
|
|
case KEY_PAGEUP: return GLFW_KEY_PAGE_UP;
|
|
|
|
case KEY_PAGEDOWN: return GLFW_KEY_PAGE_DOWN;
|
|
|
|
case KEY_INSERT: return GLFW_KEY_INSERT;
|
|
|
|
case KEY_LEFT: return GLFW_KEY_LEFT;
|
|
|
|
case KEY_RIGHT: return GLFW_KEY_RIGHT;
|
|
|
|
case KEY_DOWN: return GLFW_KEY_DOWN;
|
|
|
|
case KEY_UP: return GLFW_KEY_UP;
|
|
|
|
case KEY_F1: return GLFW_KEY_F1;
|
|
|
|
case KEY_F2: return GLFW_KEY_F2;
|
|
|
|
case KEY_F3: return GLFW_KEY_F3;
|
|
|
|
case KEY_F4: return GLFW_KEY_F4;
|
|
|
|
case KEY_F5: return GLFW_KEY_F5;
|
|
|
|
case KEY_F6: return GLFW_KEY_F6;
|
|
|
|
case KEY_F7: return GLFW_KEY_F7;
|
|
|
|
case KEY_F8: return GLFW_KEY_F8;
|
|
|
|
case KEY_F9: return GLFW_KEY_F9;
|
|
|
|
case KEY_F10: return GLFW_KEY_F10;
|
|
|
|
case KEY_F11: return GLFW_KEY_F11;
|
|
|
|
case KEY_F12: return GLFW_KEY_F12;
|
|
|
|
case KEY_F13: return GLFW_KEY_F13;
|
|
|
|
case KEY_F14: return GLFW_KEY_F14;
|
|
|
|
case KEY_F15: return GLFW_KEY_F15;
|
|
|
|
case KEY_F16: return GLFW_KEY_F16;
|
|
|
|
case KEY_F17: return GLFW_KEY_F17;
|
|
|
|
case KEY_F18: return GLFW_KEY_F18;
|
|
|
|
case KEY_F19: return GLFW_KEY_F19;
|
|
|
|
case KEY_F20: return GLFW_KEY_F20;
|
|
|
|
case KEY_F21: return GLFW_KEY_F21;
|
|
|
|
case KEY_F22: return GLFW_KEY_F22;
|
|
|
|
case KEY_F23: return GLFW_KEY_F23;
|
|
|
|
case KEY_F24: return GLFW_KEY_F24;
|
|
|
|
case KEY_KPSLASH: return GLFW_KEY_KP_DIVIDE;
|
|
|
|
case KEY_KPDOT: return GLFW_KEY_KP_MULTIPLY;
|
|
|
|
case KEY_KPMINUS: return GLFW_KEY_KP_SUBTRACT;
|
|
|
|
case KEY_KPPLUS: return GLFW_KEY_KP_ADD;
|
|
|
|
case KEY_KP0: return GLFW_KEY_KP_0;
|
|
|
|
case KEY_KP1: return GLFW_KEY_KP_1;
|
|
|
|
case KEY_KP2: return GLFW_KEY_KP_2;
|
|
|
|
case KEY_KP3: return GLFW_KEY_KP_3;
|
|
|
|
case KEY_KP4: return GLFW_KEY_KP_4;
|
|
|
|
case KEY_KP5: return GLFW_KEY_KP_5;
|
|
|
|
case KEY_KP6: return GLFW_KEY_KP_6;
|
|
|
|
case KEY_KP7: return GLFW_KEY_KP_7;
|
|
|
|
case KEY_KP8: return GLFW_KEY_KP_8;
|
|
|
|
case KEY_KP9: return GLFW_KEY_KP_9;
|
|
|
|
case KEY_KPCOMMA: return GLFW_KEY_KP_DECIMAL;
|
|
|
|
case KEY_KPEQUAL: return GLFW_KEY_KP_EQUAL;
|
|
|
|
case KEY_KPENTER: return GLFW_KEY_KP_ENTER;
|
|
|
|
default: return GLFW_KEY_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
static void handleKeyEvent(const MirKeyboardEvent* key_event, _GLFWwindow* window)
|
2014-11-06 03:24:49 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
const int action = mir_keyboard_event_action (key_event);
|
|
|
|
const int scan_code = mir_keyboard_event_scan_code(key_event);
|
|
|
|
const int key_code = mir_keyboard_event_key_code (key_event);
|
|
|
|
const int modifiers = mir_keyboard_event_modifiers(key_event);
|
2014-11-06 03:24:49 -05:00
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
const int pressed = action == mir_keyboard_action_up ? GLFW_RELEASE : GLFW_PRESS;
|
|
|
|
const int mods = mirModToGLFWMod(modifiers);
|
|
|
|
const long text = _glfwKeySym2Unicode(key_code);
|
|
|
|
const int plain = !(mods & (GLFW_MOD_CONTROL | GLFW_MOD_ALT));
|
|
|
|
|
|
|
|
_glfwInputKey(window, toGLFWKeyCode(scan_code), scan_code, pressed, mods);
|
2014-11-06 03:24:49 -05:00
|
|
|
|
2014-11-06 03:27:54 -05:00
|
|
|
if (text != -1)
|
|
|
|
_glfwInputChar(window, text, mods, plain);
|
2014-11-06 03:24:49 -05:00
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
static void handlePointerButton(_GLFWwindow* window,
|
|
|
|
int pressed,
|
|
|
|
const MirPointerEvent* pointer_event)
|
2014-11-06 03:24:49 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
MirPointerButton button = mir_pointer_event_buttons (pointer_event);
|
|
|
|
int mods = mir_pointer_event_modifiers(pointer_event);
|
|
|
|
const int publicMods = mirModToGLFWMod(mods);
|
2014-11-06 17:52:38 -05:00
|
|
|
int publicButton;
|
2014-11-06 03:24:49 -05:00
|
|
|
|
|
|
|
switch (button)
|
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_pointer_button_primary:
|
2014-11-06 17:52:38 -05:00
|
|
|
publicButton = GLFW_MOUSE_BUTTON_LEFT;
|
2014-11-06 03:24:49 -05:00
|
|
|
break;
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_pointer_button_secondary:
|
2014-11-06 17:52:38 -05:00
|
|
|
publicButton = GLFW_MOUSE_BUTTON_RIGHT;
|
2014-11-06 03:24:49 -05:00
|
|
|
break;
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_pointer_button_tertiary:
|
2014-11-06 17:52:38 -05:00
|
|
|
publicButton = GLFW_MOUSE_BUTTON_MIDDLE;
|
2014-11-06 03:24:49 -05:00
|
|
|
break;
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_pointer_button_forward:
|
2014-11-06 03:24:49 -05:00
|
|
|
// FIXME What is the forward button?
|
2014-11-06 17:52:38 -05:00
|
|
|
publicButton = GLFW_MOUSE_BUTTON_4;
|
2014-11-06 03:24:49 -05:00
|
|
|
break;
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_pointer_button_back:
|
2014-11-06 03:24:49 -05:00
|
|
|
// FIXME What is the back button?
|
2014-11-06 17:52:38 -05:00
|
|
|
publicButton = GLFW_MOUSE_BUTTON_5;
|
2014-11-06 03:24:49 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
_glfwInputMouseClick(window, publicButton, pressed, publicMods);
|
2014-11-06 03:24:49 -05:00
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
static void handlePointerMotion(_GLFWwindow* window,
|
|
|
|
const MirPointerEvent* pointer_event)
|
2014-11-06 03:24:49 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
int current_x = window->cursorPosX;
|
|
|
|
int current_y = window->cursorPosY;
|
|
|
|
int x = mir_pointer_event_axis_value(pointer_event, mir_pointer_axis_x);
|
|
|
|
int y = mir_pointer_event_axis_value(pointer_event, mir_pointer_axis_y);
|
|
|
|
int dx = mir_pointer_event_axis_value(pointer_event, mir_pointer_axis_hscroll);
|
|
|
|
int dy = mir_pointer_event_axis_value(pointer_event, mir_pointer_axis_vscroll);
|
2014-11-06 03:24:49 -05:00
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
if (current_x != x || current_y != y)
|
|
|
|
_glfwInputCursorMotion(window, x, y);
|
|
|
|
if (dx != 0 || dy != 0)
|
|
|
|
_glfwInputScroll(window, dx, dy);
|
2014-11-06 03:24:49 -05:00
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
static void handlePointerEvent(const MirPointerEvent* pointer_event,
|
2014-11-06 17:52:38 -05:00
|
|
|
_GLFWwindow* window)
|
2014-11-06 03:24:49 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
int action = mir_pointer_event_action(pointer_event);
|
|
|
|
|
|
|
|
switch (action)
|
2014-11-06 03:24:49 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_pointer_action_button_down:
|
|
|
|
handlePointerButton(window, GLFW_PRESS, pointer_event);
|
2014-11-06 03:24:49 -05:00
|
|
|
break;
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_pointer_action_button_up:
|
|
|
|
handlePointerButton(window, GLFW_RELEASE, pointer_event);
|
2014-11-06 03:24:49 -05:00
|
|
|
break;
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_pointer_action_motion:
|
|
|
|
handlePointerMotion(window, pointer_event);
|
2014-11-06 03:24:49 -05:00
|
|
|
break;
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_pointer_action_enter:
|
|
|
|
case mir_pointer_action_leave:
|
2014-11-06 03:24:49 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
static void handleInput(const MirInputEvent* input_event, _GLFWwindow* window)
|
2014-11-06 03:24:49 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
int type = mir_input_event_get_type(input_event);
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case mir_input_event_type_key:
|
|
|
|
handleKeyEvent(mir_input_event_get_keyboard_event(input_event), window);
|
|
|
|
break;
|
|
|
|
case mir_input_event_type_pointer:
|
|
|
|
handlePointerEvent(mir_input_event_get_pointer_event(input_event), window);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2014-11-06 03:24:49 -05:00
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
static void handleEvent(const MirEvent* event, _GLFWwindow* window)
|
2014-11-06 03:24:49 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
int type = mir_event_get_type(event);
|
|
|
|
|
|
|
|
switch (type)
|
2014-11-06 17:52:38 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
case mir_event_type_input:
|
|
|
|
handleInput(mir_event_get_input_event(event), window);
|
2014-11-06 17:52:38 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2014-11-06 03:24:49 -05:00
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
static void addNewEvent(MirSurface* surface, const MirEvent* event, void* context)
|
2014-11-10 12:42:41 -05:00
|
|
|
{
|
|
|
|
enqueueEvent(event, context);
|
|
|
|
}
|
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
static GLFWbool createSurface(_GLFWwindow* window)
|
2014-11-06 03:21:12 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
MirSurfaceSpec* spec;
|
|
|
|
MirBufferUsage buffer_usage = mir_buffer_usage_hardware;
|
|
|
|
MirPixelFormat pixel_format = findValidPixelFormat();
|
2014-11-06 03:23:02 -05:00
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
if (pixel_format == mir_pixel_format_invalid)
|
2014-11-06 03:23:02 -05:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2014-11-06 17:52:38 -05:00
|
|
|
"Mir: Unable to find a correct pixel format");
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_FALSE;
|
2014-11-06 03:23:02 -05:00
|
|
|
}
|
2015-07-30 13:59:32 -04:00
|
|
|
|
|
|
|
spec = mir_connection_create_spec_for_normal_surface(_glfw.mir.connection,
|
|
|
|
window->mir.width,
|
|
|
|
window->mir.height,
|
|
|
|
pixel_format);
|
|
|
|
|
|
|
|
mir_surface_spec_set_buffer_usage(spec, buffer_usage);
|
|
|
|
mir_surface_spec_set_name(spec, "MirSurface");
|
|
|
|
|
|
|
|
window->mir.surface = mir_surface_create_sync(spec);
|
|
|
|
mir_surface_spec_release(spec);
|
2014-11-06 03:23:02 -05:00
|
|
|
|
|
|
|
if (!mir_surface_is_valid(window->mir.surface))
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-01-05 20:38:00 -05:00
|
|
|
"Mir: Unable to create surface: %s",
|
2015-01-05 17:11:11 -05:00
|
|
|
mir_surface_get_error_message(window->mir.surface));
|
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_FALSE;
|
2014-11-06 03:23:02 -05:00
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
mir_surface_set_event_handler(window->mir.surface, addNewEvent, window);
|
2014-11-06 03:24:49 -05:00
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_TRUE;
|
2014-11-06 03:25:52 -05:00
|
|
|
}
|
|
|
|
|
2014-11-10 12:42:41 -05:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void _glfwInitEventQueue(EventQueue* queue)
|
|
|
|
{
|
|
|
|
TAILQ_INIT(&queue->head);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwDeleteEventQueue(EventQueue* queue)
|
|
|
|
{
|
2014-11-10 15:17:21 -05:00
|
|
|
if (queue)
|
2014-11-10 12:42:41 -05:00
|
|
|
{
|
2014-11-10 15:17:21 -05:00
|
|
|
EventNode* node, *node_next;
|
|
|
|
node = queue->head.tqh_first;
|
2014-11-10 12:42:41 -05:00
|
|
|
|
2014-11-10 15:17:21 -05:00
|
|
|
while (node != NULL)
|
|
|
|
{
|
|
|
|
node_next = node->entries.tqe_next;
|
2014-11-10 12:42:41 -05:00
|
|
|
|
2014-11-10 15:17:21 -05:00
|
|
|
TAILQ_REMOVE(&queue->head, node, entries);
|
|
|
|
deleteNode(queue, node);
|
|
|
|
|
|
|
|
node = node_next;
|
|
|
|
}
|
|
|
|
|
2014-11-12 12:41:12 -05:00
|
|
|
free(queue);
|
|
|
|
}
|
2014-11-10 12:42:41 -05:00
|
|
|
}
|
2014-11-06 17:52:38 -05:00
|
|
|
|
2014-11-06 03:25:52 -05:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
int _glfwPlatformCreateWindow(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
const _GLFWctxconfig* ctxconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
|
|
|
{
|
2015-06-18 08:03:02 -04:00
|
|
|
if (ctxconfig->api != GLFW_NO_API)
|
|
|
|
{
|
|
|
|
if (!_glfwCreateContext(window, ctxconfig, fbconfig))
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
2014-11-06 03:25:52 -05:00
|
|
|
|
2014-11-06 15:07:20 -05:00
|
|
|
if (wndconfig->monitor)
|
|
|
|
{
|
2014-11-06 17:45:56 -05:00
|
|
|
GLFWvidmode mode;
|
|
|
|
_glfwPlatformGetVideoMode(wndconfig->monitor, &mode);
|
|
|
|
|
2015-01-05 17:11:11 -05:00
|
|
|
mir_surface_set_state(window->mir.surface, mir_surface_state_fullscreen);
|
2014-11-06 15:07:20 -05:00
|
|
|
|
2014-11-06 17:45:56 -05:00
|
|
|
if (wndconfig->width > mode.width || wndconfig->height > mode.height)
|
2014-11-06 15:07:20 -05:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Requested surface size too large: %ix%i",
|
2015-07-30 13:59:32 -04:00
|
|
|
wndconfig->width, wndconfig->height);
|
2014-11-06 15:07:20 -05:00
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_FALSE;
|
2014-11-06 15:07:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-06 03:25:52 -05:00
|
|
|
window->mir.width = wndconfig->width;
|
|
|
|
window->mir.height = wndconfig->height;
|
|
|
|
|
|
|
|
if (!createSurface(window))
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_FALSE;
|
2014-11-06 03:25:52 -05:00
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
window->mir.window = mir_buffer_stream_get_egl_native_window(
|
|
|
|
mir_surface_get_buffer_stream(window->mir.surface));
|
2014-11-06 03:25:52 -05:00
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_TRUE;
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformDestroyWindow(_GLFWwindow* window)
|
|
|
|
{
|
2014-11-06 17:52:38 -05:00
|
|
|
if (mir_surface_is_valid(window->mir.surface))
|
|
|
|
{
|
|
|
|
mir_surface_release_sync(window->mir.surface);
|
|
|
|
window->mir.surface = NULL;
|
|
|
|
}
|
2014-11-06 15:07:20 -05:00
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
_glfwDestroyContext(window);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
|
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
MirSurfaceSpec* spec;
|
|
|
|
const char* e_title = title ? title : "";
|
|
|
|
|
|
|
|
spec = mir_connection_create_spec_for_changes(_glfw.mir.connection);
|
|
|
|
mir_surface_spec_set_name(spec, e_title);
|
|
|
|
|
|
|
|
mir_surface_apply_spec(window->mir.surface, spec);
|
|
|
|
mir_surface_spec_release(spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
|
|
|
{
|
|
|
|
MirSurfaceSpec* spec;
|
|
|
|
|
|
|
|
spec = mir_connection_create_spec_for_changes(_glfw.mir.connection);
|
|
|
|
mir_surface_spec_set_width (spec, width);
|
|
|
|
mir_surface_spec_set_height(spec, height);
|
|
|
|
|
|
|
|
mir_surface_apply_spec(window->mir.surface, spec);
|
|
|
|
mir_surface_spec_release(spec);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
2014-02-12 20:57:59 -05:00
|
|
|
void _glfwPlatformSetWindowSizeLimits(_GLFWwindow* window,
|
|
|
|
int minwidth, int minheight,
|
|
|
|
int maxwidth, int maxheight)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowAspectRatio(_GLFWwindow* window, int numer, int denom)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
|
|
|
}
|
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int xpos, int ypos)
|
|
|
|
{
|
2014-11-06 03:24:08 -05:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window,
|
|
|
|
int* left, int* top,
|
|
|
|
int* right, int* bottom)
|
2014-11-06 03:26:39 -05:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2014-11-06 03:26:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2014-11-06 03:26:39 -05:00
|
|
|
}
|
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
{
|
2014-11-06 17:52:38 -05:00
|
|
|
if (width)
|
|
|
|
*width = window->mir.width;
|
|
|
|
if (height)
|
|
|
|
*height = window->mir.height;
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformIconifyWindow(_GLFWwindow* window)
|
|
|
|
{
|
2015-01-05 17:11:11 -05:00
|
|
|
mir_surface_set_state(window->mir.surface, mir_surface_state_minimized);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformRestoreWindow(_GLFWwindow* window)
|
|
|
|
{
|
2015-01-05 17:11:11 -05:00
|
|
|
mir_surface_set_state(window->mir.surface, mir_surface_state_restored);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformHideWindow(_GLFWwindow* window)
|
2014-11-06 03:26:39 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
MirSurfaceSpec* spec;
|
|
|
|
|
|
|
|
spec = mir_connection_create_spec_for_changes(_glfw.mir.connection);
|
|
|
|
mir_surface_spec_set_state(spec, mir_surface_state_hidden);
|
|
|
|
|
|
|
|
mir_surface_apply_spec(window->mir.surface, spec);
|
|
|
|
mir_surface_spec_release(spec);
|
2014-11-06 03:26:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformShowWindow(_GLFWwindow* window)
|
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
MirSurfaceSpec* spec;
|
|
|
|
|
|
|
|
spec = mir_connection_create_spec_for_changes(_glfw.mir.connection);
|
|
|
|
mir_surface_spec_set_state(spec, mir_surface_state_restored);
|
|
|
|
|
|
|
|
mir_surface_apply_spec(window->mir.surface, spec);
|
|
|
|
mir_surface_spec_release(spec);
|
2014-11-06 03:26:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformUnhideWindow(_GLFWwindow* window)
|
2014-11-06 03:21:12 -05:00
|
|
|
{
|
2014-11-06 15:07:20 -05:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
2014-12-26 06:25:48 -05:00
|
|
|
int _glfwPlatformWindowFocused(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_FALSE;
|
2014-12-26 06:25:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
int _glfwPlatformWindowIconified(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_FALSE;
|
2014-12-26 06:25:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
int _glfwPlatformWindowVisible(_GLFWwindow* window)
|
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
return mir_surface_get_visibility(window->mir.surface) == mir_surface_visibility_exposed;
|
2014-12-26 06:25:48 -05:00
|
|
|
}
|
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
void _glfwPlatformPollEvents(void)
|
|
|
|
{
|
2014-11-10 12:42:41 -05:00
|
|
|
EventNode* node = NULL;
|
|
|
|
|
|
|
|
while ((node = dequeueEvent(_glfw.mir.event_queue)))
|
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
handleEvent(node->event, node->window);
|
2014-11-10 12:42:41 -05:00
|
|
|
deleteNode(_glfw.mir.event_queue, node);
|
|
|
|
}
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformWaitEvents(void)
|
|
|
|
{
|
2014-11-10 12:42:41 -05:00
|
|
|
pthread_mutex_lock(&_glfw.mir.event_mutex);
|
|
|
|
|
|
|
|
if (emptyEventQueue(_glfw.mir.event_queue))
|
|
|
|
pthread_cond_wait(&_glfw.mir.event_cond, &_glfw.mir.event_mutex);
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&_glfw.mir.event_mutex);
|
|
|
|
|
|
|
|
_glfwPlatformPollEvents();
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformPostEmptyEvent(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
{
|
2014-11-06 17:52:38 -05:00
|
|
|
if (width)
|
|
|
|
*width = window->mir.width;
|
|
|
|
if (height)
|
|
|
|
*height = window->mir.height;
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
// FIXME implement
|
2014-11-06 17:52:38 -05:00
|
|
|
int _glfwPlatformCreateCursor(_GLFWcursor* cursor,
|
|
|
|
const GLFWimage* image,
|
|
|
|
int xhot, int yhot)
|
2014-11-06 03:21:12 -05:00
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
MirBufferStream* stream;
|
|
|
|
MirPixelFormat pixel_format = findValidPixelFormat();
|
2014-11-06 03:24:08 -05:00
|
|
|
|
2015-07-30 13:59:32 -04:00
|
|
|
int i_w = image->width;
|
|
|
|
int i_h = image->height;
|
|
|
|
|
|
|
|
if (pixel_format == mir_pixel_format_invalid)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Mir: Unable to find a correct pixel format");
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_FALSE;
|
2015-07-30 13:59:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
stream = mir_connection_create_buffer_stream_sync(_glfw.mir.connection,
|
|
|
|
i_w, i_h,
|
|
|
|
pixel_format,
|
|
|
|
mir_buffer_usage_software);
|
|
|
|
|
|
|
|
cursor->mir.conf = mir_cursor_configuration_from_buffer_stream(stream, xhot, yhot);
|
|
|
|
|
|
|
|
char* dest;
|
|
|
|
unsigned char *pixels;
|
|
|
|
int i, r_stride, bytes_per_pixel, bytes_per_row;
|
|
|
|
|
|
|
|
MirGraphicsRegion region;
|
|
|
|
mir_buffer_stream_get_graphics_region(stream, ®ion);
|
|
|
|
|
|
|
|
// FIXME Figure this out based on the current_pf
|
|
|
|
bytes_per_pixel = 4;
|
|
|
|
bytes_per_row = bytes_per_pixel * i_w;
|
|
|
|
|
|
|
|
dest = region.vaddr;
|
|
|
|
pixels = image->pixels;
|
|
|
|
|
|
|
|
r_stride = region.stride;
|
|
|
|
|
|
|
|
for (i = 0; i < i_h; i++)
|
|
|
|
{
|
|
|
|
memcpy(dest, pixels, bytes_per_row);
|
|
|
|
dest += r_stride;
|
|
|
|
pixels += r_stride;
|
|
|
|
}
|
|
|
|
|
|
|
|
cursor->mir.custom_cursor = stream;
|
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_TRUE;
|
2015-07-30 13:59:32 -04:00
|
|
|
}
|
|
|
|
|
2015-07-31 08:01:33 -04:00
|
|
|
const char* getSystemCursorName(int shape)
|
2015-07-30 13:59:32 -04:00
|
|
|
{
|
|
|
|
switch (shape)
|
|
|
|
{
|
|
|
|
case GLFW_ARROW_CURSOR:
|
2015-07-30 14:32:32 -04:00
|
|
|
return mir_arrow_cursor_name;
|
2015-07-30 13:59:32 -04:00
|
|
|
case GLFW_IBEAM_CURSOR:
|
2015-07-30 14:32:32 -04:00
|
|
|
return mir_caret_cursor_name;
|
2015-07-30 13:59:32 -04:00
|
|
|
case GLFW_CROSSHAIR_CURSOR:
|
2015-07-30 14:32:32 -04:00
|
|
|
return mir_crosshair_cursor_name;
|
2015-07-30 13:59:32 -04:00
|
|
|
case GLFW_HAND_CURSOR:
|
2015-07-30 14:32:32 -04:00
|
|
|
return mir_open_hand_cursor_name;
|
2015-07-30 13:59:32 -04:00
|
|
|
case GLFW_HRESIZE_CURSOR:
|
2015-07-30 14:32:32 -04:00
|
|
|
return mir_horizontal_resize_cursor_name;
|
2015-07-30 13:59:32 -04:00
|
|
|
case GLFW_VRESIZE_CURSOR:
|
|
|
|
return mir_vertical_resize_cursor_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
2014-09-02 10:52:16 -04:00
|
|
|
int _glfwPlatformCreateStandardCursor(_GLFWcursor* cursor, int shape)
|
|
|
|
{
|
2015-07-31 08:01:33 -04:00
|
|
|
const char* cursor_name = getSystemCursorName(shape);
|
2015-07-30 13:59:32 -04:00
|
|
|
|
|
|
|
if (cursor_name)
|
|
|
|
{
|
|
|
|
cursor->mir.conf = mir_cursor_configuration_from_name(cursor_name);
|
|
|
|
cursor->mir.custom_cursor = NULL;
|
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_TRUE;
|
2015-07-30 13:59:32 -04:00
|
|
|
}
|
2014-09-02 10:52:16 -04:00
|
|
|
|
2015-08-23 13:30:04 -04:00
|
|
|
return GLFW_FALSE;
|
2014-09-02 10:52:16 -04:00
|
|
|
}
|
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
void _glfwPlatformDestroyCursor(_GLFWcursor* cursor)
|
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
if (cursor->mir.conf)
|
|
|
|
mir_cursor_configuration_destroy(cursor->mir.conf);
|
|
|
|
if (cursor->mir.custom_cursor)
|
|
|
|
mir_buffer_stream_release_sync(cursor->mir.custom_cursor);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor)
|
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
if (cursor && cursor->mir.conf)
|
|
|
|
{
|
|
|
|
mir_wait_for(mir_surface_configure_cursor(window->mir.surface, cursor->mir.conf));
|
|
|
|
if (cursor->mir.custom_cursor)
|
|
|
|
{
|
|
|
|
/* FIXME Bug https://bugs.launchpad.net/mir/+bug/1477285
|
|
|
|
Requires a triple buffer swap to get the cursor buffer on top! (since mir is tripled buffered)
|
|
|
|
*/
|
|
|
|
mir_buffer_stream_swap_buffers_sync(cursor->mir.custom_cursor);
|
|
|
|
mir_buffer_stream_swap_buffers_sync(cursor->mir.custom_cursor);
|
|
|
|
mir_buffer_stream_swap_buffers_sync(cursor->mir.custom_cursor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mir_wait_for(mir_surface_configure_cursor(window->mir.surface, _glfw.mir.default_conf));
|
|
|
|
}
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
2015-01-05 19:23:10 -05:00
|
|
|
void _glfwPlatformGetCursorPos(_GLFWwindow* window, double* xpos, double* ypos)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2015-01-05 19:23:10 -05:00
|
|
|
}
|
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
void _glfwPlatformSetCursorPos(_GLFWwindow* window, double xpos, double ypos)
|
|
|
|
{
|
2014-11-06 03:24:08 -05:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
2015-07-02 07:04:56 -04:00
|
|
|
void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode)
|
2014-11-06 03:21:12 -05:00
|
|
|
{
|
2014-11-06 15:07:20 -05:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
2015-07-02 08:24:50 -04:00
|
|
|
const char* _glfwPlatformGetKeyName(int key, int scancode)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string)
|
|
|
|
{
|
2014-11-06 03:24:08 -05:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* _glfwPlatformGetClipboardString(_GLFWwindow* window)
|
|
|
|
{
|
2014-11-06 03:24:08 -05:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2015-03-10 14:51:14 -04:00
|
|
|
"Mir: Unsupported function %s", __PRETTY_FUNCTION__);
|
2014-11-06 03:24:08 -05:00
|
|
|
|
|
|
|
return NULL;
|
2014-11-06 03:21:12 -05:00
|
|
|
}
|
2014-11-06 17:52:38 -05:00
|
|
|
|
2015-08-16 16:02:31 -04:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW native API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
GLFWAPI MirConnection* glfwGetMirDisplay(void)
|
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
return _glfw.mir.connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI MirSurface* glfwGetMirWindow(GLFWwindow* handle)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
return window->mir.surface;
|
|
|
|
}
|
|
|
|
|