aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llwindow/llwindowwin32.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:59 -0500
committerJacek Antonelli2008-08-15 23:44:59 -0500
commita408bac29378072fbf36864164149458c978cfcc (patch)
tree67feccf1a5d3816611ba48d6762f86f0f7f4b1f6 /linden/indra/llwindow/llwindowwin32.h
parentSecond Life viewer sources 1.17.0.12 (diff)
downloadmeta-impy-a408bac29378072fbf36864164149458c978cfcc.zip
meta-impy-a408bac29378072fbf36864164149458c978cfcc.tar.gz
meta-impy-a408bac29378072fbf36864164149458c978cfcc.tar.bz2
meta-impy-a408bac29378072fbf36864164149458c978cfcc.tar.xz
Second Life viewer sources 1.17.1.0
Diffstat (limited to 'linden/indra/llwindow/llwindowwin32.h')
-rw-r--r--linden/indra/llwindow/llwindowwin32.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/linden/indra/llwindow/llwindowwin32.h b/linden/indra/llwindow/llwindowwin32.h
index 691c648..0f0cf7c 100644
--- a/linden/indra/llwindow/llwindowwin32.h
+++ b/linden/indra/llwindow/llwindowwin32.h
@@ -106,6 +106,8 @@ public:
106 /*virtual*/ void bringToFront(); 106 /*virtual*/ void bringToFront();
107 /*virtual*/ void focusClient(); 107 /*virtual*/ void focusClient();
108 108
109 /*virtual*/ void allowLanguageTextInput(BOOL b);
110
109protected: 111protected:
110 LLWindowWin32( 112 LLWindowWin32(
111 char *title, char *name, int x, int y, int width, int height, U32 flags, 113 char *title, char *name, int x, int y, int width, int height, U32 flags,
@@ -174,6 +176,15 @@ protected:
174 BOOL mMousePositionModified; 176 BOOL mMousePositionModified;
175 BOOL mInputProcessingPaused; 177 BOOL mInputProcessingPaused;
176 178
179 // The following five variables are for Language Text Input control.
180 // They are all static, since one context is shared by all LLWindowWin32
181 // instances.
182 static BOOL sLanguageTextInputAllowed;
183 static BOOL sWinIMEOpened;
184 static HKL sWinInputLocale;
185 static DWORD sWinIMEConversionMode;
186 static DWORD sWinIMESentenceMode;
187
177 friend class LLWindowManager; 188 friend class LLWindowManager;
178}; 189};
179 190