Home | History | Annotate | Download | only in launcher2

Lines Matching defs:workspace

34  * A keyboard listener we set on all the workspace icons.
43 * A keyboard listener we set on all the workspace icons.
491 * Handles key events in the workspace hotseat (bottom of the screen).
496 final Workspace workspace = (Workspace) launcher.findViewById(R.id.workspace);
499 final int pageIndex = workspace.getCurrentPage();
515 workspace.snapToPage(pageIndex - 1);
526 workspace.snapToPage(pageIndex + 1);
533 // Select the first bubble text view in the current page of the workspace
534 final CellLayout layout = (CellLayout) workspace.getChildAt(pageIndex);
540 workspace.requestFocus();
662 * Handles key events in a Workspace containing.
667 final Workspace workspace = (Workspace) layout.getParent();
668 final ViewGroup launcher = (ViewGroup) workspace.getParent();
671 int pageIndex = workspace.indexOfChild(layout);
672 int pageCount = workspace.getChildCount();
686 parent = getCellLayoutChildrenForIndex(workspace, pageIndex - 1);
693 workspace.snapToPage(pageIndex - 1);
708 parent = getCellLayoutChildrenForIndex(workspace, pageIndex + 1);
714 workspace.snapToPage(pageIndex + 1);
750 parent = getCellLayoutChildrenForIndex(workspace, pageIndex - 1);
756 workspace.snapToPage(pageIndex - 1);
772 parent = getCellLayoutChildrenForIndex(workspace, pageIndex + 1);
778 workspace.snapToPage(pageIndex + 1);