Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: chrome_frame/find_dialog.h

Issue 218019: Initial import of the Chrome Frame codebase. Integration in chrome.gyp coming... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome_frame/ff_privilege_check.h ('k') | chrome_frame/find_dialog.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_FRAME_FIND_DIALOG_H_
6 #define CHROME_FRAME_FIND_DIALOG_H_
7
8 #include <atlbase.h>
9 #include <atlwin.h>
10
11 #include "base/ref_counted.h"
12 #include "resource.h"
13 #include "grit/chrome_frame_resources.h"
14
15 class ChromeFrameAutomationClient;
16
17 class CFFindDialog : public CDialogImpl<CFFindDialog> {
18 public:
19 enum { IDD = IDD_FIND_DIALOG };
20
21 BEGIN_MSG_MAP(CFFindDialog)
22 MESSAGE_HANDLER(WM_DESTROY, OnDestroy)
23 MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
24 COMMAND_ID_HANDLER(IDOK, OnFind)
25 COMMAND_ID_HANDLER(IDCANCEL, OnCancel)
26 END_MSG_MAP()
27
28 CFFindDialog();
29 void Init(ChromeFrameAutomationClient* automation_client);
30
31 LRESULT OnDestroy(UINT msg, WPARAM wparam,
32 LPARAM lparam, BOOL& handled); // NOLINT
33 LRESULT OnFind(WORD wNotifyCode, WORD wID,
34 HWND hWndCtl, BOOL& bHandled); // NOLINT
35 LRESULT OnCancel(WORD wNotifyCode, WORD wID,
36 HWND hWndCtl, BOOL& bHandled); // NOLINT
37 LRESULT OnInitDialog(UINT msg, WPARAM wparam,
38 LPARAM lparam, BOOL& handled); // NOLINT
39
40 private:
41
42 // Since the message loop we expect to run in isn't going to be nicely
43 // calling IsDialogMessage(), we need to hook the wnd proc and call it
44 // ourselves. See http://support.microsoft.com/kb/q187988/
45 bool InstallMessageHook();
46 bool UninstallMessageHook();
47 static LRESULT CALLBACK GetMsgProc(int code, WPARAM wparam, LPARAM lparam);
48 static HHOOK msg_hook_;
49
50 // We don't own these, and they must exist at least as long as we do.
51 ChromeFrameAutomationClient* automation_client_;
52 };
53
54 #endif // CHROME_FRAME_FIND_DIALOG_H_
OLDNEW
« no previous file with comments | « chrome_frame/ff_privilege_check.h ('k') | chrome_frame/find_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698