Home | History | Annotate | Download | only in views

Lines Matching full:view

40         kVisible_Mask   = 1 << kVisible_Shift,      //!< set if the view is visible
41 kEnabled_Mask = 1 << kEnabled_Shift, //!< set if the view is enabled
42 kFocusable_Mask = 1 << kFocusable_Shift, //!< set if the view can receive focus
43 kFlexH_Mask = 1 << kFlexH_Shift, //!< set if the view's width is stretchable
44 kFlexV_Mask = 1 << kFlexV_Shift, //!< set if the view's height is stretchable
45 kNoClip_Mask = 1 << kNoClip_Shift, //!< set if the view is not clipped to its bounds
53 /** Return the flags associated with the view
56 /** Set the flags associated with the view
60 /** Helper that returns non-zero if the kVisible_Mask bit is set in the view's flags
66 /** Helper to set/clear the view's kVisible_Mask flag */
72 /** Return the view's width */
74 /** Return the view's height */
76 /** Set the view's width and height. These must both be >= 0. This does not affect the view's loc */
84 /** Loc - the view's offset with respect to its parent in its view hiearchy.
90 /** Return the view's left edge */
92 /** Return the view's top edge */
94 /** Set the view's left and top edge. This does not affect the view's size */
100 /** Local Matrix - matrix used to tranform the view with respect to its
101 parent in its view hiearchy. Use setLocalMatrix to apply matrix
102 transformations to the current view and in turn affect its children.
111 /** Offset (move) the view by the specified dx and dy. This does not affect the view's size */
114 /** Call this to have the view draw into the specified canvas. */
117 /** Call this to invalidate part of all of a view, requesting that the view's
118 draw method be called. The rectangle parameter specifies the part of the view
119 that should be redrawn. If it is null, it specifies the entire view bounds.
173 /** Send the event to the view's parent, and its parent etc. until one of them
174 returns true from its onEvent call. This view is returned. If no parent handles
178 /** Send the query to the view's parent, and its parent etc. until one of them
179 returns true from its onQuery call. This view is returned. If no parent handles
184 // View hierarchy management
186 /** Return the view's parent, or null if it has none. This does not affect the parent's reference count. */
189 /** Attach the child view to this view, and increment the child's reference count. The child view is added
191 The child view parameter is returned.
194 /** If the view has a parent, detach the view from its parent and decrement the view's reference count.
195 If the parent was the only owner of the view, this will cause the view to be deleted.
198 /** Attach the child view to this view, and increment the child's reference count. The child view is added
200 The child view parameter is returned.
202 /** Detach all child views from this view. */
205 /** Convert the specified point from global coordinates into view-local coordinates
208 /** Convert the specified x,y from global coordinates into view-local coordinates, returning
215 Iterator that will return each of this view's children, in
217 call to next() returns the front-most child view. When
230 Iterator that will return each of this view's children, in
232 call to next() returns the back-most child view. When
245 Install a subclass of this in a view (calling setArtist()), and then the
246 default implementation of that view's onDraw() will invoke this object
257 /** Return the artist attached to this view (or null). The artist's reference
261 /** Attach the specified artist (or null) to the view, replacing any existing
269 Install a subclass of this in a view (calling setLayout()), and then the
270 default implementation of that view's onLayoutChildren() will invoke
282 /** Return the layout attached to this view (or null). The layout's reference
286 /** Attach the specified layout (or null) to the view, replacing any existing
291 /** If a layout is attached to this view, call its layoutChildren() method
295 /** Call this to initialize this view based on the specified XML node
298 /** After a view hierarchy is inflated, this may be called with a dictionary
299 containing pairs of <name, view*>, where the name string was the view's
302 This will call the virtual onPostInflate for this view, and the recursively
303 call postInflate on all of the view's children.
310 /** Override this to draw inside the view. Be sure to call the inherited version too */
312 /** Override this to be notified when the view's size changes. Be sure to call the inherited version too */
314 /** Override this if you want to handle an inval request from this view or one of its children.
350 // default action is to inval the view
377 /** Compute the matrix to transform view-local coordinates into global ones */