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

Side by Side Diff: ui/views/win/hwnd_message_handler.h

Issue 17112021: New method: InputMethod::IsCandidatePopupOpen() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed test code Created 7 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ 5 #ifndef UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_
6 #define UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ 6 #define UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlapp.h> 9 #include <atlapp.h>
10 #include <atlmisc.h> 10 #include <atlmisc.h>
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 MESSAGE_HANDLER_EX(WM_KEYUP, OnKeyEvent) 251 MESSAGE_HANDLER_EX(WM_KEYUP, OnKeyEvent)
252 MESSAGE_HANDLER_EX(WM_SYSKEYDOWN, OnKeyEvent) 252 MESSAGE_HANDLER_EX(WM_SYSKEYDOWN, OnKeyEvent)
253 MESSAGE_HANDLER_EX(WM_SYSKEYUP, OnKeyEvent) 253 MESSAGE_HANDLER_EX(WM_SYSKEYUP, OnKeyEvent)
254 254
255 // IME Events. 255 // IME Events.
256 MESSAGE_HANDLER_EX(WM_IME_SETCONTEXT, OnImeMessages) 256 MESSAGE_HANDLER_EX(WM_IME_SETCONTEXT, OnImeMessages)
257 MESSAGE_HANDLER_EX(WM_IME_STARTCOMPOSITION, OnImeMessages) 257 MESSAGE_HANDLER_EX(WM_IME_STARTCOMPOSITION, OnImeMessages)
258 MESSAGE_HANDLER_EX(WM_IME_COMPOSITION, OnImeMessages) 258 MESSAGE_HANDLER_EX(WM_IME_COMPOSITION, OnImeMessages)
259 MESSAGE_HANDLER_EX(WM_IME_ENDCOMPOSITION, OnImeMessages) 259 MESSAGE_HANDLER_EX(WM_IME_ENDCOMPOSITION, OnImeMessages)
260 MESSAGE_HANDLER_EX(WM_IME_REQUEST, OnImeMessages) 260 MESSAGE_HANDLER_EX(WM_IME_REQUEST, OnImeMessages)
261 MESSAGE_HANDLER_EX(WM_IME_NOTIFY, OnImeMessages)
261 MESSAGE_HANDLER_EX(WM_CHAR, OnImeMessages) 262 MESSAGE_HANDLER_EX(WM_CHAR, OnImeMessages)
262 MESSAGE_HANDLER_EX(WM_SYSCHAR, OnImeMessages) 263 MESSAGE_HANDLER_EX(WM_SYSCHAR, OnImeMessages)
263 MESSAGE_HANDLER_EX(WM_DEADCHAR, OnImeMessages) 264 MESSAGE_HANDLER_EX(WM_DEADCHAR, OnImeMessages)
264 MESSAGE_HANDLER_EX(WM_SYSDEADCHAR, OnImeMessages) 265 MESSAGE_HANDLER_EX(WM_SYSDEADCHAR, OnImeMessages)
265 266
266 // Touch Events. 267 // Touch Events.
267 MESSAGE_HANDLER_EX(WM_TOUCH, OnTouchEvent) 268 MESSAGE_HANDLER_EX(WM_TOUCH, OnTouchEvent)
268 269
269 // This list is in _ALPHABETICAL_ order! OR I WILL HURT YOU. 270 // This list is in _ALPHABETICAL_ order! OR I WILL HURT YOU.
270 MSG_WM_ACTIVATEAPP(OnActivateApp) 271 MSG_WM_ACTIVATEAPP(OnActivateApp)
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 456
456 // True the first time nccalc is called on a sizable widget 457 // True the first time nccalc is called on a sizable widget
457 bool is_first_nccalc_; 458 bool is_first_nccalc_;
458 459
459 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler); 460 DISALLOW_COPY_AND_ASSIGN(HWNDMessageHandler);
460 }; 461 };
461 462
462 } // namespace views 463 } // namespace views
463 464
464 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_ 465 #endif // UI_VIEWS_WIN_HWND_MESSAGE_HANDLER_H_
OLDNEW
« ui/base/ime/input_method_tsf.cc ('K') | « ui/views/ime/mock_input_method.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698