1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/*
* Smithsonian Astrophysical Observatory, Cambridge, MA, USA
* This code has been modified under the terms listed below and is made
* available under the same terms.
*/
/*
* Copyright 1993-2004 George A Howlett.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <stdlib.h>
#include <cmath>
#include "tkbltGraph.h"
#include "tkbltGrMarkerText.h"
#include "tkbltGrMarkerOption.h"
#include "tkbltGrMisc.h"
#include "tkbltGrDef.h"
#include "tkbltConfig.h"
#include "tkbltGrPSOutput.h"
using namespace Blt;
static Tk_OptionSpec optionSpecs[] = {
{TK_OPTION_ANCHOR, "-anchor", "anchor", "Anchor",
"center", -1, Tk_Offset(TextMarkerOptions, anchor), 0, NULL, 0},
{TK_OPTION_COLOR, "-background", "background", "Background",
NULL, -1, Tk_Offset(TextMarkerOptions, fillColor),
TK_OPTION_NULL_OK, NULL, 0},
{TK_OPTION_SYNONYM, "-bg", NULL, NULL,
NULL, 0, -1, 0, (ClientData)"-background", 0},
{TK_OPTION_CUSTOM, "-bindtags", "bindTags", "BindTags",
"Text all", -1, Tk_Offset(TextMarkerOptions, tags),
TK_OPTION_NULL_OK, &listObjOption, 0},
{TK_OPTION_CUSTOM, "-coords", "coords", "Coords",
NULL, -1, Tk_Offset(TextMarkerOptions, worldPts),
TK_OPTION_NULL_OK, &coordsObjOption, 0},
{TK_OPTION_STRING, "-element", "element", "Element",
NULL, -1, Tk_Offset(TextMarkerOptions, elemName),
TK_OPTION_NULL_OK, NULL, 0},
{TK_OPTION_SYNONYM, "-fg", NULL, NULL,
NULL, 0, -1, 0, (ClientData)"-foreground", 0},
{TK_OPTION_SYNONYM, "-fill", NULL, NULL,
NULL, 0, -1, 0, (ClientData)"-background", 0},
{TK_OPTION_FONT, "-font", "font", "Font",
STD_FONT_NORMAL, -1, Tk_Offset(TextMarkerOptions, style.font), 0, NULL, 0},
{TK_OPTION_COLOR, "-foreground", "foreground", "Foreground",
STD_NORMAL_FOREGROUND, -1, Tk_Offset(TextMarkerOptions, style.color),
0, NULL, 0},
{TK_OPTION_JUSTIFY, "-justify", "justify", "Justify",
"left", -1, Tk_Offset(TextMarkerOptions, style.justify), 0, NULL, 0},
{TK_OPTION_BOOLEAN, "-hide", "hide", "Hide",
"no", -1, Tk_Offset(TextMarkerOptions, hide), 0, NULL, 0},
{TK_OPTION_CUSTOM, "-mapx", "mapX", "MapX",
"x", -1, Tk_Offset(TextMarkerOptions, xAxis), 0, &xAxisObjOption, 0},
{TK_OPTION_CUSTOM, "-mapy", "mapY", "MapY",
"y", -1, Tk_Offset(TextMarkerOptions, yAxis), 0, &yAxisObjOption, 0},
{TK_OPTION_SYNONYM, "-outline", NULL, NULL,
NULL, 0, -1, 0, (ClientData)"-foreground", 0},
{TK_OPTION_DOUBLE, "-rotate", "rotate", "Rotate",
"0", -1, Tk_Offset(TextMarkerOptions, style.angle), 0, NULL, 0},
{TK_OPTION_STRING, "-text", "text", "Text",
NULL, -1, Tk_Offset(TextMarkerOptions, string), TK_OPTION_NULL_OK, NULL, 0},
{TK_OPTION_BOOLEAN, "-under", "under", "Under",
"no", -1, Tk_Offset(TextMarkerOptions, drawUnder), 0, NULL, CACHE},
{TK_OPTION_PIXELS, "-xoffset", "xOffset", "XOffset",
"0", -1, Tk_Offset(TextMarkerOptions, xOffset), 0, NULL, 0},
{TK_OPTION_PIXELS, "-yoffset", "yOffset", "YOffset",
"0", -1, Tk_Offset(TextMarkerOptions, yOffset), 0, NULL, 0},
{TK_OPTION_END, NULL, NULL, NULL, NULL, 0, -1, 0, 0, 0}
};
TextMarker::TextMarker(Graph* graphPtr, const char* name, Tcl_HashEntry* hPtr)
: Marker(graphPtr, name, hPtr)
{
ops_ = (TextMarkerOptions*)calloc(1, sizeof(TextMarkerOptions));
TextMarkerOptions* ops = (TextMarkerOptions*)ops_;
ops->style.anchor =TK_ANCHOR_NW;
ops->style.color =NULL;
ops->style.font =NULL;
ops->style.angle =0;
ops->style.justify =TK_JUSTIFY_LEFT;
anchorPt_.x =0;
anchorPt_.y =0;
width_ =0;
height_ =0;
fillGC_ =NULL;
optionTable_ = Tk_CreateOptionTable(graphPtr->interp_, optionSpecs);
}
TextMarker::~TextMarker()
{
}
int TextMarker::configure()
{
TextMarkerOptions* ops = (TextMarkerOptions*)ops_;
ops->style.angle = (float)fmod(ops->style.angle, 360.0);
if (ops->style.angle < 0.0)
ops->style.angle += 360.0;
GC newGC = NULL;
XGCValues gcValues;
unsigned long gcMask;
if (ops->fillColor) {
gcMask = GCForeground;
gcValues.foreground = ops->fillColor->pixel;
newGC = Tk_GetGC(graphPtr_->tkwin_, gcMask, &gcValues);
}
if (fillGC_)
Tk_FreeGC(graphPtr_->display_, fillGC_);
fillGC_ = newGC;
return TCL_OK;
}
void TextMarker::draw(Drawable drawable)
{
TextMarkerOptions* ops = (TextMarkerOptions*)ops_;
if (!ops->string)
return;
if (fillGC_) {
XPoint points[4];
for (int ii=0; ii<4; ii++) {
points[ii].x = (short)(outline_[ii].x + anchorPt_.x);
points[ii].y = (short)(outline_[ii].y + anchorPt_.y);
}
XFillPolygon(graphPtr_->display_, drawable, fillGC_, points, 4,
Convex, CoordModeOrigin);
}
TextStyle ts(graphPtr_, &ops->style);
ts.drawText(drawable, ops->string, anchorPt_.x, anchorPt_.y);
}
void TextMarker::map()
{
TextMarkerOptions* ops = (TextMarkerOptions*)ops_;
if (!ops->string)
return;
if (!ops->worldPts || (ops->worldPts->num < 1))
return;
width_ =0;
height_ =0;
int w, h;
TextStyle ts(graphPtr_, &ops->style);
ts.getExtents(ops->string, &w, &h);
double rw;
double rh;
graphPtr_->getBoundingBox(w, h, ops->style.angle, &rw, &rh, outline_);
width_ = (int)rw;
height_ = (int)rh;
for (int ii=0; ii<4; ii++) {
outline_[ii].x += rw * 0.5;
outline_[ii].y += rh * 0.5;
}
outline_[4].x = outline_[0].x;
outline_[4].y = outline_[0].y;
Point2d anchorPtr = mapPoint(ops->worldPts->points, ops->xAxis, ops->yAxis);
anchorPtr = graphPtr_->anchorPoint(anchorPtr.x, anchorPtr.y,
width_, height_, ops->anchor);
anchorPtr.x += ops->xOffset;
anchorPtr.y += ops->yOffset;
Region2d extents;
extents.left = anchorPtr.x;
extents.top = anchorPtr.y;
extents.right = anchorPtr.x + width_ - 1;
extents.bottom = anchorPtr.y + height_ - 1;
clipped_ = boxesDontOverlap(graphPtr_, &extents);
anchorPt_ = anchorPtr;
}
int TextMarker::pointIn(Point2d *samplePtr)
{
TextMarkerOptions* ops = (TextMarkerOptions*)ops_;
if (!ops->string)
return 0;
if (ops->style.angle != 0.0) {
Point2d points[5];
// Figure out the bounding polygon (isolateral) for the text and see
// if the point is inside of it.
for (int ii=0; ii<5; ii++) {
points[ii].x = outline_[ii].x + anchorPt_.x;
points[ii].y = outline_[ii].y + anchorPt_.y;
}
return pointInPolygon(samplePtr, points, 5);
}
return ((samplePtr->x >= anchorPt_.x) &&
(samplePtr->x < (anchorPt_.x + width_)) &&
(samplePtr->y >= anchorPt_.y) &&
(samplePtr->y < (anchorPt_.y + height_)));
}
int TextMarker::regionIn(Region2d *extsPtr, int enclosed)
{
TextMarkerOptions* ops = (TextMarkerOptions*)ops_;
if (ops->style.angle != 0.0) {
Point2d points[5];
for (int ii=0; ii<4; ii++) {
points[ii].x = outline_[ii].x + anchorPt_.x;
points[ii].y = outline_[ii].y + anchorPt_.y;
}
return regionInPolygon(extsPtr, points, 4, enclosed);
}
if (enclosed)
return ((anchorPt_.x >= extsPtr->left) &&
(anchorPt_.y >= extsPtr->top) &&
((anchorPt_.x + width_) <= extsPtr->right) &&
((anchorPt_.y + height_) <= extsPtr->bottom));
return !((anchorPt_.x >= extsPtr->right) ||
(anchorPt_.y >= extsPtr->bottom) ||
((anchorPt_.x + width_) <= extsPtr->left) ||
((anchorPt_.y + height_) <= extsPtr->top));
}
void TextMarker::print(PSOutput* psPtr)
{
TextMarkerOptions* ops = (TextMarkerOptions*)ops_;
if (!ops->string)
return;
if (fillGC_) {
Point2d points[4];
for (int ii=0; ii<4; ii++) {
points[ii].x = outline_[ii].x + anchorPt_.x;
points[ii].y = outline_[ii].y + anchorPt_.y;
}
psPtr->setBackground(ops->fillColor);
psPtr->fillPolygon(points, 4);
}
TextStyle ts(graphPtr_, &ops->style);
ts.printText(psPtr, ops->string, anchorPt_.x, anchorPt_.y);
}
|