Automated Commit: Committing new LKGM version 7479.0.0 for chromeos.
[chromium-blink-merge.git] / ui / views / view.h
blob9447c1f66e9d5068c84ded6301746e8f94f389d4
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
3 // found in the LICENSE file.
5 #ifndef UI_VIEWS_VIEW_H_
6 #define UI_VIEWS_VIEW_H_
8 #include <algorithm>
9 #include <map>
10 #include <set>
11 #include <string>
12 #include <vector>
14 #include "base/compiler_specific.h"
15 #include "base/i18n/rtl.h"
16 #include "base/logging.h"
17 #include "base/memory/scoped_ptr.h"
18 #include "build/build_config.h"
19 #include "ui/accessibility/ax_enums.h"
20 #include "ui/base/accelerators/accelerator.h"
21 #include "ui/base/dragdrop/drag_drop_types.h"
22 #include "ui/base/dragdrop/drop_target_event.h"
23 #include "ui/base/dragdrop/os_exchange_data.h"
24 #include "ui/base/ui_base_types.h"
25 #include "ui/compositor/layer_delegate.h"
26 #include "ui/compositor/layer_owner.h"
27 #include "ui/compositor/paint_cache.h"
28 #include "ui/events/event.h"
29 #include "ui/events/event_target.h"
30 #include "ui/gfx/geometry/insets.h"
31 #include "ui/gfx/geometry/rect.h"
32 #include "ui/gfx/geometry/vector2d.h"
33 #include "ui/gfx/native_widget_types.h"
34 #include "ui/views/view_targeter.h"
35 #include "ui/views/views_export.h"
37 #if defined(OS_WIN)
38 #include "base/win/scoped_comptr.h"
39 #endif
41 using ui::OSExchangeData;
43 namespace gfx {
44 class Canvas;
45 class Insets;
46 class Path;
47 class Transform;
50 namespace ui {
51 struct AXViewState;
52 class Compositor;
53 class InputMethod;
54 class Layer;
55 class NativeTheme;
56 class PaintContext;
57 class TextInputClient;
58 class Texture;
59 class ThemeProvider;
62 namespace views {
64 class Background;
65 class Border;
66 class ContextMenuController;
67 class DragController;
68 class FocusManager;
69 class FocusTraversable;
70 class LayoutManager;
71 class NativeViewAccessibility;
72 class ScrollView;
73 class Widget;
75 namespace internal {
76 class PreEventDispatchHandler;
77 class PostEventDispatchHandler;
78 class RootView;
81 /////////////////////////////////////////////////////////////////////////////
83 // View class
85 // A View is a rectangle within the views View hierarchy. It is the base
86 // class for all Views.
88 // A View is a container of other Views (there is no such thing as a Leaf
89 // View - makes code simpler, reduces type conversion headaches, design
90 // mistakes etc)
92 // The View contains basic properties for sizing (bounds), layout (flex,
93 // orientation, etc), painting of children and event dispatch.
95 // The View also uses a simple Box Layout Manager similar to XUL's
96 // SprocketLayout system. Alternative Layout Managers implementing the
97 // LayoutManager interface can be used to lay out children if required.
99 // It is up to the subclass to implement Painting and storage of subclass -
100 // specific properties and functionality.
102 // Unless otherwise documented, views is not thread safe and should only be
103 // accessed from the main thread.
105 /////////////////////////////////////////////////////////////////////////////
106 class VIEWS_EXPORT View : public ui::LayerDelegate,
107 public ui::LayerOwner,
108 public ui::AcceleratorTarget,
109 public ui::EventTarget {
110 public:
111 typedef std::vector<View*> Views;
113 struct ViewHierarchyChangedDetails {
114 ViewHierarchyChangedDetails()
115 : is_add(false),
116 parent(NULL),
117 child(NULL),
118 move_view(NULL) {}
120 ViewHierarchyChangedDetails(bool is_add,
121 View* parent,
122 View* child,
123 View* move_view)
124 : is_add(is_add),
125 parent(parent),
126 child(child),
127 move_view(move_view) {}
129 bool is_add;
130 // New parent if |is_add| is true, old parent if |is_add| is false.
131 View* parent;
132 // The view being added or removed.
133 View* child;
134 // If this is a move (reparent), meaning AddChildViewAt() is invoked with an
135 // existing parent, then a notification for the remove is sent first,
136 // followed by one for the add. This case can be distinguished by a
137 // non-NULL |move_view|.
138 // For the remove part of move, |move_view| is the new parent of the View
139 // being removed.
140 // For the add part of move, |move_view| is the old parent of the View being
141 // added.
142 View* move_view;
145 // Creation and lifetime -----------------------------------------------------
147 View();
148 ~View() override;
150 // By default a View is owned by its parent unless specified otherwise here.
151 void set_owned_by_client() { owned_by_client_ = true; }
153 // Tree operations -----------------------------------------------------------
155 // Get the Widget that hosts this View, if any.
156 virtual const Widget* GetWidget() const;
157 virtual Widget* GetWidget();
159 // Adds |view| as a child of this view, optionally at |index|.
160 void AddChildView(View* view);
161 void AddChildViewAt(View* view, int index);
163 // Moves |view| to the specified |index|. A negative value for |index| moves
164 // the view at the end.
165 void ReorderChildView(View* view, int index);
167 // Removes |view| from this view. The view's parent will change to NULL.
168 void RemoveChildView(View* view);
170 // Removes all the children from this view. If |delete_children| is true,
171 // the views are deleted, unless marked as not parent owned.
172 void RemoveAllChildViews(bool delete_children);
174 int child_count() const { return static_cast<int>(children_.size()); }
175 bool has_children() const { return !children_.empty(); }
177 // Returns the child view at |index|.
178 const View* child_at(int index) const {
179 DCHECK_GE(index, 0);
180 DCHECK_LT(index, child_count());
181 return children_[index];
183 View* child_at(int index) {
184 return const_cast<View*>(const_cast<const View*>(this)->child_at(index));
187 // Returns the parent view.
188 const View* parent() const { return parent_; }
189 View* parent() { return parent_; }
191 // Returns true if |view| is contained within this View's hierarchy, even as
192 // an indirect descendant. Will return true if child is also this view.
193 bool Contains(const View* view) const;
195 // Returns the index of |view|, or -1 if |view| is not a child of this view.
196 int GetIndexOf(const View* view) const;
198 // Size and disposition ------------------------------------------------------
199 // Methods for obtaining and modifying the position and size of the view.
200 // Position is in the coordinate system of the view's parent.
201 // Position is NOT flipped for RTL. See "RTL positioning" for RTL-sensitive
202 // position accessors.
203 // Transformations are not applied on the size/position. For example, if
204 // bounds is (0, 0, 100, 100) and it is scaled by 0.5 along the X axis, the
205 // width will still be 100 (although when painted, it will be 50x50, painted
206 // at location (0, 0)).
208 void SetBounds(int x, int y, int width, int height);
209 void SetBoundsRect(const gfx::Rect& bounds);
210 void SetSize(const gfx::Size& size);
211 void SetPosition(const gfx::Point& position);
212 void SetX(int x);
213 void SetY(int y);
215 // No transformation is applied on the size or the locations.
216 const gfx::Rect& bounds() const { return bounds_; }
217 int x() const { return bounds_.x(); }
218 int y() const { return bounds_.y(); }
219 int width() const { return bounds_.width(); }
220 int height() const { return bounds_.height(); }
221 const gfx::Size& size() const { return bounds_.size(); }
223 // Returns the bounds of the content area of the view, i.e. the rectangle
224 // enclosed by the view's border.
225 gfx::Rect GetContentsBounds() const;
227 // Returns the bounds of the view in its own coordinates (i.e. position is
228 // 0, 0).
229 gfx::Rect GetLocalBounds() const;
231 // Returns the bounds of the layer in its own pixel coordinates.
232 gfx::Rect GetLayerBoundsInPixel() const;
234 // Returns the insets of the current border. If there is no border an empty
235 // insets is returned.
236 virtual gfx::Insets GetInsets() const;
238 // Returns the visible bounds of the receiver in the receivers coordinate
239 // system.
241 // When traversing the View hierarchy in order to compute the bounds, the
242 // function takes into account the mirroring setting and transformation for
243 // each View and therefore it will return the mirrored and transformed version
244 // of the visible bounds if need be.
245 gfx::Rect GetVisibleBounds() const;
247 // Return the bounds of the View in screen coordinate system.
248 gfx::Rect GetBoundsInScreen() const;
250 // Returns the baseline of this view, or -1 if this view has no baseline. The
251 // return value is relative to the preferred height.
252 virtual int GetBaseline() const;
254 // Get the size the View would like to be, if enough space were available.
255 virtual gfx::Size GetPreferredSize() const;
257 // Convenience method that sizes this view to its preferred size.
258 void SizeToPreferredSize();
260 // Gets the minimum size of the view. View's implementation invokes
261 // GetPreferredSize.
262 virtual gfx::Size GetMinimumSize() const;
264 // Gets the maximum size of the view. Currently only used for sizing shell
265 // windows.
266 virtual gfx::Size GetMaximumSize() const;
268 // Return the height necessary to display this view with the provided width.
269 // View's implementation returns the value from getPreferredSize.cy.
270 // Override if your View's preferred height depends upon the width (such
271 // as with Labels).
272 virtual int GetHeightForWidth(int w) const;
274 // Sets whether this view is visible. Painting is scheduled as needed. Also,
275 // clears focus if the focused view or one of its ancestors is set to be
276 // hidden.
277 virtual void SetVisible(bool visible);
279 // Return whether a view is visible
280 bool visible() const { return visible_; }
282 // Returns true if this view is drawn on screen.
283 virtual bool IsDrawn() const;
285 // Set whether this view is enabled. A disabled view does not receive keyboard
286 // or mouse inputs. If |enabled| differs from the current value, SchedulePaint
287 // is invoked. Also, clears focus if the focused view is disabled.
288 void SetEnabled(bool enabled);
290 // Returns whether the view is enabled.
291 bool enabled() const { return enabled_; }
293 // This indicates that the view completely fills its bounds in an opaque
294 // color. This doesn't affect compositing but is a hint to the compositor to
295 // optimize painting.
296 // Note that this method does not implicitly create a layer if one does not
297 // already exist for the View, but is a no-op in that case.
298 void SetFillsBoundsOpaquely(bool fills_bounds_opaquely);
300 // Transformations -----------------------------------------------------------
302 // Methods for setting transformations for a view (e.g. rotation, scaling).
304 gfx::Transform GetTransform() const;
306 // Clipping parameters. Clipping is done relative to the view bounds.
307 void set_clip_insets(gfx::Insets clip_insets) { clip_insets_ = clip_insets; }
309 // Sets the transform to the supplied transform.
310 void SetTransform(const gfx::Transform& transform);
312 // Sets whether this view paints to a layer. A view paints to a layer if
313 // either of the following are true:
314 // . the view has a non-identity transform.
315 // . SetPaintToLayer(true) has been invoked.
316 // View creates the Layer only when it exists in a Widget with a non-NULL
317 // Compositor.
318 void SetPaintToLayer(bool paint_to_layer);
320 // RTL positioning -----------------------------------------------------------
322 // Methods for accessing the bounds and position of the view, relative to its
323 // parent. The position returned is mirrored if the parent view is using a RTL
324 // layout.
326 // NOTE: in the vast majority of the cases, the mirroring implementation is
327 // transparent to the View subclasses and therefore you should use the
328 // bounds() accessor instead.
329 gfx::Rect GetMirroredBounds() const;
330 gfx::Point GetMirroredPosition() const;
331 int GetMirroredX() const;
333 // Given a rectangle specified in this View's coordinate system, the function
334 // computes the 'left' value for the mirrored rectangle within this View. If
335 // the View's UI layout is not right-to-left, then bounds.x() is returned.
337 // UI mirroring is transparent to most View subclasses and therefore there is
338 // no need to call this routine from anywhere within your subclass
339 // implementation.
340 int GetMirroredXForRect(const gfx::Rect& rect) const;
342 // Given the X coordinate of a point inside the View, this function returns
343 // the mirrored X coordinate of the point if the View's UI layout is
344 // right-to-left. If the layout is left-to-right, the same X coordinate is
345 // returned.
347 // Following are a few examples of the values returned by this function for
348 // a View with the bounds {0, 0, 100, 100} and a right-to-left layout:
350 // GetMirroredXCoordinateInView(0) -> 100
351 // GetMirroredXCoordinateInView(20) -> 80
352 // GetMirroredXCoordinateInView(99) -> 1
353 int GetMirroredXInView(int x) const;
355 // Given a X coordinate and a width inside the View, this function returns
356 // the mirrored X coordinate if the View's UI layout is right-to-left. If the
357 // layout is left-to-right, the same X coordinate is returned.
359 // Following are a few examples of the values returned by this function for
360 // a View with the bounds {0, 0, 100, 100} and a right-to-left layout:
362 // GetMirroredXCoordinateInView(0, 10) -> 90
363 // GetMirroredXCoordinateInView(20, 20) -> 60
364 int GetMirroredXWithWidthInView(int x, int w) const;
366 // Layout --------------------------------------------------------------------
368 // Lay out the child Views (set their bounds based on sizing heuristics
369 // specific to the current Layout Manager)
370 virtual void Layout();
372 // TODO(beng): I think we should remove this.
373 // Mark this view and all parents to require a relayout. This ensures the
374 // next call to Layout() will propagate to this view, even if the bounds of
375 // parent views do not change.
376 void InvalidateLayout();
378 // Gets/Sets the Layout Manager used by this view to size and place its
379 // children.
380 // The LayoutManager is owned by the View and is deleted when the view is
381 // deleted, or when a new LayoutManager is installed.
382 LayoutManager* GetLayoutManager() const;
383 void SetLayoutManager(LayoutManager* layout);
385 // Adjust the layer's offset so that it snaps to the physical pixel boundary.
386 // This has no effect if the view does not have an associated layer.
387 void SnapLayerToPixelBoundary();
389 // Attributes ----------------------------------------------------------------
391 // The view class name.
392 static const char kViewClassName[];
394 // Return the receiving view's class name. A view class is a string which
395 // uniquely identifies the view class. It is intended to be used as a way to
396 // find out during run time if a view can be safely casted to a specific view
397 // subclass. The default implementation returns kViewClassName.
398 virtual const char* GetClassName() const;
400 // Returns the first ancestor, starting at this, whose class name is |name|.
401 // Returns null if no ancestor has the class name |name|.
402 const View* GetAncestorWithClassName(const std::string& name) const;
403 View* GetAncestorWithClassName(const std::string& name);
405 // Recursively descends the view tree starting at this view, and returns
406 // the first child that it encounters that has the given ID.
407 // Returns NULL if no matching child view is found.
408 virtual const View* GetViewByID(int id) const;
409 virtual View* GetViewByID(int id);
411 // Gets and sets the ID for this view. ID should be unique within the subtree
412 // that you intend to search for it. 0 is the default ID for views.
413 int id() const { return id_; }
414 void set_id(int id) { id_ = id; }
416 // A group id is used to tag views which are part of the same logical group.
417 // Focus can be moved between views with the same group using the arrow keys.
418 // Groups are currently used to implement radio button mutual exclusion.
419 // The group id is immutable once it's set.
420 void SetGroup(int gid);
421 // Returns the group id of the view, or -1 if the id is not set yet.
422 int GetGroup() const;
424 // If this returns true, the views from the same group can each be focused
425 // when moving focus with the Tab/Shift-Tab key. If this returns false,
426 // only the selected view from the group (obtained with
427 // GetSelectedViewForGroup()) is focused.
428 virtual bool IsGroupFocusTraversable() const;
430 // Fills |views| with all the available views which belong to the provided
431 // |group|.
432 void GetViewsInGroup(int group, Views* views);
434 // Returns the View that is currently selected in |group|.
435 // The default implementation simply returns the first View found for that
436 // group.
437 virtual View* GetSelectedViewForGroup(int group);
439 // Coordinate conversion -----------------------------------------------------
441 // Note that the utility coordinate conversions functions always operate on
442 // the mirrored position of the child Views if the parent View uses a
443 // right-to-left UI layout.
445 // Convert a point from the coordinate system of one View to another.
447 // |source| and |target| must be in the same widget, but doesn't need to be in
448 // the same view hierarchy.
449 // Neither |source| nor |target| can be NULL.
450 static void ConvertPointToTarget(const View* source,
451 const View* target,
452 gfx::Point* point);
454 // Convert |rect| from the coordinate system of |source| to the coordinate
455 // system of |target|.
457 // |source| and |target| must be in the same widget, but doesn't need to be in
458 // the same view hierarchy.
459 // Neither |source| nor |target| can be NULL.
460 static void ConvertRectToTarget(const View* source,
461 const View* target,
462 gfx::RectF* rect);
464 // Convert a point from a View's coordinate system to that of its Widget.
465 static void ConvertPointToWidget(const View* src, gfx::Point* point);
467 // Convert a point from the coordinate system of a View's Widget to that
468 // View's coordinate system.
469 static void ConvertPointFromWidget(const View* dest, gfx::Point* p);
471 // Convert a point from a View's coordinate system to that of the screen.
472 static void ConvertPointToScreen(const View* src, gfx::Point* point);
474 // Convert a point from a View's coordinate system to that of the screen.
475 static void ConvertPointFromScreen(const View* dst, gfx::Point* point);
477 // Applies transformation on the rectangle, which is in the view's coordinate
478 // system, to convert it into the parent's coordinate system.
479 gfx::Rect ConvertRectToParent(const gfx::Rect& rect) const;
481 // Converts a rectangle from this views coordinate system to its widget
482 // coordinate system.
483 gfx::Rect ConvertRectToWidget(const gfx::Rect& rect) const;
485 // Painting ------------------------------------------------------------------
487 // Mark all or part of the View's bounds as dirty (needing repaint).
488 // |r| is in the View's coordinates.
489 // Rectangle |r| should be in the view's coordinate system. The
490 // transformations are applied to it to convert it into the parent coordinate
491 // system before propagating SchedulePaint up the view hierarchy.
492 // TODO(beng): Make protected.
493 virtual void SchedulePaint();
494 virtual void SchedulePaintInRect(const gfx::Rect& r);
496 // Called by the framework to paint a View. Performs translation and clipping
497 // for View coordinates and language direction as required, allows the View
498 // to paint itself via the various OnPaint*() event handlers and then paints
499 // the hierarchy beneath it.
500 void Paint(const ui::PaintContext& parent_context);
502 // The background object is owned by this object and may be NULL.
503 void set_background(Background* b);
504 const Background* background() const { return background_.get(); }
505 Background* background() { return background_.get(); }
507 // The border object is owned by this object and may be NULL.
508 virtual void SetBorder(scoped_ptr<Border> b);
509 const Border* border() const { return border_.get(); }
510 Border* border() { return border_.get(); }
512 // Get the theme provider from the parent widget.
513 ui::ThemeProvider* GetThemeProvider() const;
515 // Returns the NativeTheme to use for this View. This calls through to
516 // GetNativeTheme() on the Widget this View is in. If this View is not in a
517 // Widget this returns ui::NativeTheme::instance().
518 ui::NativeTheme* GetNativeTheme() {
519 return const_cast<ui::NativeTheme*>(
520 const_cast<const View*>(this)->GetNativeTheme());
522 const ui::NativeTheme* GetNativeTheme() const;
524 // RTL painting --------------------------------------------------------------
526 // This method determines whether the gfx::Canvas object passed to
527 // View::Paint() needs to be transformed such that anything drawn on the
528 // canvas object during View::Paint() is flipped horizontally.
530 // By default, this function returns false (which is the initial value of
531 // |flip_canvas_on_paint_for_rtl_ui_|). View subclasses that need to paint on
532 // a flipped gfx::Canvas when the UI layout is right-to-left need to call
533 // EnableCanvasFlippingForRTLUI().
534 bool FlipCanvasOnPaintForRTLUI() const {
535 return flip_canvas_on_paint_for_rtl_ui_ ? base::i18n::IsRTL() : false;
538 // Enables or disables flipping of the gfx::Canvas during View::Paint().
539 // Note that if canvas flipping is enabled, the canvas will be flipped only
540 // if the UI layout is right-to-left; that is, the canvas will be flipped
541 // only if base::i18n::IsRTL() returns true.
543 // Enabling canvas flipping is useful for leaf views that draw an image that
544 // needs to be flipped horizontally when the UI layout is right-to-left
545 // (views::Button, for example). This method is helpful for such classes
546 // because their drawing logic stays the same and they can become agnostic to
547 // the UI directionality.
548 void EnableCanvasFlippingForRTLUI(bool enable) {
549 flip_canvas_on_paint_for_rtl_ui_ = enable;
552 // Input ---------------------------------------------------------------------
553 // The points, rects, mouse locations, and touch locations in the following
554 // functions are in the view's coordinates, except for a RootView.
556 // A convenience function which calls into GetEventHandlerForRect() with
557 // a 1x1 rect centered at |point|. |point| is in the local coordinate
558 // space of |this|.
559 View* GetEventHandlerForPoint(const gfx::Point& point);
561 // Returns the View that should be the target of an event having |rect| as
562 // its location, or NULL if no such target exists. |rect| is in the local
563 // coordinate space of |this|.
564 View* GetEventHandlerForRect(const gfx::Rect& rect);
566 // Returns the deepest visible descendant that contains the specified point
567 // and supports tooltips. If the view does not contain the point, returns
568 // NULL.
569 virtual View* GetTooltipHandlerForPoint(const gfx::Point& point);
571 // Return the cursor that should be used for this view or the default cursor.
572 // The event location is in the receiver's coordinate system. The caller is
573 // responsible for managing the lifetime of the returned object, though that
574 // lifetime may vary from platform to platform. On Windows and Aura,
575 // the cursor is a shared resource.
576 virtual gfx::NativeCursor GetCursor(const ui::MouseEvent& event);
578 // A convenience function which calls HitTestRect() with a rect of size
579 // 1x1 and an origin of |point|. |point| is in the local coordinate space
580 // of |this|.
581 bool HitTestPoint(const gfx::Point& point) const;
583 // Returns true if |rect| intersects this view's bounds. |rect| is in the
584 // local coordinate space of |this|.
585 bool HitTestRect(const gfx::Rect& rect) const;
587 // Returns true if this view or any of its descendants are permitted to
588 // be the target of an event.
589 virtual bool CanProcessEventsWithinSubtree() const;
591 // Returns true if the mouse cursor is over |view| and mouse events are
592 // enabled.
593 bool IsMouseHovered();
595 // This method is invoked when the user clicks on this view.
596 // The provided event is in the receiver's coordinate system.
598 // Return true if you processed the event and want to receive subsequent
599 // MouseDraggged and MouseReleased events. This also stops the event from
600 // bubbling. If you return false, the event will bubble through parent
601 // views.
603 // If you remove yourself from the tree while processing this, event bubbling
604 // stops as if you returned true, but you will not receive future events.
605 // The return value is ignored in this case.
607 // Default implementation returns true if a ContextMenuController has been
608 // set, false otherwise. Override as needed.
610 virtual bool OnMousePressed(const ui::MouseEvent& event);
612 // This method is invoked when the user clicked on this control.
613 // and is still moving the mouse with a button pressed.
614 // The provided event is in the receiver's coordinate system.
616 // Return true if you processed the event and want to receive
617 // subsequent MouseDragged and MouseReleased events.
619 // Default implementation returns true if a ContextMenuController has been
620 // set, false otherwise. Override as needed.
622 virtual bool OnMouseDragged(const ui::MouseEvent& event);
624 // This method is invoked when the user releases the mouse
625 // button. The event is in the receiver's coordinate system.
627 // Default implementation notifies the ContextMenuController is appropriate.
628 // Subclasses that wish to honor the ContextMenuController should invoke
629 // super.
630 virtual void OnMouseReleased(const ui::MouseEvent& event);
632 // This method is invoked when the mouse press/drag was canceled by a
633 // system/user gesture.
634 virtual void OnMouseCaptureLost();
636 // This method is invoked when the mouse is above this control
637 // The event is in the receiver's coordinate system.
639 // Default implementation does nothing. Override as needed.
640 virtual void OnMouseMoved(const ui::MouseEvent& event);
642 // This method is invoked when the mouse enters this control.
644 // Default implementation does nothing. Override as needed.
645 virtual void OnMouseEntered(const ui::MouseEvent& event);
647 // This method is invoked when the mouse exits this control
648 // The provided event location is always (0, 0)
649 // Default implementation does nothing. Override as needed.
650 virtual void OnMouseExited(const ui::MouseEvent& event);
652 // Set the MouseHandler for a drag session.
654 // A drag session is a stream of mouse events starting
655 // with a MousePressed event, followed by several MouseDragged
656 // events and finishing with a MouseReleased event.
658 // This method should be only invoked while processing a
659 // MouseDragged or MousePressed event.
661 // All further mouse dragged and mouse up events will be sent
662 // the MouseHandler, even if it is reparented to another window.
664 // The MouseHandler is automatically cleared when the control
665 // comes back from processing the MouseReleased event.
667 // Note: if the mouse handler is no longer connected to a
668 // view hierarchy, events won't be sent.
670 // TODO(sky): rename this.
671 virtual void SetMouseHandler(View* new_mouse_handler);
673 // Invoked when a key is pressed or released.
674 // Subclasser should return true if the event has been processed and false
675 // otherwise. If the event has not been processed, the parent will be given a
676 // chance.
677 virtual bool OnKeyPressed(const ui::KeyEvent& event);
678 virtual bool OnKeyReleased(const ui::KeyEvent& event);
680 // Invoked when the user uses the mousewheel. Implementors should return true
681 // if the event has been processed and false otherwise. This message is sent
682 // if the view is focused. If the event has not been processed, the parent
683 // will be given a chance.
684 virtual bool OnMouseWheel(const ui::MouseWheelEvent& event);
687 // See field for description.
688 void set_notify_enter_exit_on_child(bool notify) {
689 notify_enter_exit_on_child_ = notify;
691 bool notify_enter_exit_on_child() const {
692 return notify_enter_exit_on_child_;
695 // Convenience method to retrieve the InputMethod associated with the
696 // Widget that contains this view.
697 ui::InputMethod* GetInputMethod() {
698 return const_cast<ui::InputMethod*>(
699 const_cast<const View*>(this)->GetInputMethod());
701 const ui::InputMethod* GetInputMethod() const;
703 // Sets a new ViewTargeter for the view, and returns the previous
704 // ViewTargeter.
705 scoped_ptr<ViewTargeter> SetEventTargeter(scoped_ptr<ViewTargeter> targeter);
707 // Returns the ViewTargeter installed on |this| if one exists,
708 // otherwise returns the ViewTargeter installed on our root view.
709 // The return value is guaranteed to be non-null.
710 ViewTargeter* GetEffectiveViewTargeter() const;
712 ViewTargeter* targeter() const { return targeter_.get(); }
714 // Overridden from ui::EventTarget:
715 bool CanAcceptEvent(const ui::Event& event) override;
716 ui::EventTarget* GetParentTarget() override;
717 scoped_ptr<ui::EventTargetIterator> GetChildIterator() const override;
718 ui::EventTargeter* GetEventTargeter() override;
719 void ConvertEventToTarget(ui::EventTarget* target,
720 ui::LocatedEvent* event) override;
722 // Overridden from ui::EventHandler:
723 void OnKeyEvent(ui::KeyEvent* event) override;
724 void OnMouseEvent(ui::MouseEvent* event) override;
725 void OnScrollEvent(ui::ScrollEvent* event) override;
726 void OnTouchEvent(ui::TouchEvent* event) final;
727 void OnGestureEvent(ui::GestureEvent* event) override;
729 // Accelerators --------------------------------------------------------------
731 // Sets a keyboard accelerator for that view. When the user presses the
732 // accelerator key combination, the AcceleratorPressed method is invoked.
733 // Note that you can set multiple accelerators for a view by invoking this
734 // method several times. Note also that AcceleratorPressed is invoked only
735 // when CanHandleAccelerators() is true.
736 virtual void AddAccelerator(const ui::Accelerator& accelerator);
738 // Removes the specified accelerator for this view.
739 virtual void RemoveAccelerator(const ui::Accelerator& accelerator);
741 // Removes all the keyboard accelerators for this view.
742 virtual void ResetAccelerators();
744 // Overridden from AcceleratorTarget:
745 bool AcceleratorPressed(const ui::Accelerator& accelerator) override;
747 // Returns whether accelerators are enabled for this view. Accelerators are
748 // enabled if the containing widget is visible and the view is enabled() and
749 // IsDrawn()
750 bool CanHandleAccelerators() const override;
752 // Focus ---------------------------------------------------------------------
754 // Returns whether this view currently has the focus.
755 virtual bool HasFocus() const;
757 // Returns the view that should be selected next when pressing Tab.
758 View* GetNextFocusableView();
759 const View* GetNextFocusableView() const;
761 // Returns the view that should be selected next when pressing Shift-Tab.
762 View* GetPreviousFocusableView();
764 // Sets the component that should be selected next when pressing Tab, and
765 // makes the current view the precedent view of the specified one.
766 // Note that by default views are linked in the order they have been added to
767 // their container. Use this method if you want to modify the order.
768 // IMPORTANT NOTE: loops in the focus hierarchy are not supported.
769 void SetNextFocusableView(View* view);
771 // Sets whether this view is capable of taking focus. It will clear focus if
772 // the focused view is set to be non-focusable.
773 // Note that this is false by default so that a view used as a container does
774 // not get the focus.
775 void SetFocusable(bool focusable);
777 // Returns true if this view is |focusable_|, |enabled_| and drawn.
778 bool IsFocusable() const;
780 // Return whether this view is focusable when the user requires full keyboard
781 // access, even though it may not be normally focusable.
782 bool IsAccessibilityFocusable() const;
784 // Set whether this view can be made focusable if the user requires
785 // full keyboard access, even though it's not normally focusable. It will
786 // clear focus if the focused view is set to be non-focusable.
787 // Note that this is false by default.
788 void SetAccessibilityFocusable(bool accessibility_focusable);
790 // Convenience method to retrieve the FocusManager associated with the
791 // Widget that contains this view. This can return NULL if this view is not
792 // part of a view hierarchy with a Widget.
793 virtual FocusManager* GetFocusManager();
794 virtual const FocusManager* GetFocusManager() const;
796 // Request keyboard focus. The receiving view will become the focused view.
797 virtual void RequestFocus();
799 // Invoked when a view is about to be requested for focus due to the focus
800 // traversal. Reverse is this request was generated going backward
801 // (Shift-Tab).
802 virtual void AboutToRequestFocusFromTabTraversal(bool reverse) {}
804 // Invoked when a key is pressed before the key event is processed (and
805 // potentially eaten) by the focus manager for tab traversal, accelerators and
806 // other focus related actions.
807 // The default implementation returns false, ensuring that tab traversal and
808 // accelerators processing is performed.
809 // Subclasses should return true if they want to process the key event and not
810 // have it processed as an accelerator (if any) or as a tab traversal (if the
811 // key event is for the TAB key). In that case, OnKeyPressed will
812 // subsequently be invoked for that event.
813 virtual bool SkipDefaultKeyEventProcessing(const ui::KeyEvent& event);
815 // Subclasses that contain traversable children that are not directly
816 // accessible through the children hierarchy should return the associated
817 // FocusTraversable for the focus traversal to work properly.
818 virtual FocusTraversable* GetFocusTraversable();
820 // Subclasses that can act as a "pane" must implement their own
821 // FocusTraversable to keep the focus trapped within the pane.
822 // If this method returns an object, any view that's a direct or
823 // indirect child of this view will always use this FocusTraversable
824 // rather than the one from the widget.
825 virtual FocusTraversable* GetPaneFocusTraversable();
827 // Tooltips ------------------------------------------------------------------
829 // Gets the tooltip for this View. If the View does not have a tooltip,
830 // return false. If the View does have a tooltip, copy the tooltip into
831 // the supplied string and return true.
832 // Any time the tooltip text that a View is displaying changes, it must
833 // invoke TooltipTextChanged.
834 // |p| provides the coordinates of the mouse (relative to this view).
835 virtual bool GetTooltipText(const gfx::Point& p,
836 base::string16* tooltip) const;
838 // Returns the location (relative to this View) for the text on the tooltip
839 // to display. If false is returned (the default), the tooltip is placed at
840 // a default position.
841 virtual bool GetTooltipTextOrigin(const gfx::Point& p, gfx::Point* loc) const;
843 // Context menus -------------------------------------------------------------
845 // Sets the ContextMenuController. Setting this to non-null makes the View
846 // process mouse events.
847 ContextMenuController* context_menu_controller() {
848 return context_menu_controller_;
850 void set_context_menu_controller(ContextMenuController* menu_controller) {
851 context_menu_controller_ = menu_controller;
854 // Provides default implementation for context menu handling. The default
855 // implementation calls the ShowContextMenu of the current
856 // ContextMenuController (if it is not NULL). Overridden in subclassed views
857 // to provide right-click menu display triggerd by the keyboard (i.e. for the
858 // Chrome toolbar Back and Forward buttons). No source needs to be specified,
859 // as it is always equal to the current View.
860 virtual void ShowContextMenu(const gfx::Point& p,
861 ui::MenuSourceType source_type);
863 // On some platforms, we show context menu on mouse press instead of release.
864 // This method returns true for those platforms.
865 static bool ShouldShowContextMenuOnMousePress();
867 // Returns the location, in screen coordinates, to show the context menu at
868 // when the context menu is shown from the keyboard. This implementation
869 // returns the middle of the visible region of this view.
871 // This method is invoked when the context menu is shown by way of the
872 // keyboard.
873 virtual gfx::Point GetKeyboardContextMenuLocation();
875 // Drag and drop -------------------------------------------------------------
877 DragController* drag_controller() { return drag_controller_; }
878 void set_drag_controller(DragController* drag_controller) {
879 drag_controller_ = drag_controller;
882 // During a drag and drop session when the mouse moves the view under the
883 // mouse is queried for the drop types it supports by way of the
884 // GetDropFormats methods. If the view returns true and the drag site can
885 // provide data in one of the formats, the view is asked if the drop data
886 // is required before any other drop events are sent. Once the
887 // data is available the view is asked if it supports the drop (by way of
888 // the CanDrop method). If a view returns true from CanDrop,
889 // OnDragEntered is sent to the view when the mouse first enters the view,
890 // as the mouse moves around within the view OnDragUpdated is invoked.
891 // If the user releases the mouse over the view and OnDragUpdated returns a
892 // valid drop, then OnPerformDrop is invoked. If the mouse moves outside the
893 // view or over another view that wants the drag, OnDragExited is invoked.
895 // Similar to mouse events, the deepest view under the mouse is first checked
896 // if it supports the drop (Drop). If the deepest view under
897 // the mouse does not support the drop, the ancestors are walked until one
898 // is found that supports the drop.
900 // Override and return the set of formats that can be dropped on this view.
901 // |formats| is a bitmask of the formats defined bye OSExchangeData::Format.
902 // The default implementation returns false, which means the view doesn't
903 // support dropping.
904 virtual bool GetDropFormats(
905 int* formats,
906 std::set<OSExchangeData::CustomFormat>* custom_formats);
908 // Override and return true if the data must be available before any drop
909 // methods should be invoked. The default is false.
910 virtual bool AreDropTypesRequired();
912 // A view that supports drag and drop must override this and return true if
913 // data contains a type that may be dropped on this view.
914 virtual bool CanDrop(const OSExchangeData& data);
916 // OnDragEntered is invoked when the mouse enters this view during a drag and
917 // drop session and CanDrop returns true. This is immediately
918 // followed by an invocation of OnDragUpdated, and eventually one of
919 // OnDragExited or OnPerformDrop.
920 virtual void OnDragEntered(const ui::DropTargetEvent& event);
922 // Invoked during a drag and drop session while the mouse is over the view.
923 // This should return a bitmask of the DragDropTypes::DragOperation supported
924 // based on the location of the event. Return 0 to indicate the drop should
925 // not be accepted.
926 virtual int OnDragUpdated(const ui::DropTargetEvent& event);
928 // Invoked during a drag and drop session when the mouse exits the views, or
929 // when the drag session was canceled and the mouse was over the view.
930 virtual void OnDragExited();
932 // Invoked during a drag and drop session when OnDragUpdated returns a valid
933 // operation and the user release the mouse.
934 virtual int OnPerformDrop(const ui::DropTargetEvent& event);
936 // Invoked from DoDrag after the drag completes. This implementation does
937 // nothing, and is intended for subclasses to do cleanup.
938 virtual void OnDragDone();
940 // Returns true if the mouse was dragged enough to start a drag operation.
941 // delta_x and y are the distance the mouse was dragged.
942 static bool ExceededDragThreshold(const gfx::Vector2d& delta);
944 // Accessibility -------------------------------------------------------------
946 // Modifies |state| to reflect the current accessible state of this view.
947 virtual void GetAccessibleState(ui::AXViewState* state) { }
949 // Returns an instance of the native accessibility interface for this view.
950 virtual gfx::NativeViewAccessible GetNativeViewAccessible();
952 // Notifies assistive technology that an accessibility event has
953 // occurred on this view, such as when the view is focused or when its
954 // value changes. Pass true for |send_native_event| except for rare
955 // cases where the view is a native control that's already sending a
956 // native accessibility event and the duplicate event would cause
957 // problems.
958 void NotifyAccessibilityEvent(ui::AXEvent event_type,
959 bool send_native_event);
961 // Scrolling -----------------------------------------------------------------
962 // TODO(beng): Figure out if this can live somewhere other than View, i.e.
963 // closer to ScrollView.
965 // Scrolls the specified region, in this View's coordinate system, to be
966 // visible. View's implementation passes the call onto the parent View (after
967 // adjusting the coordinates). It is up to views that only show a portion of
968 // the child view, such as Viewport, to override appropriately.
969 virtual void ScrollRectToVisible(const gfx::Rect& rect);
971 // The following methods are used by ScrollView to determine the amount
972 // to scroll relative to the visible bounds of the view. For example, a
973 // return value of 10 indicates the scrollview should scroll 10 pixels in
974 // the appropriate direction.
976 // Each method takes the following parameters:
978 // is_horizontal: if true, scrolling is along the horizontal axis, otherwise
979 // the vertical axis.
980 // is_positive: if true, scrolling is by a positive amount. Along the
981 // vertical axis scrolling by a positive amount equates to
982 // scrolling down.
984 // The return value should always be positive and gives the number of pixels
985 // to scroll. ScrollView interprets a return value of 0 (or negative)
986 // to scroll by a default amount.
988 // See VariableRowHeightScrollHelper and FixedRowHeightScrollHelper for
989 // implementations of common cases.
990 virtual int GetPageScrollIncrement(ScrollView* scroll_view,
991 bool is_horizontal, bool is_positive);
992 virtual int GetLineScrollIncrement(ScrollView* scroll_view,
993 bool is_horizontal, bool is_positive);
995 protected:
996 // Used to track a drag. RootView passes this into
997 // ProcessMousePressed/Dragged.
998 struct DragInfo {
999 // Sets possible_drag to false and start_x/y to 0. This is invoked by
1000 // RootView prior to invoke ProcessMousePressed.
1001 void Reset();
1003 // Sets possible_drag to true and start_pt to the specified point.
1004 // This is invoked by the target view if it detects the press may generate
1005 // a drag.
1006 void PossibleDrag(const gfx::Point& p);
1008 // Whether the press may generate a drag.
1009 bool possible_drag;
1011 // Coordinates of the mouse press.
1012 gfx::Point start_pt;
1015 // Size and disposition ------------------------------------------------------
1017 // Override to be notified when the bounds of the view have changed.
1018 virtual void OnBoundsChanged(const gfx::Rect& previous_bounds);
1020 // Called when the preferred size of a child view changed. This gives the
1021 // parent an opportunity to do a fresh layout if that makes sense.
1022 virtual void ChildPreferredSizeChanged(View* child) {}
1024 // Called when the visibility of a child view changed. This gives the parent
1025 // an opportunity to do a fresh layout if that makes sense.
1026 virtual void ChildVisibilityChanged(View* child) {}
1028 // Invalidates the layout and calls ChildPreferredSizeChanged on the parent
1029 // if there is one. Be sure to call View::PreferredSizeChanged when
1030 // overriding such that the layout is properly invalidated.
1031 virtual void PreferredSizeChanged();
1033 // Override returning true when the view needs to be notified when its visible
1034 // bounds relative to the root view may have changed. Only used by
1035 // NativeViewHost.
1036 virtual bool GetNeedsNotificationWhenVisibleBoundsChange() const;
1038 // Notification that this View's visible bounds relative to the root view may
1039 // have changed. The visible bounds are the region of the View not clipped by
1040 // its ancestors. This is used for clipping NativeViewHost.
1041 virtual void OnVisibleBoundsChanged();
1043 // Override to be notified when the enabled state of this View has
1044 // changed. The default implementation calls SchedulePaint() on this View.
1045 virtual void OnEnabledChanged();
1047 bool needs_layout() const { return needs_layout_; }
1049 // Tree operations -----------------------------------------------------------
1051 // This method is invoked when the tree changes.
1053 // When a view is removed, it is invoked for all children and grand
1054 // children. For each of these views, a notification is sent to the
1055 // view and all parents.
1057 // When a view is added, a notification is sent to the view, all its
1058 // parents, and all its children (and grand children)
1060 // Default implementation does nothing. Override to perform operations
1061 // required when a view is added or removed from a view hierarchy
1063 // Refer to comments in struct |ViewHierarchyChangedDetails| for |details|.
1064 virtual void ViewHierarchyChanged(const ViewHierarchyChangedDetails& details);
1066 // When SetVisible() changes the visibility of a view, this method is
1067 // invoked for that view as well as all the children recursively.
1068 virtual void VisibilityChanged(View* starting_from, bool is_visible);
1070 // This method is invoked when the parent NativeView of the widget that the
1071 // view is attached to has changed and the view hierarchy has not changed.
1072 // ViewHierarchyChanged() is called when the parent NativeView of the widget
1073 // that the view is attached to is changed as a result of changing the view
1074 // hierarchy. Overriding this method is useful for tracking which
1075 // FocusManager manages this view.
1076 virtual void NativeViewHierarchyChanged();
1078 // Painting ------------------------------------------------------------------
1080 // Responsible for calling Paint() on child Views. Override to control the
1081 // order child Views are painted.
1082 virtual void PaintChildren(const ui::PaintContext& context);
1084 // Override to provide rendering in any part of the View's bounds. Typically
1085 // this is the "contents" of the view. If you override this method you will
1086 // have to call the subsequent OnPaint*() methods manually.
1087 virtual void OnPaint(gfx::Canvas* canvas);
1089 // Override to paint a background before any content is drawn. Typically this
1090 // is done if you are satisfied with a default OnPaint handler but wish to
1091 // supply a different background.
1092 virtual void OnPaintBackground(gfx::Canvas* canvas);
1094 // Override to paint a border not specified by SetBorder().
1095 virtual void OnPaintBorder(gfx::Canvas* canvas);
1097 // Accelerated painting ------------------------------------------------------
1099 // Returns the offset from this view to the nearest ancestor with a layer. If
1100 // |layer_parent| is non-NULL it is set to the nearest ancestor with a layer.
1101 virtual gfx::Vector2d CalculateOffsetToAncestorWithLayer(
1102 ui::Layer** layer_parent);
1104 // Updates the view's layer's parent. Called when a view is added to a view
1105 // hierarchy, responsible for parenting the view's layer to the enclosing
1106 // layer in the hierarchy.
1107 virtual void UpdateParentLayer();
1109 // If this view has a layer, the layer is reparented to |parent_layer| and its
1110 // bounds is set based on |point|. If this view does not have a layer, then
1111 // recurses through all children. This is used when adding a layer to an
1112 // existing view to make sure all descendants that have layers are parented to
1113 // the right layer.
1114 void MoveLayerToParent(ui::Layer* parent_layer, const gfx::Point& point);
1116 // Called to update the bounds of any child layers within this View's
1117 // hierarchy when something happens to the hierarchy.
1118 void UpdateChildLayerBounds(const gfx::Vector2d& offset);
1120 // Overridden from ui::LayerDelegate:
1121 void OnPaintLayer(const ui::PaintContext& context) override;
1122 void OnDelegatedFrameDamage(const gfx::Rect& damage_rect_in_dip) override;
1123 void OnDeviceScaleFactorChanged(float device_scale_factor) override;
1124 base::Closure PrepareForLayerBoundsChange() override;
1126 // Finds the layer that this view paints to (it may belong to an ancestor
1127 // view), then reorders the immediate children of that layer to match the
1128 // order of the view tree.
1129 virtual void ReorderLayers();
1131 // This reorders the immediate children of |*parent_layer| to match the
1132 // order of the view tree. Child layers which are owned by a view are
1133 // reordered so that they are below any child layers not owned by a view.
1134 // Widget::ReorderNativeViews() should be called to reorder any child layers
1135 // with an associated view. Widget::ReorderNativeViews() may reorder layers
1136 // below layers owned by a view.
1137 virtual void ReorderChildLayers(ui::Layer* parent_layer);
1139 // Input ---------------------------------------------------------------------
1141 virtual DragInfo* GetDragInfo();
1143 // Focus ---------------------------------------------------------------------
1145 // Returns last value passed to SetFocusable(). Use IsFocusable() to determine
1146 // if a view can take focus right now.
1147 bool focusable() const { return focusable_; }
1149 // Override to be notified when focus has changed either to or from this View.
1150 virtual void OnFocus();
1151 virtual void OnBlur();
1153 // Handle view focus/blur events for this view.
1154 void Focus();
1155 void Blur();
1157 // System events -------------------------------------------------------------
1159 // Called when the UI theme (not the NativeTheme) has changed, overriding
1160 // allows individual Views to do special cleanup and processing (such as
1161 // dropping resource caches). To dispatch a theme changed notification, call
1162 // Widget::ThemeChanged().
1163 virtual void OnThemeChanged() {}
1165 // Called when the locale has changed, overriding allows individual Views to
1166 // update locale-dependent strings.
1167 // To dispatch a locale changed notification, call Widget::LocaleChanged().
1168 virtual void OnLocaleChanged() {}
1170 // Tooltips ------------------------------------------------------------------
1172 // Views must invoke this when the tooltip text they are to display changes.
1173 void TooltipTextChanged();
1175 // Drag and drop -------------------------------------------------------------
1177 // These are cover methods that invoke the method of the same name on
1178 // the DragController. Subclasses may wish to override rather than install
1179 // a DragController.
1180 // See DragController for a description of these methods.
1181 virtual int GetDragOperations(const gfx::Point& press_pt);
1182 virtual void WriteDragData(const gfx::Point& press_pt, OSExchangeData* data);
1184 // Returns whether we're in the middle of a drag session that was initiated
1185 // by us.
1186 bool InDrag();
1188 // Returns how much the mouse needs to move in one direction to start a
1189 // drag. These methods cache in a platform-appropriate way. These values are
1190 // used by the public static method ExceededDragThreshold().
1191 static int GetHorizontalDragThreshold();
1192 static int GetVerticalDragThreshold();
1194 // NativeTheme ---------------------------------------------------------------
1196 // Invoked when the NativeTheme associated with this View changes.
1197 virtual void OnNativeThemeChanged(const ui::NativeTheme* theme) {}
1199 // Debugging -----------------------------------------------------------------
1201 #if !defined(NDEBUG)
1202 // Returns string containing a graph of the views hierarchy in graphViz DOT
1203 // language (http://graphviz.org/). Can be called within debugger and save
1204 // to a file to compile/view.
1205 // Note: Assumes initial call made with first = true.
1206 virtual std::string PrintViewGraph(bool first);
1208 // Some classes may own an object which contains the children to displayed in
1209 // the views hierarchy. The above function gives the class the flexibility to
1210 // decide which object should be used to obtain the children, but this
1211 // function makes the decision explicit.
1212 std::string DoPrintViewGraph(bool first, View* view_with_children);
1213 #endif
1215 private:
1216 friend class internal::PreEventDispatchHandler;
1217 friend class internal::PostEventDispatchHandler;
1218 friend class internal::RootView;
1219 friend class FocusManager;
1220 friend class Widget;
1222 // Painting -----------------------------------------------------------------
1224 enum SchedulePaintType {
1225 // Indicates the size is the same (only the origin changed).
1226 SCHEDULE_PAINT_SIZE_SAME,
1228 // Indicates the size changed (and possibly the origin).
1229 SCHEDULE_PAINT_SIZE_CHANGED
1232 // Invoked before and after the bounds change to schedule painting the old and
1233 // new bounds.
1234 void SchedulePaintBoundsChanged(SchedulePaintType type);
1236 // Tree operations -----------------------------------------------------------
1238 // Removes |view| from the hierarchy tree. If |update_focus_cycle| is true,
1239 // the next and previous focusable views of views pointing to this view are
1240 // updated. If |update_tool_tip| is true, the tooltip is updated. If
1241 // |delete_removed_view| is true, the view is also deleted (if it is parent
1242 // owned). If |new_parent| is not NULL, the remove is the result of
1243 // AddChildView() to a new parent. For this case, |new_parent| is the View
1244 // that |view| is going to be added to after the remove completes.
1245 void DoRemoveChildView(View* view,
1246 bool update_focus_cycle,
1247 bool update_tool_tip,
1248 bool delete_removed_view,
1249 View* new_parent);
1251 // Call ViewHierarchyChanged() for all child views and all parents.
1252 // |old_parent| is the original parent of the View that was removed.
1253 // If |new_parent| is not NULL, the View that was removed will be reparented
1254 // to |new_parent| after the remove operation.
1255 void PropagateRemoveNotifications(View* old_parent, View* new_parent);
1257 // Call ViewHierarchyChanged() for all children.
1258 void PropagateAddNotifications(const ViewHierarchyChangedDetails& details);
1260 // Propagates NativeViewHierarchyChanged() notification through all the
1261 // children.
1262 void PropagateNativeViewHierarchyChanged();
1264 // Takes care of registering/unregistering accelerators if
1265 // |register_accelerators| true and calls ViewHierarchyChanged().
1266 void ViewHierarchyChangedImpl(bool register_accelerators,
1267 const ViewHierarchyChangedDetails& details);
1269 // Invokes OnNativeThemeChanged() on this and all descendants.
1270 void PropagateNativeThemeChanged(const ui::NativeTheme* theme);
1272 // Size and disposition ------------------------------------------------------
1274 // Call VisibilityChanged() recursively for all children.
1275 void PropagateVisibilityNotifications(View* from, bool is_visible);
1277 // Registers/unregisters accelerators as necessary and calls
1278 // VisibilityChanged().
1279 void VisibilityChangedImpl(View* starting_from, bool is_visible);
1281 // Responsible for propagating bounds change notifications to relevant
1282 // views.
1283 void BoundsChanged(const gfx::Rect& previous_bounds);
1285 // Visible bounds notification registration.
1286 // When a view is added to a hierarchy, it and all its children are asked if
1287 // they need to be registered for "visible bounds within root" notifications
1288 // (see comment on OnVisibleBoundsChanged()). If they do, they are registered
1289 // with every ancestor between them and the root of the hierarchy.
1290 static void RegisterChildrenForVisibleBoundsNotification(View* view);
1291 static void UnregisterChildrenForVisibleBoundsNotification(View* view);
1292 void RegisterForVisibleBoundsNotification();
1293 void UnregisterForVisibleBoundsNotification();
1295 // Adds/removes view to the list of descendants that are notified any time
1296 // this views location and possibly size are changed.
1297 void AddDescendantToNotify(View* view);
1298 void RemoveDescendantToNotify(View* view);
1300 // Sets the layer's bounds given in DIP coordinates.
1301 void SetLayerBounds(const gfx::Rect& bounds_in_dip);
1303 // Transformations -----------------------------------------------------------
1305 // Returns in |transform| the transform to get from coordinates of |ancestor|
1306 // to this. Returns true if |ancestor| is found. If |ancestor| is not found,
1307 // or NULL, |transform| is set to convert from root view coordinates to this.
1308 bool GetTransformRelativeTo(const View* ancestor,
1309 gfx::Transform* transform) const;
1311 // Coordinate conversion -----------------------------------------------------
1313 // Convert a point in the view's coordinate to an ancestor view's coordinate
1314 // system using necessary transformations. Returns whether the point was
1315 // successfully converted to the ancestor's coordinate system.
1316 bool ConvertPointForAncestor(const View* ancestor, gfx::Point* point) const;
1318 // Convert a point in the ancestor's coordinate system to the view's
1319 // coordinate system using necessary transformations. Returns whether the
1320 // point was successfully converted from the ancestor's coordinate system
1321 // to the view's coordinate system.
1322 bool ConvertPointFromAncestor(const View* ancestor, gfx::Point* point) const;
1324 // Convert a rect in the view's coordinate to an ancestor view's coordinate
1325 // system using necessary transformations. Returns whether the rect was
1326 // successfully converted to the ancestor's coordinate system.
1327 bool ConvertRectForAncestor(const View* ancestor, gfx::RectF* rect) const;
1329 // Convert a rect in the ancestor's coordinate system to the view's
1330 // coordinate system using necessary transformations. Returns whether the
1331 // rect was successfully converted from the ancestor's coordinate system
1332 // to the view's coordinate system.
1333 bool ConvertRectFromAncestor(const View* ancestor, gfx::RectF* rect) const;
1335 // Accelerated painting ------------------------------------------------------
1337 // Creates the layer and related fields for this view.
1338 void CreateLayer();
1340 // Parents all un-parented layers within this view's hierarchy to this view's
1341 // layer.
1342 void UpdateParentLayers();
1344 // Parents this view's layer to |parent_layer|, and sets its bounds and other
1345 // properties in accordance to |offset|, the view's offset from the
1346 // |parent_layer|.
1347 void ReparentLayer(const gfx::Vector2d& offset, ui::Layer* parent_layer);
1349 // Called to update the layer visibility. The layer will be visible if the
1350 // View itself, and all its parent Views are visible. This also updates
1351 // visibility of the child layers.
1352 void UpdateLayerVisibility();
1353 void UpdateChildLayerVisibility(bool visible);
1355 // Orphans the layers in this subtree that are parented to layers outside of
1356 // this subtree.
1357 void OrphanLayers();
1359 // Destroys the layer associated with this view, and reparents any descendants
1360 // to the destroyed layer's parent.
1361 void DestroyLayer();
1363 // Input ---------------------------------------------------------------------
1365 bool ProcessMousePressed(const ui::MouseEvent& event);
1366 bool ProcessMouseDragged(const ui::MouseEvent& event);
1367 void ProcessMouseReleased(const ui::MouseEvent& event);
1369 // Accelerators --------------------------------------------------------------
1371 // Registers this view's keyboard accelerators that are not registered to
1372 // FocusManager yet, if possible.
1373 void RegisterPendingAccelerators();
1375 // Unregisters all the keyboard accelerators associated with this view.
1376 // |leave_data_intact| if true does not remove data from accelerators_ array,
1377 // so it could be re-registered with other focus manager
1378 void UnregisterAccelerators(bool leave_data_intact);
1380 // Focus ---------------------------------------------------------------------
1382 // Initialize the previous/next focusable views of the specified view relative
1383 // to the view at the specified index.
1384 void InitFocusSiblings(View* view, int index);
1386 // Helper function to advance focus, in case the currently focused view has
1387 // become unfocusable.
1388 void AdvanceFocusIfNecessary();
1390 // System events -------------------------------------------------------------
1392 // Used to propagate theme changed notifications from the root view to all
1393 // views in the hierarchy.
1394 void PropagateThemeChanged();
1396 // Used to propagate locale changed notifications from the root view to all
1397 // views in the hierarchy.
1398 void PropagateLocaleChanged();
1400 // Used to propagate device scale factor changed notifications from the root
1401 // view to all views in the hierarchy.
1402 void PropagateDeviceScaleFactorChanged(float device_scale_factor);
1404 // Tooltips ------------------------------------------------------------------
1406 // Propagates UpdateTooltip() to the TooltipManager for the Widget.
1407 // This must be invoked any time the View hierarchy changes in such a way
1408 // the view under the mouse differs. For example, if the bounds of a View is
1409 // changed, this is invoked. Similarly, as Views are added/removed, this
1410 // is invoked.
1411 void UpdateTooltip();
1413 // Drag and drop -------------------------------------------------------------
1415 // Starts a drag and drop operation originating from this view. This invokes
1416 // WriteDragData to write the data and GetDragOperations to determine the
1417 // supported drag operations. When done, OnDragDone is invoked. |press_pt| is
1418 // in the view's coordinate system.
1419 // Returns true if a drag was started.
1420 bool DoDrag(const ui::LocatedEvent& event,
1421 const gfx::Point& press_pt,
1422 ui::DragDropTypes::DragEventSource source);
1424 //////////////////////////////////////////////////////////////////////////////
1426 // Creation and lifetime -----------------------------------------------------
1428 // False if this View is owned by its parent - i.e. it will be deleted by its
1429 // parent during its parents destruction. False is the default.
1430 bool owned_by_client_;
1432 // Attributes ----------------------------------------------------------------
1434 // The id of this View. Used to find this View.
1435 int id_;
1437 // The group of this view. Some view subclasses use this id to find other
1438 // views of the same group. For example radio button uses this information
1439 // to find other radio buttons.
1440 int group_;
1442 // Tree operations -----------------------------------------------------------
1444 // This view's parent.
1445 View* parent_;
1447 // This view's children.
1448 Views children_;
1450 // Size and disposition ------------------------------------------------------
1452 // This View's bounds in the parent coordinate system.
1453 gfx::Rect bounds_;
1455 // Whether this view is visible.
1456 bool visible_;
1458 // Whether this view is enabled.
1459 bool enabled_;
1461 // When this flag is on, a View receives a mouse-enter and mouse-leave event
1462 // even if a descendant View is the event-recipient for the real mouse
1463 // events. When this flag is turned on, and mouse moves from outside of the
1464 // view into a child view, both the child view and this view receives
1465 // mouse-enter event. Similarly, if the mouse moves from inside a child view
1466 // and out of this view, then both views receive a mouse-leave event.
1467 // When this flag is turned off, if the mouse moves from inside this view into
1468 // a child view, then this view receives a mouse-leave event. When this flag
1469 // is turned on, it does not receive the mouse-leave event in this case.
1470 // When the mouse moves from inside the child view out of the child view but
1471 // still into this view, this view receives a mouse-enter event if this flag
1472 // is turned off, but doesn't if this flag is turned on.
1473 // This flag is initialized to false.
1474 bool notify_enter_exit_on_child_;
1476 // Whether or not RegisterViewForVisibleBoundsNotification on the RootView
1477 // has been invoked.
1478 bool registered_for_visible_bounds_notification_;
1480 // List of descendants wanting notification when their visible bounds change.
1481 scoped_ptr<Views> descendants_to_notify_;
1483 // Transformations -----------------------------------------------------------
1485 // Clipping parameters. skia transformation matrix does not give us clipping.
1486 // So we do it ourselves.
1487 gfx::Insets clip_insets_;
1489 // Layout --------------------------------------------------------------------
1491 // Whether the view needs to be laid out.
1492 bool needs_layout_;
1494 // The View's LayoutManager defines the sizing heuristics applied to child
1495 // Views. The default is absolute positioning according to bounds_.
1496 scoped_ptr<LayoutManager> layout_manager_;
1498 // Whether this View's layer should be snapped to the pixel boundary.
1499 bool snap_layer_to_pixel_boundary_;
1501 // Painting ------------------------------------------------------------------
1503 // Background
1504 scoped_ptr<Background> background_;
1506 // Border.
1507 scoped_ptr<Border> border_;
1509 // Cached output of painting to be reused in future frames until invalidated.
1510 ui::PaintCache paint_cache_;
1512 // RTL painting --------------------------------------------------------------
1514 // Indicates whether or not the gfx::Canvas object passed to View::Paint()
1515 // is going to be flipped horizontally (using the appropriate transform) on
1516 // right-to-left locales for this View.
1517 bool flip_canvas_on_paint_for_rtl_ui_;
1519 // Accelerated painting ------------------------------------------------------
1521 bool paint_to_layer_;
1523 // Accelerators --------------------------------------------------------------
1525 // Focus manager accelerators registered on.
1526 FocusManager* accelerator_focus_manager_;
1528 // The list of accelerators. List elements in the range
1529 // [0, registered_accelerator_count_) are already registered to FocusManager,
1530 // and the rest are not yet.
1531 scoped_ptr<std::vector<ui::Accelerator> > accelerators_;
1532 size_t registered_accelerator_count_;
1534 // Focus ---------------------------------------------------------------------
1536 // Next view to be focused when the Tab key is pressed.
1537 View* next_focusable_view_;
1539 // Next view to be focused when the Shift-Tab key combination is pressed.
1540 View* previous_focusable_view_;
1542 // Whether this view can be focused.
1543 bool focusable_;
1545 // Whether this view is focusable if the user requires full keyboard access,
1546 // even though it may not be normally focusable.
1547 bool accessibility_focusable_;
1549 // Context menus -------------------------------------------------------------
1551 // The menu controller.
1552 ContextMenuController* context_menu_controller_;
1554 // Drag and drop -------------------------------------------------------------
1556 DragController* drag_controller_;
1558 // Input --------------------------------------------------------------------
1560 scoped_ptr<ViewTargeter> targeter_;
1562 // Accessibility -------------------------------------------------------------
1564 // Belongs to this view, but it's reference-counted on some platforms
1565 // so we can't use a scoped_ptr. It's dereferenced in the destructor.
1566 NativeViewAccessibility* native_view_accessibility_;
1568 DISALLOW_COPY_AND_ASSIGN(View);
1571 } // namespace views
1573 #endif // UI_VIEWS_VIEW_H_