本文整理汇总了C++中FXDCWindow::drawText方法的典型用法代码示例。如果您正苦于以下问题:C++ FXDCWindow::drawText方法的具体用法?C++ FXDCWindow::drawText怎么用?C++ FXDCWindow::drawText使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FXDCWindow
的用法示例。
在下文中一共展示了FXDCWindow::drawText方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: drawLabel
// Draw multi-line label, with underline for hotkey
void FXLabel::drawLabel(FXDCWindow& dc,const FXString& text,FXint hot,FXint tx,FXint ty,FXint tw,FXint){
register FXint beg,end;
register FXint xx,yy;
yy=ty+font->getFontAscent();
beg=0;
do{
end=beg;
while(end<text.length() && text[end]!='\n') end++;
if(options&JUSTIFY_LEFT) xx=tx;
else if(options&JUSTIFY_RIGHT) xx=tx+tw-font->getTextWidth(&text[beg],end-beg);
else xx=tx+(tw-font->getTextWidth(&text[beg],end-beg))/2;
dc.drawText(xx,yy,&text[beg],end-beg);
if(beg<=hot && hot<end){
dc.fillRectangle(xx+font->getTextWidth(&text[beg],hot-beg),yy+1,font->getTextWidth(&text[hot],wclen(&text[hot])),1);
}
yy+=font->getFontHeight();
beg=end+1;
}
while(end<text.length());
}
示例2: drawTextFragment
// Draw fragment of text in given style
void FXConsole::drawTextFragment(FXDCWindow& dc,FXint x,FXint y,FXint,FXint,const FXchar *text,FXint n,FXuint sty) const {
register FXColor color=FXRGB(255,255,255);
dc.setForeground(color);
y+=font->getFontAscent();
dc.drawText(x,y,text,n);
}