Home
last modified time | relevance | path

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

/reactos/base/shell/explorer/
H A Dtraywnd.cpp2762 BOOL IsPointWithinStartButton(LPPOINT ppt, LPRECT prcStartBtn, PWINDOWINFO pwi) in IsPointWithinStartButton() argument
2764 if (!ppt || !prcStartBtn || !pwi) in IsPointWithinStartButton()
2772 if (ppt->x > prcStartBtn->right || ppt->y > prcStartBtn->bottom) in IsPointWithinStartButton()
2778 if (ppt->x < prcStartBtn->left || ppt->y > prcStartBtn->bottom) in IsPointWithinStartButton()
2781 if (prcStartBtn->right + (int)pwi->cxWindowBorders * 2 + 1 < pwi->rcWindow.right && in IsPointWithinStartButton()
2782 ppt->x > prcStartBtn->right) in IsPointWithinStartButton()
2790 if (ppt->x > prcStartBtn->right || ppt->y < prcStartBtn->top) in IsPointWithinStartButton()
2793 … if (prcStartBtn->bottom + (int)pwi->cyWindowBorders * 2 + 1 < pwi->rcWindow.bottom && in IsPointWithinStartButton()
2794 ppt->y > prcStartBtn->bottom) in IsPointWithinStartButton()