Home
last modified time | relevance | path

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

/reactos/win32ss/user/rtl/
H A Dtext.c693 if (str[i] == TAB && (format & DT_EXPANDTABS)) in TEXT_NextLineW()
712 (str[i] != TAB || !(format & DT_EXPANDTABS)) && in TEXT_NextLineW()
829 if ((format & DT_EXPANDTABS) && ellipsified) in TEXT_NextLineW()
1176 if (flags & DT_EXPANDTABS) in DrawTextExWorker()
1284 if ((flags & DT_EXPANDTABS)) in DrawTextExWorker()
1333 assert ((flags & DT_EXPANDTABS) && *str == TAB); in DrawTextExWorker()
/reactos/dll/win32/comctl32/
H A Dstatic.c554 format = DT_LEFT | DT_EXPANDTABS | DT_WORDBREAK; in STATIC_PaintTextfn()
558 format = DT_CENTER | DT_EXPANDTABS | DT_WORDBREAK; in STATIC_PaintTextfn()
562 format = DT_RIGHT | DT_EXPANDTABS | DT_WORDBREAK; in STATIC_PaintTextfn()
570 format = DT_LEFT | DT_EXPANDTABS; in STATIC_PaintTextfn()
H A Dtaskdialog.c383 DWORD style = DT_EXPANDTABS | DT_CALCRECT | DT_WORDBREAK; in taskdialog_get_label_size()
430 DWORD style = DT_EXPANDTABS | DT_CALCRECT | DT_WORDBREAK; in taskdialog_get_expando_size()
1119 DrawTextW(hdc, text, -1, &rect, DT_WORDBREAK | DT_END_ELLIPSIS | DT_EXPANDTABS); in taskdialog_draw_expando_control()
H A Dtooltips.c344 uFlags |= DT_EXPANDTABS; in TOOLTIPS_Refresh()
564 uFlags |= DT_EXPANDTABS; in TOOLTIPS_CalcTipSize()
/reactos/win32ss/user/user32/controls/
H A Dstatic.c637 format = DT_LEFT | DT_EXPANDTABS | DT_WORDBREAK; in STATIC_PaintTextfn()
641 format = DT_CENTER | DT_EXPANDTABS | DT_WORDBREAK; in STATIC_PaintTextfn()
645 format = DT_RIGHT | DT_EXPANDTABS | DT_WORDBREAK; in STATIC_PaintTextfn()
653 format = DT_LEFT | DT_EXPANDTABS; in STATIC_PaintTextfn()
/reactos/modules/rostests/win32/user32/psmtest/
H A Dpsmtest.c194 DrawTest(hdc, 140, Test3, DT_EXPANDTABS, LPK); in MainWndProc()
237 DrawTest(hdc, 140, Test3, DT_EXPANDTABS, USERLPK); in MainWndProc()
/reactos/modules/rostests/winetests/user32/
H A Dtext.c572 textheight = DrawTextA(hdc, tabstring, -1, &rect, DT_TABSTOP | DT_EXPANDTABS ); in test_DrawTextCalcRect()
585 …textheight = DrawTextExA(hdc, tabstring, -1, &rect2, DT_CALCRECT | DT_TABSTOP | DT_EXPANDTABS, &dt… in test_DrawTextCalcRect()
595 …textheight = DrawTextExA(hdc, tabstring, -1, &rect, DT_CALCRECT | DT_TABSTOP | DT_EXPANDTABS, &dtp… in test_DrawTextCalcRect()
/reactos/modules/rosapps/applications/explorer-old/shell/
H A Dpane.cpp649 …DrawText(dis->hDC, (LPTSTR)str, -1, &rt, DT_CALCRECT|DT_SINGLELINE|DT_EXPANDTABS|DT_TABSTOP|(2<<8)… in calc_tabbed_width()
907 DrawText(dis->hDC, (LPTSTR)str, -1, &rt, DT_SINGLELINE|DT_EXPANDTABS|DT_TABSTOP|(2<<8)); in output_tabbed_text()
/reactos/modules/rostests/winetests/d3dx9_36/
H A Dcore.c829 …height = ID3DXFont_DrawTextW(font, NULL, L"\taaaaaaaaaa", -1, &rect, DT_EXPANDTABS | DT_WORDBREAK,… in test_ID3DXFont()
835 …height = ID3DXFont_DrawTextW(font, NULL, L"\taaa\taaa\taaa", -1, &rect, DT_EXPANDTABS | DT_WORDBRE… in test_ID3DXFont()
838 …height = ID3DXFont_DrawTextW(font, NULL, L"\t\t\t\t\t\t\t\t\t\t", -1, &rect, DT_EXPANDTABS | DT_WO… in test_ID3DXFont()
841 …height = ID3DXFont_DrawTextW(font, NULL, L"a\ta", -1, &rect, DT_EXPANDTABS | DT_WORDBREAK, 0xff00f… in test_ID3DXFont()
844 …height = ID3DXFont_DrawTextW(font, NULL, L"a\ta\ta", -1, &rect, DT_EXPANDTABS | DT_WORDBREAK, 0xff… in test_ID3DXFont()
/reactos/base/applications/mspaint/
H A Dtextedit.cpp67 DT_EXPANDTABS | DT_WORDBREAK; in FixEditPos()
H A Ddrawing.cpp279 DT_EXPANDTABS | DT_WORDBREAK; in Text()
/reactos/win32ss/user/user32/windows/
H A Dmessagebox.c815 …DT_LEFT | DT_NOPREFIX | DT_WORDBREAK | DT_EXPANDTABS | DT_EXTERNALLEADING | DT_EDITCONTROL | DT_CA… in SoftModalMessageBox()
/reactos/sdk/include/psdk/
H A Dwinuser.h532 #define DT_EXPANDTABS 64 macro