Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 897 of file pane.cpp.
Referenced by Pane::draw_item().
{ int x = dis->rcItem.left; RECT rt; rt.left = x+positions[col]+_spaceSize.cx; rt.top = dis->rcItem.top; rt.right = x+positions[col+1]-_spaceSize.cx; rt.bottom = dis->rcItem.bottom; /* DRAWTEXTPARAMS dtp = {sizeof(DRAWTEXTPARAMS), 2}; DrawTextEx(dis->hDC, (LPTSTR)str, -1, &rt, DT_SINGLELINE|DT_NOPREFIX|DT_EXPANDTABS|DT_TABSTOP, &dtp);*/ DrawText(dis->hDC, (LPTSTR)str, -1, &rt, DT_SINGLELINE|DT_EXPANDTABS|DT_TABSTOP|(2<<8)); }