/reactos/modules/rostests/winetests/user32/ |
H A D | text.c | 181 heightcheck = textheight = DrawTextExA(hdc, text, 0, &rect, DT_CALCRECT|DT_SINGLELINE, NULL ); in test_DrawTextCalcRect() 188 textheight = DrawTextA(hdc, text, 0, &rect, DT_CALCRECT|DT_SINGLELINE); in test_DrawTextCalcRect() 203 textheight = DrawTextA(hdc, emptystring, -1, &rect, DT_CALCRECT|DT_SINGLELINE); in test_DrawTextCalcRect() 218 textheight = DrawTextA(hdc, NULL, -1, &rect, DT_CALCRECT|DT_SINGLELINE); in test_DrawTextCalcRect() 233 textheight = DrawTextA(hdc, NULL, 0, &rect, DT_CALCRECT|DT_SINGLELINE); in test_DrawTextCalcRect() 290 textheight = DrawTextExW(hdc, textW, -1, &rect, DT_SINGLELINE | DT_CALCRECT | DT_TOP, NULL); in test_DrawTextCalcRect() 409 textheight = DrawTextW(hdc, textW, 0, &rect, DT_CALCRECT|DT_SINGLELINE); in test_DrawTextCalcRect() 422 textheight = DrawTextW(hdc, emptystringW, -1, &rect, DT_CALCRECT|DT_SINGLELINE); in test_DrawTextCalcRect() 437 textheight = DrawTextW(hdc, NULL, -1, &rect, DT_CALCRECT|DT_SINGLELINE); in test_DrawTextCalcRect() 452 textheight = DrawTextW(hdc, NULL, 0, &rect, DT_CALCRECT|DT_SINGLELINE); in test_DrawTextCalcRect() [all …]
|
/reactos/modules/rostests/apitests/user32/ |
H A D | DrawText.c | 27 #define DT_1 (DT_CALCRECT | DT_SINGLELINE | DT_LEFT | DT_TOP) 28 #define DT_2 (DT_CALCRECT | DT_SINGLELINE | DT_LEFT | DT_VCENTER) 33 #define DT_6 (DT_SINGLELINE | DT_LEFT | DT_TOP) 34 #define DT_7 (DT_SINGLELINE | DT_LEFT | DT_VCENTER)
|
/reactos/win32ss/user/user32/controls/ |
H A D | icontitle.c | 101 (( bMultiLineTitle ) ? 0 : DT_SINGLELINE) ); in ICONTITLE_SetTitlePos() 174 DT_WORDBREAK | ((bMultiLineTitle) ? 0 : DT_SINGLELINE) ); in ICONTITLE_Paint()
|
H A D | static.c | 649 format = DT_LEFT | DT_SINGLELINE; in STATIC_PaintTextfn() 671 format |= DT_SINGLELINE | DT_VCENTER; in STATIC_PaintTextfn() 675 format |= DT_SINGLELINE | DT_END_ELLIPSIS; in STATIC_PaintTextfn() 677 format |= DT_SINGLELINE | DT_PATH_ELLIPSIS; in STATIC_PaintTextfn() 679 format |= DT_SINGLELINE | DT_WORD_ELLIPSIS; in STATIC_PaintTextfn()
|
/reactos/dll/win32/comctl32/ |
H A D | static.c | 566 format = DT_LEFT | DT_SINGLELINE; in STATIC_PaintTextfn() 586 format |= DT_SINGLELINE | DT_VCENTER; in STATIC_PaintTextfn() 590 format |= DT_SINGLELINE | DT_END_ELLIPSIS; in STATIC_PaintTextfn() 592 format |= DT_SINGLELINE | DT_PATH_ELLIPSIS; in STATIC_PaintTextfn() 594 format |= DT_SINGLELINE | DT_WORD_ELLIPSIS; in STATIC_PaintTextfn()
|
H A D | ipaddress.c | 204 …DrawThemeText(theme, hdc, EP_EDITTEXT, state, dotW, 1, DT_SINGLELINE | DT_CENTER | DT_BOTTOM, 0, &… in IPADDRESS_Draw() 206 DrawTextW(hdc, dotW, 1, &rect, DT_SINGLELINE | DT_CENTER | DT_BOTTOM); in IPADDRESS_Draw()
|
H A D | monthcal.c | 818 DrawTextW(hdc, buf, -1, &r, DT_CENTER | DT_VCENTER | DT_SINGLELINE ); in MONTHCAL_DrawDay() 890 DrawTextW(hdc, strW, lstrlenW(strW), title, DT_CENTER | DT_VCENTER | DT_SINGLELINE); in MONTHCAL_PaintTitle() 1048 DrawTextW(hdc, buf, -1, &r, DT_CENTER | DT_VCENTER | DT_SINGLELINE); in MONTHCAL_PaintWeeknumbers() 1082 DrawTextW(hdc, buf, -1, &text_rect, DT_CALCRECT | DT_LEFT | DT_VCENTER | DT_SINGLELINE); in MONTHCAL_PaintTodayTitle() 1083 DrawTextW(hdc, buf, -1, &text_rect, DT_LEFT | DT_VCENTER | DT_SINGLELINE); in MONTHCAL_PaintTodayTitle() 1210 DrawTextW(hdc, buf, lstrlenW(buf), &r, DT_CENTER | DT_VCENTER | DT_SINGLELINE); in MONTHCAL_PaintCalendar()
|
/reactos/base/applications/charmap_new/ |
H A D | Cell.cpp | 83 DT_CENTER | DT_VCENTER | DT_SINGLELINE); in OnPaint()
|
/reactos/win32ss/user/rtl/ |
H A D | text.c | 713 ((str[i] != CR && str[i] != LF) || (format & DT_SINGLELINE))) in TEXT_NextLineW() 831 if (format & DT_SINGLELINE) in TEXT_NextLineW() 1110 if (flags & DT_SINGLELINE) in DrawTextExWorker() 1158 if( flags & DT_SINGLELINE) in DrawTextExWorker() 1262 if (flags & DT_SINGLELINE) in DrawTextExWorker()
|
/reactos/base/applications/taskmgr/ |
H A D | graph.c | 158 DrawTextW(hDC, Text, -1, &rcText, DT_BOTTOM | DT_CENTER | DT_NOPREFIX | DT_SINGLELINE); in Graph_DrawCpuUsageGraph() 323 DrawTextW(hDC, Text, -1, &rcText, DT_BOTTOM | DT_CENTER | DT_NOPREFIX | DT_SINGLELINE); in Graph_DrawMemUsageGraph()
|
/reactos/modules/rosapps/applications/explorer-old/utility/ |
H A D | window.cpp | 887 ::DrawText(hdc, (LPCTSTR)data, cnt, &s_MyDrawText_Rect, DT_SINGLELINE); in MyDrawText() 987 dt_flags = DT_SINGLELINE|DT_CENTER|DT_VCENTER; in DrawItem() 998 dt_flags = DT_SINGLELINE|DT_VCENTER/*|DT_CENTER*/; in DrawItem() 1083 DrawText(dis->hDC, txt, txt_len, &shadowRect, DT_SINGLELINE|DT_VCENTER|DT_CENTER); in DrawItem() 1088 DrawText(dis->hDC, txt, txt_len, &textRect, DT_SINGLELINE|DT_VCENTER|DT_CENTER); in DrawItem() 1092 DrawText(dis->hDC, txt, txt_len, &textRect, DT_SINGLELINE|DT_VCENTER|DT_CENTER|DT_CALCRECT); in DrawItem() 1103 DrawText(dis->hDC, txt, txt_len, &textRect, DT_SINGLELINE|DT_VCENTER|DT_CENTER); in DrawItem()
|
/reactos/modules/rosapps/applications/explorer-old/shell/ |
H A D | pane.cpp | 636 DrawText(dis->hDC, (LPTSTR)str, -1, &rt, DT_CALCRECT|DT_SINGLELINE|DT_NOPREFIX); in calc_width() 649 …DrawText(dis->hDC, (LPTSTR)str, -1, &rt, DT_CALCRECT|DT_SINGLELINE|DT_EXPANDTABS|DT_TABSTOP|(2<<8)… in calc_tabbed_width() 891 DrawText(dis->hDC, (LPTSTR)str, -1, &rt, DT_SINGLELINE|DT_NOPREFIX|flags); in output_text() 907 DrawText(dis->hDC, (LPTSTR)str, -1, &rt, DT_SINGLELINE|DT_EXPANDTABS|DT_TABSTOP|(2<<8)); in output_tabbed_text() 938 DrawText(dis->hDC, b, d-b, &rt, DT_RIGHT|DT_SINGLELINE|DT_NOPREFIX|DT_END_ELLIPSIS); in output_number()
|
H A D | webchild.cpp | 223 …"Sorry - no web browser control could be loaded."), -1, &rect, DT_CENTER|DT_VCENTER|DT_SINGLELINE); in WndProc()
|
/reactos/modules/rostests/tests/wm_paint/ |
H A D | wm_paint.c | 102 DT_CENTER | DT_VCENTER | DT_SINGLELINE); in MainWndProc()
|
/reactos/base/applications/charmap/ |
H A D | lrgcell.c | 136 DT_CENTER | DT_VCENTER | DT_SINGLELINE); in LrgCellWndProc()
|
/reactos/modules/rostests/win32/user32/psmtest/ |
H A D | psmtest.c | 190 DrawTest(hdc, 60, Test2, DT_SINGLELINE, LPK); in MainWndProc() 233 DrawTest(hdc, 60, Test2, DT_SINGLELINE, USERLPK); in MainWndProc()
|
/reactos/dll/cpl/desk/ |
H A D | draw.c | 519 DrawTextW(hdc, str, -1, &rc, DT_SINGLELINE | DT_VCENTER); in MyDrawCaptionTemp() 536 UINT uFormat = DT_CENTER | DT_VCENTER | DT_SINGLELINE; in MyDrawMenuBarTemp() 564 DrawTextW(DC, Text, -1, &rect, DT_SINGLELINE | DT_CALCRECT); in MyDrawMenuBarTemp()
|
/reactos/modules/rostests/tests/enumfonts/ |
H A D | enumfonts.cpp | 232 DT_LEFT | DT_VCENTER | DT_SINGLELINE); in MainWndProc()
|
/reactos/modules/rosapps/applications/explorer-old/taskbar/ |
H A D | quicklaunch.cpp | 147 DrawText(hdc, num_txt, num_txt.length(), &textRect, DT_CENTER|DT_VCENTER|DT_SINGLELINE); in AddShortcuts()
|
H A D | desktopbar.cpp | 96 DrawText(canvas, start_str, -1, &rect, DT_SINGLELINE|DT_CALCRECT); in Init()
|
H A D | traynotify.cpp | 1280 DrawText(canvas, buffer, -1, &rect, DT_SINGLELINE|DT_NOPREFIX|DT_CALCRECT); in Create() 1353 DrawText(canvas, _time, -1, ClientRect(_hwnd), DT_SINGLELINE|DT_VCENTER|DT_NOPREFIX); in Paint()
|
/reactos/modules/rostests/tests/primitives/ |
H A D | primitives.cpp | 307 DT_CENTER | DT_VCENTER | DT_SINGLELINE); in MainWndProc()
|
/reactos/win32ss/user/user32/windows/ |
H A D | font.c | 307 if( flags & DT_SINGLELINE) in DrawTextExA()
|
/reactos/dll/directx/wine/d3dx9_36/ |
H A D | font.c | 567 while (*count && (str[i] != '\n' || (format & DT_SINGLELINE))) in read_line() 679 if (format & DT_SINGLELINE) in ID3DXFontImpl_DrawTextW()
|
/reactos/base/applications/mstsc/ |
H A D | connectdialog.c | 1265 …DT_BOTTOM | DT_SINGLELINE | DT_NOCLIP | DT_CENTER); //DT_CENTER makes the text visible in RTL layo… in DlgProc() 1303 DT_TOP | DT_SINGLELINE); in DlgProc()
|