Home
last modified time | relevance | path

Searched refs:presenterPos (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
DWorkspaceLayoutManager.java53 CellPos presenterPos = getCellPosMapper().mapModelToPresenter(info); in addInScreenFromBind() local
54 int x = presenterPos.cellX; in addInScreenFromBind()
55 int y = presenterPos.cellY; in addInScreenFromBind()
58 int screenId = presenterPos.screenId; in addInScreenFromBind()
65 addInScreen(child, info.container, presenterPos.screenId, x, y, info.spanX, info.spanY); in addInScreenFromBind()
73 CellPos presenterPos = getCellPosMapper().mapModelToPresenter(info); in addInScreen() local
75 presenterPos.screenId, presenterPos.cellX, presenterPos.cellY, in addInScreen()
DLauncher.java961 CellPos presenterPos = getCellPosMapper().mapModelToPresenter(requestArgs);
965 int newScreenId = ensurePendingDropLayoutExists(presenterPos.screenId);
967 presenterPos.cellX, presenterPos.cellY, newScreenId, CONTAINER_DESKTOP)
971 mWorkspace.getScreenWithId(presenterPos.screenId);
1516 CellPos presenterPos = getCellPosMapper().mapModelToPresenter(itemInfo);
1535 presenterPos);
1551 itemInfo.container, presenterPos.screenId, presenterPos.cellX, presenterPos.cellY);
1563 showWidgetResizeFrame(launcherHostView, launcherInfo, presenterPos);
1571 CellPos presenterPos) {
1572 CellLayout cellLayout = getCellLayout(launcherInfo.container, presenterPos.screenId);
[all …]
DAppWidgetResizeFrame.java306 CellPos presenterPos = mLauncher.getCellPosMapper().mapModelToPresenter(widgetInfo); in setupForWidget()
307 lp.setCellX(presenterPos.cellX); in setupForWidget()
308 lp.setTmpCellX(presenterPos.cellX); in setupForWidget()
309 lp.setCellY(presenterPos.cellY); in setupForWidget()
310 lp.setTmpCellY(presenterPos.cellY); in setupForWidget()
DCellLayout.java1447 CellPos presenterPos = mActivity.getCellPosMapper().mapModelToPresenter(info); in commitTempPlacement() local
1448 final boolean requiresDbUpdate = (presenterPos.cellX != lp.getTmpCellX() in commitTempPlacement()
1449 || presenterPos.cellY != lp.getTmpCellY() || info.spanX != lp.cellHSpan in commitTempPlacement()
1450 || info.spanY != lp.cellVSpan || presenterPos.screenId != screenId); in commitTempPlacement()