diff options
author | Jacek Antonelli | 2008-08-15 23:44:54 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:54 -0500 |
commit | b2afb8800bb033a04bb3ecdf0363068d56648ef1 (patch) | |
tree | 3568129b5bbddb47cd39d622b4137a8fbff4abaf /linden/indra/llwindow/llmousehandler.h | |
parent | Second Life viewer sources 1.14.0.1 (diff) | |
download | meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.zip meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.gz meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.bz2 meta-impy-b2afb8800bb033a04bb3ecdf0363068d56648ef1.tar.xz |
Second Life viewer sources 1.15.0.2
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llwindow/llmousehandler.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/linden/indra/llwindow/llmousehandler.h b/linden/indra/llwindow/llmousehandler.h index 4e9b882..3091920 100644 --- a/linden/indra/llwindow/llmousehandler.h +++ b/linden/indra/llwindow/llmousehandler.h | |||
@@ -4,6 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (c) 2001-2007, Linden Research, Inc. | 5 | * Copyright (c) 2001-2007, Linden Research, Inc. |
6 | * | 6 | * |
7 | * Second Life Viewer Source Code | ||
7 | * The source code in this file ("Source Code") is provided by Linden Lab | 8 | * The source code in this file ("Source Code") is provided by Linden Lab |
8 | * to you under the terms of the GNU General Public License, version 2.0 | 9 | * to you under the terms of the GNU General Public License, version 2.0 |
9 | * ("GPL"), unless you have obtained a separate licensing agreement | 10 | * ("GPL"), unless you have obtained a separate licensing agreement |
@@ -34,8 +35,6 @@ | |||
34 | // Intended for use via multiple inheritance. | 35 | // Intended for use via multiple inheritance. |
35 | // A class may have as many interfaces as it likes, but never needs to inherit one more than once. | 36 | // A class may have as many interfaces as it likes, but never needs to inherit one more than once. |
36 | 37 | ||
37 | #include "llstring.h" | ||
38 | |||
39 | class LLMouseHandler | 38 | class LLMouseHandler |
40 | { | 39 | { |
41 | public: | 40 | public: |
@@ -52,11 +51,15 @@ public: | |||
52 | virtual BOOL handleToolTip(S32 x, S32 y, LLString& msg, LLRect* sticky_rect_screen) = 0; | 51 | virtual BOOL handleToolTip(S32 x, S32 y, LLString& msg, LLRect* sticky_rect_screen) = 0; |
53 | virtual const LLString& getName() const = 0; | 52 | virtual const LLString& getName() const = 0; |
54 | 53 | ||
54 | virtual void onMouseCaptureLost() = 0; | ||
55 | |||
55 | // Hack to support LLFocusMgr | 56 | // Hack to support LLFocusMgr |
56 | virtual BOOL isView() = 0; | 57 | virtual BOOL isView() = 0; |
57 | 58 | ||
58 | virtual void screenPointToLocal(S32 screen_x, S32 screen_y, S32* local_x, S32* local_y) const = 0; | 59 | virtual void screenPointToLocal(S32 screen_x, S32 screen_y, S32* local_x, S32* local_y) const = 0; |
59 | virtual void localPointToScreen(S32 local_x, S32 local_y, S32* screen_x, S32* screen_y) const = 0; | 60 | virtual void localPointToScreen(S32 local_x, S32 local_y, S32* screen_x, S32* screen_y) const = 0; |
61 | |||
62 | virtual BOOL hasMouseCapture() = 0; | ||
60 | }; | 63 | }; |
61 | 64 | ||
62 | #endif | 65 | #endif |