CLOSED TREE: TraceMonkey merge head. (a=blockers)
[mozilla-central.git] / widget / src / windows / nsWindowCE.h
blob3c9dbe8e44cd4f4c1ffad5c292e684f2e0be7402
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Mozilla Foundation.
19 * Portions created by the Initial Developer are Copyright (C) 2009
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 #include "nsWindow.h"
40 #ifndef WindowCE_h__
41 #define WindowCE_h__
44 * nsWindowCE - Windows CE specific code related to nsWindow.
47 #ifdef WINCE
49 #include "aygshell.h"
50 #include "imm.h"
51 #ifdef WINCE_WINDOWS_MOBILE
52 #define WINCE_HAVE_SOFTKB
53 #include "tpcshell.h"
54 #else
55 #undef WINCE_HAVE_SOFTKB
56 #include "winuserm.h"
57 #endif
59 #define IDI_APPLICATION MAKEINTRESOURCE(32512)
61 #define SetWindowLongPtrA SetWindowLongW
62 #define SetWindowLongPtrW SetWindowLongW
63 #define GetWindowLongPtrW GetWindowLongW
64 #define GWLP_WNDPROC GWL_WNDPROC
65 #define GetPropW GetProp
66 #define SetPropW SetProp
67 #define RemovePropW RemoveProp
69 #define MapVirtualKeyEx(a,b,c) MapVirtualKey(a,b)
71 #ifndef WINCE_WINDOWS_MOBILE
72 // Aliases to make nsFilePicker work.
73 #define BROWSEINFOW BROWSEINFO
74 #define BFFM_SETSELECTIONW BFFM_SETSELECTION
75 #define SHBrowseForFolderW(a) SHBrowseForFolder(a)
76 #endif
78 // No-ops for nonexistent ce global apis.
79 inline void FlashWindow(HWND window, BOOL ignore){}
80 inline BOOL IsIconic(HWND inWnd){return false;}
82 class nsWindowCE {
83 public:
84 static BOOL EnumChildWindows(HWND inParent, WNDENUMPROC inFunc, LPARAM inParam);
86 #if defined(WINCE_HAVE_SOFTKB)
87 static void ToggleSoftKB(HWND wnd, PRBool show);
88 static void CreateSoftKeyMenuBar(HWND wnd);
89 static void OnSoftKbSettingsChange(HWND wnd, LPRECT = NULL);
90 static PRBool sSIPInTransition;
91 static TriStateBool sShowSIPButton;
92 static void CheckKeyboardStatus();
93 static TriStateBool GetSliderStateOpen();
94 static void ResetSoftKB(HWND wnd);
95 protected:
96 static PRBool sMenuBarShown;
97 static HWND sSoftKeyMenuBarHandle;
98 private:
99 static TriStateBool sHardKBPresence;
100 static RECT sDefaultSIPRect;
101 static HWND sMainWindowHandle;
102 #endif
103 friend class nsWindow;
106 #endif /* WINCE */
108 #endif /* WindowCE_h__ */