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

Side by Side Diff: ui/views/widget/native_widget_win.h

Issue 109403008: Disables showing tooltips while a system menu is showing on windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move resetting Created 6 years, 11 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
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_WIDGET_NATIVE_WIDGET_WIN_H_ 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_
6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 virtual void HandleInputLanguageChange(DWORD character_set, 221 virtual void HandleInputLanguageChange(DWORD character_set,
222 HKL input_language_id) OVERRIDE; 222 HKL input_language_id) OVERRIDE;
223 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) OVERRIDE; 223 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) OVERRIDE;
224 virtual void HandlePaint(gfx::Canvas* canvas) OVERRIDE; 224 virtual void HandlePaint(gfx::Canvas* canvas) OVERRIDE;
225 virtual bool HandleTooltipNotify(int w_param, 225 virtual bool HandleTooltipNotify(int w_param,
226 NMHDR* l_param, 226 NMHDR* l_param,
227 LRESULT* l_result) OVERRIDE; 227 LRESULT* l_result) OVERRIDE;
228 virtual void HandleTooltipMouseMove(UINT message, 228 virtual void HandleTooltipMouseMove(UINT message,
229 WPARAM w_param, 229 WPARAM w_param,
230 LPARAM l_param) OVERRIDE; 230 LPARAM l_param) OVERRIDE;
231 virtual void HandleMenuLoop(bool in_menu_loop) OVERRIDE;
231 virtual bool PreHandleMSG(UINT message, 232 virtual bool PreHandleMSG(UINT message,
232 WPARAM w_param, 233 WPARAM w_param,
233 LPARAM l_param, 234 LPARAM l_param,
234 LRESULT* result) OVERRIDE; 235 LRESULT* result) OVERRIDE;
235 virtual void PostHandleMSG(UINT message, 236 virtual void PostHandleMSG(UINT message,
236 WPARAM w_param, 237 WPARAM w_param,
237 LPARAM l_param) OVERRIDE; 238 LPARAM l_param) OVERRIDE;
238 239
239 // The TooltipManager. This is NULL if there is a problem creating the 240 // The TooltipManager. This is NULL if there is a problem creating the
240 // underlying tooltip window. 241 // underlying tooltip window.
(...skipping 27 matching lines...) Expand all
268 bool has_non_client_view_; 269 bool has_non_client_view_;
269 270
270 scoped_ptr<HWNDMessageHandler> message_handler_; 271 scoped_ptr<HWNDMessageHandler> message_handler_;
271 272
272 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); 273 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin);
273 }; 274 };
274 275
275 } // namespace views 276 } // namespace views
276 277
277 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ 278 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698