Searched refs:nclm (Results 1 – 4 of 4) sorted by relevance
/reactos/dll/win32/comctl32/ |
H A D | status.c | 896 NONCLIENTMETRICSW nclm; in STATUSBAR_WMCreate() local 921 ZeroMemory (&nclm, sizeof(nclm)); in STATUSBAR_WMCreate() 922 nclm.cbSize = sizeof(nclm); in STATUSBAR_WMCreate() 923 SystemParametersInfoW (SPI_GETNONCLIENTMETRICS, nclm.cbSize, &nclm, 0); in STATUSBAR_WMCreate() 924 infoPtr->hDefaultFont = CreateFontIndirectW (&nclm.lfStatusFont); in STATUSBAR_WMCreate()
|
H A D | tooltips.c | 200 NONCLIENTMETRICSW nclm; in TOOLTIPS_InitSystemSettings() local 206 nclm.cbSize = sizeof(nclm); in TOOLTIPS_InitSystemSettings() 207 SystemParametersInfoW (SPI_GETNONCLIENTMETRICS, sizeof(nclm), &nclm, 0); in TOOLTIPS_InitSystemSettings() 208 infoPtr->hFont = CreateFontIndirectW (&nclm.lfStatusFont); in TOOLTIPS_InitSystemSettings() 211 nclm.lfStatusFont.lfWeight = FW_BOLD; in TOOLTIPS_InitSystemSettings() 212 infoPtr->hTitleFont = CreateFontIndirectW (&nclm.lfStatusFont); in TOOLTIPS_InitSystemSettings()
|
/reactos/win32ss/user/user32/windows/ |
H A D | messagebox.c | 624 NONCLIENTMETRICSW nclm; in SoftModalMessageBox() local 773 nclm.cbSize = sizeof(nclm); in SoftModalMessageBox() 774 SystemParametersInfoW(SPI_GETNONCLIENTMETRICS, sizeof(nclm), &nclm, 0); in SoftModalMessageBox() 775 hFont = CreateFontIndirectW(&nclm.lfMessageFont); in SoftModalMessageBox()
|
/reactos/win32ss/user/ntuser/ |
H A D | painting.c | 2096 NONCLIENTMETRICSW nclm; in UserDrawCaptionText() local 2106 nclm.cbSize = sizeof(nclm); in UserDrawCaptionText() 2107 if (!UserSystemParametersInfo(SPI_GETNONCLIENTMETRICS, nclm.cbSize, &nclm, 0)) in UserDrawCaptionText() 2116 Status = TextIntCreateFontIndirect(&nclm.lfSmCaptionFont, &hFont); in UserDrawCaptionText() 2118 Status = TextIntCreateFontIndirect(&nclm.lfCaptionFont, &hFont); in UserDrawCaptionText()
|