本文整理汇总了C++中WorkSpace::DrawText方法的典型用法代码示例。如果您正苦于以下问题:C++ WorkSpace::DrawText方法的具体用法?C++ WorkSpace::DrawText怎么用?C++ WorkSpace::DrawText使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WorkSpace
的用法示例。
在下文中一共展示了WorkSpace::DrawText方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: PS
//.........这里部分代码省略.........
PS.SetFillType ( PATSYM_HALFTONE ) ;
RECTL Box = { ClippingRectangle.xLeft, ClippingRectangle.yBottom,
Data->LeftMargin, ClippingRectangle.yTop } ;
PS.FillBox ( Box ) ;
PS.SetFillType ( PATSYM_DEFAULT ) ;
PS.SetColor ( RGB_BLACK ) ;
PS.SetLineType ( LINETYPE_ALTERNATE ) ;
POINTL Point = { Data->LeftMargin, ClippingRectangle.yTop } ;
PS.Move ( Point ) ;
Point.y = ClippingRectangle.yTop ;
PS.DrawLine ( Point ) ;
PS.SetLineType ( LINETYPE_SOLID ) ;
} /* endif */
POINTL Point = { Data->LeftMargin, WindowRectangle.yTop } ;
PS.Transform ( CVTC_DEFAULTPAGE, CVTC_DEVICE, 1, &Point ) ;
Point.y -= 8 ;
PS.DrawPointer ( Data->MarginPtr, Point, DP_NORMAL ) ;
/**************************************************************************
* Draw the right margin. *
**************************************************************************/
if ( ClippingRectangle.xRight >= Data->RightMargin ) {
PS.SetColor ( Data->IniData->fRulerColors[1] ? Data->IniData->RulerColors[1] : RGB_BLUE ) ;
PS.SetFillType ( PATSYM_HALFTONE ) ;
RECTL Box = { Data->RightMargin, ClippingRectangle.yBottom,
ClippingRectangle.xRight, ClippingRectangle.yTop } ;
PS.FillBox ( Box ) ;
PS.SetFillType ( PATSYM_DEFAULT ) ;
PS.SetColor ( RGB_BLACK ) ;
PS.SetLineType ( LINETYPE_ALTERNATE ) ;
Point.x = Data->RightMargin ;
Point.y = ClippingRectangle.yBottom ;
PS.Move ( Point ) ;
Point.y = ClippingRectangle.yTop ;
PS.DrawLine ( Point ) ;
PS.SetLineType ( LINETYPE_SOLID ) ;
} /* endif */
Point.x = Data->RightMargin ;
Point.y = WindowRectangle.yTop ;
PS.Transform ( CVTC_DEFAULTPAGE, CVTC_DEVICE, 1, &Point ) ;
Point.x -= 8 ;
Point.y -= 8 ;
PS.DrawPointer ( Data->MarginPtr, Point, DP_NORMAL ) ;
/**************************************************************************
* Draw the tab-stops. *
**************************************************************************/
for ( int i=0; i<Data->TabCount; i++ ) {
Point.x = Data->Tabs[i] ;
Point.y = WindowRectangle.yTop ;
PS.Transform ( CVTC_DEFAULTPAGE, CVTC_DEVICE, 1, &Point ) ;
Point.y -= 8 ;
PS.DrawPointer ( Data->TabstopPtr, Point, DP_NORMAL ) ;
} /* endfor */
/**************************************************************************
* Draw the ruler. *
**************************************************************************/
for ( long x=WindowRectangle.xLeft; x<WindowRectangle.xRight; x++ ) {
if ( x % ( Data->Metric ? 200 : 250 ) == 0 ) {
PS.SetColor ( RGB_BLACK ) ;
Point.x = x ;
Point.y = 0 ;
PS.Move ( Point ) ;
if ( x % 1000 == 0 ) {
Point.y = LONG ( 200.0 / Zoom ) ;
PS.DrawLine ( Point ) ;
Point.x += LONG ( 50.0 / Zoom ) ;
Point.y = LONG ( 50.0 / Zoom ) ;
char Text [10] ;
sprintf ( Text, "%i", int(x/1000) ) ;
PS.SetColor ( Data->IniData->fRulerColors[1] ? Data->IniData->RulerColors[1] : RGB_BLUE ) ;
PS.Move ( Point ) ;
PS.DrawText ( Text ) ;
} else if ( x % 500 == 0 ) {
Point.y = LONG ( 150.0 / Zoom ) ;
PS.DrawLine ( Point ) ;
} else {
Point.y = LONG ( 100.0 / Zoom ) ;
PS.DrawLine ( Point ) ;
} /* endif */
} /* endif */
} /* endfor */
/**************************************************************************
* We're done. *
**************************************************************************/
return ( MRFROMSHORT ( 0 ) ) ;
}