summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-30 07:21:38 +0000
committerDavid Robillard <d@drobilla.net>2012-04-30 07:21:38 +0000
commited931c9a397e0f9fda1866191d22f87fd539e45a (patch)
tree9bde3af79b33d320a9c16f6baaeaf5dc2ec628bc
parentfb2ec4fd62e8218ac485c4ad1992c7e01951159d (diff)
Send special key events for individual modifier key presses (X11 for now).
Improve documentation.
-rw-r--r--pugl/pugl.h99
-rw-r--r--pugl/pugl_x11.c25
-rw-r--r--pugl_test.c5
3 files changed, 115 insertions, 14 deletions
diff --git a/pugl/pugl.h b/pugl/pugl.h
index a77a831..5473e5f 100644
--- a/pugl/pugl.h
+++ b/pugl/pugl.h
@@ -62,6 +62,9 @@ extern "C" {
# include <stdbool.h>
#endif
+/**
+ An OpenGL view.
+*/
typedef struct PuglViewImpl PuglView;
/**
@@ -73,10 +76,25 @@ typedef struct PuglViewImpl PuglView;
*/
typedef intptr_t PuglNativeWindow;
+/**
+ Return status code.
+*/
typedef enum {
PUGL_SUCCESS = 0
} PuglStatus;
+/**
+ Convenience symbols for ASCII control characters.
+*/
+typedef enum {
+ PUGL_CHAR_BACKSPACE = 0x08,
+ PUGL_CHAR_ESCAPE = 0x1B,
+ PUGL_CHAR_DELETE = 0x7F
+} PuglChar;
+
+/**
+ Special (non-Unicode) keyboard keys.
+*/
typedef enum {
PUGL_KEY_F1 = 1,
PUGL_KEY_F2,
@@ -98,29 +116,100 @@ typedef enum {
PUGL_KEY_PAGE_DOWN,
PUGL_KEY_HOME,
PUGL_KEY_END,
- PUGL_KEY_INSERT
+ PUGL_KEY_INSERT,
+ PUGL_KEY_SHIFT_L,
+ PUGL_KEY_SHIFT_R,
+ PUGL_KEY_CTRL_L,
+ PUGL_KEY_CTRL_R,
+ PUGL_KEY_ALT_L,
+ PUGL_KEY_ALT_R,
+ PUGL_KEY_SUPER_L,
+ PUGL_KEY_SUPER_R
} PuglKey;
+/**
+ Keyboard modifier flags.
+*/
typedef enum {
PUGL_MOD_SHIFT = 1, /**< Shift key */
PUGL_MOD_CTRL = 1 << 1, /**< Control key */
PUGL_MOD_ALT = 1 << 2, /**< Alt/Option key */
PUGL_MOD_SUPER = 1 << 3, /**< Mod4/Command/Windows key */
-} PuglModifier;
+} PuglMod;
/**
Handle for opaque user data.
*/
typedef void* PuglHandle;
+/**
+ A function called when the window is closed.
+*/
typedef void (*PuglCloseFunc)(PuglView* view);
+
+/**
+ A function called to draw the view contents with OpenGL.
+*/
typedef void (*PuglDisplayFunc)(PuglView* view);
+
+/**
+ A function called when a key is pressed or released.
+ @param view The view the event occured in.
+ @param press True if the key was pressed, false if released.
+ @param key Unicode point of the key pressed.
+*/
typedef void (*PuglKeyboardFunc)(PuglView* view, bool press, uint32_t key);
+
+/**
+ A function called when the pointer moves.
+ @param view The view the event occured in.
+ @param x The window-relative x coordinate of the pointer.
+ @param y The window-relative y coordinate of the pointer.
+*/
typedef void (*PuglMotionFunc)(PuglView* view, int x, int y);
-typedef void (*PuglMouseFunc)(PuglView* view, int button, bool down,
- int x, int y);
+
+/**
+ A function called when a mouse button is pressed or released.
+ @param view The view the event occured in.
+ @param button The button number (1 = left, 2 = middle, 3 = right).
+ @param press True if the key was pressed, false if released.
+ @param x The window-relative x coordinate of the pointer.
+ @param y The window-relative y coordinate of the pointer.
+*/
+typedef void (*PuglMouseFunc)(
+ PuglView* view, int button, bool press, int x, int y);
+
+/**
+ A function called when the view is resized.
+ @param view The view being resized.
+ @param width The new view width.
+ @param height The new view height.
+*/
typedef void (*PuglReshapeFunc)(PuglView* view, int width, int height);
+
+/**
+ A function called on scrolling (e.g. mouse wheel or track pad).
+
+ The distances used here are in "lines", a single tick of a clicking mouse
+ wheel. For example, @p dy = 1.0 scrolls 1 line up. Some systems and
+ devices support finer resolution and/or higher values for fast scrolls,
+ so programs should handle any value gracefully.
+
+ @param view The view being scrolled.
+ @param dx The scroll x distance.
+ @param dx The scroll y distance.
+*/
typedef void (*PuglScrollFunc)(PuglView* view, float dx, float dy);
+
+/**
+ A function called when a special key is pressed or released.
+
+ This callback allows the use of keys that do not have unicode points. Note
+ that some non-printable keys
+ @param view The view the event occured in.
+ @param press True if the key was pressed, false if released.
+ @param key The key pressed.
+*/
typedef void (*PuglSpecialFunc)(PuglView* view, bool press, PuglKey key);
/**
@@ -157,7 +246,7 @@ PUGL_API PuglHandle
puglGetHandle(PuglView* view);
/**
- Get the currently active modifiers (PuglModifier flags).
+ Get the currently active modifiers (PuglMod flags).
This should only be called from an event handler.
*/
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c
index f7d6e32..b22b1ce 100644
--- a/pugl/pugl_x11.c
+++ b/pugl/pugl_x11.c
@@ -232,6 +232,14 @@ keySymToSpecial(KeySym sym)
case XK_Home: return PUGL_KEY_HOME;
case XK_End: return PUGL_KEY_END;
case XK_Insert: return PUGL_KEY_INSERT;
+ case XK_Shift_L: return PUGL_KEY_SHIFT_L;
+ case XK_Shift_R: return PUGL_KEY_SHIFT_R;
+ case XK_Control_L: return PUGL_KEY_CTRL_L;
+ case XK_Control_R: return PUGL_KEY_CTRL_R;
+ case XK_Alt_L: return PUGL_KEY_ALT_L;
+ case XK_Alt_R: return PUGL_KEY_ALT_R;
+ case XK_Super_L: return PUGL_KEY_SUPER_L;
+ case XK_Super_R: return PUGL_KEY_SUPER_R;
}
return (PuglKey)0;
}
@@ -307,13 +315,18 @@ puglProcessEvents(PuglView* view)
case KeyPress:
setModifiers(view, event.xkey.state);
if (view->keyboardFunc) {
- KeySym sym = XKeycodeToKeysym(
- view->impl->display, event.xkey.keycode, 0);
- PuglKey special = keySymToSpecial(sym);
- if (!special) {
- view->keyboardFunc(view, true, sym);
+ KeySym sym;
+ char str[5];
+ int n = XLookupString(&event.xkey, str, 4, &sym, NULL);
+ PuglKey key = keySymToSpecial(sym);
+ if (!key) {
+ if (n == 1) {
+ view->keyboardFunc(view, true, str[0]);
+ } else {
+ fprintf(stderr, "warning: Unknown key %X\n", (int)sym);
+ }
} else if (view->specialFunc) {
- view->specialFunc(view, true, special);
+ view->specialFunc(view, true, key);
}
}
break;
diff --git a/pugl_test.c b/pugl_test.c
index cf8da2e..da58b78 100644
--- a/pugl_test.c
+++ b/pugl_test.c
@@ -27,8 +27,6 @@ static float xAngle = 0.0f;
static float yAngle = 0.0f;
static float dist = 10.0f;
-#define KEY_ESCAPE 27
-
static void
onDisplay(PuglView* view)
{
@@ -90,7 +88,8 @@ onKeyboard(PuglView* view, bool press, uint32_t key)
{
fprintf(stderr, "Key %c %s ", (char)key, press ? "down" : "up");
printModifiers(view);
- if (key == 'q' || key == 'Q' || key == KEY_ESCAPE) {
+ if (key == 'q' || key == 'Q' || key == PUGL_CHAR_ESCAPE ||
+ key == PUGL_CHAR_DELETE || key == PUGL_CHAR_BACKSPACE) {
quit = 1;
}
}