Home | History | Annotate | Download | only in ui

Lines Matching refs:pane

104     // Drag helper for capturing drag over the list pane
142 * Used for two-pane landscape layout positioning when other views need to align themselves
277 // Layout only positions the children views at their default locations, and any pane
284 // If the view mode is different from positions and we are computing pane position, then
310 // only adjust the pane widths when my width changes
319 * Compute the default base location of each pane and save it in their corresponding
329 // Compute default pane positions
403 * Adjusts the visibility of each pane before and after a transition. After the transition,
565 // Only start intercepting if the down event is inside the list pane or in
566 // landscape conv pane
638 * Computes the width of the conversation pane in stable state of the
659 private int getPaneWidth(View pane) {
660 return pane.getLayoutParams().width;
720 * the pane positioning. This should be called after every view mode change to ensure that
721 * each pane are in their corresponding locations based on the view mode.
746 private void setPaneWidth(View pane, int w) {
747 final ViewGroup.LayoutParams lp = pane.getLayoutParams();
752 pane.setLayoutParams(lp);
755 if (pane == mFoldersView) {
757 } else if (pane == mListView) {
759 } else if (pane == mConversationView) {
761 } else if (pane == mMiscellaneousView) {
763 } else if (pane == mConversationFrame) {
766 s = "???:" + pane;
768 LogUtils.d(LOG_TAG, "TPL: setPaneWidth, w=%spx pane=%s", w, s);