OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef VIEWS_CONTROLS_HWND_VIEW_H_ | 5 #ifndef VIEWS_CONTROL_NATIVE_NATIVE_VIEW_HOST_WIN_H_ |
6 #define VIEWS_CONTROLS_HWND_VIEW_H_ | 6 #define VIEWS_CONTROL_NATIVE_NATIVE_VIEW_HOST_WIN_H_ |
| 7 |
| 8 #include "windows.h" |
7 | 9 |
8 #include "base/logging.h" | 10 #include "base/logging.h" |
9 #include "views/controls/native/native_view_host_wrapper.h" | 11 #include "views/controls/native/native_view_host_wrapper.h" |
10 | 12 |
11 namespace views { | 13 namespace views { |
12 | 14 |
13 class NativeViewHost; | 15 class NativeViewHost; |
14 | 16 |
15 // A Windows implementation of NativeViewHostWrapper | 17 // A Windows implementation of NativeViewHostWrapper |
16 class NativeViewHostWin : public NativeViewHostWrapper { | 18 class NativeViewHostWin : public NativeViewHostWrapper { |
17 public: | 19 public: |
18 explicit NativeViewHostWin(NativeViewHost* host); | 20 explicit NativeViewHostWin(NativeViewHost* host); |
19 virtual ~NativeViewHostWin(); | 21 virtual ~NativeViewHostWin(); |
20 | 22 |
21 // Overridden from NativeViewHostWrapper: | 23 // Overridden from NativeViewHostWrapper: |
22 virtual void NativeViewAttached(); | 24 virtual void NativeViewAttached(); |
23 virtual void NativeViewDetaching(); | 25 virtual void NativeViewDetaching(); |
24 virtual void AddedToWidget(); | 26 virtual void AddedToWidget(); |
25 virtual void RemovedFromWidget(); | 27 virtual void RemovedFromWidget(); |
26 virtual void InstallClip(int x, int y, int w, int h); | 28 virtual void InstallClip(int x, int y, int w, int h); |
27 virtual bool HasInstalledClip(); | 29 virtual bool HasInstalledClip(); |
28 virtual void UninstallClip(); | 30 virtual void UninstallClip(); |
29 virtual void ShowWidget(int x, int y, int w, int h); | 31 virtual void ShowWidget(int x, int y, int w, int h); |
30 virtual void HideWidget(); | 32 virtual void HideWidget(); |
31 virtual void SetFocus(); | |
32 | 33 |
33 private: | 34 private: |
| 35 // Our subclass window procedure. |
| 36 static LRESULT CALLBACK NativeViewHostWndProc(HWND window, |
| 37 UINT message, |
| 38 WPARAM w_param, |
| 39 LPARAM l_param); |
| 40 |
34 // Our associated NativeViewHost. | 41 // Our associated NativeViewHost. |
35 NativeViewHost* host_; | 42 NativeViewHost* host_; |
36 | 43 |
37 // Have we installed a region on the gfx::NativeView used to clip to only the | 44 // Have we installed a region on the gfx::NativeView used to clip to only the |
38 // visible portion of the gfx::NativeView ? | 45 // visible portion of the gfx::NativeView ? |
39 bool installed_clip_; | 46 bool installed_clip_; |
40 | 47 |
| 48 // The window procedure before we subclassed. |
| 49 WNDPROC original_wndproc_; |
| 50 |
41 DISALLOW_COPY_AND_ASSIGN(NativeViewHostWin); | 51 DISALLOW_COPY_AND_ASSIGN(NativeViewHostWin); |
42 }; | 52 }; |
43 | 53 |
44 } // namespace views | 54 } // namespace views |
45 | 55 |
46 #endif // VIEWS_CONTROLS_HWND_VIEW_H_ | 56 #endif // VIEWS_CONTROL_NATIVE_NATIVE_VIEW_HOST_WIN_H_ |
OLD | NEW |