Ejemplo n.º 1
0
void
JXExprWidget::Print
	(
	JPagePrinter&	p,
	const JRect&	rect
	)
{
	EIPDraw(p);
}
void
JXExprEditor::Draw
	(
	JXWindowPainter&	p,
	const JRect&		rect
	)
{
	// adjust the origin so the expression is centered in Bounds

	JPoint delta;
	GetDrawingOffset(&delta);
	p.ShiftOrigin(delta);

	// draw the function

	EIPDraw(p);
}
Ejemplo n.º 3
0
void
JXExprWidget::PrivateDraw
	(
	JPainter&		p,
	const JRect&	rect
	)
{
	// adjust the origin so the expression is centered in Bounds

	JPoint delta;
	GetDrawingOffset(&delta);
	p.ShiftOrigin(delta);

	// draw the function

	EIPDraw(p);
}