Home | History | Annotate | Download | only in views

Lines Matching refs:page

96   // Ensures the view is visible. Note that if there is a running page
120 // Prerenders the icons on and around the currently selected page.
150 // Stops the timer that triggers a page flip during a drag.
229 Index() : page(-1), slot(-1) {}
230 Index(int page, int slot) : page(page), slot(slot) {}
233 return page == other.page && slot == other.slot;
236 return page != other.page || slot != other.slot;
239 if (page != other.page)
240 return page < other.page;
245 int page; // Which page an item view is on.
246 int slot; // Which slot in the page an item view is in.
254 // Updates page splits for item views.
265 // struct above with page/slot info of where to display the item.
322 // Starts the page flip timer if |drag_point| is in left/right side page flip
323 // zone or is over page switcher.
356 // Cancels any context menus showing for app items on the current page.
406 // slot if |point| is outside the page's bounds.
409 // Gets the bounds of the tile located at |slot| on the current page.
412 // Gets the bounds of the tile located at |row| and |col| on the current page.
415 // Gets the item view located at |slot| on the current page. If there is
499 // Page the drag started on.
546 // Timer to auto flip page when dragging an item near the left/right edges.
549 // Target page to switch to when |page_flip_timer_| fires.