blob: 6e645d2f8c27fc45a6186b139ef869e4efa032db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef VIEWS_CONTROLS_MENU_MENU_HOST_WIN_H_
#define VIEWS_CONTROLS_MENU_MENU_HOST_WIN_H_
#include "views/widget/widget_win.h"
namespace views {
class SubmenuView;
// MenuHost implementation for windows.
class MenuHost : public WidgetWin {
public:
explicit MenuHost(SubmenuView* submenu);
void Init(HWND parent,
const gfx::Rect& bounds,
View* contents_view,
bool do_capture);
gfx::NativeWindow GetNativeWindow() { return GetNativeView(); }
void Show();
virtual void Hide();
virtual void HideWindow();
virtual void OnCaptureChanged(HWND hwnd);
void ReleaseCapture();
protected:
virtual RootView* CreateRootView();
virtual void OnCancelMode();
// Overriden to return false, we do NOT want to release capture on mouse
// release.
virtual bool ReleaseCaptureOnMouseReleased();
private:
// If true, we've been closed.
bool closed_;
// If true, we own the capture and need to release it.
bool owns_capture_;
// The view we contain.
SubmenuView* submenu_;
DISALLOW_COPY_AND_ASSIGN(MenuHost);
};
} // namespace views
#endif // VIEWS_CONTROLS_MENU_MENU_HOST_WIN_H_
|