summaryrefslogtreecommitdiffstats
path: root/bltGrMarkerBitmap.C
diff options
context:
space:
mode:
authorjoye <joye>2014-06-03 18:41:33 (GMT)
committerjoye <joye>2014-06-03 18:41:33 (GMT)
commita4954843d4e30e7c90e38edb8142f186e1bcb3c6 (patch)
treecc65e35470bfe2fdd944613c78f3a4f9acee4faf /bltGrMarkerBitmap.C
parentbe77c93ab199202c270e058e143616b87f960a64 (diff)
downloadblt-a4954843d4e30e7c90e38edb8142f186e1bcb3c6.zip
blt-a4954843d4e30e7c90e38edb8142f186e1bcb3c6.tar.gz
blt-a4954843d4e30e7c90e38edb8142f186e1bcb3c6.tar.bz2
*** empty log message ***
Diffstat (limited to 'bltGrMarkerBitmap.C')
-rw-r--r--bltGrMarkerBitmap.C18
1 files changed, 8 insertions, 10 deletions
diff --git a/bltGrMarkerBitmap.C b/bltGrMarkerBitmap.C
index 2efc597..6615ca4 100644
--- a/bltGrMarkerBitmap.C
+++ b/bltGrMarkerBitmap.C
@@ -71,8 +71,6 @@ static Tk_OptionSpec optionSpecs[] = {
{TK_OPTION_CUSTOM, "-mapy", "mapY", "MapY",
"y", -1, Tk_Offset(BitmapMarkerOptions, yAxis), 0, &yAxisObjOption, 0},
{TK_OPTION_SYNONYM, "-outline", NULL, NULL, NULL, -1, 0, 0, "-foreground", 0},
- {TK_OPTION_STRING_TABLE, "-state", "state", "State",
- "normal", -1, Tk_Offset(BitmapMarkerOptions, state), 0, &stateObjOption, 0},
{TK_OPTION_BOOLEAN, "-under", "under", "Under",
"no", -1, Tk_Offset(BitmapMarkerOptions, drawUnder), 0, NULL, CACHE},
{TK_OPTION_PIXELS, "-xoffset", "xOffset", "XOffset",
@@ -259,7 +257,7 @@ int BitmapMarker::regionIn(Region2d *extsPtr, int enclosed)
((anchorPt_.y + height_) <= extsPtr->top));
}
-void BitmapMarker::print(Blt_Ps ps)
+void BitmapMarker::print(PostScript* psPtr)
{
BitmapMarkerOptions* ops = (BitmapMarkerOptions*)ops_;
@@ -267,15 +265,15 @@ void BitmapMarker::print(Blt_Ps ps)
return;
if (ops->fillColor) {
- Blt_Ps_XSetBackground(ps, ops->fillColor);
- Blt_Ps_XFillPolygon(ps, outline_, 4);
+ psPtr->setBackground(ops->fillColor);
+ psPtr->fillPolygon(outline_, 4);
}
- Blt_Ps_XSetForeground(ps, ops->outlineColor);
+ psPtr->setForeground(ops->outlineColor);
- Blt_Ps_Format(ps, " gsave\n %g %g translate\n %d %d scale\n",
+ psPtr->format(" gsave\n %g %g translate\n %d %d scale\n",
anchorPt_.x, anchorPt_.y + height_, width_, -height_);
- Blt_Ps_Format(ps, " %d %d true [%d 0 0 %d 0 %d] {",
+ psPtr->format(" %d %d true [%d 0 0 %d 0 %d] {",
width_, height_, width_, -height_, height_);
- Blt_Ps_XSetBitmapData(ps, graphPtr_->display_, ops->bitmap, width_, height_);
- Blt_Ps_VarAppend(ps, " } imagemask\n", "grestore\n", (char*)NULL);
+ psPtr->setBitmap(graphPtr_->display_, ops->bitmap, width_, height_);
+ psPtr->varAppend(" } imagemask\n", "grestore\n", NULL);
}