OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RootView
(Results
1 - 25
of
47
) sorted by null
1
2
/external/chromium/chrome/browser/ui/views/frame/
native_browser_frame_delegate.h
11
class
RootView
;
20
virtual views::
RootView
* DelegateCreateRootView() = 0;
browser_frame.h
84
virtual views::
RootView
* DelegateCreateRootView() OVERRIDE;
101
// functions that only exist on BrowserRootView (versus
RootView
).
browser_frame_gtk.h
45
virtual views::
RootView
* CreateRootView();
browser_root_view.h
18
//
RootView
implementation used by BrowserFrame. This forwards drop events to
23
class BrowserRootView : public views::
RootView
{
browser_frame.cc
61
views::
RootView
* BrowserFrame::DelegateCreateRootView() {
browser_frame_win.h
61
virtual views::
RootView
* CreateRootView() OVERRIDE;
browser_root_view.cc
24
: views::
RootView
(widget),
113
RootView
::GetAccessibleState(state);
/external/chromium/chrome/browser/extensions/
extension_input_api.h
12
class
RootView
;
33
views::
RootView
* GetRootView();
extension_input_api.cc
59
views::
RootView
* SendKeyboardEventInputFunction::GetRootView() {
118
views::
RootView
* root_view = GetRootView();
/external/chromium_org/ui/views/widget/
root_view_test_helper.h
15
explicit RootViewTestHelper(internal::
RootView
* root_view)
25
internal::
RootView
* root_view_;
root_view.cc
55
const char
RootView
::kViewClassName[] = "
RootView
";
58
//
RootView
, public:
62
RootView
::
RootView
(Widget* widget)
80
RootView
::~
RootView
() {
89
void
RootView
::SetContentsView(View* contents_view) {
101
// calling the widget's size changed handler, since the
RootView
's bounds may
106
View*
RootView
::GetContentsView()
[
all
...]
drop_target_win.h
15
class
RootView
;
25
explicit DropTargetWin(internal::
RootView
* root_view);
30
// This is invoked when a View is removed from the
RootView
to make sure
root_view.h
30
//
RootView
class
32
// The
RootView
is the root of a View hierarchy. A
RootView
is attached to a
35
// them to the
RootView
for propagation into the View hierarchy.
37
// A
RootView
can have only one child, called its "Contents View" which is
38
// sized to fill the bounds of the
RootView
(and hence the client area of the
40
// initialized to attach the contents view to the
RootView
.
46
class VIEWS_EXPORT
RootView
: public View,
53
explicit
RootView
(Widget* widget);
54
virtual ~
RootView
();
[
all
...]
root_view_unittest.cc
49
static_cast<internal::
RootView
*>(widget.GetRootView()));
drop_helper.h
21
class
RootView
;
37
// Returns the
RootView
the DropHelper was created with.
42
// This is invoked when a View is removed from the
RootView
to make sure
67
// the coordinate system of the
rootview
. This tries to avoid continually
76
// set to the deepest descendant of the
RootView
that contains the point
93
//
RootView
we were created for.
drop_target_win.cc
19
DropTargetWin::DropTargetWin(internal::
RootView
* root_view)
/external/chromium_org/ui/views/controls/menu/
menu_host_root_view.cc
15
: internal::
RootView
(widget),
23
!
RootView
::OnMousePressed(event) ||
36
return
RootView
::OnMouseDragged(event);
40
RootView
::OnMouseReleased(event);
48
RootView
::OnMouseMoved(event);
61
//
RootView
::OnMouseWheel forwards to the focused view. We don't have a
68
RootView
::DispatchGestureEvent(event);
menu_host.h
59
virtual internal::
RootView
* CreateRootView() OVERRIDE;
menu_host_root_view.h
15
// MenuHostRootView is the
RootView
of the window showing the menu.
21
class MenuHostRootView : public internal::
RootView
{
34
// Overridden from internal::
RootView
:
/external/chromium_org/ui/views/test/
widget_test.h
24
class
RootView
;
85
View* GetMousePressedHandler(internal::
RootView
* root_view);
87
View* GetMouseMoveHandler(internal::
RootView
* root_view);
89
View* GetGestureHandler(internal::
RootView
* root_view);
widget_test.cc
112
View* WidgetTest::GetMousePressedHandler(internal::
RootView
* root_view) {
116
View* WidgetTest::GetMouseMoveHandler(internal::
RootView
* root_view) {
120
View* WidgetTest::GetGestureHandler(internal::
RootView
* root_view) {
/external/chromium/chrome/browser/ui/views/
generic_info_view_unittest.cc
41
RootView
* root_view = widget->GetRootView();
/external/chromium_org/chrome/browser/ui/views/frame/
browser_frame.h
78
virtual views::internal::
RootView
* CreateRootView() OVERRIDE;
109
// functions that only exist on BrowserRootView (versus
RootView
).
browser_root_view.h
17
//
RootView
implementation used by BrowserFrame. This forwards drop events to
22
class BrowserRootView : public views::internal::
RootView
{
43
// Overridden from internal::
RootView
:
/external/chromium_org/ui/views/corewm/
desktop_capture_controller_unittest.cc
103
internal::
RootView
* root1 =
104
static_cast<internal::
RootView
*>(widget1->GetRootView());
123
internal::
RootView
* root2 =
124
static_cast<internal::
RootView
*>(widget2->GetRootView());
Completed in 347 milliseconds
1
2