Lines Matching refs:view
17 class View;
29 // Adds |view| to this model. This does not add |view| to a view hierarchy,
31 void Add(View* view, int index);
33 // Removes the view at the specified index. This does not actually remove the
34 // view from the view hierarchy.
37 // Moves the view at |index| to |target_index|. |target_index| is in terms
38 // of the model *after* the view at |index| is removed.
42 // this the bounds of the view at |target_index| (and all other indices) are
43 // exactly the same as the bounds of the view at |target_index| before
53 // Returns the view at the specified index.
54 View* view_at(int index) const {
56 return entries_[index].view;
69 // Returns the index of the specified view, or -1 if the view isn't in the
71 int GetIndexOfView(const View* view) const;
75 Entry() : view(NULL) {}
77 View* view;