OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_FRAME_TURNDOWN_PROMPT_TURNDOWN_PROMPT_WINDOW_H_ | 5 #ifndef CHROME_FRAME_TURNDOWN_PROMPT_TURNDOWN_PROMPT_WINDOW_H_ |
6 #define CHROME_FRAME_TURNDOWN_PROMPT_TURNDOWN_PROMPT_WINDOW_H_ | 6 #define CHROME_FRAME_TURNDOWN_PROMPT_TURNDOWN_PROMPT_WINDOW_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 #include <atlbase.h> | 9 #include <atlbase.h> |
10 #include <atlapp.h> | 10 #include <atlapp.h> |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/win/scoped_comptr.h" | 21 #include "base/win/scoped_comptr.h" |
22 #include "base/win/scoped_handle.h" | 22 #include "base/win/scoped_handle.h" |
23 #include "chrome_frame/infobars/infobar_content.h" | 23 #include "chrome_frame/infobars/infobar_content.h" |
24 #include "chrome_frame/resource.h" | 24 #include "chrome_frame/resource.h" |
25 #include "grit/chrome_frame_dialogs.h" | 25 #include "grit/chrome_frame_dialogs.h" |
26 | 26 |
27 class UrlLauncher; | 27 class UrlLauncher; |
28 | 28 |
29 namespace WTL { | 29 namespace WTL { |
30 class CHyperLink; | 30 class CHyperLink; |
| 31 class CBitmapButton; |
31 } // namespace WTL | 32 } // namespace WTL |
32 | 33 |
| 34 class CFBitmapButton; |
| 35 |
33 // Implements a dialog with text and buttons notifying the user that Chrome | 36 // Implements a dialog with text and buttons notifying the user that Chrome |
34 // Frame is being turned down, offering them a link to learn more about moving | 37 // Frame is being turned down, offering them a link to learn more about moving |
35 // to a modern browser. | 38 // to a modern browser. |
36 class TurndownPromptWindow | 39 class TurndownPromptWindow |
37 : public CDialogImpl<TurndownPromptWindow, CWindow>, | 40 : public CDialogImpl<TurndownPromptWindow, CWindow>, |
38 public CDialogResize<TurndownPromptWindow>, | 41 public CDialogResize<TurndownPromptWindow>, |
39 public CThemeImpl<TurndownPromptWindow> { | 42 public CThemeImpl<TurndownPromptWindow> { |
40 public: | 43 public: |
41 enum { IDD = IDD_CHROME_FRAME_TURNDOWN_PROMPT }; | 44 enum { IDD = IDD_CHROME_FRAME_TURNDOWN_PROMPT }; |
42 | 45 |
(...skipping 18 matching lines...) Expand all Loading... |
61 MSG_WM_INITDIALOG(OnInitDialog) | 64 MSG_WM_INITDIALOG(OnInitDialog) |
62 NOTIFY_HANDLER(IDC_TD_PROMPT_LINK, NM_CLICK, OnLearnMore) | 65 NOTIFY_HANDLER(IDC_TD_PROMPT_LINK, NM_CLICK, OnLearnMore) |
63 COMMAND_HANDLER(IDUNINSTALL, BN_CLICKED, OnUninstall) | 66 COMMAND_HANDLER(IDUNINSTALL, BN_CLICKED, OnUninstall) |
64 COMMAND_HANDLER(IDDISMISS, BN_CLICKED, OnDismiss) | 67 COMMAND_HANDLER(IDDISMISS, BN_CLICKED, OnDismiss) |
65 CHAIN_MSG_MAP(CDialogResize<TurndownPromptWindow>) | 68 CHAIN_MSG_MAP(CDialogResize<TurndownPromptWindow>) |
66 END_MSG_MAP() | 69 END_MSG_MAP() |
67 | 70 |
68 BEGIN_DLGRESIZE_MAP(InfobarWindow) | 71 BEGIN_DLGRESIZE_MAP(InfobarWindow) |
69 DLGRESIZE_CONTROL(IDDISMISS, DLSZ_CENTER_Y | DLSZ_MOVE_X) | 72 DLGRESIZE_CONTROL(IDDISMISS, DLSZ_CENTER_Y | DLSZ_MOVE_X) |
70 DLGRESIZE_CONTROL(IDUNINSTALL, DLSZ_CENTER_Y | DLSZ_MOVE_X) | 73 DLGRESIZE_CONTROL(IDUNINSTALL, DLSZ_CENTER_Y | DLSZ_MOVE_X) |
| 74 DLGRESIZE_CONTROL(IDC_TD_PROMPT_LINK, DLSZ_CENTER_Y | DLSZ_MOVE_X) |
71 DLGRESIZE_CONTROL(IDC_TD_PROMPT_MESSAGE, DLSZ_SIZE_Y | DLSZ_SIZE_X) | 75 DLGRESIZE_CONTROL(IDC_TD_PROMPT_MESSAGE, DLSZ_SIZE_Y | DLSZ_SIZE_X) |
72 DLGRESIZE_CONTROL(IDC_TD_PROMPT_LINK, DLSZ_CENTER_Y | DLSZ_MOVE_X) | |
73 END_DLGRESIZE_MAP() | 76 END_DLGRESIZE_MAP() |
74 | 77 |
75 virtual void OnFinalMessage(HWND); | 78 virtual void OnFinalMessage(HWND); |
76 | 79 |
77 private: | 80 private: |
78 // Call CreateInstance() to get an initialized TurndownPromptWindow. | 81 // Call CreateInstance() to get an initialized TurndownPromptWindow. |
79 TurndownPromptWindow(InfobarContent::Frame* frame, | 82 TurndownPromptWindow(InfobarContent::Frame* frame, |
80 UrlLauncher* url_launcher, | 83 UrlLauncher* url_launcher, |
81 const base::Closure& uninstall_closure); | 84 const base::Closure& uninstall_closure); |
82 | 85 |
83 // The TurndownPromptWindow manages its own destruction. | 86 // The TurndownPromptWindow manages its own destruction. |
84 virtual ~TurndownPromptWindow(); | 87 virtual ~TurndownPromptWindow(); |
85 | 88 |
| 89 // Performs the necessary configuration to initialize a bitmap button. |
| 90 static void SetupBitmapButton(TurndownPromptWindow* window); |
| 91 |
86 // Event handlers. | 92 // Event handlers. |
87 void OnDestroy(); | 93 void OnDestroy(); |
88 BOOL OnInitDialog(CWindow wndFocus, LPARAM lInitParam); | 94 BOOL OnInitDialog(CWindow wndFocus, LPARAM lInitParam); |
89 LRESULT OnLearnMore(WORD wParam, LPNMHDR lParam, BOOL& bHandled); // NOLINT | 95 LRESULT OnLearnMore(WORD wParam, LPNMHDR lParam, BOOL& bHandled); // NOLINT |
90 LRESULT OnUninstall(WORD wNotifyCode, | 96 LRESULT OnUninstall(WORD wNotifyCode, |
91 WORD wID, | 97 WORD wID, |
92 HWND hWndCtl, | 98 HWND hWndCtl, |
93 BOOL& bHandled); | 99 BOOL& bHandled); |
94 LRESULT OnDismiss(WORD wNotifyCode, | 100 LRESULT OnDismiss(WORD wNotifyCode, |
95 WORD wID, | 101 WORD wID, |
96 HWND hWndCtl, | 102 HWND hWndCtl, |
97 BOOL& bHandled); | 103 BOOL& bHandled); |
98 | 104 |
99 // Returns the prompt text for the current version of IE. | 105 // Returns the prompt text for the current version of IE. |
100 static string16 GetPromptText(); | 106 static string16 GetPromptText(); |
101 | 107 |
102 InfobarContent::Frame* frame_; // Not owned by this instance | 108 InfobarContent::Frame* frame_; // Not owned by this instance |
103 scoped_ptr<WTL::CHyperLink> link_; | 109 scoped_ptr<WTL::CHyperLink> link_; |
| 110 scoped_ptr<CFBitmapButton> close_button_; |
104 scoped_ptr<UrlLauncher> url_launcher_; | 111 scoped_ptr<UrlLauncher> url_launcher_; |
105 base::Closure uninstall_closure_; | 112 base::Closure uninstall_closure_; |
106 | 113 |
107 base::WeakPtrFactory<TurndownPromptWindow> weak_ptr_factory_; | 114 base::WeakPtrFactory<TurndownPromptWindow> weak_ptr_factory_; |
108 DISALLOW_COPY_AND_ASSIGN(TurndownPromptWindow); | 115 DISALLOW_COPY_AND_ASSIGN(TurndownPromptWindow); |
109 }; // class TurndownPromptWindow | 116 }; // class TurndownPromptWindow |
110 | 117 |
111 #endif // CHROME_FRAME_TURNDOWN_PROMPT_TURNDOWN_PROMPT_WINDOW_H_ | 118 #endif // CHROME_FRAME_TURNDOWN_PROMPT_TURNDOWN_PROMPT_WINDOW_H_ |
OLD | NEW |