diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llwindow/llwindowwin32.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/linden/indra/llwindow/llwindowwin32.cpp b/linden/indra/llwindow/llwindowwin32.cpp index e47cab4..12a488a 100644 --- a/linden/indra/llwindow/llwindowwin32.cpp +++ b/linden/indra/llwindow/llwindowwin32.cpp | |||
@@ -3052,6 +3052,19 @@ void LLWindowWin32::spawnWebBrowser(const std::string& escaped_url ) | |||
3052 | */ | 3052 | */ |
3053 | } | 3053 | } |
3054 | 3054 | ||
3055 | /* | ||
3056 | Make the raw keyboard data available - used to poke through to LLQtWebKit so | ||
3057 | that Qt/Webkit has access to the virtual keycodes etc. that it needs | ||
3058 | */ | ||
3059 | LLSD LLWindowWin32::getNativeKeyData() | ||
3060 | { | ||
3061 | LLSD result = LLSD::emptyMap(); | ||
3062 | |||
3063 | result["scan_code"] = (S32)mKeyScanCode; | ||
3064 | result["virtual_key"] = (S32)mKeyVirtualKey; | ||
3065 | |||
3066 | return result; | ||
3067 | } | ||
3055 | 3068 | ||
3056 | BOOL LLWindowWin32::dialog_color_picker ( F32 *r, F32 *g, F32 *b ) | 3069 | BOOL LLWindowWin32::dialog_color_picker ( F32 *r, F32 *g, F32 *b ) |
3057 | { | 3070 | { |