summaryrefslogtreecommitdiff
path: root/pugl/pugl.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-01-17 22:48:06 +0000
committerDavid Robillard <d@drobilla.net>2014-01-17 22:48:06 +0000
commit064a36209d6ee39054e751d597633c8d35a50199 (patch)
tree0754511f2648b84af5a356e83d171b0cf32e69ea /pugl/pugl.h
parent12898ecf40723adb674bad95c10d1e8092794297 (diff)
Fix whitespace and junk comment.
Diffstat (limited to 'pugl/pugl.h')
-rw-r--r--pugl/pugl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/pugl/pugl.h b/pugl/pugl.h
index 8d82016..2a6a59f 100644
--- a/pugl/pugl.h
+++ b/pugl/pugl.h
@@ -95,7 +95,7 @@ typedef enum {
PUGL_CHAR_ESCAPE = 0x1B,
PUGL_CHAR_DELETE = 0x7F
} PuglChar;
-
+
/**
Special (non-Unicode) keyboard keys.
*/
@@ -131,12 +131,12 @@ typedef enum {
Keyboard modifier flags.
*/
typedef enum {
- PUGL_MOD_SHIFT = 1, /**< Shift key */
+ 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 */
} PuglMod;
-
+
/**
Handle for opaque user data.
*/
@@ -208,8 +208,8 @@ typedef void (*PuglScrollFunc)(PuglView* view,
/**
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
+ This callback allows the use of keys that do not have unicode points.
+
@param view The view the event occured in.
@param press True if the key was pressed, false if released.
@param key The key pressed.