OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 UI_BASE_WIN_WINDOW_IMPL_H_ | 5 #ifndef UI_BASE_WIN_WINDOW_IMPL_H_ |
6 #define UI_BASE_WIN_WINDOW_IMPL_H_ | 6 #define UI_BASE_WIN_WINDOW_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <atlbase.h> | 9 #include <atlbase.h> |
10 #include <atlapp.h> | 10 #include <atlapp.h> |
11 #include <atlmisc.h> | 11 #include <atlmisc.h> |
12 #include <atlcrack.h> | 12 #include <atlcrack.h> |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 | 15 |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
| 17 #include "ui/base/ui_export.h" |
17 #include "ui/gfx/native_widget_types.h" | 18 #include "ui/gfx/native_widget_types.h" |
18 #include "ui/gfx/rect.h" | 19 #include "ui/gfx/rect.h" |
19 #include "ui/ui_api.h" | |
20 | 20 |
21 namespace ui { | 21 namespace ui { |
22 | 22 |
23 // An interface implemented by classes that use message maps. | 23 // An interface implemented by classes that use message maps. |
24 // ProcessWindowMessage is implemented by the BEGIN_MESSAGE_MAP_EX macro. | 24 // ProcessWindowMessage is implemented by the BEGIN_MESSAGE_MAP_EX macro. |
25 class MessageMapInterface { | 25 class MessageMapInterface { |
26 public: | 26 public: |
27 // Processes one message from the window's message queue. | 27 // Processes one message from the window's message queue. |
28 virtual BOOL ProcessWindowMessage(HWND window, | 28 virtual BOOL ProcessWindowMessage(HWND window, |
29 UINT message, | 29 UINT message, |
30 WPARAM w_param, | 30 WPARAM w_param, |
31 LPARAM l_param, | 31 LPARAM l_param, |
32 LRESULT& result, | 32 LRESULT& result, |
33 DWORD msg_mad_id = 0) = 0; | 33 DWORD msg_mad_id = 0) = 0; |
34 }; | 34 }; |
35 | 35 |
36 /////////////////////////////////////////////////////////////////////////////// | 36 /////////////////////////////////////////////////////////////////////////////// |
37 // | 37 // |
38 // WindowImpl | 38 // WindowImpl |
39 // A convenience class that encapsulates the details of creating and | 39 // A convenience class that encapsulates the details of creating and |
40 // destroying a HWND. This class also hosts the windows procedure used by all | 40 // destroying a HWND. This class also hosts the windows procedure used by all |
41 // Windows. | 41 // Windows. |
42 // | 42 // |
43 /////////////////////////////////////////////////////////////////////////////// | 43 /////////////////////////////////////////////////////////////////////////////// |
44 class UI_API WindowImpl : public MessageMapInterface { | 44 class UI_EXPORT WindowImpl : public MessageMapInterface { |
45 public: | 45 public: |
46 WindowImpl(); | 46 WindowImpl(); |
47 virtual ~WindowImpl(); | 47 virtual ~WindowImpl(); |
48 | 48 |
49 // Initializes the Window with a parent and an initial desired size. | 49 // Initializes the Window with a parent and an initial desired size. |
50 void Init(HWND parent, const gfx::Rect& bounds); | 50 void Init(HWND parent, const gfx::Rect& bounds); |
51 | 51 |
52 // Retrieves the default window icon to use for windows if none is specified. | 52 // Retrieves the default window icon to use for windows if none is specified. |
53 virtual HICON GetDefaultWindowIcon() const; | 53 virtual HICON GetDefaultWindowIcon() const; |
54 | 54 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 | 103 |
104 // Our hwnd. | 104 // Our hwnd. |
105 HWND hwnd_; | 105 HWND hwnd_; |
106 | 106 |
107 DISALLOW_COPY_AND_ASSIGN(WindowImpl); | 107 DISALLOW_COPY_AND_ASSIGN(WindowImpl); |
108 }; | 108 }; |
109 | 109 |
110 } // namespace ui | 110 } // namespace ui |
111 | 111 |
112 #endif // UI_BASE_WIN_WINDOW_IMPL_H_ | 112 #endif // UI_BASE_WIN_WINDOW_IMPL_H_ |
OLD | NEW |