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_org/ui/views/widget/
root_view_targeter.h
14
class
RootView
;
21
// needing to access the members of
RootView
. For example, when determining the
27
internal::
RootView
* root_view);
39
// A pointer to the
RootView
on which |this| is installed.
40
internal::
RootView
* root_view_;
root_view.cc
145
const char
RootView
::kViewClassName[] = "
RootView
";
148
//
RootView
, public:
152
RootView
::
RootView
(Widget* widget)
175
RootView
::~
RootView
() {
184
void
RootView
::SetContentsView(View* contents_view) {
196
// calling the widget's size changed handler, since the
RootView
's bounds may
201
View*
RootView
::GetContentsView()
[
all
...]
root_view.h
33
//
RootView
class
35
// The
RootView
is the root of a View hierarchy. A
RootView
is attached to a
38
// them to the
RootView
for propagation into the View hierarchy.
40
// A
RootView
can have only one child, called its "Contents View" which is
41
// sized to fill the bounds of the
RootView
(and hence the client area of the
43
// initialized to attach the contents view to the
RootView
.
49
class VIEWS_EXPORT
RootView
: public View,
57
explicit
RootView
(Widget* widget);
58
virtual ~
RootView
();
[
all
...]
root_view_unittest.cc
56
internal::
RootView
* root_view =
57
static_cast<internal::
RootView
*>(widget.GetRootView());
107
// and VKEY_APPS) by the pre-target handler installed on
RootView
.
114
internal::
RootView
* root_view =
115
static_cast<internal::
RootView
*>(widget.GetRootView());
175
// installed on the
RootView
only if the event is targetted at a view which can
184
internal::
RootView
* root_view =
185
static_cast<internal::
RootView
*>(widget.GetRootView());
267
internal::
RootView
* root_view =
268
static_cast<internal::
RootView
*>(widget.GetRootView())
[
all
...]
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.
root_view_targeter.cc
16
internal::
RootView
* root_view)
widget.h
71
class
RootView
;
80
// Owns a
RootView
and thus a View hierarchy. Can contain child Widgets.
367
// Forwarded from the
RootView
so that the widget can do any cleanup.
374
// Called after changing the widget's parent NativeView. Notifies the
RootView
391
// be one contents view child of this Widget's
RootView
. This view is sized to
392
// fit the entire size of the
RootView
. The
RootView
takes ownership of this
728
// Called by our
RootView
after it has performed a Layout. Used to forward
796
// Creates the
RootView
to be used within this Widget. Subclasses may override
799
virtual internal::
RootView
* CreateRootView()
[
all
...]
/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);
59
ui::EventDispatchDetails result =
RootView
::OnEventFromSource(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
{
menu_host.cc
104
internal::
RootView
* MenuHost::CreateRootView() {
/external/chromium_org/ui/views/test/
widget_test.h
41
class
RootView
;
84
View* GetMousePressedHandler(internal::
RootView
* root_view);
86
View* GetMouseMoveHandler(internal::
RootView
* root_view);
88
View* GetGestureHandler(internal::
RootView
* root_view);
widget_test.cc
94
View* WidgetTest::GetMousePressedHandler(internal::
RootView
* root_view) {
98
View* WidgetTest::GetMouseMoveHandler(internal::
RootView
* root_view) {
102
View* WidgetTest::GetGestureHandler(internal::
RootView
* root_view) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/main/
SimpleApp.js
17
var
rootView
= new WebInspector.
RootView
();
18
WebInspector.inspectorView.show(
rootView
.element);
20
rootView
.attachToBody();
ScreencastApp.js
30
var
rootView
= new WebInspector.
RootView
();
33
this._rootSplitView.show(
rootView
.element);
38
rootView
.attachToBody();
/external/chromium_org/ui/views/
view_targeter.h
14
class
RootView
;
47
// TODO(tdanderson): Un-friend
RootView
once
RootView
::DispatchGestureEvent()
49
friend class internal::
RootView
;
view_targeter_unittest.cc
87
void SetGestureHandler(internal::
RootView
* root_view, View* handler) {
91
void SetGestureHandlerSetBeforeProcessing(internal::
RootView
* root_view,
137
internal::
RootView
* root_view =
138
static_cast<internal::
RootView
*>(widget.GetRootView());
184
internal::
RootView
* root_view =
185
static_cast<internal::
RootView
*>(widget.GetRootView());
262
internal::
RootView
* root_view =
263
static_cast<internal::
RootView
*>(widget.GetRootView());
376
internal::
RootView
* root_view =
377
static_cast<internal::
RootView
*>(widget.GetRootView())
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
RootView.js
9
WebInspector.
RootView
= function()
18
WebInspector.
RootView
.prototype = {
/external/chromium_org/chrome/browser/ui/views/frame/
browser_root_view.h
17
//
RootView
implementation used by BrowserFrame. This forwards drop events to
22
class BrowserRootView : public views::internal::
RootView
{
browser_frame.h
90
virtual views::internal::
RootView
* CreateRootView() OVERRIDE;
124
// functions that only exist on BrowserRootView (versus
RootView
).
browser_root_view.cc
29
: views::internal::
RootView
(widget),
151
return
RootView
::OnMouseWheel(event);
164
return
RootView
::OnEventFromSource(event);
browser_frame.cc
203
views::internal::
RootView
* BrowserFrame::CreateRootView() {
/external/chromium_org/ui/views/corewm/
desktop_capture_controller_unittest.cc
125
internal::
RootView
* root1 =
126
static_cast<internal::
RootView
*>(widget1->GetRootView());
146
internal::
RootView
* root2 =
147
static_cast<internal::
RootView
*>(widget2->GetRootView());
/external/chromium_org/ui/views/focus/
focus_manager.h
43
//
RootView
.
46
//
RootView
. The default traversal order is the order in which the views have
50
// If you are embedding a native view containing a nested
RootView
(for example
54
// It should return the
RootView
of the inner component. This is used when
56
//
RootView
. In the example mentioned above, the NativeControl overrides
58
// - call Widget::SetFocusTraversableParent() on the nested
RootView
and point
59
// it to the outer
RootView
. This is used when the focus goes out of the
60
// nested
RootView
. In the example:
63
// - call
RootView
::SetFocusTraversableParentView() on the nested
RootView
wit
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox_bootstrap/
Toolbox.js
32
var
rootView
= new WebInspector.
RootView
();
35
this._responsiveDesignView.show(
rootView
.element);
36
rootView
.attachToBody();
Completed in 1014 milliseconds
1
2